From 09ef861c98e6395e9e69218484a4ae44a00c0e18 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 17:03:53 -0800 Subject: [PATCH 001/158] Step 1: make ExtensionFinder support refreshing --- .../src/main/java/hudson/ExtensionFinder.java | 174 ++++++++++++++++-- .../hudson/cli/declarative/CLIRegisterer.java | 8 + .../java/jenkins/ExtensionComponentSet.java | 83 +++++++++ .../jenkins/ExtensionRefreshException.java | 48 +++++ 4 files changed, 300 insertions(+), 13 deletions(-) create mode 100644 core/src/main/java/jenkins/ExtensionComponentSet.java create mode 100644 core/src/main/java/jenkins/ExtensionRefreshException.java diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index 77ed3f369c..ba8466d1dc 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -23,9 +23,9 @@ */ package hudson; +import com.google.common.collect.Lists; import com.google.inject.AbstractModule; import com.google.inject.Binding; -import com.google.inject.CreationException; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Key; @@ -38,6 +38,8 @@ import com.google.common.collect.ImmutableList; import hudson.init.InitMilestone; import hudson.model.Descriptor; import hudson.model.Hudson; +import jenkins.ExtensionComponentSet; +import jenkins.ExtensionRefreshException; import jenkins.model.Jenkins; import net.java.sezpoz.Index; import net.java.sezpoz.IndexItem; @@ -82,6 +84,35 @@ public abstract class ExtensionFinder implements ExtensionPoint { return Collections.emptyList(); } + /** + * Returns true if this extension finder supports the {@link #refresh()} operation. + */ + public boolean isRefreshable() { + try { + return getClass().getMethod("refresh").getDeclaringClass()!=ExtensionFinder.class; + } catch (NoSuchMethodException e) { + return false; + } + } + + /** + * Rebuilds the internal index, if any, so that future {@link #find(Class, Hudson)} calls + * will discover components newly added to {@link PluginManager#uberClassLoader}. + * + *

+ * The point of the refresh operation is not to disrupt instances of already loaded {@link ExtensionComponent}s, + * and only instantiate those that are new. Otherwise this will break the singleton semantics of various + * objects, such as {@link Descriptor}s. + * + *

+ * The behaviour is undefined if {@link #isRefreshable()} is returning false. + * + * @since 1.DynamicExtensionFinder. + * @see #isRefreshable() + * @return never null + */ + public abstract ExtensionComponentSet refresh() throws ExtensionRefreshException; + /** * Discover extensions of the given type. * @@ -89,6 +120,11 @@ public abstract class ExtensionFinder implements ExtensionPoint { * This method is called only once per the given type after all the plugins are loaded, * so implementations need not worry about caching. * + *

+ * This method should return all the known components at the time of the call, including + * those that are discovered later via {@link #refresh()}, even though those components + * are separately retruend in {@link ExtensionComponentSet}. + * * @param * The type of the extension points. This is not bound to {@link ExtensionPoint} because * of {@link Descriptor}, which by itself doesn't implement {@link ExtensionPoint} for @@ -164,15 +200,34 @@ public abstract class ExtensionFinder implements ExtensionPoint { * Discovers components via sezpoz but instantiates them by using Guice. */ public static abstract class AbstractGuiceFinder extends ExtensionFinder { + /** + * Injector that we find components from. + *

+ * To support refresh when Guice doesn't let us alter the bindings, we'll create + * a child container to house newly discovered components. This field points to the + * youngest such container. + */ private Injector container; + /** + * Sezpoz index we are currently using in {@link #container} (and its ancestors.) + * Needed to compute delta. + */ + private List> sezpozIndex; + private final Map annotations = new HashMap(); + private final Sezpoz moduleFinder = new Sezpoz(); + private final Class annotationType; public AbstractGuiceFinder(final Class annotationType) { + this.annotationType = annotationType; + + sezpozIndex = ImmutableList.copyOf(Index.load(annotationType, Object.class, Jenkins.getInstance().getPluginManager().uberClassLoader)); + List modules = new ArrayList(); - modules.add(new SezpozModule(annotationType,Jenkins.getInstance().getPluginManager().uberClassLoader)); + modules.add(new SezpozModule(sezpozIndex)); - for (ExtensionComponent ec : new Sezpoz().find(Module.class, Hudson.getInstance())) { + for (ExtensionComponent ec : moduleFinder.find(Module.class, Hudson.getInstance())) { modules.add(ec.getInstance()); } @@ -182,7 +237,48 @@ public abstract class ExtensionFinder implements ExtensionPoint { LOGGER.log(Level.SEVERE, "Failed to create Guice container from all the plugins",e); // failing to load all bindings are disastrous, so recover by creating minimum that works // by just including the core - container = Guice.createInjector(new SezpozModule(annotationType,Jenkins.class.getClassLoader())); + container = Guice.createInjector(new SezpozModule( + ImmutableList.copyOf(Index.load(annotationType, Object.class, Jenkins.class.getClassLoader())))); + } + } + + /** + * The basic idea is: + * + *

+ */ + @Override + public synchronized ExtensionComponentSet refresh() throws ExtensionRefreshException { + // figure out newly discovered sezpoz components + List> delta = Sezpoz.listDelta(annotationType,sezpozIndex); + List> l = Lists.newArrayList(sezpozIndex); + l.addAll(delta); + sezpozIndex = l; + + List modules = new ArrayList(); + modules.add(new SezpozModule(delta)); + for (ExtensionComponent ec : moduleFinder.refresh().find(Module.class)) { + modules.add(ec.getInstance()); + } + + try { + final Injector child = container.createChildInjector(modules); + container = child; + + return new ExtensionComponentSet() { + @Override + public Collection> find(Class type) { + List> result = new ArrayList>(); + _find(type, result, child); + return result; + } + }; + } catch (Throwable e) { + LOGGER.log(Level.SEVERE, "Failed to create Guice container from newly added plugins",e); + throw new ExtensionRefreshException(e); } } @@ -213,8 +309,15 @@ public abstract class ExtensionFinder implements ExtensionPoint { } public Collection> find(Class type, Hudson hudson) { + // the find method contract requires us to traverse all known components List> result = new ArrayList>(); + for (Injector i=container; i!=null; i=i.getParent()) { + _find(type, result, i); + } + return result; + } + private void _find(Class type, List> result, Injector container) { for (Entry, Binding> e : container.getBindings().entrySet()) { if (type.isAssignableFrom(e.getKey().getTypeLiteral().getRawType())) { T a = annotations.get(e.getKey()); @@ -223,8 +326,6 @@ public abstract class ExtensionFinder implements ExtensionPoint { result.add(new ExtensionComponent(type.cast(o),a!=null?getOrdinal(a):0)); } } - - return result; } /** @@ -261,13 +362,16 @@ public abstract class ExtensionFinder implements ExtensionPoint { private static final Logger LOGGER = Logger.getLogger(GuiceFinder.class.getName()); + /** + * {@link Module} that finds components via sezpoz index. + * Instead of using SezPoz to instantiate, we'll instantiate them by using Guice, + * so that we can take advantage of dependency injection. + */ private class SezpozModule extends AbstractModule { - private final Class annotationType; - private final ClassLoader cl; + private final List> index;; - public SezpozModule(Class annotationType, ClassLoader cl) { - this.annotationType = annotationType; - this.cl = cl; + public SezpozModule(List> index) { + this.index = index; } /** @@ -302,7 +406,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { protected void configure() { int id=0; - for (final IndexItem item : Index.load(annotationType, Object.class, cl)) { + for (final IndexItem item : index) { id++; try { AnnotatedElement e = item.element(); @@ -379,10 +483,54 @@ public abstract class ExtensionFinder implements ExtensionPoint { return indices; } + /** + * {@inheritDoc} + * + *

+ * SezPoz implements value-equality of {@link IndexItem}, so + */ + @Override + public synchronized ExtensionComponentSet refresh() { + final List> old = indices; + if (old==null) return ExtensionComponentSet.EMPTY; // we haven't loaded anything + + final List> delta = listDelta(Extension.class,old); + + List> r = Lists.newArrayList(old); + r.addAll(delta); + indices = ImmutableList.copyOf(r); + + return new ExtensionComponentSet() { + @Override + public Collection> find(Class type) { + return _find(type,delta); + } + }; + } + + static List> listDelta(Class annotationType, List> old) { + // list up newly discovered components + final List> delta = Lists.newArrayList(); + ClassLoader cl = Jenkins.getInstance().getPluginManager().uberClassLoader; + for (IndexItem ii : Index.load(annotationType, Object.class, cl)) { + if (!old.contains(ii)) { + delta.add(ii); + } + } + return delta; + } + public Collection> find(Class type, Hudson hudson) { + return _find(type,getIndices()); + } + + /** + * Finds all the matching {@link IndexItem}s that match the given type and instantiate them. + */ + private Collection> _find(Class type, List> indices) { List> result = new ArrayList>(); - for (IndexItem item : getIndices()) { + for (IndexItem item : indices) { try { AnnotatedElement e = item.element(); Class extType; diff --git a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java index 95e4ae774d..fde6c095eb 100644 --- a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java +++ b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java @@ -30,6 +30,8 @@ import hudson.Util; import hudson.cli.CLICommand; import hudson.cli.CloneableCLICommand; import hudson.model.Hudson; +import jenkins.ExtensionComponentSet; +import jenkins.ExtensionRefreshException; import jenkins.model.Jenkins; import hudson.remoting.Channel; import hudson.security.CliAuthenticator; @@ -64,6 +66,12 @@ import java.util.logging.Logger; */ @Extension public class CLIRegisterer extends ExtensionFinder { + @Override + public ExtensionComponentSet refresh() throws ExtensionRefreshException { + // TODO: this is not complex. just bit tedious. + return ExtensionComponentSet.EMPTY; + } + public Collection> find(Class type, Hudson hudson) { if (type==CLICommand.class) return (List)discover(hudson); diff --git a/core/src/main/java/jenkins/ExtensionComponentSet.java b/core/src/main/java/jenkins/ExtensionComponentSet.java new file mode 100644 index 0000000000..9fd3a6d697 --- /dev/null +++ b/core/src/main/java/jenkins/ExtensionComponentSet.java @@ -0,0 +1,83 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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 jenkins; + +import com.google.common.collect.Lists; +import hudson.ExtensionComponent; +import hudson.ExtensionFinder; +import hudson.ExtensionPoint; +import hudson.model.Descriptor; + +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +/** + * Represents the components that's newly discovered during {@link ExtensionFinder#refresh()}. + * + * @author Kohsuke Kawaguchi + * @since 1.DynamicExtensionFinder. + */ +public abstract class ExtensionComponentSet { + /** + * Discover extensions of the given type. + * + *

+ * This method is called only once per the given type after all the plugins are loaded, + * so implementations need not worry about caching. + * + * @param + * The type of the extension points. This is not bound to {@link ExtensionPoint} because + * of {@link Descriptor}, which by itself doesn't implement {@link ExtensionPoint} for + * a historical reason. + * @return + * Can be empty but never null. + */ + public abstract Collection> find(Class type); + + /** + * Constant that has zero component in it. + */ + public static final ExtensionComponentSet EMPTY = new ExtensionComponentSet() { + @Override + public Collection> find(Class type) { + return Collections.emptyList(); + } + }; + + /** + * Computes the union of all the given delta. + */ + public static ExtensionComponentSet union(final Collection base) { + return new ExtensionComponentSet() { + @Override + public Collection> find(Class type) { + List> r = Lists.newArrayList(); + for (ExtensionComponentSet d : base) + r.addAll(d.find(type)); + return r; + } + }; + } +} diff --git a/core/src/main/java/jenkins/ExtensionRefreshException.java b/core/src/main/java/jenkins/ExtensionRefreshException.java new file mode 100644 index 0000000000..f100aba49f --- /dev/null +++ b/core/src/main/java/jenkins/ExtensionRefreshException.java @@ -0,0 +1,48 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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 jenkins; + +import hudson.ExtensionFinder; + +/** + * Signals that {@link ExtensionFinder#refresh()} had failed. + * + * @author Kohsuke Kawaguchi + */ +public class ExtensionRefreshException extends Exception { + public ExtensionRefreshException() { + } + + public ExtensionRefreshException(String message) { + super(message); + } + + public ExtensionRefreshException(String message, Throwable cause) { + super(message, cause); + } + + public ExtensionRefreshException(Throwable cause) { + super(cause); + } +} -- GitLab From 82ef72c00d1766267dd9642814b0777cd8c519db Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 17:13:57 -0800 Subject: [PATCH 002/158] Expose Injector to the rest of the world --- .../src/main/java/hudson/ExtensionFinder.java | 14 +- core/src/main/java/hudson/PluginManager.java | 2 - core/src/main/java/jenkins/ProxyInjector.java | 120 ++++++++++++++++++ 3 files changed, 133 insertions(+), 3 deletions(-) create mode 100644 core/src/main/java/jenkins/ProxyInjector.java diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index ba8466d1dc..9ac27f9892 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -40,6 +40,7 @@ import hudson.model.Descriptor; import hudson.model.Hudson; import jenkins.ExtensionComponentSet; import jenkins.ExtensionRefreshException; +import jenkins.ProxyInjector; import jenkins.model.Jenkins; import net.java.sezpoz.Index; import net.java.sezpoz.IndexItem; @@ -183,6 +184,13 @@ public abstract class ExtensionFinder implements ExtensionPoint { public static final class GuiceFinder extends AbstractGuiceFinder { public GuiceFinder() { super(Extension.class); + + // expose Injector via lookup mechanism for interop with non-Guice clients + Jenkins.getInstance().lookup.set(Injector.class,new ProxyInjector() { + protected Injector resolve() { + return getContainer(); + } + }); } @Override @@ -207,7 +215,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { * a child container to house newly discovered components. This field points to the * youngest such container. */ - private Injector container; + private volatile Injector container; /** * Sezpoz index we are currently using in {@link #container} (and its ancestors.) @@ -242,6 +250,10 @@ public abstract class ExtensionFinder implements ExtensionPoint { } } + public Injector getContainer() { + return container; + } + /** * The basic idea is: * diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index 8c0e9f332c..2b05a8202e 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -282,8 +282,6 @@ public abstract class PluginManager extends AbstractModelObject { Jenkins.getInstance().lookup.set(PluginInstanceStore.class,new PluginInstanceStore()); TaskGraphBuilder g = new TaskGraphBuilder(); - Jenkins.getInstance().lookup.set(Injector.class,Guice.createInjector()); - // schedule execution of loading plugins for (final PluginWrapper p : activePlugins.toArray(new PluginWrapper[activePlugins.size()])) { g.followedBy().notFatal().attains(PLUGINS_PREPARED).add("Loading plugin " + p.getShortName(), new Executable() { diff --git a/core/src/main/java/jenkins/ProxyInjector.java b/core/src/main/java/jenkins/ProxyInjector.java new file mode 100644 index 0000000000..abf66da06a --- /dev/null +++ b/core/src/main/java/jenkins/ProxyInjector.java @@ -0,0 +1,120 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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 jenkins; + +import com.google.inject.Binding; +import com.google.inject.Injector; +import com.google.inject.Key; +import com.google.inject.MembersInjector; +import com.google.inject.Module; +import com.google.inject.Provider; +import com.google.inject.Scope; +import com.google.inject.TypeLiteral; +import com.google.inject.spi.TypeConverterBinding; + +import java.lang.annotation.Annotation; +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + * {@link Injector} that delegates to another one. + * + * @author Kohsuke Kawaguchi + */ +public abstract class ProxyInjector implements Injector { + protected abstract Injector resolve(); + + public void injectMembers(Object instance) { + resolve().injectMembers(instance); + } + + public MembersInjector getMembersInjector(TypeLiteral typeLiteral) { + return resolve().getMembersInjector(typeLiteral); + } + + public MembersInjector getMembersInjector(Class type) { + return resolve().getMembersInjector(type); + } + + public Map, Binding> getBindings() { + return resolve().getBindings(); + } + + public Map, Binding> getAllBindings() { + return resolve().getAllBindings(); + } + + public Binding getBinding(Key key) { + return resolve().getBinding(key); + } + + public Binding getBinding(Class type) { + return resolve().getBinding(type); + } + + public Binding getExistingBinding(Key key) { + return resolve().getExistingBinding(key); + } + + public List> findBindingsByType(TypeLiteral type) { + return resolve().findBindingsByType(type); + } + + public Provider getProvider(Key key) { + return resolve().getProvider(key); + } + + public Provider getProvider(Class type) { + return resolve().getProvider(type); + } + + public T getInstance(Key key) { + return resolve().getInstance(key); + } + + public T getInstance(Class type) { + return resolve().getInstance(type); + } + + public Injector getParent() { + return resolve().getParent(); + } + + public Injector createChildInjector(Iterable modules) { + return resolve().createChildInjector(modules); + } + + public Injector createChildInjector(Module... modules) { + return resolve().createChildInjector(modules); + } + + public Map, Scope> getScopeBindings() { + return resolve().getScopeBindings(); + } + + public Set getTypeConverterBindings() { + return resolve().getTypeConverterBindings(); + } +} -- GitLab From e78b8a2650dd83f483781d38a6d52376925d43c0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 17:30:48 -0800 Subject: [PATCH 003/158] ExtensionList and its subtypes need to be able to pick up delta components that are discovered and mix them with what it already knows --- .../java/hudson/DescriptorExtensionList.java | 13 +++++++++- core/src/main/java/hudson/ExtensionList.java | 25 +++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/DescriptorExtensionList.java b/core/src/main/java/hudson/DescriptorExtensionList.java index 1a4b3e0e45..0778c46289 100644 --- a/core/src/main/java/hudson/DescriptorExtensionList.java +++ b/core/src/main/java/hudson/DescriptorExtensionList.java @@ -26,6 +26,7 @@ package hudson; import hudson.model.Descriptor; import hudson.model.Describable; import hudson.model.Hudson; +import jenkins.ExtensionComponentSet; import jenkins.model.Jenkins; import hudson.model.ViewDescriptor; import hudson.model.Descriptor.FormException; @@ -36,6 +37,7 @@ import hudson.slaves.NodeDescriptor; import hudson.tasks.Publisher; import hudson.tasks.Publisher.DescriptorExtensionListImpl; +import java.util.Collection; import java.util.List; import java.util.ArrayList; import java.util.Iterator; @@ -177,8 +179,17 @@ public class DescriptorExtensionList, D extends Descrip */ @Override protected List> load() { + return _load(jenkins.getExtensionList(Descriptor.class).getComponents()); + } + + @Override + protected Collection> load(ExtensionComponentSet delta) { + return _load(delta.find(Descriptor.class)); + } + + private List> _load(Iterable> set) { List> r = new ArrayList>(); - for( ExtensionComponent c : hudson.getExtensionList(Descriptor.class).getComponents() ) { + for( ExtensionComponent c : set ) { Descriptor d = c.getInstance(); try { if(d.getT()==describableType) diff --git a/core/src/main/java/hudson/ExtensionList.java b/core/src/main/java/hudson/ExtensionList.java index c168789eba..393a532e72 100644 --- a/core/src/main/java/hudson/ExtensionList.java +++ b/core/src/main/java/hudson/ExtensionList.java @@ -23,8 +23,10 @@ */ package hudson; +import com.google.common.collect.Lists; import hudson.init.InitMilestone; import hudson.model.Hudson; +import jenkins.ExtensionComponentSet; import jenkins.model.Jenkins; import hudson.util.AdaptedIterator; import hudson.util.DescriptorList; @@ -241,6 +243,21 @@ public class ExtensionList extends AbstractList { return jenkins.lookup.setIfNull(Lock.class,new Lock()); } + /** + * Used during {@link Jenkins#refreshExtensions()} to add new components into existing {@link ExtensionList}s. + * Do not call from anywhere else. + */ + public void refresh(ExtensionComponentSet delta) { + synchronized (getLoadLock()) { + if (extensions==null) + return; // not yet loaded. when we load it, we'll load everything visible by then, so no work needed + + List> l = Lists.newArrayList(extensions); + l.addAll(load(delta)); + extensions = sort(l); + } + } + /** * Loading an {@link ExtensionList} can result in a nested loading of another {@link ExtensionList}. * What that means is that we need a single lock that spans across all the {@link ExtensionList}s, @@ -258,6 +275,14 @@ public class ExtensionList extends AbstractList { return jenkins.getPluginManager().getPluginStrategy().findComponents(extensionType, hudson); } + /** + * Picks up extensions that we care from the given list. + */ + protected Collection> load(ExtensionComponentSet delta) { + return delta.find(extensionType); + } + + /** * If the {@link ExtensionList} implementation requires sorting extensions, * override this method to do so. -- GitLab From 64f2b3d3619c193aa5e23c7704c3cb968e847e74 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 17:31:08 -0800 Subject: [PATCH 004/158] top-level method to drive the whole refresh op and put the pieces togetherr --- core/src/main/java/jenkins/model/Jenkins.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index d36781dda0..b6e3851d4c 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -25,7 +25,9 @@ */ package jenkins.model; +import com.google.common.collect.Lists; import com.google.inject.Injector; +import hudson.ExtensionFinder; import hudson.model.Messages; import hudson.model.Node; import hudson.model.AbstractCIBase; @@ -184,6 +186,8 @@ import hudson.views.DefaultViewsTabBar; import hudson.views.MyViewsTabBar; import hudson.views.ViewsTabBar; import hudson.widgets.Widget; +import jenkins.ExtensionComponentSet; +import jenkins.ExtensionRefreshException; import net.sf.json.JSONObject; import org.acegisecurity.AccessDeniedException; import org.acegisecurity.AcegiSecurityException; @@ -1985,6 +1989,30 @@ public class Jenkins extends AbstractCIBase implements ModifiableItemGroup finders = getExtensionList(ExtensionFinder.class); + for (ExtensionFinder ef : finders) { + if (!ef.isRefreshable()) + throw new ExtensionRefreshException(ef+" doesn't support refresh"); + } + + List fragments = Lists.newArrayList(); + for (ExtensionFinder ef : finders) { + fragments.add(ef.refresh()); + } + ExtensionComponentSet delta = ExtensionComponentSet.union(fragments); + + for (ExtensionList el : extensionLists.values()) { + el.refresh(delta); + } + for (ExtensionList el : descriptorLists.values()) { + el.refresh(delta); + } + } + /** * Returns the root {@link ACL}. * -- GitLab From 94faaf3f56c12235e0e8df2db2fad6eae75b8f12 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 18:17:57 -0800 Subject: [PATCH 005/158] adding a method to experiment with the dynamic loading of a plugin --- core/src/main/java/hudson/PluginManager.java | 50 +++++++--- .../main/java/jenkins/InitReactorRunner.java | 96 +++++++++++++++++++ core/src/main/java/jenkins/model/Jenkins.java | 54 ++--------- 3 files changed, 142 insertions(+), 58 deletions(-) create mode 100644 core/src/main/java/jenkins/InitReactorRunner.java diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index 2b05a8202e..3bb638e35f 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -23,19 +23,12 @@ */ package hudson; -import static hudson.init.InitMilestone.PLUGINS_PREPARED; -import static hudson.init.InitMilestone.PLUGINS_STARTED; -import static hudson.init.InitMilestone.PLUGINS_LISTED; - -import com.google.inject.Guice; -import com.google.inject.Injector; import hudson.PluginWrapper.Dependency; +import hudson.init.InitMilestone; import hudson.init.InitStrategy; import hudson.init.InitializerFinder; import hudson.model.AbstractModelObject; import hudson.model.Failure; -import jenkins.ClassLoaderReflectionToolkit; -import jenkins.model.Jenkins; import hudson.model.UpdateCenter; import hudson.model.UpdateSite; import hudson.util.CyclicGraphDetector; @@ -43,6 +36,9 @@ import hudson.util.CyclicGraphDetector.CycleDetectedException; import hudson.util.FormValidation; import hudson.util.PersistedList; import hudson.util.Service; +import jenkins.ClassLoaderReflectionToolkit; +import jenkins.InitReactorRunner; +import jenkins.model.Jenkins; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; @@ -66,25 +62,26 @@ import java.io.File; import java.io.IOException; import java.lang.ref.WeakReference; import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Enumeration; +import java.util.HashMap; import java.util.HashSet; import java.util.Hashtable; import java.util.List; import java.util.ListIterator; -import java.util.Set; import java.util.Map; -import java.util.HashMap; +import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.CopyOnWriteArrayList; import java.util.logging.Level; import java.util.logging.Logger; +import static hudson.init.InitMilestone.*; + /** * Manages {@link PluginWrapper}s. * @@ -329,6 +326,37 @@ public abstract class PluginManager extends AbstractModelObject { }}); } + /** + * TODO: revisit where/how to expose this. This is an experiment. + */ + public void dynamicLoad(File arc) throws Exception { + PluginWrapper p = strategy.createPluginWrapper(arc); + if (getPlugin(p.getShortName())!=null) + throw new IllegalArgumentException("Dynamic reloading isn't possible"); + + // TODO: check cyclic dependency + + activePlugins.add(p); + + try { + p.resolvePluginDependencies(); + strategy.load(p); + + p.getPlugin().postInitialize(); + } catch (Exception e) { + failedPlugins.add(new FailedPlugin(p.getShortName(), e)); + activePlugins.remove(p); + plugins.remove(p); + throw e; + } + + // run initializers + // TODO: need to ignore base types + Reactor r = new Reactor(InitMilestone.ordering()); + r.addAll(new InitializerFinder(p.classLoader).discoverTasks(r)); + new InitReactorRunner().run(r); + } + /** * If the war file has any "/WEB-INF/plugins/*.hpi", extract them into the plugin directory. * diff --git a/core/src/main/java/jenkins/InitReactorRunner.java b/core/src/main/java/jenkins/InitReactorRunner.java new file mode 100644 index 0000000000..e412df10e9 --- /dev/null +++ b/core/src/main/java/jenkins/InitReactorRunner.java @@ -0,0 +1,96 @@ +package jenkins; + +import hudson.init.InitMilestone; +import hudson.init.InitReactorListener; +import hudson.util.DaemonThreadFactory; +import hudson.util.Service; +import jenkins.model.Configuration; +import jenkins.model.Jenkins; +import org.jvnet.hudson.reactor.Milestone; +import org.jvnet.hudson.reactor.Reactor; +import org.jvnet.hudson.reactor.ReactorException; +import org.jvnet.hudson.reactor.ReactorListener; +import org.jvnet.hudson.reactor.Task; + +import java.io.IOException; +import java.util.List; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import java.util.logging.Level; +import java.util.logging.Logger; + +import static java.util.logging.Level.SEVERE; + +/** + * Executes the {@link Reactor} for the purpose of bootup. + * + * @author Kohsuke Kawaguchi + */ +public class InitReactorRunner { + public void run(Reactor reactor) throws InterruptedException, ReactorException, IOException { + reactor.addAll(InitMilestone.ordering().discoverTasks(reactor)); + + ExecutorService es; + if (Jenkins.PARALLEL_LOAD) + es = new ThreadPoolExecutor( + TWICE_CPU_NUM, TWICE_CPU_NUM, 5L, TimeUnit.SECONDS, new LinkedBlockingQueue(), new DaemonThreadFactory()); + else + es = Executors.newSingleThreadExecutor(new DaemonThreadFactory()); + try { + reactor.execute(es,buildReactorListener()); + } finally { + es.shutdownNow(); // upon a successful return the executor queue should be empty. Upon an exception, we want to cancel all pending tasks + } + + } + + /** + * Aggregates all the listeners into one and returns it. + * + *

+ * At this point plugins are not loaded yet, so we fall back to the META-INF/services look up to discover implementations. + * As such there's no way for plugins to participate into this process. + */ + private ReactorListener buildReactorListener() throws IOException { + List r = (List) Service.loadInstances(Thread.currentThread().getContextClassLoader(), InitReactorListener.class); + r.add(new ReactorListener() { + final Level level = Level.parse( Configuration.getStringConfigParameter("initLogLevel", "FINE") ); + public void onTaskStarted(Task t) { + LOGGER.log(level,"Started "+t.getDisplayName()); + } + + public void onTaskCompleted(Task t) { + LOGGER.log(level,"Completed "+t.getDisplayName()); + } + + public void onTaskFailed(Task t, Throwable err, boolean fatal) { + LOGGER.log(SEVERE, "Failed "+t.getDisplayName(),err); + } + + public void onAttained(Milestone milestone) { + Level lv = level; + String s = "Attained "+milestone.toString(); + if (milestone instanceof InitMilestone) { + lv = Level.INFO; // noteworthy milestones --- at least while we debug problems further + onInitMilestoneAttained((InitMilestone) milestone); + s = milestone.toString(); + } + LOGGER.log(lv,s); + } + }); + return new ReactorListener.Aggregator(r); + } + + /** + * Called when the init milestone is attained. + */ + protected void onInitMilestoneAttained(InitMilestone milestone) { + } + + private static final int TWICE_CPU_NUM = Runtime.getRuntime().availableProcessors() * 2; + + private static final Logger LOGGER = Logger.getLogger(InitReactorRunner.class.getName()); +} diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index b6e3851d4c..3b1f85bec5 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -188,6 +188,7 @@ import hudson.views.ViewsTabBar; import hudson.widgets.Widget; import jenkins.ExtensionComponentSet; import jenkins.ExtensionRefreshException; +import jenkins.InitReactorRunner; import net.sf.json.JSONObject; import org.acegisecurity.AccessDeniedException; import org.acegisecurity.AcegiSecurityException; @@ -810,56 +811,15 @@ public class Jenkins extends AbstractCIBase implements ModifiableItemGroup(), new DaemonThreadFactory()); - else - es = Executors.newSingleThreadExecutor(new DaemonThreadFactory()); - try { - reactor.execute(es,buildReactorListener()); - } finally { - es.shutdownNow(); // upon a successful return the executor queue should be empty. Upon an exception, we want to cancel all pending tasks - } - } - - /** - * Aggregates all the listeners into one and returns it. - * - *

- * At this point plugins are not loaded yet, so we fall back to the META-INF/services look up to discover implementations. - * As such there's no way for plugins to participate into this process. - */ - private ReactorListener buildReactorListener() throws IOException { - List r = (List) Service.loadInstances(Thread.currentThread().getContextClassLoader(), InitReactorListener.class); - r.add(new ReactorListener() { - final Level level = Level.parse( Configuration.getStringConfigParameter("initLogLevel", "FINE") ); - public void onTaskStarted(Task t) { - LOGGER.log(level,"Started "+t.getDisplayName()); - } - - public void onTaskCompleted(Task t) { - LOGGER.log(level,"Completed "+t.getDisplayName()); - } - - public void onTaskFailed(Task t, Throwable err, boolean fatal) { - LOGGER.log(SEVERE, "Failed "+t.getDisplayName(),err); - } - - public void onAttained(Milestone milestone) { - Level lv = level; - String s = "Attained "+milestone.toString(); - if (milestone instanceof InitMilestone) { - lv = Level.INFO; // noteworthy milestones --- at least while we debug problems further - initLevel = (InitMilestone)milestone; - s = initLevel.toString(); - } - LOGGER.log(lv,s); + new InitReactorRunner() { + @Override + protected void onInitMilestoneAttained(InitMilestone milestone) { + initLevel = milestone; } - }); - return new ReactorListener.Aggregator(r); + }.run(reactor); } + public TcpSlaveAgentListener getTcpSlaveAgentListener() { return tcpSlaveAgentListener; } -- GitLab From 216073a54ccf861f0be373605de90c6dcb9db509 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 19:12:02 -0800 Subject: [PATCH 006/158] Various bug fixes. - init task needs to be filtered down to only include those that are newly added. - newly added plugin needs to be a part of the 'plugins' field --- core/src/main/java/hudson/PluginManager.java | 15 +++++++++++---- .../main/java/hudson/init/InitializerFinder.java | 10 ++++++++-- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index 3bb638e35f..bf0fb42032 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -62,6 +62,7 @@ import java.io.File; import java.io.IOException; import java.lang.ref.WeakReference; import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; import java.net.URL; import java.util.ArrayList; import java.util.Collection; @@ -330,12 +331,13 @@ public abstract class PluginManager extends AbstractModelObject { * TODO: revisit where/how to expose this. This is an experiment. */ public void dynamicLoad(File arc) throws Exception { - PluginWrapper p = strategy.createPluginWrapper(arc); + final PluginWrapper p = strategy.createPluginWrapper(arc); if (getPlugin(p.getShortName())!=null) throw new IllegalArgumentException("Dynamic reloading isn't possible"); // TODO: check cyclic dependency + plugins.add(p); activePlugins.add(p); try { @@ -350,11 +352,16 @@ public abstract class PluginManager extends AbstractModelObject { throw e; } - // run initializers - // TODO: need to ignore base types + // run initializers in the added plugin Reactor r = new Reactor(InitMilestone.ordering()); - r.addAll(new InitializerFinder(p.classLoader).discoverTasks(r)); + r.addAll(new InitializerFinder(p.classLoader) { + @Override + protected boolean filter(Method e) { + return e.getDeclaringClass().getClassLoader()!=p.classLoader || super.filter(e); + } + }.discoverTasks(r)); new InitReactorRunner().run(r); + Jenkins.getInstance().refreshExtensions(); } /** diff --git a/core/src/main/java/hudson/init/InitializerFinder.java b/core/src/main/java/hudson/init/InitializerFinder.java index 61f9d39ff8..4fdd64a299 100644 --- a/core/src/main/java/hudson/init/InitializerFinder.java +++ b/core/src/main/java/hudson/init/InitializerFinder.java @@ -68,8 +68,7 @@ public class InitializerFinder extends TaskBuilder { public Collection discoverTasks(Reactor session) throws IOException { List result = new ArrayList(); for (Method e : Index.list(Initializer.class,cl,Method.class)) { - if (!discovered.add(e)) - continue; // already reported once + if (filter(e)) continue; // already reported once if (!Modifier.isStatic(e.getModifiers())) throw new IOException(e+" is not a static method"); @@ -82,6 +81,13 @@ public class InitializerFinder extends TaskBuilder { return result; } + /** + * Return true to ignore this method. + */ + protected boolean filter(Method e) { + return !discovered.add(e); + } + /** * Obtains the display name of the given initialization task */ -- GitLab From 0c54ef47eafe44d958141f36868e8093d13d37a8 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 20:13:28 -0800 Subject: [PATCH 007/158] This is the right phase to fill in all the descriptors --- core/src/main/java/hudson/ExtensionList.java | 9 ++++++--- core/src/main/java/hudson/PluginManager.java | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/hudson/ExtensionList.java b/core/src/main/java/hudson/ExtensionList.java index 393a532e72..1158971d09 100644 --- a/core/src/main/java/hudson/ExtensionList.java +++ b/core/src/main/java/hudson/ExtensionList.java @@ -252,9 +252,12 @@ public class ExtensionList extends AbstractList { if (extensions==null) return; // not yet loaded. when we load it, we'll load everything visible by then, so no work needed - List> l = Lists.newArrayList(extensions); - l.addAll(load(delta)); - extensions = sort(l); + Collection> found = load(delta); + if (!found.isEmpty()) { + List> l = Lists.newArrayList(extensions); + l.addAll(found); + extensions = sort(l); + } } } diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index bf0fb42032..2716ce2234 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -344,6 +344,8 @@ public abstract class PluginManager extends AbstractModelObject { p.resolvePluginDependencies(); strategy.load(p); + Jenkins.getInstance().refreshExtensions(); + p.getPlugin().postInitialize(); } catch (Exception e) { failedPlugins.add(new FailedPlugin(p.getShortName(), e)); @@ -361,7 +363,6 @@ public abstract class PluginManager extends AbstractModelObject { } }.discoverTasks(r)); new InitReactorRunner().run(r); - Jenkins.getInstance().refreshExtensions(); } /** -- GitLab From 6b7d75f16db0a888c942edf18528c1873c77e9ad Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 21:13:37 -0800 Subject: [PATCH 008/158] allow extensions to mark if it supports dynamic loading or not --- core/src/main/java/hudson/Extension.java | 18 ++++++++ core/src/main/java/jenkins/YesNoMaybe.java | 54 ++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 core/src/main/java/jenkins/YesNoMaybe.java diff --git a/core/src/main/java/hudson/Extension.java b/core/src/main/java/hudson/Extension.java index 66342a2b61..eb5a8d23f1 100644 --- a/core/src/main/java/hudson/Extension.java +++ b/core/src/main/java/hudson/Extension.java @@ -23,6 +23,7 @@ */ package hudson; +import jenkins.YesNoMaybe; import net.java.sezpoz.Indexable; import java.lang.annotation.Documented; @@ -31,6 +32,7 @@ import java.lang.annotation.Target; import static java.lang.annotation.ElementType.*; import static java.lang.annotation.RetentionPolicy.RUNTIME; +import static jenkins.YesNoMaybe.MAYBE; /** * Marks a field, a method, or a class for automatic discovery, so that Hudson can locate @@ -84,4 +86,20 @@ public @interface Extension { * @since 1.358 */ boolean optional() default false; + + /** + * Marks whether this extension works with dynamic loading of a plugin. + * + *

+ * "Yes" indicates an explicit sign-off from the developer indicating this component supports that. + * Similarly, "No" indicates that this extension is known not to support it, which forces Jenkins + * not to offer dynamic loading as an option. + * + *

+ * The "MayBe" value indicates that there's no such explicit sign-off. So the dynamic loading may or may not + * work. + * + * @since 1.DynamicExtensionFinder + */ + YesNoMaybe dynamicLoadable() default MAYBE; } diff --git a/core/src/main/java/jenkins/YesNoMaybe.java b/core/src/main/java/jenkins/YesNoMaybe.java new file mode 100644 index 0000000000..929c538c05 --- /dev/null +++ b/core/src/main/java/jenkins/YesNoMaybe.java @@ -0,0 +1,54 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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 jenkins; + +/** + * Enum that represents {@link Boolean} state (including null for the absence.) + * + *

+ * This is for situations where we can't use {@link Boolean}, such as annotation elements. + * + * @author Kohsuke Kawaguchi + */ +public enum YesNoMaybe { + YES, + NO, + MAYBE; + + public static Boolean toBoolean(YesNoMaybe v) { + if (v==null) return null; + return v.toBool(); + } + + public Boolean toBool() { + switch (this) { + case YES: + return true; + case NO: + return false; + default: + return null; + } + } +} -- GitLab From da0f526a6eb637bcc0e55e809f879b7915878cad Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 21:18:49 -0800 Subject: [PATCH 009/158] doc improvement about the semantics of this value --- core/src/main/java/hudson/Extension.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/src/main/java/hudson/Extension.java b/core/src/main/java/hudson/Extension.java index eb5a8d23f1..fe7872fb31 100644 --- a/core/src/main/java/hudson/Extension.java +++ b/core/src/main/java/hudson/Extension.java @@ -99,6 +99,12 @@ public @interface Extension { * The "MayBe" value indicates that there's no such explicit sign-off. So the dynamic loading may or may not * work. * + *

+ * If your plugin contains any extension that has dynamic loadability set to NO, then Jenkins + * will prompt the user to restart Jenkins to have the plugin take effect. If every component + * is marked as YES, then Jenkins will simply dynamic load the plugin without asking the user. + * Otherwise, Jenkins will ask the user if he wants to restart, or go ahead and dynamically deploy. + * * @since 1.DynamicExtensionFinder */ YesNoMaybe dynamicLoadable() default MAYBE; -- GitLab From a9be16e25ef6b1e4de66dab84689dfb1ea3d3e20 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 21:18:55 -0800 Subject: [PATCH 010/158] Cosmetic change --- core/src/main/java/hudson/ExtensionFinder.java | 12 ++++++------ .../java/hudson/cli/declarative/CLIRegisterer.java | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index 9ac27f9892..b91b5c01f8 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -108,7 +108,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { *

* The behaviour is undefined if {@link #isRefreshable()} is returning false. * - * @since 1.DynamicExtensionFinder. + * @since 1.DynamicExtensionFinder * @see #isRefreshable() * @return never null */ @@ -130,14 +130,14 @@ public abstract class ExtensionFinder implements ExtensionPoint { * The type of the extension points. This is not bound to {@link ExtensionPoint} because * of {@link Descriptor}, which by itself doesn't implement {@link ExtensionPoint} for * a historical reason. - * @param hudson - * Hudson whose behalf this extension finder is performing lookup. + * @param jenkins + * Jenkins whose behalf this extension finder is performing lookup. * @return * Can be empty but never null. * @since 1.356 * Older implementations provide {@link #findExtensions(Class,Hudson)} */ - public abstract Collection> find(Class type, Hudson hudson); + public abstract Collection> find(Class type, Hudson jenkins); /** * A pointless function to work around what appears to be a HotSpot problem. See JENKINS-5756 and bug 6933067 @@ -320,7 +320,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { return null; } - public Collection> find(Class type, Hudson hudson) { + public Collection> find(Class type, Hudson jenkins) { // the find method contract requires us to traverse all known components List> result = new ArrayList>(); for (Injector i=container; i!=null; i=i.getParent()) { @@ -532,7 +532,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { return delta; } - public Collection> find(Class type, Hudson hudson) { + public Collection> find(Class type, Hudson jenkins) { return _find(type,getIndices()); } diff --git a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java index fde6c095eb..c7908ea199 100644 --- a/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java +++ b/core/src/main/java/hudson/cli/declarative/CLIRegisterer.java @@ -72,9 +72,9 @@ public class CLIRegisterer extends ExtensionFinder { return ExtensionComponentSet.EMPTY; } - public Collection> find(Class type, Hudson hudson) { + public Collection> find(Class type, Hudson jenkins) { if (type==CLICommand.class) - return (List)discover(hudson); + return (List)discover(jenkins); else return Collections.emptyList(); } -- GitLab From 40806bb2903465d968003ed5bd00ed5aa27ce393 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 22:05:55 -0800 Subject: [PATCH 011/158] Cyclic dependency check not needed. --- core/src/main/java/hudson/PluginManager.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index 2716ce2234..cc49662890 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -335,7 +335,8 @@ public abstract class PluginManager extends AbstractModelObject { if (getPlugin(p.getShortName())!=null) throw new IllegalArgumentException("Dynamic reloading isn't possible"); - // TODO: check cyclic dependency + // there's no need to do cyclic dependency check, because we are deploying one at a time, + // so existing plugins can't be depending on this newly deployed one. plugins.add(p); activePlugins.add(p); -- GitLab From f4474cc86567dd25cbf41faa50b71ccb0d7d788d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 23:09:34 -0800 Subject: [PATCH 012/158] layout improvement --- .../resources/hudson/model/UpdateCenter/DownloadJob/row.jelly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/row.jelly b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/row.jelly index bee461c1fd..1ea067b9f0 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/row.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/row.jelly @@ -27,7 +27,7 @@ THE SOFTWARE. ${it.name} - + -- GitLab From c6d81ef2e26e55dd3341a6eacd113a1f58023f73 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 23:09:47 -0800 Subject: [PATCH 013/158] hooking up the dynamic loading logic into the UI --- core/src/main/java/hudson/PluginManager.java | 32 +++++++++--- core/src/main/java/hudson/PluginWrapper.java | 10 ++++ .../java/hudson/cli/InstallPluginCommand.java | 23 +++++++-- .../main/java/hudson/model/UpdateCenter.java | 51 ++++++++++++++++++- .../main/java/hudson/model/UpdateSite.java | 30 ++++++++--- .../jenkins/RestartRequiredException.java | 44 ++++++++++++++++ .../main/resources/hudson/Messages.properties | 2 + .../hudson/PluginManager/table.jelly | 4 +- .../SuccessButRequiresRestart/status.groovy | 27 ++++++++++ 9 files changed, 199 insertions(+), 24 deletions(-) create mode 100644 core/src/main/java/jenkins/RestartRequiredException.java create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/SuccessButRequiresRestart/status.groovy diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index cc49662890..372dc3969f 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -34,10 +34,13 @@ import hudson.model.UpdateSite; import hudson.util.CyclicGraphDetector; import hudson.util.CyclicGraphDetector.CycleDetectedException; import hudson.util.FormValidation; +import hudson.util.IOException2; import hudson.util.PersistedList; import hudson.util.Service; import jenkins.ClassLoaderReflectionToolkit; import jenkins.InitReactorRunner; +import jenkins.RestartRequiredException; +import jenkins.YesNoMaybe; import jenkins.model.Jenkins; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.disk.DiskFileItemFactory; @@ -47,6 +50,7 @@ import org.apache.commons.io.FilenameUtils; import org.apache.commons.logging.LogFactory; import org.jvnet.hudson.reactor.Executable; import org.jvnet.hudson.reactor.Reactor; +import org.jvnet.hudson.reactor.ReactorException; import org.jvnet.hudson.reactor.TaskBuilder; import org.jvnet.hudson.reactor.TaskGraphBuilder; import org.kohsuke.stapler.HttpRedirect; @@ -124,7 +128,7 @@ public abstract class PluginManager extends AbstractModelObject { /** * Once plugin is uploaded, this flag becomes true. - * This is used to report a message that Hudson needs to be restarted + * This is used to report a message that Jenkins needs to be restarted * for new plugins to take effect. */ public volatile boolean pluginUploaded = false; @@ -330,10 +334,15 @@ public abstract class PluginManager extends AbstractModelObject { /** * TODO: revisit where/how to expose this. This is an experiment. */ - public void dynamicLoad(File arc) throws Exception { + public void dynamicLoad(File arc) throws IOException, InterruptedException, RestartRequiredException { + LOGGER.info("Attempting to dynamic load "+arc); final PluginWrapper p = strategy.createPluginWrapper(arc); - if (getPlugin(p.getShortName())!=null) - throw new IllegalArgumentException("Dynamic reloading isn't possible"); + String sn = p.getShortName(); + if (getPlugin(sn)!=null) + throw new RestartRequiredException(Messages._PluginManager_PluginIsAlreadyInstalled_RestartRequired(sn)); + + if (p.supportsDynamicLoad()== YesNoMaybe.NO) + throw new RestartRequiredException(Messages._PluginManager_PluginDoesntSupportDynamicLoad_RestartRequired(sn)); // there's no need to do cyclic dependency check, because we are deploying one at a time, // so existing plugins can't be depending on this newly deployed one. @@ -349,10 +358,10 @@ public abstract class PluginManager extends AbstractModelObject { p.getPlugin().postInitialize(); } catch (Exception e) { - failedPlugins.add(new FailedPlugin(p.getShortName(), e)); + failedPlugins.add(new FailedPlugin(sn, e)); activePlugins.remove(p); plugins.remove(p); - throw e; + throw new IOException2("Failed to install "+ sn +" plugin",e); } // run initializers in the added plugin @@ -363,7 +372,12 @@ public abstract class PluginManager extends AbstractModelObject { return e.getDeclaringClass().getClassLoader()!=p.classLoader || super.filter(e); } }.discoverTasks(r)); - new InitReactorRunner().run(r); + try { + new InitReactorRunner().run(r); + } catch (ReactorException e) { + throw new IOException2("Failed to initialize "+ sn +" plugin",e); + } + LOGGER.info("Plugin " + sn + " dynamically installed"); } /** @@ -559,6 +573,8 @@ public abstract class PluginManager extends AbstractModelObject { * Performs the installation of the plugins. */ public void doInstall(StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException { + boolean dynamicLoad = req.getParameter("dynamicLoad")!=null; + Enumeration en = req.getParameterNames(); while (en.hasMoreElements()) { String n = en.nextElement(); @@ -569,7 +585,7 @@ public abstract class PluginManager extends AbstractModelObject { UpdateSite.Plugin p = Jenkins.getInstance().getUpdateCenter().getById(pluginInfo[1]).getPlugin(pluginInfo[0]); if(p==null) throw new Failure("No such plugin: "+n); - p.deploy(); + p.deploy(dynamicLoad); } } } diff --git a/core/src/main/java/hudson/PluginWrapper.java b/core/src/main/java/hudson/PluginWrapper.java index 9db9bbeb5d..16f158bc89 100644 --- a/core/src/main/java/hudson/PluginWrapper.java +++ b/core/src/main/java/hudson/PluginWrapper.java @@ -25,6 +25,7 @@ package hudson; import hudson.PluginManager.PluginInstanceStore; +import jenkins.YesNoMaybe; import jenkins.model.Jenkins; import hudson.model.UpdateCenter; import hudson.model.UpdateSite; @@ -290,6 +291,15 @@ public class PluginWrapper implements Comparable { return shortName; } + /** + * Does this plugin supports dynamic loading? + */ + public YesNoMaybe supportsDynamicLoad() { + String v = manifest.getMainAttributes().getValue("Support-Dynamic-Loading"); + if (v==null) return YesNoMaybe.MAYBE; + return Boolean.parseBoolean(v) ? YesNoMaybe.YES : YesNoMaybe.NO; + } + /** * Returns the version number of this plugin */ diff --git a/core/src/main/java/hudson/cli/InstallPluginCommand.java b/core/src/main/java/hudson/cli/InstallPluginCommand.java index a71b7dc243..cfa00ef570 100644 --- a/core/src/main/java/hudson/cli/InstallPluginCommand.java +++ b/core/src/main/java/hudson/cli/InstallPluginCommand.java @@ -25,6 +25,7 @@ package hudson.cli; import hudson.Extension; import hudson.FilePath; +import hudson.PluginManager; import hudson.util.IOException2; import jenkins.model.Jenkins; import hudson.model.UpdateSite; @@ -65,9 +66,13 @@ public class InstallPluginCommand extends CLICommand { @Option(name="-restart",usage="Restart Jenkins upon successful installation") public boolean restart; + @Option(name="-deploy",usage="Deploy plugins right away without postponing them until the reboot.") + public boolean dynamicLoad; + protected int run() throws Exception { Jenkins h = Jenkins.getInstance(); h.checkPermission(Jenkins.ADMINISTER); + PluginManager pm = h.getPluginManager(); for (String source : sources) { // is this a file? @@ -76,7 +81,9 @@ public class InstallPluginCommand extends CLICommand { stdout.println(Messages.InstallPluginCommand_InstallingPluginFromLocalFile(f)); if (name==null) name = f.getBaseName(); - f.copyTo(getTargetFile()); + f.copyTo(getTargetFilePath()); + if (dynamicLoad) + pm.dynamicLoad(getTargetFile()); continue; } @@ -91,7 +98,9 @@ public class InstallPluginCommand extends CLICommand { int idx = name.lastIndexOf('.'); if (idx>0) name = name.substring(0,idx); } - getTargetFile().copyFrom(u); + getTargetFilePath().copyFrom(u); + if (dynamicLoad) + pm.dynamicLoad(getTargetFile()); continue; } catch (MalformedURLException e) { // not an URL @@ -101,7 +110,7 @@ public class InstallPluginCommand extends CLICommand { UpdateSite.Plugin p = h.getUpdateCenter().getPlugin(source); if (p!=null) { stdout.println(Messages.InstallPluginCommand_InstallingFromUpdateCenter(source)); - Throwable e = p.deploy().get().getError(); + Throwable e = p.deploy(dynamicLoad).get().getError(); if (e!=null) throw new IOException2("Failed to install plugin "+source,e); continue; @@ -134,7 +143,11 @@ public class InstallPluginCommand extends CLICommand { return 0; // all success } - private FilePath getTargetFile() { - return new FilePath(new File(Jenkins.getInstance().getPluginManager().rootDir,name+".hpi")); + private FilePath getTargetFilePath() { + return new FilePath(getTargetFile()); + } + + private File getTargetFile() { + return new File(Jenkins.getInstance().getPluginManager().rootDir,name+".hpi"); } } diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index 21a8974b91..2aa42a635b 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -36,6 +36,7 @@ import static hudson.init.InitMilestone.PLUGINS_STARTED; import hudson.init.Initializer; import hudson.lifecycle.Lifecycle; import hudson.lifecycle.RestartNotSupportedException; +import hudson.model.UpdateCenter.DownloadJob; import hudson.model.UpdateSite.Data; import hudson.model.UpdateSite.Plugin; import hudson.model.listeners.SaveableListener; @@ -45,10 +46,12 @@ import hudson.util.HttpResponses; import hudson.util.IOException2; import hudson.util.PersistedList; import hudson.util.XStream2; +import jenkins.RestartRequiredException; import jenkins.model.Jenkins; import org.acegisecurity.Authentication; import org.apache.commons.io.input.CountingInputStream; import org.apache.commons.io.output.NullOutputStream; +import org.jvnet.localizer.Localizable; import org.kohsuke.stapler.HttpResponse; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; @@ -951,6 +954,10 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { LOGGER.info("Installation successful: "+getName()); status = new Success(); onSuccess(); + } catch (RestartRequiredException e) { + status = new SuccessButRequiresRestart(e.message); + LOGGER.log(Level.INFO, "Installation successful but restart required: "+getName(), e); + onSuccess(); } catch (Throwable e) { LOGGER.log(Level.SEVERE, "Failed to install "+getName(),e); status = new Failure(e); @@ -958,7 +965,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } } - protected void _run() throws IOException { + protected void _run() throws IOException, RestartRequiredException { URL src = getURL(); config.preValidate(this, src); @@ -1011,6 +1018,23 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } } + /** + * Indicates that the installation was successful but a restart is needed. + * + * @see + */ + public class SuccessButRequiresRestart extends InstallationStatus { + private final Localizable message; + + public SuccessButRequiresRestart(Localizable message) { + this.message = message; + } + + public String getMessage() { + return message.toString(); + } + } + /** * Indicates that the plugin was successfully installed. */ @@ -1052,9 +1076,22 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { private final PluginManager pm = Jenkins.getInstance().getPluginManager(); + /** + * True to load the plugin into this Jenkins, false to wait until restart. + */ + private final boolean dynamicLoad; + + /** + * @deprecated as of 1.DynamicExtensionFinder + */ public InstallationJob(Plugin plugin, UpdateSite site, Authentication auth) { + this(plugin,site,auth,false); + } + + public InstallationJob(Plugin plugin, UpdateSite site, Authentication auth, boolean dynamicLoad) { super(site, auth); this.plugin = plugin; + this.dynamicLoad = dynamicLoad; } protected URL getURL() throws MalformedURLException { @@ -1071,7 +1108,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } @Override - public void _run() throws IOException { + public void _run() throws IOException, RestartRequiredException { super._run(); // if this is a bundled plugin, make sure it won't get overwritten @@ -1083,6 +1120,16 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } finally { SecurityContextHolder.clearContext(); } + + if (dynamicLoad) { + try { + pm.dynamicLoad(getDestination()); + } catch (RestartRequiredException e) { + throw e; // pass through + } catch (Exception e) { + throw new IOException2("Failed to dynamically deploy this plugin",e); + } + } } protected void onSuccess() { diff --git a/core/src/main/java/hudson/model/UpdateSite.java b/core/src/main/java/hudson/model/UpdateSite.java index 8389fcbffb..74bccfb147 100644 --- a/core/src/main/java/hudson/model/UpdateSite.java +++ b/core/src/main/java/hudson/model/UpdateSite.java @@ -45,6 +45,7 @@ import org.jvnet.hudson.crypto.CertificateUtil; import org.jvnet.hudson.crypto.SignatureOutputStream; import org.kohsuke.stapler.DataBoundConstructor; import org.kohsuke.stapler.HttpResponse; +import org.kohsuke.stapler.QueryParameter; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; @@ -689,21 +690,29 @@ public class UpdateSite { deploy(); } + public Future deploy() { + return deploy(false); + } + /** * Schedules the installation of this plugin. * *

* This is mainly intended to be called from the UI. The actual installation work happens * asynchronously in another thread. + * + * @param dynamicLoad + * If true, the plugin will be dynamically loaded into this Jenkins. If false, + * the plugin will only take effect after the reboot. */ - public Future deploy() { + public Future deploy(boolean dynamicLoad) { Jenkins.getInstance().checkPermission(Jenkins.ADMINISTER); UpdateCenter uc = Jenkins.getInstance().getUpdateCenter(); for (Plugin dep : getNeededDependencies()) { LOGGER.log(Level.WARNING, "Adding dependent install of " + dep.name + " for plugin " + name); - dep.deploy(); + dep.deploy(dynamicLoad); } - return uc.addJob(uc.new InstallationJob(this, UpdateSite.this, Jenkins.getAuthentication())); + return uc.addJob(uc.new InstallationJob(this, UpdateSite.this, Jenkins.getAuthentication(), dynamicLoad)); } /** @@ -717,17 +726,22 @@ public class UpdateSite { /** * Making the installation web bound. */ - public void doInstall(StaplerResponse rsp) throws IOException { - deploy(); - rsp.sendRedirect2("../.."); + public HttpResponse doInstall() throws IOException { + deploy(false); + return HttpResponses.redirectTo("../.."); + } + + public HttpResponse doInstallNow() throws IOException { + deploy(true); + return HttpResponses.redirectTo("../.."); } /** * Performs the downgrade of the plugin. */ - public void doDowngrade(StaplerResponse rsp) throws IOException { + public HttpResponse doDowngrade() throws IOException { deployBackup(); - rsp.sendRedirect2("../.."); + return HttpResponses.redirectTo("../.."); } } diff --git a/core/src/main/java/jenkins/RestartRequiredException.java b/core/src/main/java/jenkins/RestartRequiredException.java new file mode 100644 index 0000000000..2cadc2f20e --- /dev/null +++ b/core/src/main/java/jenkins/RestartRequiredException.java @@ -0,0 +1,44 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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 jenkins; + +import org.jvnet.localizer.Localizable; + +/** + * Indicates that the plugin cannot be deployed without a restart. + * + * @author Kohsuke Kawaguchi + */ +public class RestartRequiredException extends Exception { + public final Localizable message; + + public RestartRequiredException(Localizable message) { + this.message = message; + } + + public RestartRequiredException(Localizable message, Throwable cause) { + super(cause); + this.message = message; + } +} diff --git a/core/src/main/resources/hudson/Messages.properties b/core/src/main/resources/hudson/Messages.properties index fb82bc8266..0bb1216d96 100644 --- a/core/src/main/resources/hudson/Messages.properties +++ b/core/src/main/resources/hudson/Messages.properties @@ -35,6 +35,8 @@ FilePath.validateRelativePath.notDirectory=''{0}'' is not a directory FilePath.validateRelativePath.noSuchFile=No such file: ''{0}'' FilePath.validateRelativePath.noSuchDirectory=No such directory: ''{0}'' +PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired={0} plugin doesn''t support dynamic loading. Jenkins needs to be restarted for the update to take effect +PluginManager.PluginIsAlreadyInstalled.RestartRequired={0} plugin is already installed. Jenkins needs to be restarted for the update to take effect Util.millisecond={0} ms Util.second={0} sec Util.minute={0} min diff --git a/core/src/main/resources/hudson/PluginManager/table.jelly b/core/src/main/resources/hudson/PluginManager/table.jelly index 714ff283c9..a16746b0b6 100644 --- a/core/src/main/resources/hudson/PluginManager/table.jelly +++ b/core/src/main/resources/hudson/PluginManager/table.jelly @@ -137,7 +137,9 @@ THE SOFTWARE.

- + + +
diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/SuccessButRequiresRestart/status.groovy b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/SuccessButRequiresRestart/status.groovy new file mode 100644 index 0000000000..c331b5c3f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/SuccessButRequiresRestart/status.groovy @@ -0,0 +1,27 @@ +/* + * The MIT License + * + * Copyright (c) 2011, CloudBees, 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. + */ + +img(src:"${imagesURL}/24x24/yellow.png",height:24,width:24) +text(" "); +text(my.message) -- GitLab From 473681b2f6bc11cb60f66c06afce46f3b6cc80ef Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 15 Nov 2011 23:19:20 -0800 Subject: [PATCH 014/158] either you restart or you go back to the top page --- .../main/resources/hudson/model/UpdateCenter/body.jelly | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly index b3a41ac37c..a21eee030e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly @@ -36,9 +36,12 @@ THE SOFTWARE. -
+
-

+

+ Go back to the top page +

+

-- GitLab From 4951383fa7fac270f260ee55fe3a6f457906a82a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 06:46:06 -0800 Subject: [PATCH 015/158] opend this up to plugins --- core/src/main/java/hudson/model/Descriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java index ceecf483d7..3fb40e2b09 100644 --- a/core/src/main/java/hudson/model/Descriptor.java +++ b/core/src/main/java/hudson/model/Descriptor.java @@ -710,7 +710,7 @@ public abstract class Descriptor> implements Saveable { return getViewPage(clazz,pageName,pageName); } - private List getPossibleViewNames(String baseName) { + protected List getPossibleViewNames(String baseName) { List names = new ArrayList(); for (Facet f : WebApp.get(Jenkins.getInstance().servletContext).facets) { if (f instanceof JellyCompatibleFacet) { -- GitLab From 2af3b0d3db77de248f545cfccbd73a113eb77661 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 06:46:06 -0800 Subject: [PATCH 016/158] opened this up to plugins --- core/src/main/java/hudson/model/Descriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java index ceecf483d7..3fb40e2b09 100644 --- a/core/src/main/java/hudson/model/Descriptor.java +++ b/core/src/main/java/hudson/model/Descriptor.java @@ -710,7 +710,7 @@ public abstract class Descriptor> implements Saveable { return getViewPage(clazz,pageName,pageName); } - private List getPossibleViewNames(String baseName) { + protected List getPossibleViewNames(String baseName) { List names = new ArrayList(); for (Facet f : WebApp.get(Jenkins.getInstance().servletContext).facets) { if (f instanceof JellyCompatibleFacet) { -- GitLab From 7025cf3428731b73606487ef7509ba09388d063b Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Thu, 17 Nov 2011 13:09:31 +0100 Subject: [PATCH 017/158] There's no reason why ResuldTrend shouldn't be usable for Run, too --- .../main/java/hudson/model/ResultTrend.java | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/hudson/model/ResultTrend.java b/core/src/main/java/hudson/model/ResultTrend.java index 87f8a986df..7361b9c15f 100644 --- a/core/src/main/java/hudson/model/ResultTrend.java +++ b/core/src/main/java/hudson/model/ResultTrend.java @@ -100,7 +100,20 @@ public enum ResultTrend { * @return the result trend */ public static ResultTrend getResultTrend(AbstractBuild build) { - Result result = build.getResult(); + return getResultTrend((Run)build); + } + + /** + * Returns the result trend of a run. + * + * @param run the current run + * @return the result trend + * + * @since 1.441 + */ + public static ResultTrend getResultTrend(Run run) { + + Result result = run.getResult(); if (result == Result.ABORTED) { return ABORTED; @@ -109,14 +122,14 @@ public enum ResultTrend { } if (result == Result.SUCCESS) { - if (isFix(build)) { + if (isFix(run)) { return FIXED; } else { return SUCCESS; } } - AbstractBuild previousBuild = getPreviousNonAbortedBuild(build); + Run previousBuild = getPreviousNonAbortedBuild(run); if (result == Result.UNSTABLE) { if (previousBuild == null) { return UNSTABLE; @@ -138,15 +151,15 @@ public enum ResultTrend { } } - throw new IllegalArgumentException("Unknown result: '" + result + "' for build: " + build); + throw new IllegalArgumentException("Unknown result: '" + result + "' for build: " + run); } /** * Returns the previous 'not aborted' build (i.e. ignores ABORTED and NOT_BUILT builds) * or null. */ - private static AbstractBuild getPreviousNonAbortedBuild(AbstractBuild build) { - AbstractBuild previousBuild = build.getPreviousBuild(); + private static Run getPreviousNonAbortedBuild(Run build) { + Run previousBuild = build.getPreviousBuild(); while (previousBuild != null) { if (previousBuild.getResult() == null || previousBuild.getResult() == Result.ABORTED @@ -166,12 +179,12 @@ public enum ResultTrend { * 'failed' and/or 'unstable' builds. * Ignores 'aborted' and 'not built' builds. */ - private static boolean isFix(AbstractBuild build) { + private static boolean isFix(Run build) { if (build.getResult() != Result.SUCCESS) { return false; } - AbstractBuild previousBuild = getPreviousNonAbortedBuild(build); + Run previousBuild = getPreviousNonAbortedBuild(build); if (previousBuild != null) { return previousBuild.getResult().isWorseThan(Result.SUCCESS); } -- GitLab From f0f17236c93e4ae4a72cc9bacd0878e3a89b81b8 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 21:32:54 -0800 Subject: [PATCH 018/158] [maven-release-plugin] prepare release jenkins-1.440 --- cli/pom.xml | 2 +- core/pom.xml | 2 +- maven-plugin/pom.xml | 2 +- pom.xml | 2 +- test/pom.xml | 2 +- ui-samples-plugin/pom.xml | 2 +- war/pom.xml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index c371c872ec..a2b9699d9a 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.440-SNAPSHOT + 1.440 cli diff --git a/core/pom.xml b/core/pom.xml index 77f876e3bf..36f0356516 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440-SNAPSHOT + 1.440 ../pom.xml diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index a2d279615e..ad275cab8a 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440-SNAPSHOT + 1.440 maven-plugin diff --git a/pom.xml b/pom.xml index a651df8271..e8b7546cbd 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440-SNAPSHOT + 1.440 pom Jenkins main module diff --git a/test/pom.xml b/test/pom.xml index c197199807..d5e4cebaf1 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. pom org.jenkins-ci.main - 1.440-SNAPSHOT + 1.440 org.jenkins-ci.main jenkins-test-harness diff --git a/ui-samples-plugin/pom.xml b/ui-samples-plugin/pom.xml index 513af6c2fb..77e39fe2e7 100644 --- a/ui-samples-plugin/pom.xml +++ b/ui-samples-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440-SNAPSHOT + 1.440 ui-samples-plugin diff --git a/war/pom.xml b/war/pom.xml index 8a80726ff5..f15ea34369 100644 --- a/war/pom.xml +++ b/war/pom.xml @@ -28,7 +28,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440-SNAPSHOT + 1.440 ../pom.xml -- GitLab From 14cc13a41928063ec5af2b1d487321f6d233c563 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 21:32:54 -0800 Subject: [PATCH 019/158] [maven-release-plugin] prepare for next development iteration --- cli/pom.xml | 2 +- core/pom.xml | 2 +- maven-plugin/pom.xml | 2 +- pom.xml | 2 +- test/pom.xml | 2 +- ui-samples-plugin/pom.xml | 2 +- war/pom.xml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index a2b9699d9a..03430fcba3 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.440 + 1.441-SNAPSHOT cli diff --git a/core/pom.xml b/core/pom.xml index 36f0356516..c00327cc02 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440 + 1.441-SNAPSHOT ../pom.xml diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index ad275cab8a..cd5b80ca56 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440 + 1.441-SNAPSHOT maven-plugin diff --git a/pom.xml b/pom.xml index e8b7546cbd..d158a7f827 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440 + 1.441-SNAPSHOT pom Jenkins main module diff --git a/test/pom.xml b/test/pom.xml index d5e4cebaf1..344f831da3 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. pom org.jenkins-ci.main - 1.440 + 1.441-SNAPSHOT org.jenkins-ci.main jenkins-test-harness diff --git a/ui-samples-plugin/pom.xml b/ui-samples-plugin/pom.xml index 77e39fe2e7..74bcae46ed 100644 --- a/ui-samples-plugin/pom.xml +++ b/ui-samples-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440 + 1.441-SNAPSHOT ui-samples-plugin diff --git a/war/pom.xml b/war/pom.xml index f15ea34369..8b953c2135 100644 --- a/war/pom.xml +++ b/war/pom.xml @@ -28,7 +28,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.440 + 1.441-SNAPSHOT ../pom.xml -- GitLab From b42131da7b859b1f00b24130f30c9207b3201e00 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 21:46:28 -0800 Subject: [PATCH 020/158] updated changelog for release --- changelog.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.html b/changelog.html index 6d167a9c16..0791c26bb9 100644 --- a/changelog.html +++ b/changelog.html @@ -61,7 +61,10 @@ Upcoming changes

+

What's new in 1.440 (2011/11/17)

  • Sorting "diff" in test result requires 2 clicks @@ -96,7 +99,6 @@ Upcoming changes
  • Maven mojo records can be now sorted
-

What's new in 1.439 (2011/11/14)

  • -- GitLab From b540ed48476c573b66cd4b25a10781a49c0c70ab Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 21:46:28 -0800 Subject: [PATCH 021/158] releasing a new plugin parent POM --- plugins/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/pom.xml b/plugins/pom.xml index d45b8459de..33d3e9821b 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -10,7 +10,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.440-SNAPSHOT + 1.440 pom org.jenkins-ci.main maven-plugin - 1.440-SNAPSHOT + 1.440 @@ -43,25 +43,25 @@ org.jenkins-ci.main jenkins-war war - 1.440-SNAPSHOT + 1.440 test org.jenkins-ci.main jenkins-core - 1.440-SNAPSHOT + 1.440 provided org.jenkins-ci.main jenkins-test-harness - 1.440-SNAPSHOT + 1.440 test org.jenkins-ci.main ui-samples-plugin - 1.440-SNAPSHOT + 1.440 test -- GitLab From e70fefb7b0e207a77395995c00eb0f9e5143ca71 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 21:46:35 -0800 Subject: [PATCH 022/158] toward the next release --- plugins/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/pom.xml b/plugins/pom.xml index 33d3e9821b..b392c6a0ef 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -10,7 +10,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.440 + 1.441-SNAPSHOT pom org.jenkins-ci.main maven-plugin - 1.440 + 1.441-SNAPSHOT @@ -43,25 +43,25 @@ org.jenkins-ci.main jenkins-war war - 1.440 + 1.441-SNAPSHOT test org.jenkins-ci.main jenkins-core - 1.440 + 1.441-SNAPSHOT provided org.jenkins-ci.main jenkins-test-harness - 1.440 + 1.441-SNAPSHOT test org.jenkins-ci.main ui-samples-plugin - 1.440 + 1.441-SNAPSHOT test -- GitLab From b15409afc4e2a5aae182fdc6f7a5e31a61e7754c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 17 Nov 2011 22:12:02 -0800 Subject: [PATCH 023/158] updated changelog as a part of the release --- debian/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/debian/changelog b/debian/debian/changelog index deb2795e52..103692f1b0 100644 --- a/debian/debian/changelog +++ b/debian/debian/changelog @@ -1,3 +1,9 @@ +jenkins (1.440) unstable; urgency=low + + * See http://jenkins-ci.org/changelog for more details. + + -- Kohsuke Kawaguchi Thu, 17 Nov 2011 22:00:00 -0800 + jenkins (1.439) unstable; urgency=low * See http://jenkins-ci.org/changelog for more details. -- GitLab From 83822830cf6f74a5663dfcc9acd14b13774739ae Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 11:01:50 +0100 Subject: [PATCH 024/158] Added (unfortunately yet disfunctional) regression test for JENKINS-11592 --- .../org/jvnet/hudson/test/HudsonTestCase.java | 2 +- .../model/GetEnvironmentOutsideBuildTest.java | 113 ++++++++++++++++++ 2 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 test/src/test/java/hudson/model/GetEnvironmentOutsideBuildTest.java diff --git a/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java b/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java index 902d2f4518..865c4e22e4 100644 --- a/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java +++ b/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java @@ -627,7 +627,7 @@ public abstract class HudsonTestCase extends TestCase implements RootAction { return hudson.createProject(MavenModuleSet.class,name); } - private String createUniqueProjectName() { + protected String createUniqueProjectName() { return "test"+hudson.getItems().size(); } diff --git a/test/src/test/java/hudson/model/GetEnvironmentOutsideBuildTest.java b/test/src/test/java/hudson/model/GetEnvironmentOutsideBuildTest.java new file mode 100644 index 0000000000..9345c232d4 --- /dev/null +++ b/test/src/test/java/hudson/model/GetEnvironmentOutsideBuildTest.java @@ -0,0 +1,113 @@ +package hudson.model; + +import java.io.IOException; +import java.io.StringReader; + +import hudson.EnvVars; +import hudson.matrix.MatrixProject; +import hudson.maven.MavenModuleSet; +import hudson.tasks.Maven.MavenInstallation; +import hudson.util.StreamTaskListener; + +import jenkins.model.Jenkins; +import org.junit.Assert; + +import org.jvnet.hudson.test.Bug; +import org.jvnet.hudson.test.ExtractResourceSCM; +import org.jvnet.hudson.test.HudsonTestCase; + +/** + * Tests that getEnvironment() calls outside of builds are safe. + * + * @author kutzi + */ +@Bug(11592) +public class GetEnvironmentOutsideBuildTest extends HudsonTestCase { + + private int oldExecNum; + + @Override + protected void runTest() throws Throwable { + // Disable tests + + // It's unfortunately not working, yet, as whenJenkinsMasterHasNoExecutors is not working as expected + } + + public void setUp() throws Exception { + super.setUp(); + + this.oldExecNum = Jenkins.getInstance().getNumExecutors(); + } + + public void tearDown() throws Exception { + restoreOldNumExecutors(); + super.tearDown(); + } + + private void restoreOldNumExecutors() throws IOException { + Jenkins.getInstance().setNumExecutors(this.oldExecNum); + Jenkins.getInstance().setNodes(Jenkins.getInstance().getNodes()); + Assert.assertNotNull(Jenkins.getInstance().toComputer()); + } + + private MavenModuleSet createSimpleMavenProject() throws Exception { + MavenModuleSet project = createMavenProject(); + MavenInstallation mi = configureMaven3(); + project.setScm(new ExtractResourceSCM(getClass().getResource( + "/simple-projects.zip"))); + project.setMaven(mi.getName()); + project.setGoals("validate"); + return project; + } + + private void whenJenkinsMasterHasNoExecutors() throws IOException { + Jenkins.getInstance().setNumExecutors(0); + // force update of nodes: + Jenkins.getInstance().setNodes(Jenkins.getInstance().getNodes()); + Assert.assertNull(Jenkins.getInstance().toComputer()); + } + + public void testMaven() throws Exception { + MavenModuleSet m = createSimpleMavenProject(); + + assertGetEnvironmentCallOutsideBuildWorks(m); + } + + public void testFreestyle() throws Exception { + FreeStyleProject project = createFreeStyleProject(); + + assertGetEnvironmentCallOutsideBuildWorks(project); + } + + public void testMatrix() throws Exception { + MatrixProject createMatrixProject = createMatrixProject(); + + assertGetEnvironmentCallOutsideBuildWorks(createMatrixProject); + } + + public void testExternalJob() throws Exception { + ExternalJob p = jenkins.createProject(ExternalJob.class, createUniqueProjectName()); + ExternalRun b = p.newBuild(); + b.acceptRemoteSubmission(new StringReader( + "01" + )); + + assertGetEnvironmentWorks(b); + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + private void assertGetEnvironmentCallOutsideBuildWorks(AbstractProject job) throws Exception { + AbstractBuild build = buildAndAssertSuccess(job); + + assertGetEnvironmentWorks(build); + } + + @SuppressWarnings("rawtypes") + private void assertGetEnvironmentWorks(Run build) throws IOException, InterruptedException { + whenJenkinsMasterHasNoExecutors(); + // and getEnvironment is called outside of build + EnvVars envVars = build.getEnvironment(StreamTaskListener.fromStdout()); + // then it should still succeed - i.e. no NPE o.s.l.t. + assertNotNull(envVars); + } +} -- GitLab From f8774f0599850a1c920c4da9e058009b77219703 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 12:09:47 +0100 Subject: [PATCH 025/158] Using lib-jenkins-maven-embedder version with workaround for https://jira.codehaus.org/browse/MNG-5125. I still hope this gives some ease regarding JENKINS-11362 --- maven-plugin/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index cd5b80ca56..ea590717b1 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -286,7 +286,7 @@ THE SOFTWARE. org.jenkins-ci.lib lib-jenkins-maven-embedder - 3.6 + 3.8 jtidy -- GitLab From 796918dad9d50c74067c686b45892f11b4247df6 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 18 Nov 2011 14:28:52 +0100 Subject: [PATCH 026/158] use aether version 1.13. --- maven-plugin/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index ea590717b1..25a5efca99 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -2,7 +2,7 @@ The MIT License Copyright (c) 2004-2011, Sun Microsystems, Inc., Kohsuke Kawaguchi, -Daniel Dyer, Erik Ramfelt, Stephen Connolly, Tom Huybrechts +Daniel Dyer, Erik Ramfelt, Stephen Connolly, Tom Huybrechts, Olivier Lamy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -44,7 +44,7 @@ THE SOFTWARE. 1.2 3.0.3 ${mavenVersion} - 1.11 + 1.13 2.2.0 2.0 1.6.2 -- GitLab From 0943a3aafa34a9e602eb98f982e46f1bd83dbb28 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 13:42:05 +0100 Subject: [PATCH 027/158] Use utility methods for Maven version comparisons --- .../main/java/hudson/maven/MavenBuild.java | 2 +- .../hudson/maven/MavenBuildInformation.java | 28 +++++++++++++++++++ .../hudson/maven/MavenModuleSetBuild.java | 5 ++-- .../maven/reporters/MavenFingerprinter.java | 27 +++++++++--------- 4 files changed, 44 insertions(+), 18 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenBuild.java index 8a0013f462..6d759d7d61 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenBuild.java @@ -660,7 +660,7 @@ public class MavenBuild extends AbstractMavenBuild { LOGGER.fine(getFullDisplayName()+" is building with mavenVersion " + mavenVersion + " from file " + mavenInformation.getVersionResourcePath()); - boolean maven3orLater = new ComparableVersion(mavenVersion).compareTo( new ComparableVersion ("3.0") ) >= 0; + boolean maven3orLater = MavenUtil.maven3orLater(mavenVersion); ProcessCache.MavenProcess process = MavenBuild.mavenProcessCache.get( launcher.getChannel(), listener, maven3orLater ? new Maven3ProcessFactory( diff --git a/maven-plugin/src/main/java/hudson/maven/MavenBuildInformation.java b/maven-plugin/src/main/java/hudson/maven/MavenBuildInformation.java index 654a916149..cd631dd90f 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenBuildInformation.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenBuildInformation.java @@ -22,6 +22,9 @@ package hudson.maven; import java.io.Serializable; +import org.apache.commons.lang.StringUtils; +import org.apache.maven.artifact.versioning.ComparableVersion; + /** * @author Olivier Lamy * @since 1.392 @@ -39,4 +42,29 @@ public class MavenBuildInformation implements Serializable { { return mavenVersion; } + + /** + * @since 1.441 + */ + public boolean isMaven3OrLater() { + return MavenUtil.maven3orLater(mavenVersion); + } + + /** + * Returns if this maven version is at least 'version'. + * @param version the version to compare against + * + * @since 1.441 + */ + public boolean isAtLeastMavenVersion(String version) { + if (StringUtils.isBlank(mavenVersion)) { + return false; + } + return new ComparableVersion(mavenVersion).compareTo(new ComparableVersion(version)) >= 0; + } + + @Override + public String toString() { + return mavenVersion; + } } diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index d1c5f07119..545fedf48b 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -701,8 +701,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild= 0; + boolean maven3OrLater = MavenUtil.maven3orLater(mavenVersion); if (maven3OrLater) { mavenEmbedderRequest.setValidationLevel( ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_0 ); } else { diff --git a/maven-plugin/src/main/java/hudson/maven/reporters/MavenFingerprinter.java b/maven-plugin/src/main/java/hudson/maven/reporters/MavenFingerprinter.java index 4b62e93766..897f3aeb37 100644 --- a/maven-plugin/src/main/java/hudson/maven/reporters/MavenFingerprinter.java +++ b/maven-plugin/src/main/java/hudson/maven/reporters/MavenFingerprinter.java @@ -26,6 +26,7 @@ package hudson.maven.reporters; import hudson.Extension; import hudson.FilePath; import hudson.maven.MavenBuild; +import hudson.maven.MavenBuildInformation; import hudson.maven.MavenBuildProxy; import hudson.maven.MavenBuildProxy.BuildCallable; import hudson.maven.MavenModule; @@ -142,11 +143,9 @@ public class MavenFingerprinter extends MavenReporter { File parentFile = parent.getFile(); if (parentFile == null) { - String mavenVersion = build.getMavenBuildInformation().getMavenVersion(); - // Parent artifact contains no actual file, so we resolve against // the local repository - ArtifactRepository localRepository = getLocalRepository(mavenVersion, parent, pom); + ArtifactRepository localRepository = getLocalRepository(build.getMavenBuildInformation(), parent, pom); if (localRepository != null) { Artifact parentArtifact = getArtifact(parent); // Don't use ArtifactRepository.find(), for compatibility with Maven 2.x @@ -179,18 +178,18 @@ public class MavenFingerprinter extends MavenReporter { return art; } - private ArtifactRepository getLocalRepository(String mavenVersion, MavenProject parent, MavenProject pom) { - if (mavenVersion.startsWith("2.0") || mavenVersion.startsWith("2.1")) { - // Maven 2.0 has no corresponding mechanism - return null; - } else if (mavenVersion.startsWith("2.2")) { - // principally this should also work with Maven 2.1, but it's not tested, so err on the safe side - return getArtifactRepositoryMaven21(pom); - } else if (mavenVersion.startsWith("3.") || mavenVersion.startsWith("4.") /* who knows? ;) */) { - return parent.getProjectBuildingRequest() - .getLocalRepository(); + private ArtifactRepository getLocalRepository(MavenBuildInformation mavenBuildInformation, MavenProject parent, MavenProject pom) { + + if (mavenBuildInformation.isMaven3OrLater()) { + return parent.getProjectBuildingRequest().getLocalRepository(); + } else if (mavenBuildInformation.isAtLeastMavenVersion("2.2")) { + // principally this should also work with Maven 2.1, but it's not tested, so err on the safe side + return getArtifactRepositoryMaven21(pom); + } else if (mavenBuildInformation.isAtLeastMavenVersion("2.0")) { + // Maven 2.0 has no corresponding mechanism + return null; } else { - LOGGER.warning("Unknown Maven version: "+mavenVersion); + LOGGER.warning("Unknown Maven version: "+mavenBuildInformation.getMavenVersion()); return null; } } -- GitLab From 9d9a5bf3056e06ed1f862a3084095545f4d2134c Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 13:45:12 +0100 Subject: [PATCH 028/158] Test sometimes times out here under load, so give it some more time --- test/src/test/java/hudson/slaves/NodeCanTakeTaskTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test/java/hudson/slaves/NodeCanTakeTaskTest.java b/test/src/test/java/hudson/slaves/NodeCanTakeTaskTest.java index b5c086d97f..a94e0ec921 100644 --- a/test/src/test/java/hudson/slaves/NodeCanTakeTaskTest.java +++ b/test/src/test/java/hudson/slaves/NodeCanTakeTaskTest.java @@ -58,7 +58,7 @@ public class NodeCanTakeTaskTest extends HudsonTestCase { // First, attempt to run our project before adding the property Future build = project.scheduleBuild2(0); - assertBuildStatus(Result.SUCCESS, build.get(10, TimeUnit.SECONDS)); + assertBuildStatus(Result.SUCCESS, build.get(20, TimeUnit.SECONDS)); // Add the build-blocker property and try again slave.getNodeProperties().add(new RejectAllTasksProperty()); -- GitLab From 1476b2ee446f27b0c4ce85c16c5f984ef84cc8a4 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 14:32:28 +0100 Subject: [PATCH 029/158] [FIXED JENKINS-11256] SurefireArchiver#result doesn't need to be serialized on each remote call. Fixes ConcurrentModificationExceptions in MavenFingerprinter --- .../maven/reporters/SurefireArchiver.java | 27 +++++++------------ 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java b/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java index 0ba8fd6e3e..ebd1b023a7 100644 --- a/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java +++ b/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java @@ -50,8 +50,6 @@ import java.util.ListIterator; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; -import org.apache.commons.lang.StringUtils; -import org.apache.maven.artifact.versioning.ComparableVersion; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.project.MavenProject; import org.apache.tools.ant.DirectoryScanner; @@ -65,7 +63,7 @@ import org.codehaus.plexus.util.xml.Xpp3Dom; * @author Kohsuke Kawaguchi */ public class SurefireArchiver extends MavenReporter { - private TestResult result; + private transient TestResult result; /** * Store the filesets here as we want to track ignores between multiple runs of this class
    @@ -82,7 +80,7 @@ public class SurefireArchiver extends MavenReporter { // note that because of the way Maven works, just updating system property at this point is too late XmlPlexusConfiguration c = (XmlPlexusConfiguration) mojo.configuration.getChild("testFailureIgnore"); if(c!=null && c.getValue() != null && c.getValue().equals("${maven.test.failure.ignore}") && System.getProperty("maven.test.failure.ignore")==null) { - if (maven3orLater( build.getMavenBuildInformation().getMavenVersion() )) { + if (build.getMavenBuildInformation().isMaven3OrLater()) { String fieldName = "testFailureIgnore"; if (mojo.mojoExecution.getConfiguration().getChild( fieldName ) != null) { mojo.mojoExecution.getConfiguration().getChild( fieldName ).setValue( Boolean.TRUE.toString() ); @@ -138,6 +136,9 @@ public class SurefireArchiver extends MavenReporter { if(result==null) result = new TestResult(); result.parse(System.currentTimeMillis() - build.getMilliSecsSinceBuildStart(), reportsDir, reportFiles); + + // final reference in order to serialize it: + final TestResult r = result; int failCount = build.execute(new BuildCallable() { private static final long serialVersionUID = -1023888330720922136L; @@ -145,13 +146,13 @@ public class SurefireArchiver extends MavenReporter { public Integer call(MavenBuild build) throws IOException, InterruptedException { SurefireReport sr = build.getAction(SurefireReport.class); if(sr==null) - build.getActions().add(new SurefireReport(build, result, listener)); + build.getActions().add(new SurefireReport(build, r, listener)); else - sr.setResult(result,listener); - if(result.getFailCount()>0) + sr.setResult(r,listener); + if(r.getFailCount()>0) build.setResult(Result.UNSTABLE); build.registerAsProjectAction(new FactoryImpl()); - return result.getFailCount(); + return r.getFailCount(); } }); @@ -160,7 +161,7 @@ public class SurefireArchiver extends MavenReporter { if(failCount>0 && error instanceof MojoFailureException) { MavenBuilder.markAsSuccess = true; } - // TODO currenlty error is empty : will be here with maven 3.0.2+ + // TODO currently error is empty : will be here with maven 3.0.2+ if(failCount>0) { Maven3Builder.markAsSuccess = true; } @@ -307,14 +308,6 @@ public class SurefireArchiver extends MavenReporter { return true; } - public boolean maven3orLater(String mavenVersion) { - // null or empty so false ! - if (StringUtils.isBlank( mavenVersion )) { - return false; - } - return new ComparableVersion (mavenVersion).compareTo( new ComparableVersion ("3.0") ) >= 0; - } - // I'm not sure if SurefireArchiver is actually ever (de-)serialized, // but just to be sure, set fileSets here protected Object readResolve() { -- GitLab From b835fb15497cf31a5069804a9920a747053be3c4 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 15:26:12 +0100 Subject: [PATCH 030/158] Changelog entry for JENKINS-11256 --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index ec68b0f0ee..8f4b395599 100644 --- a/changelog.html +++ b/changelog.html @@ -61,6 +61,9 @@ Upcoming changes
  • Fixed NPE in Subversion polling of Maven jobs. (issue 11592) +
  • + Fixed ConcurrentModificationException in parallel Maven 3 builds. + (issue 11256)
  • CLI jar now has the version number in the manifest as well as the "-version" option.
-- GitLab From 67a8fae0e6665e0918ce932615258a0ed5045519 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 18 Nov 2011 15:31:50 +0100 Subject: [PATCH 031/158] upgrade to last version of sisu/guice which have some perf improvement --- maven-plugin/pom.xml | 9 +++++++-- pom.xml | 7 +++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 25a5efca99..06c8dc7b0d 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -45,7 +45,7 @@ THE SOFTWARE. 3.0.3 ${mavenVersion} 1.13 - 2.2.0 + 2.3.0 2.0 1.6.2 @@ -216,7 +216,12 @@ THE SOFTWARE. org.sonatype.sisu sisu-guice - 3.0.1 + 3.1.0 + + + + com.google.guava + guava diff --git a/pom.xml b/pom.xml index d158a7f827..592ec10c32 100644 --- a/pom.xml +++ b/pom.xml @@ -174,6 +174,13 @@ THE SOFTWARE. remoting 2.11 + + + com.google.guava + guava + 10.0.1 + + -- GitLab From f569069789b2165f6f4a24835b5a56864cce7081 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 18 Nov 2011 15:50:58 +0100 Subject: [PATCH 032/158] change log entry for aether/sisu upgrade --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index 8f4b395599..7db0b1a264 100644 --- a/changelog.html +++ b/changelog.html @@ -66,6 +66,8 @@ Upcoming changes (issue 11256)
  • CLI jar now has the version number in the manifest as well as the "-version" option. +
  • + Upgrade aether version to 1.13 and sisu to 2.3.0 .
  • -- GitLab From 1e80d2ec12c0f7ad2b68bbf3960c9f5fb3042a3d Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 18 Nov 2011 17:19:09 +0100 Subject: [PATCH 033/158] use surefire 2.10 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 592ec10c32..6d46ddd2dd 100644 --- a/pom.xml +++ b/pom.xml @@ -299,7 +299,7 @@ THE SOFTWARE. org.apache.maven.plugins maven-surefire-plugin - 2.8.1 + 2.10 ${project.build.directory} -- GitLab From 342965dc48921b49c290199928e4f0e3536e7372 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Fri, 18 Nov 2011 22:07:35 +0100 Subject: [PATCH 034/158] resolved a TODO --- .../main/java/hudson/maven/Maven3Builder.java | 24 +++++++++++-------- .../maven/reporters/SurefireArchiver.java | 16 +++++++++---- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java b/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java index 62efc22af2..4a6530fa85 100644 --- a/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java +++ b/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java @@ -526,7 +526,7 @@ public class Maven3Builder extends AbstractMavenBuilder implements DelegatingCal if (mavenReporters != null) { for (MavenReporter mavenReporter : mavenReporters) { try { - mavenReporter.postExecute( mavenBuildProxy2, mavenProject, mojoInfo, maven3Builder.listener, null); + mavenReporter.postExecute( mavenBuildProxy2, mavenProject, mojoInfo, maven3Builder.listener, getExecutionException(event)); } catch ( InterruptedException e ) { e.printStackTrace(); } @@ -587,14 +587,7 @@ public class Maven3Builder extends AbstractMavenBuilder implements DelegatingCal if (mavenReporters != null) { for (MavenReporter mavenReporter : mavenReporters) { try { - // http://issues.jenkins-ci.org/browse/HUDSON-8493 - // with maven 3.0.2 see http://jira.codehaus.org/browse/MNG-4922 - // catch NoSuchMethodError if folks not using 3.0.2+ - try { - mavenReporter.postExecute( mavenBuildProxy2, mavenProject, mojoInfo, maven3Builder.listener, event.getException() ); - } catch (NoSuchMethodError e) { - mavenReporter.postExecute( mavenBuildProxy2, mavenProject, mojoInfo, maven3Builder.listener, null ); - } + mavenReporter.postExecute( mavenBuildProxy2, mavenProject, mojoInfo, maven3Builder.listener, getExecutionException(event) ); } catch ( InterruptedException e ) { e.printStackTrace(); } catch ( IOException e ) { @@ -602,7 +595,18 @@ public class Maven3Builder extends AbstractMavenBuilder implements DelegatingCal } } } - } + } + + private Exception getExecutionException(ExecutionEvent event) { + // http://issues.jenkins-ci.org/browse/JENKINS-8493 + // with maven 3.0.2 see http://jira.codehaus.org/browse/MNG-4922 + // catch NoSuchMethodError if folks not using 3.0.2+ + try { + return event.getException(); + } catch (NoSuchMethodError e) { + return null; + } + } /** * @see org.apache.maven.execution.ExecutionListener#forkStarted(org.apache.maven.execution.ExecutionEvent) diff --git a/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java b/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java index ebd1b023a7..476847a051 100644 --- a/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java +++ b/maven-plugin/src/main/java/hudson/maven/reporters/SurefireArchiver.java @@ -27,6 +27,7 @@ import hudson.Extension; import hudson.Util; import hudson.maven.Maven3Builder; import hudson.maven.MavenBuild; +import hudson.maven.MavenBuildInformation; import hudson.maven.MavenBuildProxy; import hudson.maven.MavenBuildProxy.BuildCallable; import hudson.maven.MavenBuilder; @@ -158,12 +159,8 @@ public class SurefireArchiver extends MavenReporter { // if surefire plugin is going to kill maven because of a test failure, // intercept that (or otherwise build will be marked as failure) - if(failCount>0 && error instanceof MojoFailureException) { - MavenBuilder.markAsSuccess = true; - } - // TODO currently error is empty : will be here with maven 3.0.2+ if(failCount>0) { - Maven3Builder.markAsSuccess = true; + markBuildAsSuccess(error,build.getMavenBuildInformation()); } } } @@ -171,6 +168,15 @@ public class SurefireArchiver extends MavenReporter { return true; } + @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD", justification="It's okay to write to static fields here, as each Maven build is started in its own VM") + private void markBuildAsSuccess(Throwable mojoError, MavenBuildInformation buildInfo) { + if(mojoError == null // in the success case we don't get any exception in Maven 3.0.2+; Maven < 3.0.2 returns no exception anyway + || mojoError instanceof MojoFailureException) { + MavenBuilder.markAsSuccess = true; + Maven3Builder.markAsSuccess = true; + } + } + /** * Returns the appropriate FileSet for the selected baseDir * @param baseDir -- GitLab From 401070bbd66c228812a15ef92094dc0d3705aeae Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Sat, 19 Nov 2011 13:47:44 +0100 Subject: [PATCH 035/158] Use consistent version of sisu-guice. Fixes "java.lang.NoSuchMethodError: com.google.inject.Binder.bindListener(Lcom/google/inject/matcher/Matcher;[Lcom/google/inject/spi/ProvisionListener;)V" in maven jobs --- core/pom.xml | 1 - maven-plugin/pom.xml | 1 - pom.xml | 8 ++++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index c00327cc02..1046d29e2d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -97,7 +97,6 @@ THE SOFTWARE. because it uses a modified Guice called Sisu --> org.sonatype.sisu sisu-guice - 3.0.3 diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 06c8dc7b0d..2a731f81c6 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -216,7 +216,6 @@ THE SOFTWARE. org.sonatype.sisu sisu-guice - 3.1.0 diff --git a/pom.xml b/pom.xml index 6d46ddd2dd..bb0fd2830f 100644 --- a/pom.xml +++ b/pom.xml @@ -180,6 +180,14 @@ THE SOFTWARE. guava 10.0.1 + + + + org.sonatype.sisu + sisu-guice + 3.1.0 + -- GitLab From eb1e08c590fd17d09871ea3a2e0b7b1dd76be834 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Sat, 19 Nov 2011 19:06:08 +0100 Subject: [PATCH 036/158] @Ignore doesn't work here --- test/src/test/java/hudson/maven/MavenMultiModuleTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/test/java/hudson/maven/MavenMultiModuleTest.java b/test/src/test/java/hudson/maven/MavenMultiModuleTest.java index 842bea75cd..3c4ca55e71 100644 --- a/test/src/test/java/hudson/maven/MavenMultiModuleTest.java +++ b/test/src/test/java/hudson/maven/MavenMultiModuleTest.java @@ -153,8 +153,8 @@ public class MavenMultiModuleTest extends HudsonTestCase { @Bug(6544) - @Ignore // kutzi 10/10/11 ignore test until I can figure out why it fails sometimes - public void testEstimatedDurationForIncrementalMultiModMaven() + // kutzi 10/10/11 ignore test until I can figure out why it fails sometimes + public void ignore_testEstimatedDurationForIncrementalMultiModMaven() throws Exception { configureDefaultMaven("apache-maven-2.2.1", MavenInstallation.MAVEN_21); MavenModuleSet m = createMavenProject(); -- GitLab From a5ffd0c2d4ea55a1f251ff237c564b2416d08354 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Sat, 19 Nov 2011 21:39:08 +0100 Subject: [PATCH 037/158] modify latch to use CountDownLatch and wait 30 seconds more for builds as test likes to time-out a lot --- .../hudson/slaves/NodeProvisionerTest.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java index aff97acc4c..ba582c1a09 100644 --- a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java +++ b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java @@ -28,6 +28,8 @@ import hudson.Launcher; import hudson.model.*; import hudson.slaves.NodeProvisioner.NodeProvisionerInvoker; import hudson.tasks.Builder; +import hudson.util.TimeUnit2; + import org.jvnet.hudson.test.HudsonTestCase; import org.jvnet.hudson.test.SleepBuilder; @@ -35,6 +37,7 @@ import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.List; +import java.util.concurrent.CountDownLatch; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; @@ -69,16 +72,17 @@ public class NodeProvisionerTest extends HudsonTestCase { */ static class Latch { /** Initial value */ - public final int init; - private int n; + public final CountDownLatch counter; + private final int init; Latch(int n) { - this.n = init = n; + this.init = n; + this.counter = new CountDownLatch(n); } - synchronized void block() throws InterruptedException { - if(--n==0) notifyAll(); // wake up everyone else - else wait(60*1000); // if a test takes t oo long, abort. + void block() throws InterruptedException { + this.counter.countDown(); + this.counter.await(60, TimeUnit.SECONDS); } /** @@ -232,7 +236,7 @@ public class NodeProvisionerTest extends HudsonTestCase { System.out.println("Waiting for a completion"); for (Future f : builds) { try { - assertBuildStatus(Result.SUCCESS, f.get(60, TimeUnit.SECONDS)); + assertBuildStatus(Result.SUCCESS, f.get(90, TimeUnit.SECONDS)); } catch (TimeoutException e) { // time out so that the automated test won't hang forever, even when we have bugs System.out.println("Build didn't complete in time"); -- GitLab From 4b33cd1eff3f18b964b12359d5816b5264fcd1ef Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Sun, 20 Nov 2011 22:13:15 +0100 Subject: [PATCH 038/158] minor optimizations; added serialVersionUIDs --- core/src/main/java/hudson/tasks/Maven.java | 24 ++++++++-------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/core/src/main/java/hudson/tasks/Maven.java b/core/src/main/java/hudson/tasks/Maven.java index 21388a0d9e..f91f94c28c 100644 --- a/core/src/main/java/hudson/tasks/Maven.java +++ b/core/src/main/java/hudson/tasks/Maven.java @@ -167,6 +167,7 @@ public class Maven extends Builder { * name. */ private static final class DecideDefaultMavenCommand implements FileCallable { + private static final long serialVersionUID = -2327576423452215146L; // command line arguments. private final String arguments; @@ -412,6 +413,8 @@ public class Maven extends Builder { // FIXME using similar stuff as in the maven plugin could be better // olamy : but will add a dependency on maven in core -> so not so good String mavenVersion = launcher.getChannel().call(new Callable() { + private static final long serialVersionUID = -4143159957567745621L; + public String call() throws IOException { File[] jars = new File(getHomeDir(),"lib").listFiles(); if(jars!=null) { // be defensive @@ -443,7 +446,7 @@ public class Maven extends Builder { return true; } else if (mavenReqVersion == MAVEN_30) { - if(mavenVersion.startsWith("3.") && !mavenVersion.startsWith("2.0")) + if(mavenVersion.startsWith("3.")) return true; } } @@ -452,7 +455,7 @@ public class Maven extends Builder { } /** - * Is this Maven 2.1.x or later? + * Is this Maven 2.1.x or 2.2.x - but not Maven 3.x? * * @param launcher * Represents the node on which we evaluate the path. @@ -460,28 +463,19 @@ public class Maven extends Builder { public boolean isMaven2_1(Launcher launcher) throws IOException, InterruptedException { return meetsMavenReqVersion(launcher, MAVEN_21); } - /* return launcher.getChannel().call(new Callable() { - public Boolean call() throws IOException { - File[] jars = new File(getHomeDir(),"lib").listFiles(); - if(jars!=null) // be defensive - for (File jar : jars) - if(jar.getName().startsWith("maven-2.") && !jar.getName().startsWith("maven-2.0") && jar.getName().endsWith("-uber.jar")) - return true; - return false; - } - }); - } */ /** * Gets the executable path of this maven on the given target system. */ public String getExecutable(Launcher launcher) throws IOException, InterruptedException { return launcher.getChannel().call(new Callable() { + private static final long serialVersionUID = 2373163112639943768L; + public String call() throws IOException { - File exe = getExeFile("maven"); + File exe = getExeFile("mvn"); if(exe.exists()) return exe.getPath(); - exe = getExeFile("mvn"); + exe = getExeFile("maven"); if(exe.exists()) return exe.getPath(); return null; -- GitLab From 3e829f8825d41e5d4dc785407dab66291c348c3e Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Sun, 20 Nov 2011 22:33:45 +0100 Subject: [PATCH 039/158] fixed/suppressed warnings --- .../java/hudson/tasks/BuildTriggerTest.java | 8 +++--- .../tasks/EnvVarsInConfigTasksTest.java | 22 ++++++++++------ .../java/hudson/tasks/FingerprinterTest.java | 25 +++++++++---------- .../java/hudson/tasks/LogRotatorTest.java | 2 +- .../src/test/java/hudson/tasks/MavenTest.java | 3 ++- 5 files changed, 33 insertions(+), 27 deletions(-) diff --git a/test/src/test/java/hudson/tasks/BuildTriggerTest.java b/test/src/test/java/hudson/tasks/BuildTriggerTest.java index ce5ad6c72a..4734da591f 100644 --- a/test/src/test/java/hudson/tasks/BuildTriggerTest.java +++ b/test/src/test/java/hudson/tasks/BuildTriggerTest.java @@ -27,7 +27,7 @@ import com.gargoylesoftware.htmlunit.html.HtmlForm; import com.gargoylesoftware.htmlunit.html.HtmlPage; import hudson.maven.MavenModuleSet; import hudson.maven.MavenModuleSetBuild; -import hudson.model.Build; +import hudson.model.FreeStyleBuild; import hudson.model.FreeStyleProject; import hudson.model.Result; import hudson.model.Run; @@ -65,7 +65,7 @@ public class BuildTriggerTest extends HudsonTestCase { hudson.rebuildDependencyGraph(); // First build should not trigger downstream job - Build b = p.scheduleBuild2(0).get(); + FreeStyleBuild b = p.scheduleBuild2(0).get(); assertNoDownstreamBuild(dp, b); // Next build should trigger downstream job @@ -74,7 +74,7 @@ public class BuildTriggerTest extends HudsonTestCase { assertDownstreamBuild(dp, b); } - private void assertNoDownstreamBuild(FreeStyleProject dp, Run b) throws Exception { + private void assertNoDownstreamBuild(FreeStyleProject dp, Run b) throws Exception { for (int i = 0; i < 3; i++) { Thread.sleep(200); assertTrue("downstream build should not run! upstream log: " + getLog(b), @@ -82,7 +82,7 @@ public class BuildTriggerTest extends HudsonTestCase { } } - private void assertDownstreamBuild(FreeStyleProject dp, Run b) throws Exception { + private void assertDownstreamBuild(FreeStyleProject dp, Run b) throws Exception { // Wait for downstream build for (int i = 0; dp.getLastBuild()==null && i < 20; i++) Thread.sleep(100); assertNotNull("downstream build didn't run.. upstream log: " + getLog(b), dp.getLastBuild()); diff --git a/test/src/test/java/hudson/tasks/EnvVarsInConfigTasksTest.java b/test/src/test/java/hudson/tasks/EnvVarsInConfigTasksTest.java index dde867d72d..615b14b0d6 100644 --- a/test/src/test/java/hudson/tasks/EnvVarsInConfigTasksTest.java +++ b/test/src/test/java/hudson/tasks/EnvVarsInConfigTasksTest.java @@ -4,6 +4,7 @@ import hudson.EnvVars; import hudson.model.labels.LabelAtom; import hudson.maven.MavenModuleSet; import hudson.maven.MavenModuleSetBuild; +import hudson.model.AbstractBuild; import hudson.model.FreeStyleBuild; import hudson.model.FreeStyleProject; import hudson.model.JDK; @@ -72,7 +73,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatusSuccess(build); - String buildLogRegular = build.getLog(); + String buildLogRegular = getBuildLog(build); System.out.println(buildLogRegular); assertTrue(buildLogRegular.contains(DUMMY_LOCATION_VARNAME)); @@ -84,7 +85,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatusSuccess(build); // Check variable was expanded - String buildLogEnv = build.getLog(); + String buildLogEnv = getBuildLog(build); System.out.println(buildLogEnv); assertFalse(buildLogEnv.contains(DUMMY_LOCATION_VARNAME)); } @@ -112,7 +113,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatus(Result.FAILURE, build); - String buildLogRegular = build.getLog(); + String buildLogRegular = getBuildLog(build); assertTrue(buildLogRegular.contains(Messages .Ant_ExecutableNotFound("varAnt"))); @@ -124,7 +125,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatusSuccess(build); // Check variable was expanded - String buildLogEnv = build.getLog(); + String buildLogEnv = getBuildLog(build); System.out.println(buildLogEnv); assertTrue(buildLogEnv.contains("Ant home: ")); assertTrue(buildLogEnv.contains("Test property: correct")); @@ -152,7 +153,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatus(Result.FAILURE, build); - String buildLogRegular = build.getLog(); + String buildLogRegular = getBuildLog(build); System.out.println(buildLogRegular); assertTrue(buildLogRegular.contains(DUMMY_LOCATION_VARNAME)); @@ -164,7 +165,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatusSuccess(build); // Check variable was expanded - String buildLogEnv = build.getLog(); + String buildLogEnv = getBuildLog(build); System.out.println(buildLogEnv); assertFalse(buildLogEnv.contains(DUMMY_LOCATION_VARNAME)); } @@ -185,7 +186,7 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatus(Result.FAILURE, build); - String buildLogRegular = build.getLog(); + String buildLogRegular = getBuildLog(build); System.out.println(buildLogRegular); // test the slave with prepared environment @@ -196,8 +197,13 @@ public class EnvVarsInConfigTasksTest extends HudsonTestCase { assertBuildStatusSuccess(build); // Check variable was expanded - String buildLogEnv = build.getLog(); + String buildLogEnv = getBuildLog(build); System.out.println(buildLogEnv); assertFalse(buildLogEnv.contains(DUMMY_LOCATION_VARNAME)); } + + @SuppressWarnings("deprecation") // it's okay to use it in tests + private String getBuildLog(AbstractBuild build) throws Exception { + return build.getLog(); + } } diff --git a/test/src/test/java/hudson/tasks/FingerprinterTest.java b/test/src/test/java/hudson/tasks/FingerprinterTest.java index 65c2d23010..0f4361f66e 100644 --- a/test/src/test/java/hudson/tasks/FingerprinterTest.java +++ b/test/src/test/java/hudson/tasks/FingerprinterTest.java @@ -32,9 +32,7 @@ import hudson.model.Fingerprint; import hudson.model.FreeStyleBuild; import hudson.model.FreeStyleProject; import hudson.model.Hudson; -import hudson.model.Project; import hudson.model.Result; -import hudson.tasks.Fingerprinter.FingerprintAction; import hudson.util.RunList; import java.io.IOException; @@ -47,6 +45,7 @@ import org.jvnet.hudson.test.HudsonTestCase; * * @author dty */ +@SuppressWarnings("rawtypes") public class FingerprinterTest extends HudsonTestCase { private static final String[] singleContents = { "abcdef" @@ -82,8 +81,8 @@ public class FingerprinterTest extends HudsonTestCase { FreeStyleProject upstream = createFreeStyleProjectWithFingerprints(singleContents, singleFiles); FreeStyleProject downstream = createFreeStyleProjectWithFingerprints(singleContents, singleFiles); - FreeStyleBuild upstreamBuild = assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); - FreeStyleBuild downstreamBuild = assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); List downstreamProjects = upstream.getDownstreamProjects(); List upstreamProjects = downstream.getUpstreamProjects(); @@ -99,9 +98,9 @@ public class FingerprinterTest extends HudsonTestCase { FreeStyleProject upstream2 = createFreeStyleProjectWithFingerprints(singleContents2, singleFiles2); FreeStyleProject downstream = createFreeStyleProjectWithFingerprints(doubleContents, doubleFiles); - FreeStyleBuild upstreamBuild = assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); - FreeStyleBuild upstreamBuild2 = assertBuildStatusSuccess(upstream2.scheduleBuild2(0).get()); - FreeStyleBuild downstreamBuild = assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(upstream2.scheduleBuild2(0).get()); + assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); List downstreamProjects = upstream.getDownstreamProjects(); List downstreamProjects2 = upstream2.getDownstreamProjects(); @@ -120,9 +119,9 @@ public class FingerprinterTest extends HudsonTestCase { FreeStyleProject downstream = createFreeStyleProjectWithFingerprints(singleContents, singleFiles); FreeStyleProject downstream2 = createFreeStyleProjectWithFingerprints(singleContents2, singleFiles2); - FreeStyleBuild upstreamBuild = assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); - FreeStyleBuild downstreamBuild = assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); - FreeStyleBuild downstreamBuild2 = assertBuildStatusSuccess(downstream2.scheduleBuild2(0).get()); + assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(downstream2.scheduleBuild2(0).get()); List downstreamProjects = upstream.getDownstreamProjects(); List upstreamProjects = downstream.getUpstreamProjects(); @@ -142,7 +141,7 @@ public class FingerprinterTest extends HudsonTestCase { FreeStyleProject downstream = createFreeStyleProjectWithFingerprints(singleContents, singleFiles); FreeStyleBuild upstreamBuild = assertBuildStatusSuccess(upstream.scheduleBuild2(0).get()); - FreeStyleBuild downstreamBuild = assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); + assertBuildStatusSuccess(downstream.scheduleBuild2(0).get()); upstreamBuild.delete(); @@ -158,8 +157,8 @@ public class FingerprinterTest extends HudsonTestCase { public void testCircularDependency() throws Exception { FreeStyleProject p = createFreeStyleProjectWithFingerprints(singleContents, singleFiles); - FreeStyleBuild b1 = assertBuildStatusSuccess(p.scheduleBuild2(0).get()); - FreeStyleBuild b2 = assertBuildStatusSuccess(p.scheduleBuild2(0).get()); + assertBuildStatusSuccess(p.scheduleBuild2(0).get()); + assertBuildStatusSuccess(p.scheduleBuild2(0).get()); List upstreamProjects = p.getUpstreamProjects(); List downstreamProjects = p.getDownstreamProjects(); diff --git a/test/src/test/java/hudson/tasks/LogRotatorTest.java b/test/src/test/java/hudson/tasks/LogRotatorTest.java index 4e80f5096c..18a736a774 100644 --- a/test/src/test/java/hudson/tasks/LogRotatorTest.java +++ b/test/src/test/java/hudson/tasks/LogRotatorTest.java @@ -128,7 +128,7 @@ public class LogRotatorTest extends HudsonTestCase { static Result build(FreeStyleProject project) throws Exception { - return project.scheduleBuild2(0, new LegacyCodeCause()).get(10, TimeUnit.SECONDS).getResult(); + return project.scheduleBuild2(0).get(10, TimeUnit.SECONDS).getResult(); } private static int numberOf(Run run) { diff --git a/test/src/test/java/hudson/tasks/MavenTest.java b/test/src/test/java/hudson/tasks/MavenTest.java index 49cd68531f..9dd05b1fcb 100644 --- a/test/src/test/java/hudson/tasks/MavenTest.java +++ b/test/src/test/java/hudson/tasks/MavenTest.java @@ -136,7 +136,7 @@ public class MavenTest extends HudsonTestCase { project.getBuildersList().add(new Maven("--help", varMaven.getName())); project.setJDK(varJDK); - Build build = project.scheduleBuild2(0, new LegacyCodeCause(), + FreeStyleBuild build = project.scheduleBuild2(0, new LegacyCodeCause(), new ParametersAction( new StringParameterValue("VAR_MAVEN", mavenVar), new StringParameterValue("VAR_JAVA", javaVar))).get(); @@ -190,6 +190,7 @@ public class MavenTest extends HudsonTestCase { project.getBuildersList().add(new Maven("clean package",null)); FreeStyleBuild build = project.scheduleBuild2(0).get(); + @SuppressWarnings("deprecation") String buildLog = build.getLog(); assertNotNull(buildLog); System.out.println(buildLog); -- GitLab From 4323b82e9889cc9039f9e595bd0901a3c9530cde Mon Sep 17 00:00:00 2001 From: imod Date: Mon, 21 Nov 2011 18:11:04 +0100 Subject: [PATCH 040/158] add extension to intercept maven arguments --- .../maven/MavenArgumentInterceptorAction.java | 73 ++++++++ .../hudson/maven/MavenModuleSetBuild.java | 21 ++- .../maven/MavenArgumentInterceptorTest.java | 171 ++++++++++++++++++ 3 files changed, 263 insertions(+), 2 deletions(-) create mode 100644 maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java create mode 100644 test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java diff --git a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java new file mode 100644 index 0000000000..bedd1531ec --- /dev/null +++ b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java @@ -0,0 +1,73 @@ +/* + * The MIT License + * + * Copyright (c) 2011, Dominik Bartholdi + * + * 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.maven; + +import hudson.model.Action; +import hudson.util.ArgumentListBuilder; + +/** + * Provides a hook to change the arguments passed to the maven execution. This + * enables plugins to transiently change the arguments of a maven build (e.g. + * change the arguments for a release build). + * + * @author Dominik Bartholdi (imod) + * + */ +public interface MavenArgumentInterceptorAction extends Action { + + /** + * Provides maven goals and options to start the build with. This is the + * preferred way to provide other goals then the default ones to a build. + * The goals and options returned by this method will not be persist and do + * not affect the default configuration. + *

    + * This method will be called on one and only one action during a build. If + * there are two actions present in the build, the second will be ignored. + * + * @return the maven goals and options to start maven with. Result is + * ignored if null or empty. Variables will be expanded + * by the caller. + */ + public String getGoalsAndOptions(); + + /** + * Change/add arguments to any needs, but special care has to be taken, as + * the list contains every argument needed for the default execution (e.g. + * -f /path/to/pom.xml or -B).
    + * An easy example would be to add "-DskipTests" to skip the + * test execution on request. + * + *

    + * This method is called on all present MavenArgumentInterceptorAction + * during a build (kind of chaining, each action can add the arguments it + * thinks are missing). + * + * @param mavenargs + * the calculated default maven arguments (never + * null). + * @return the new arguments to be used. + */ + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs); + +} diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 545fedf48b..1383506f3b 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -2,7 +2,7 @@ * The MIT License * * Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, - * Red Hat, Inc., Victor Glushenkov, Alan Harder, Olivier Lamy + * Red Hat, Inc., Victor Glushenkov, Alan Harder, Olivier Lamy, Dominik Bartholdi * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -754,7 +754,24 @@ public class MavenModuleSetBuild extends AbstractMavenBuild argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); + for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { + final ArgumentListBuilder newMargs = mavenArgInterceptor.intercept(margs); + if (newMargs != null) { + margs = newMargs; + } + } + if (maven3orLater) { diff --git a/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java b/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java new file mode 100644 index 0000000000..25eabb15b7 --- /dev/null +++ b/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java @@ -0,0 +1,171 @@ +package hudson.maven; + +/* + * The MIT License + * + * Copyright (c) 2011, Dominik Bartholdi + * + * 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. + */ +import hudson.Extension; +import hudson.Launcher; +import hudson.model.AbstractBuild; +import hudson.model.AbstractProject; +import hudson.model.BuildListener; +import hudson.model.Result; +import hudson.tasks.BuildWrapper; +import hudson.tasks.BuildWrapperDescriptor; +import hudson.tasks.Maven.MavenInstallation; +import hudson.util.ArgumentListBuilder; + +import java.io.IOException; +import java.util.Arrays; +import java.util.List; + +import net.sf.json.JSONObject; + +import org.jvnet.hudson.test.ExtractResourceSCM; +import org.jvnet.hudson.test.HudsonTestCase; +import org.kohsuke.stapler.StaplerRequest; + +/** + * @author Dominik Bartholdi (imod) + */ +public class MavenArgumentInterceptorTest extends HudsonTestCase { + + public void testSimpleMaven3BuildWithArgInterceptor_Goals() throws Exception { + + MavenModuleSet m = createMavenProject(); + MavenInstallation mavenInstallation = configureMaven3(); + m.setMaven(mavenInstallation.getName()); + m.setScm(new ExtractResourceSCM(getClass().getResource("maven3-project.zip"))); + m.setGoals("dummygoal"); // build would fail with this goal + + // add an action to build, redefining the goals and options to be + // executed + m.getBuildWrappersList().add(new TestMvnBuildWrapper("clean")); + + MavenModuleSetBuild b = buildAndAssertSuccess(m); + assertTrue(MavenUtil.maven3orLater(b.getMavenVersionUsed())); + } + + public void testSimpleMaven3BuildWithArgInterceptor_ArgBuilder() throws Exception { + + MavenModuleSet m = createMavenProject(); + MavenInstallation mavenInstallation = configureMaven3(); + m.setMaven(mavenInstallation.getName()); + m.setScm(new ExtractResourceSCM(getClass().getResource("maven-multimodule-unit-failure.zip"))); + m.setGoals("clean install"); // build would fail because of failing unit + // tests + + // add an action to build, adding argument to skip the test execution + m.getBuildWrappersList().add(new TestMvnBuildWrapper(Arrays.asList("-DskipTests"))); + + MavenModuleSetBuild b = buildAndAssertSuccess(m); + assertTrue(MavenUtil.maven3orLater(b.getMavenVersionUsed())); + } + + private static class TestMvnArgInterceptor implements MavenArgumentInterceptorAction { + private String goalsAndOptions; + private List args; + + public TestMvnArgInterceptor(String goalsAndOptions) { + this.goalsAndOptions = goalsAndOptions; + } + + public TestMvnArgInterceptor(List args) { + this.args = args; + } + + public String getIconFileName() { + return null; + } + + public String getDisplayName() { + return null; + } + + public String getUrlName() { + return null; + } + + public String getGoalsAndOptions() { + return goalsAndOptions; + } + + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs) { + if (args != null) { + for (String arg : this.args) { + mavenargs.add(arg); + } + } + return mavenargs; + } + } + + public static class TestMvnBuildWrapper extends BuildWrapper { + public Result buildResultInTearDown; + private String goalsAndOptions; + private List args; + + public TestMvnBuildWrapper(String goalsAndOptions) { + this.goalsAndOptions = goalsAndOptions; + } + + public TestMvnBuildWrapper(List args) { + this.args = args; + } + + @Override + public Environment setUp(AbstractBuild build, Launcher launcher, BuildListener listener) throws IOException, InterruptedException { + + if (goalsAndOptions != null) { + build.addAction(new TestMvnArgInterceptor(goalsAndOptions)); + } else if (args != null) { + build.addAction(new TestMvnArgInterceptor(args)); + } + + return new BuildWrapper.Environment() { + @Override + public boolean tearDown(AbstractBuild build, BuildListener listener) throws IOException, InterruptedException { + buildResultInTearDown = build.getResult(); + return true; + } + }; + } + + @Extension + public static class TestMvnBuildWrapperDescriptor extends BuildWrapperDescriptor { + @Override + public boolean isApplicable(AbstractProject project) { + return true; + } + + @Override + public BuildWrapper newInstance(StaplerRequest req, JSONObject formData) { + throw new UnsupportedOperationException(); + } + + @Override + public String getDisplayName() { + return this.getClass().getName(); + } + } + } +} -- GitLab From 28b50276d350d89caf5698b2221bd60c12085f31 Mon Sep 17 00:00:00 2001 From: Seiji Sogabe Date: Wed, 23 Nov 2011 17:32:49 +0900 Subject: [PATCH 041/158] Don't refresh in error page. --- .../main/resources/hudson/model/AbstractModelObject/error.jelly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/error.jelly b/core/src/main/resources/hudson/model/AbstractModelObject/error.jelly index 421a00d1b4..29fccb552c 100644 --- a/core/src/main/resources/hudson/model/AbstractModelObject/error.jelly +++ b/core/src/main/resources/hudson/model/AbstractModelObject/error.jelly @@ -25,7 +25,7 @@ THE SOFTWARE. - + -- GitLab From 1efd2f986867e05f94385c474f179f0bb590f0d6 Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 12:52:22 +0100 Subject: [PATCH 042/158] iterate all interceptors to get the first returning valid goals --- .../java/hudson/maven/MavenModuleSetBuild.java | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 1383506f3b..b0ab161665 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -754,17 +754,22 @@ public class MavenModuleSetBuild extends AbstractMavenBuild argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); + // find the correct maven goals and options, there might by an action overruling the defaults - // only one action is allowed to overwrite the hole "goals and options" string - final MavenArgumentInterceptorAction interceptorAction = this.getBuild().getAction(MavenArgumentInterceptorAction.class); - final String goals = interceptorAction != null && StringUtils.isNotBlank(interceptorAction.getGoalsAndOptions()) ? interceptorAction - .getGoalsAndOptions() : project.getGoals(); - + String goals = project.getGoals(); // default + for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { + if(StringUtils.isNotBlank(mavenArgInterceptor.getGoalsAndOptions())){ + goals = mavenArgInterceptor.getGoalsAndOptions(); + // only one interceptor is allowed to overwrite the whole "goals and options" string + break; + } + } margs.addTokenized(envVars.expand(goals)); // enable the interceptors to change the whole command argument list // all available interceptors are allowed to modify the argument list - final List argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { final ArgumentListBuilder newMargs = mavenArgInterceptor.intercept(margs); if (newMargs != null) { -- GitLab From 34487f09d7aadfbf57c1cf11797d8f7ee3ea2f06 Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 15:31:27 +0100 Subject: [PATCH 043/158] don't call getGoalsAndOptions() twice --- .../src/main/java/hudson/maven/MavenModuleSetBuild.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index b0ab161665..3fbdce0da8 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -760,8 +760,9 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Wed, 23 Nov 2011 15:36:47 +0100 Subject: [PATCH 044/158] update changelog for MavenArgumentInterceptorAction --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index 7db0b1a264..aa083a33ff 100644 --- a/changelog.html +++ b/changelog.html @@ -68,6 +68,8 @@ Upcoming changes CLI jar now has the version number in the manifest as well as the "-version" option.

  • Upgrade aether version to 1.13 and sisu to 2.3.0 . +
  • + add new action type to enable plugins to intercept the maven 'goals and options' -- GitLab From 9519de185b213d7b60e13f2159c5169ac40e101b Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 15:59:18 +0100 Subject: [PATCH 045/158] additionaly pass reference to current build to intercepting methods --- .../hudson/maven/MavenArgumentInterceptorAction.java | 12 +++++++++--- .../main/java/hudson/maven/MavenModuleSetBuild.java | 4 ++-- .../hudson/maven/MavenArgumentInterceptorTest.java | 4 ++-- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java index bedd1531ec..d754e7655d 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java @@ -45,16 +45,19 @@ public interface MavenArgumentInterceptorAction extends Action { * This method will be called on one and only one action during a build. If * there are two actions present in the build, the second will be ignored. * + * @param build + * reference to the current build, might be used for some + * calculations for the correct arguments * @return the maven goals and options to start maven with. Result is * ignored if null or empty. Variables will be expanded * by the caller. */ - public String getGoalsAndOptions(); + public String getGoalsAndOptions(MavenModuleSetBuild build); /** * Change/add arguments to any needs, but special care has to be taken, as * the list contains every argument needed for the default execution (e.g. - * -f /path/to/pom.xml or -B).
    + * -f /path/to/pom.xml or -B).
    * An easy example would be to add "-DskipTests" to skip the * test execution on request. * @@ -66,8 +69,11 @@ public interface MavenArgumentInterceptorAction extends Action { * @param mavenargs * the calculated default maven arguments (never * null). + * @param build + * reference to the current build, might be used for some + * calculations for the correct arguments * @return the new arguments to be used. */ - public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs); + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs, MavenModuleSetBuild build); } diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 3fbdce0da8..33985e5895 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -760,7 +760,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Mon, 21 Nov 2011 18:11:04 +0100 Subject: [PATCH 046/158] add extension to intercept maven arguments --- .../maven/MavenArgumentInterceptorAction.java | 73 ++++++++ .../hudson/maven/MavenModuleSetBuild.java | 21 ++- .../maven/MavenArgumentInterceptorTest.java | 171 ++++++++++++++++++ 3 files changed, 263 insertions(+), 2 deletions(-) create mode 100644 maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java create mode 100644 test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java diff --git a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java new file mode 100644 index 0000000000..bedd1531ec --- /dev/null +++ b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java @@ -0,0 +1,73 @@ +/* + * The MIT License + * + * Copyright (c) 2011, Dominik Bartholdi + * + * 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.maven; + +import hudson.model.Action; +import hudson.util.ArgumentListBuilder; + +/** + * Provides a hook to change the arguments passed to the maven execution. This + * enables plugins to transiently change the arguments of a maven build (e.g. + * change the arguments for a release build). + * + * @author Dominik Bartholdi (imod) + * + */ +public interface MavenArgumentInterceptorAction extends Action { + + /** + * Provides maven goals and options to start the build with. This is the + * preferred way to provide other goals then the default ones to a build. + * The goals and options returned by this method will not be persist and do + * not affect the default configuration. + *

    + * This method will be called on one and only one action during a build. If + * there are two actions present in the build, the second will be ignored. + * + * @return the maven goals and options to start maven with. Result is + * ignored if null or empty. Variables will be expanded + * by the caller. + */ + public String getGoalsAndOptions(); + + /** + * Change/add arguments to any needs, but special care has to be taken, as + * the list contains every argument needed for the default execution (e.g. + * -f /path/to/pom.xml or -B).
    + * An easy example would be to add "-DskipTests" to skip the + * test execution on request. + * + *

    + * This method is called on all present MavenArgumentInterceptorAction + * during a build (kind of chaining, each action can add the arguments it + * thinks are missing). + * + * @param mavenargs + * the calculated default maven arguments (never + * null). + * @return the new arguments to be used. + */ + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs); + +} diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 545fedf48b..1383506f3b 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -2,7 +2,7 @@ * The MIT License * * Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, - * Red Hat, Inc., Victor Glushenkov, Alan Harder, Olivier Lamy + * Red Hat, Inc., Victor Glushenkov, Alan Harder, Olivier Lamy, Dominik Bartholdi * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -754,7 +754,24 @@ public class MavenModuleSetBuild extends AbstractMavenBuild argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); + for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { + final ArgumentListBuilder newMargs = mavenArgInterceptor.intercept(margs); + if (newMargs != null) { + margs = newMargs; + } + } + if (maven3orLater) { diff --git a/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java b/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java new file mode 100644 index 0000000000..25eabb15b7 --- /dev/null +++ b/test/src/test/java/hudson/maven/MavenArgumentInterceptorTest.java @@ -0,0 +1,171 @@ +package hudson.maven; + +/* + * The MIT License + * + * Copyright (c) 2011, Dominik Bartholdi + * + * 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. + */ +import hudson.Extension; +import hudson.Launcher; +import hudson.model.AbstractBuild; +import hudson.model.AbstractProject; +import hudson.model.BuildListener; +import hudson.model.Result; +import hudson.tasks.BuildWrapper; +import hudson.tasks.BuildWrapperDescriptor; +import hudson.tasks.Maven.MavenInstallation; +import hudson.util.ArgumentListBuilder; + +import java.io.IOException; +import java.util.Arrays; +import java.util.List; + +import net.sf.json.JSONObject; + +import org.jvnet.hudson.test.ExtractResourceSCM; +import org.jvnet.hudson.test.HudsonTestCase; +import org.kohsuke.stapler.StaplerRequest; + +/** + * @author Dominik Bartholdi (imod) + */ +public class MavenArgumentInterceptorTest extends HudsonTestCase { + + public void testSimpleMaven3BuildWithArgInterceptor_Goals() throws Exception { + + MavenModuleSet m = createMavenProject(); + MavenInstallation mavenInstallation = configureMaven3(); + m.setMaven(mavenInstallation.getName()); + m.setScm(new ExtractResourceSCM(getClass().getResource("maven3-project.zip"))); + m.setGoals("dummygoal"); // build would fail with this goal + + // add an action to build, redefining the goals and options to be + // executed + m.getBuildWrappersList().add(new TestMvnBuildWrapper("clean")); + + MavenModuleSetBuild b = buildAndAssertSuccess(m); + assertTrue(MavenUtil.maven3orLater(b.getMavenVersionUsed())); + } + + public void testSimpleMaven3BuildWithArgInterceptor_ArgBuilder() throws Exception { + + MavenModuleSet m = createMavenProject(); + MavenInstallation mavenInstallation = configureMaven3(); + m.setMaven(mavenInstallation.getName()); + m.setScm(new ExtractResourceSCM(getClass().getResource("maven-multimodule-unit-failure.zip"))); + m.setGoals("clean install"); // build would fail because of failing unit + // tests + + // add an action to build, adding argument to skip the test execution + m.getBuildWrappersList().add(new TestMvnBuildWrapper(Arrays.asList("-DskipTests"))); + + MavenModuleSetBuild b = buildAndAssertSuccess(m); + assertTrue(MavenUtil.maven3orLater(b.getMavenVersionUsed())); + } + + private static class TestMvnArgInterceptor implements MavenArgumentInterceptorAction { + private String goalsAndOptions; + private List args; + + public TestMvnArgInterceptor(String goalsAndOptions) { + this.goalsAndOptions = goalsAndOptions; + } + + public TestMvnArgInterceptor(List args) { + this.args = args; + } + + public String getIconFileName() { + return null; + } + + public String getDisplayName() { + return null; + } + + public String getUrlName() { + return null; + } + + public String getGoalsAndOptions() { + return goalsAndOptions; + } + + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs) { + if (args != null) { + for (String arg : this.args) { + mavenargs.add(arg); + } + } + return mavenargs; + } + } + + public static class TestMvnBuildWrapper extends BuildWrapper { + public Result buildResultInTearDown; + private String goalsAndOptions; + private List args; + + public TestMvnBuildWrapper(String goalsAndOptions) { + this.goalsAndOptions = goalsAndOptions; + } + + public TestMvnBuildWrapper(List args) { + this.args = args; + } + + @Override + public Environment setUp(AbstractBuild build, Launcher launcher, BuildListener listener) throws IOException, InterruptedException { + + if (goalsAndOptions != null) { + build.addAction(new TestMvnArgInterceptor(goalsAndOptions)); + } else if (args != null) { + build.addAction(new TestMvnArgInterceptor(args)); + } + + return new BuildWrapper.Environment() { + @Override + public boolean tearDown(AbstractBuild build, BuildListener listener) throws IOException, InterruptedException { + buildResultInTearDown = build.getResult(); + return true; + } + }; + } + + @Extension + public static class TestMvnBuildWrapperDescriptor extends BuildWrapperDescriptor { + @Override + public boolean isApplicable(AbstractProject project) { + return true; + } + + @Override + public BuildWrapper newInstance(StaplerRequest req, JSONObject formData) { + throw new UnsupportedOperationException(); + } + + @Override + public String getDisplayName() { + return this.getClass().getName(); + } + } + } +} -- GitLab From 025cfd311a8835f0fc161e369393ca5df4182cd4 Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 12:52:22 +0100 Subject: [PATCH 047/158] iterate all interceptors to get the first returning valid goals --- .../java/hudson/maven/MavenModuleSetBuild.java | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 1383506f3b..b0ab161665 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -754,17 +754,22 @@ public class MavenModuleSetBuild extends AbstractMavenBuild argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); + // find the correct maven goals and options, there might by an action overruling the defaults - // only one action is allowed to overwrite the hole "goals and options" string - final MavenArgumentInterceptorAction interceptorAction = this.getBuild().getAction(MavenArgumentInterceptorAction.class); - final String goals = interceptorAction != null && StringUtils.isNotBlank(interceptorAction.getGoalsAndOptions()) ? interceptorAction - .getGoalsAndOptions() : project.getGoals(); - + String goals = project.getGoals(); // default + for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { + if(StringUtils.isNotBlank(mavenArgInterceptor.getGoalsAndOptions())){ + goals = mavenArgInterceptor.getGoalsAndOptions(); + // only one interceptor is allowed to overwrite the whole "goals and options" string + break; + } + } margs.addTokenized(envVars.expand(goals)); // enable the interceptors to change the whole command argument list // all available interceptors are allowed to modify the argument list - final List argInterceptors = this.getBuild().getActions(MavenArgumentInterceptorAction.class); for (MavenArgumentInterceptorAction mavenArgInterceptor : argInterceptors) { final ArgumentListBuilder newMargs = mavenArgInterceptor.intercept(margs); if (newMargs != null) { -- GitLab From 79e7b21c8577a9c938136abba7854453e5485ca6 Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 15:31:27 +0100 Subject: [PATCH 048/158] don't call getGoalsAndOptions() twice --- .../src/main/java/hudson/maven/MavenModuleSetBuild.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index b0ab161665..3fbdce0da8 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -760,8 +760,9 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Wed, 23 Nov 2011 15:36:47 +0100 Subject: [PATCH 049/158] update changelog for MavenArgumentInterceptorAction --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index 7db0b1a264..aa083a33ff 100644 --- a/changelog.html +++ b/changelog.html @@ -68,6 +68,8 @@ Upcoming changes CLI jar now has the version number in the manifest as well as the "-version" option.

  • Upgrade aether version to 1.13 and sisu to 2.3.0 . +
  • + add new action type to enable plugins to intercept the maven 'goals and options' -- GitLab From c167f52c9f65518e4f9164104afdc01673a0c18e Mon Sep 17 00:00:00 2001 From: imod Date: Wed, 23 Nov 2011 15:59:18 +0100 Subject: [PATCH 050/158] additionaly pass reference to current build to intercepting methods --- .../hudson/maven/MavenArgumentInterceptorAction.java | 12 +++++++++--- .../main/java/hudson/maven/MavenModuleSetBuild.java | 4 ++-- .../hudson/maven/MavenArgumentInterceptorTest.java | 4 ++-- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java index bedd1531ec..d754e7655d 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenArgumentInterceptorAction.java @@ -45,16 +45,19 @@ public interface MavenArgumentInterceptorAction extends Action { * This method will be called on one and only one action during a build. If * there are two actions present in the build, the second will be ignored. * + * @param build + * reference to the current build, might be used for some + * calculations for the correct arguments * @return the maven goals and options to start maven with. Result is * ignored if null or empty. Variables will be expanded * by the caller. */ - public String getGoalsAndOptions(); + public String getGoalsAndOptions(MavenModuleSetBuild build); /** * Change/add arguments to any needs, but special care has to be taken, as * the list contains every argument needed for the default execution (e.g. - * -f /path/to/pom.xml or -B).
    + * -f /path/to/pom.xml or -B).
    * An easy example would be to add "-DskipTests" to skip the * test execution on request. * @@ -66,8 +69,11 @@ public interface MavenArgumentInterceptorAction extends Action { * @param mavenargs * the calculated default maven arguments (never * null). + * @param build + * reference to the current build, might be used for some + * calculations for the correct arguments * @return the new arguments to be used. */ - public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs); + public ArgumentListBuilder intercept(ArgumentListBuilder mavenargs, MavenModuleSetBuild build); } diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 3fbdce0da8..33985e5895 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -760,7 +760,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Wed, 23 Nov 2011 17:16:36 +0100 Subject: [PATCH 051/158] fix compile problem --- .../src/main/java/hudson/maven/MavenModuleSetBuild.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 33985e5895..686ef58986 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -760,7 +760,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Wed, 23 Nov 2011 20:28:51 +0100 Subject: [PATCH 052/158] [FIXED JENKINS-11073] handle failure to set timestamp on Windows platforms more gracefully - this time hopefully for real --- changelog.html | 6 +++--- core/src/main/java/hudson/FilePath.java | 4 ++-- core/src/test/java/hudson/FilePathTest.java | 19 +++++++++++++++++++ 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/changelog.html b/changelog.html index aa083a33ff..3303a2e77d 100644 --- a/changelog.html +++ b/changelog.html @@ -64,6 +64,9 @@ Upcoming changes
  • Fixed ConcurrentModificationException in parallel Maven 3 builds. (issue 11256) +
  • + Copy artifacts fails on windows slaves due to failing to set a timestamp. + (issue 11073)
  • CLI jar now has the version number in the manifest as well as the "-version" option.
  • @@ -95,9 +98,6 @@ Upcoming changes
  • Dependency wasn't recalculated with CLI "update-job" command. (issue 11636) -
  • - Copy artifacts fails on windows slaves due to failing to set a timestamp. - (issue 11073)
  • Sortable table wasn't "stable" when there are same values in different rows (issue 11551) diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index 3a8f236db5..73646db2a2 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -291,7 +291,7 @@ public final class FilePath implements Serializable { /** * Checks if the remote path is Unix. */ - private boolean isUnix() { + boolean isUnix() { // if the path represents a local path, there' no need to guess. if(!isRemote()) return File.pathSeparatorChar!=';'; @@ -1429,7 +1429,7 @@ public final class FilePath implements Serializable { target.touch(lastModified()); } catch (IOException e) { // On Windows this seems to fail often. See JENKINS-11073 - if (!isUnix()) { + if (!target.isUnix()) { LOGGER.warning("Failed to set timestamp on " + target.getRemote()); } else { // rethrow throw new IOException2(e); diff --git a/core/src/test/java/hudson/FilePathTest.java b/core/src/test/java/hudson/FilePathTest.java index c91ce89978..dd385d8c92 100644 --- a/core/src/test/java/hudson/FilePathTest.java +++ b/core/src/test/java/hudson/FilePathTest.java @@ -23,6 +23,7 @@ */ package hudson; +import hudson.remoting.LocalChannel; import hudson.remoting.VirtualChannel; import hudson.util.IOException2; import hudson.util.NullStream; @@ -296,5 +297,23 @@ public class FilePathTest extends ChannelTestCase { Util.deleteRecursive(baseDir); } } + + @Bug(11073) + public void testIsUnix() { + FilePath winPath = new FilePath(new LocalChannel(null), + " c:\\app\\hudson\\workspace\\3.8-jelly-db\\jdk/jdk1.6.0_21/label/sqlserver/profile/sqlserver\\acceptance-tests\\distribution.zip"); + assertFalse(winPath.isUnix()); + + FilePath base = new FilePath(new LocalChannel(null), + "c:\\app\\hudson\\workspace\\3.8-jelly-db"); + FilePath middle = new FilePath(base, "jdk/jdk1.6.0_21/label/sqlserver/profile/sqlserver"); + FilePath full = new FilePath(middle, "acceptance-tests\\distribution.zip"); + assertFalse(full.isUnix()); + + + FilePath unixPath = new FilePath(new LocalChannel(null), + "/home/test"); + assertTrue(unixPath.isUnix()); + } } -- GitLab From a4b3becaa59ef615d3435657778fbf25dc3d5d8d Mon Sep 17 00:00:00 2001 From: imod Date: Thu, 24 Nov 2011 19:24:09 +0100 Subject: [PATCH 053/158] add reference to pull --- changelog.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 3303a2e77d..de2ee9ac6a 100644 --- a/changelog.html +++ b/changelog.html @@ -72,7 +72,8 @@ Upcoming changes
  • Upgrade aether version to 1.13 and sisu to 2.3.0 .
  • - add new action type to enable plugins to intercept the maven 'goals and options' + add new action type to enable plugins to intercept the maven 'goals and options' + (pull #316) -- GitLab From 142a7bb9a479b8456a97f3ddabe65277db4643a9 Mon Sep 17 00:00:00 2001 From: Jyrki Puttonen Date: Thu, 24 Nov 2011 20:59:40 +0200 Subject: [PATCH 054/158] [FIXED JENKINS-11825] Use workspace from AbstractBuild --- .../main/java/hudson/maven/MavenModuleSetBuild.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java index 686ef58986..32f79910cb 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenModuleSetBuild.java @@ -927,7 +927,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild poms; try { - poms = getModuleRoot().act(new PomParser(listener, mvn, project, mavenVersion, envVars)); + poms = getModuleRoot().act(new PomParser(listener, mvn, project, mavenVersion, envVars, getWorkspace())); } catch (IOException e) { if (project.isIncrementalBuild()) { // If POM parsing failed we should do a full build next time. @@ -1091,7 +1091,7 @@ public class MavenModuleSetBuild extends AbstractMavenBuild Date: Fri, 25 Nov 2011 10:42:03 +0100 Subject: [PATCH 055/158] configure test harness to avoid too much coffee cup on mac dock :-) --- test/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/pom.xml b/test/pom.xml index 344f831da3..172b8dafaa 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -236,6 +236,10 @@ THE SOFTWARE. buildDirectory ${project.build.directory} + + java.awt.headless + true + -- GitLab From 9ee7fba84f3ffc2e1cb4701bdc067d9d316b4f04 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 25 Nov 2011 11:07:11 +0100 Subject: [PATCH 056/158] avoid too much coffee with surefire too --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index bb0fd2830f..514e9a8b9f 100644 --- a/pom.xml +++ b/pom.xml @@ -312,6 +312,7 @@ THE SOFTWARE. ${project.build.directory} 3600 + true -- GitLab From 39b743d8cb6b2226244bcf28100655e599148641 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 25 Nov 2011 11:26:32 +0100 Subject: [PATCH 057/158] headless true for maven builds in test harness: too much coffee is not good for my heart :-) --- test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java b/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java index 865c4e22e4..9b7ff71b14 100644 --- a/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java +++ b/test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java @@ -624,7 +624,9 @@ public abstract class HudsonTestCase extends TestCase implements RootAction { * @see #configureDefaultMaven() */ protected MavenModuleSet createMavenProject(String name) throws IOException { - return hudson.createProject(MavenModuleSet.class,name); + MavenModuleSet mavenModuleSet = hudson.createProject(MavenModuleSet.class,name); + mavenModuleSet.setRunHeadless( true ); + return mavenModuleSet; } protected String createUniqueProjectName() { -- GitLab From 4f044c282bb2473c41a4fca32dbbd1f46d276995 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 25 Nov 2011 11:31:14 +0100 Subject: [PATCH 058/158] upgrade to wagon 2.1 which support preemptive authz for dav repo --- maven-plugin/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 2a731f81c6..d777097c70 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -46,7 +46,7 @@ THE SOFTWARE. ${mavenVersion} 1.13 2.3.0 - 2.0 + 2.1 1.6.2 -- GitLab From e10ddf63b181543b621c2970eea3deac03989a68 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Fri, 25 Nov 2011 11:32:59 +0100 Subject: [PATCH 059/158] add changelog entry for maven wagon upgrade to 2.1 --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index de2ee9ac6a..e4f7ff64b4 100644 --- a/changelog.html +++ b/changelog.html @@ -74,6 +74,8 @@ Upcoming changes
  • add new action type to enable plugins to intercept the maven 'goals and options' (pull #316) +
  • + Upgrade to Maven Wagon 2.1 which supports preemptive authz for dav deployment. -- GitLab From ebc59a7ae6d5ca3ea6f492ab9bd98edda63344a5 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Fri, 25 Nov 2011 21:06:16 +0100 Subject: [PATCH 060/158] change log entry for FIXED JENKINS-11825 --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index e4f7ff64b4..73bddcf5bc 100644 --- a/changelog.html +++ b/changelog.html @@ -55,6 +55,9 @@ Upcoming changes

    What's new in 1.440 (2011/11/17)

    • -- GitLab From 4e1b51cc4c03143f2408a47785d532573b8c87e9 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 27 Nov 2011 21:13:42 -0800 Subject: [PATCH 071/158] releasing a new plugin parent POM --- plugins/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/pom.xml b/plugins/pom.xml index b392c6a0ef..4c39dff416 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -10,7 +10,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.441-SNAPSHOT + 1.441 pom org.jenkins-ci.main maven-plugin - 1.441-SNAPSHOT + 1.441 @@ -43,25 +43,25 @@ org.jenkins-ci.main jenkins-war war - 1.441-SNAPSHOT + 1.441 test org.jenkins-ci.main jenkins-core - 1.441-SNAPSHOT + 1.441 provided org.jenkins-ci.main jenkins-test-harness - 1.441-SNAPSHOT + 1.441 test org.jenkins-ci.main ui-samples-plugin - 1.441-SNAPSHOT + 1.441 test -- GitLab From 2cf33f71189d7f4f9c74ff98cb80f036696d3147 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 27 Nov 2011 21:13:50 -0800 Subject: [PATCH 072/158] toward the next release --- plugins/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/pom.xml b/plugins/pom.xml index 4c39dff416..9dfe37964a 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -10,7 +10,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.441 + 1.442-SNAPSHOT pom org.jenkins-ci.main maven-plugin - 1.441 + 1.442-SNAPSHOT @@ -43,25 +43,25 @@ org.jenkins-ci.main jenkins-war war - 1.441 + 1.442-SNAPSHOT test org.jenkins-ci.main jenkins-core - 1.441 + 1.442-SNAPSHOT provided org.jenkins-ci.main jenkins-test-harness - 1.441 + 1.442-SNAPSHOT test org.jenkins-ci.main ui-samples-plugin - 1.441 + 1.442-SNAPSHOT test -- GitLab From 049270724d076ad679ab69dbcb48af6ef6a0bfbe Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 27 Nov 2011 21:40:37 -0800 Subject: [PATCH 073/158] updated changelog as a part of the release --- debian/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/debian/changelog b/debian/debian/changelog index 103692f1b0..43bb5d33c1 100644 --- a/debian/debian/changelog +++ b/debian/debian/changelog @@ -1,3 +1,9 @@ +jenkins (1.441) unstable; urgency=low + + * See http://jenkins-ci.org/changelog for more details. + + -- Kohsuke Kawaguchi Sun, 27 Nov 2011 21:27:17 -0800 + jenkins (1.440) unstable; urgency=low * See http://jenkins-ci.org/changelog for more details. -- GitLab From 3a3ca6b37cc4c4f0af089035ee4a55f435ff6197 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 16:24:33 -0800 Subject: [PATCH 074/158] UI brush up to clarify the distinction between "download & install later" vs "download and install now" --- .../main/java/hudson/model/UpdateCenter.java | 21 ++++++++++--------- .../hudson/PluginManager/table.jelly | 2 +- .../hudson/model/Messages.properties | 1 + .../DownloadJob/Failure/status.jelly | 2 +- .../hudson/model/UpdateCenter/body.jelly | 3 ++- 5 files changed, 16 insertions(+), 13 deletions(-) diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index 2aa42a635b..5e8db727d7 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -954,10 +954,9 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { LOGGER.info("Installation successful: "+getName()); status = new Success(); onSuccess(); - } catch (RestartRequiredException e) { - status = new SuccessButRequiresRestart(e.message); - LOGGER.log(Level.INFO, "Installation successful but restart required: "+getName(), e); - onSuccess(); + } catch (InstallationStatus e) { + status = e; + if (status.isSuccess()) onSuccess(); } catch (Throwable e) { LOGGER.log(Level.SEVERE, "Failed to install "+getName(),e); status = new Failure(e); @@ -965,7 +964,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } } - protected void _run() throws IOException, RestartRequiredException { + protected void _run() throws IOException, InstallationStatus { URL src = getURL(); config.preValidate(this, src); @@ -996,7 +995,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { *

      * Instances of this class is immutable. */ - public abstract class InstallationStatus { + public abstract class InstallationStatus extends Throwable { public final int id = iota.incrementAndGet(); public boolean isSuccess() { return false; @@ -1013,7 +1012,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { this.problem = problem; } - public String getStackTrace() { + public String getProblemStackTrace() { return Functions.printThrowable(problem); } } @@ -1023,7 +1022,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { * * @see */ - public class SuccessButRequiresRestart extends InstallationStatus { + public class SuccessButRequiresRestart extends Success { private final Localizable message; public SuccessButRequiresRestart(Localizable message) { @@ -1108,7 +1107,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { } @Override - public void _run() throws IOException, RestartRequiredException { + public void _run() throws IOException, InstallationStatus { super._run(); // if this is a bundled plugin, make sure it won't get overwritten @@ -1125,10 +1124,12 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { try { pm.dynamicLoad(getDestination()); } catch (RestartRequiredException e) { - throw e; // pass through + throw new SuccessButRequiresRestart(e.message); } catch (Exception e) { throw new IOException2("Failed to dynamically deploy this plugin",e); } + } else { + throw new SuccessButRequiresRestart(Messages._UpdateCenter_DownloadButNotActivated()); } } diff --git a/core/src/main/resources/hudson/PluginManager/table.jelly b/core/src/main/resources/hudson/PluginManager/table.jelly index a16746b0b6..1374ecad01 100644 --- a/core/src/main/resources/hudson/PluginManager/table.jelly +++ b/core/src/main/resources/hudson/PluginManager/table.jelly @@ -137,7 +137,7 @@ THE SOFTWARE.

      - +
      diff --git a/core/src/main/resources/hudson/model/Messages.properties b/core/src/main/resources/hudson/model/Messages.properties index e8a5c58758..eb3eb2d1cb 100644 --- a/core/src/main/resources/hudson/model/Messages.properties +++ b/core/src/main/resources/hudson/model/Messages.properties @@ -228,6 +228,7 @@ Slave.UnableToLaunch=Unable to launch the slave agent for {0}{1} Slave.UnixSlave=This is a Unix slave Slave.WindowsSlave=This is a Windows slave +UpdateCenter.DownloadButNotActivated=Downloaded Successfully. Will be activated during the next boot View.Permissions.Title=View View.CreatePermission.Description=\ This permission allows users to create new views. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status.jelly b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status.jelly index d4a3255bf0..1ee9ee5775 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status.jelly @@ -30,5 +30,5 @@ THE SOFTWARE. ${%Details} -
      ${it.stackTrace}
      +
      ${it.problemStackTrace}
      diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly index a21eee030e..e9a1907ab6 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly @@ -39,7 +39,8 @@ THE SOFTWARE.

      - Go back to the top page + ${%Go back to the top page}
      + (you can start using the installed plugins right away)

      -- GitLab From 6db6e176ada9db26e88258bd284f7efb0632b931 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 16:36:34 -0800 Subject: [PATCH 075/158] added a test for a dynamic installation --- .../main/resources/plugins/htmlpublisher.hpi | Bin 0 -> 18716 bytes .../src/test/java/hudson/PluginManagerTest.java | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 test/src/main/resources/plugins/htmlpublisher.hpi diff --git a/test/src/main/resources/plugins/htmlpublisher.hpi b/test/src/main/resources/plugins/htmlpublisher.hpi new file mode 100644 index 0000000000000000000000000000000000000000..0becc25c3836fd1063501d4bb0c40f5946423652 GIT binary patch literal 18716 zcmbVz1ymiz+AU6S2@b*C-QC^Y-QAtw?h@Q3xI2LW!QI{6-AVGu?QPT2-oC#b)|_)# zYi959nQ!LXvJ$``kN`izMja5(e}4S;1LEadN=T89N=#aqM)tqS-TBvT!!J;VY8 z0JwXJNWV`e#V0K$ETo`FEhQWnEh7U&2j6oh_4v-6BW1Wau*=yP~yok|5h`n9xVI3jv`wuTRW*2V7BkSuW(L$=A!E6Kif- z`E{5B%#4r~v;E(U3`6=qy6ijJV64er?n_$b6>kqWIXy$T`!9-s_A1XD2}lgoFj7B9 zW?_ChO&=gntL>T4KVc@Kk!I59yd-?+g2{Xf`&lrzQT#Z5fz>Be-tZIsOeE*T2FORg{wCGjKGs zvHlxq^uK`q(-ix22NL~VHa%-=8%Mn##6QQtFSC?EvxczxWrp&B0syf71;ii6z#se3 zz{c9x%!Jz9$kNhnMsciiiWa*4tdcg7)!ECotVJxF1Z1-h&{+U$a@wkPk4R~=>vnCc z@MQMj6CM|=XgZ=#0}n^kiGJ2u>^?{z@IuTPix`r_2`BMeG*@BZ(x~yVF!NrDvPiC_ zDdK_t1oYzgBR63;{-t)v(NR;bocgO^!&V?t?fhaafYwk5Sg?C|*wMR7kE^3iG7>B7 znJ#1ndE`^6CI*}jDK1;bskpe%7);6)yc-Fd^E3Ib*y-I4%U|!+@$@XFeNezXn)Uu2 zX{E;1+i=M`l|mfLK#_e#|F!PuzQf9Swz1Da2M~MFAsP2zL1+^qTj%|!ai+{Bn~9gqK>y~la_Jj~iI<799nRk0lqK+`0|#@bQhy)irW?QC-*E;rH;w6mV4=YG zG&bhKYV7zJrci>1n%y2LNzxA8aL-ECaB6Y6!W;P4<>i-Q&_kWz5BJjjFfUR39}a_8 zlhDvcz|_dVg4)4R&(_k&o`Q66Ok9e3f=ptVObQg>kF-u_$9Bpubk;ACCxEYtdVKb#HUb0ypyp*G z{HH}VHPSQuZ&3@Bt!$Q<;lEYr*eTI6Qd15|H)O|d0ffhA1J)FXa+WQ9@Qou4rw}qH zH0p!7Tyr5LnsZLqrvcO-+IARQ;d0?TJRaFualBpXqac;)+1R2%ZDdh+lgIk)#ucOQ zL#@R9wchO%RRoxTD{Yt&aa5%@tbY|_q4cI}vnFg(A8_&R#WA;c9VLOqEVuCD04xAi2_7JPC6l@W?7FzBfZpRIkj#fan&i9M7;>b%|nG$x$+%xIe=mtzJS z*fzlT*+?AEPCGmf&YcMZ^^BxGocprQr^{fhNGi?o@7y_5)w`kUHtetA6#-rj=4V9k~Qi%$>qBE_q zS@i6&;=)w(PKQqzKk5u)6j*((H*}tDV+9loC6e=K>8YH`t*T#^N2nzMRqI;?-GyPs zLxUE~pF_TlJMhm~_v&BBU9;kfb7mWuM}OZJ@AQXenp4#%4B7NGj5)0C0b&FFW7kC!xQHcZzEJUig-iFq^_suw!xL zH0OIWw~_$QSsCKa1kd@_ZkChj2Wuy{z>L#z^}d{B0jISfPM4DYz1HdfJ-m{0N#JL z78Cw)3!whbaWhd#!U0nV{+n=8TXor&P8wUph~6;~$Gf?+86BVR-@xCK%#U<;=V6{- zxkiw=!242%^$pOMe zHz%F0dJHcXGD0^x2SC(ClutgLuo{vci^PsE;jswEc$QDrozO~~=P*j;eC29+cWX1$ z-HQn_2k$JB%DQa=-X>*j99}R8ac0Z2E!SPCPL&6C;O11ng2WfTk*#V*?39P!A+-_g z-E3U8>&rELCSXe$O%Jqk!q6EF|^dB=Q>m_G}~R;(OXiY-b2-EoOcqb){Y@l)jFonpjW zB@XuRz#&7$QCc2OwEQ{DsG_{Vv{IEh`|xq%k{SfNG*ckgTVd8Yf+km%C-J1Tq>C&P z`ZAUBkTGy8K?B-wvo{YV;*PkQwI53bY9IT1x~piHi*vxF?s8mY%0nVBi-4?k{YsYn z)fPG2)zl{Ol^5l&#M(k>xGa&+k=t)&sn^*WxQ=Pdp6}}QR9mRcf>P?z9sVR81{nxHH<5v*VB3iD-!LOkjTtth(q$*5CP;b3@bgk&&eSJ@l% zDKHtD_yEf#dRV~so?iu!#V(E13bD|m_lRq&`e1mBpfDa)vJb3~A-N!pVJAO>h`sR< z!vOrqN8jG-gsFx{|CwcbwDVH1(>TVUmTX;o?j!hq6Wef+^zJ$HD&7f}7>aH1^0Jiw zz&iG75B>!UL;k%sMxVU%}{=4M`R1GVW(ULGxKY>AQ@Yzx8Gl#NTQByp|KDF0F+;j{&fFr!u~Qt z%hjMf6?YPO_Kf2^7@A`Y`QLBspb5pnBMR|x01|G<`3dl5f|atSG>ZjE8V99t@XD5; zm}i;e=nElfloXOH=d%M=zmL|hFJD@;b}4OLQLk@UnQ1>cZJ7Bs_K6`r#Sn4j>kUcs z+Fiz(=iW_*L%TyS>Z;c!A%fQDF}8vH4@&MmVvt`o$cXmWlpc%4zi;FtKBmNn9Vjh4 zG<#|*960&5;brOc?@0l69OvsyR;FKDJjx_~8xo^-mndk=VD$AS$XbIOJu?J5UK`qj zyDk*>ahz0qR6zeE;4{15k#Ws)-GTA72LkY0$;6tX`<&R`c$T93m>5G!`fyo)S^oem zb&^_WZ%J?JV1ab10FA}*mwqFRBl@T**S3fqKlL2Dg80FCqAc=Al77|l3&GCh{0l?1 z)*S|+tzrzBDc6=>21f3o0c>s!ZYKOrHjJ#J?G(?<-de_rM6-&bi1kG-e~mzwReQQCwYSB#l7TRj*$xfj8Vw}Z;HxKy^AwX$16((MVT7R&g38hQlU z_;nw;LfRyEcI=D|LS~N223$Byv@m9fqyn&>lxSvXnDy<%l*CeRNnDeUBiKHl-mu=|>_WUfBcVGd|l?;k+F? z0eu2*)Z;6X{+=$vvfo!>>9DLU31KrZq6&pyRe0TXwzfJ0lp;qEdqkAd%r9%>th;a) z^kPm`nC3RzQxb~jBYEDuN+kM4g=t&#fXdO47}(nhQ3V`7G!l-Dv~TYhQlSI=M^d=5 zc+eq4HFpU#M7w%<-OVeOpoJo!l1B$ygKj@IYc6xoNlJ70*FQb!4k3B~o=EzbcqA0} zhk)P_C|eZ*qPtPVGzfFBe2Ik`vb4-PiEy_jH)P)f1_2_y!w@bbg4TzQ&G_b;O;Wd_ ziqW;AXpE$p+0ZN)Y4)z}cBre@nZQy5Q3N>j#QB&%p@ag8EgWO)_`_lX6;W6=%v3~I zq0ZZAYbGFkQ@bLxWV1z87Z7lWqDm5xZ^w}X&W}OD@Pi#ZrgH{thKmhGS`!~rwA^}Q z^!U8K<{Bqf>Z&s&aj2PoH~CN!a56<~29dAO^(;4UDER>sN+Nfo3PF@ZJ2d4MiO7+9 zDgcYINqyO-$Z#fWBd^!ePZB0?dxewCk{VH$$zad~-Oub~UR_l+kV%c!Lvhslh-)DU z8tsj5ndC8{jl)?!MzY zm(NR3$pQ_`M|JU!7s{yK;JoxKEc3iF}e4qhhO3 zBs+s`o(_pcJ%dE>v$gtP$+Jk_Jx4}HlAn#ckq{hOr1kd8NjZZsLxxGajDNf9ZZw$g z5|LsuUhVnXVdFgAoaIvNSw1>%!0_W;%|w-|62WAlQmNTs z$W@ZKac9VusCjceQNG2(#eTLE?H|)8UOanA%-M#`5cWW_P0c+JlY;5^4arA+Z>&Ge z@f&4d4DSVNe`uQT_{S?M&(hJXtucZHsyD%$IqO{*33^PK?-PchEaGAV@L~->EI21b zaj_t;fzY5HrSh0Cjw>?)gAJ9n93o9xdD0oT%jEsd8(sMnSnEW0X!f6l+NJiq@TX6n zi3+1YoqbQ~UhKRwy2uRU_~g!@SxQJ@-~ny|edezGp{^iFji)8QdM4*9na_t-&A@57MzCchRwhB-W0h^(x~wX4Wy=e4&NYwtbXduz^4YT{?A-7W+aF_?9Qh4f~Vz(?MMA8p0? z<_-gG0Demyg?lpt{(x85b7TjH{mg)fpTmQ7deWaln-Wj?J%u)jy{YGfQJE_Sa-Pzw#(U_gX}TKd zlI1pV({hB6-f}}Zp59`IV3scoLH5!bAP+Q|5qM1wFNf*!nfw`)3Sh&^8fU{=StbyP zMk-~Gv^OX8lyUohVP%IoEe++=MT;6MDP;3yU=p`b(|foD!V&MdOKVAC1M(mU&Jt^j zaRYq=XO6;on=L7En-buF0mt00-_8!L#8v6E(_v;JNcC=3gwry}4nm&Xa-SAnXEwTaM-XC$-UxSg8RA?L_TR-w z6IWj-0n#mIeTvbTMI}Tuln14Dv79ZBW2nFJlN*}%u6Ez&xna{n zD~zoAfHy#QRMKC%@IrV>W1vBo$ia!5Y7miHT=T}~x52kt))U_bgnqXAYw;Y zDhSP=ABwZnx6%L%+vIQq)7GQ<3_xBlgjmRf4@+y-4`@G;YBi=F9yf9blp&A-vl_8s zBHZ9V)w>w{-A}V6uXlJ8m%3&&dJ-F*GI_ODhZyah83Tq-2c@2n=q*dS=T59$oSt4= zTfs=9-U_=&-8cjVkJ@~^1r)xRG+EywEet2*fGdzSOh{Ym!p-CU_?dF^X4JXG z5p!#>YgAKAnc-s4t<#Z)x)*#qeS#^IBxwtKyX3NXQzY@Rv02hdB#f)(_$-Kkt-gt8t5i5IsdO@-%Cx9;{ScdoAcd&gHx!XrgH}$TahZ5c8$ zL0KT?cIISg`$Kj0k_~$rq9GyzV>~y;7Ihg?OOoPnW!{RSAP%S@6dM3hNf{1d1rMKi z-!UJ#dpcG$kgDL^76&%LggCCYF!FXDW>u;wPA=wwf#9qq$qC@br{p6vtNy-POPgF7 zUCPeK_$1k^Tp3_;AVxi+`<|QV*sYL2PcMu_)B2uaV%2nGvrNm##9lEb7Kqx2PBeWI;yho)Ope5vbOehKsDo9n zC?c!#9nFhWjDC1<1l1CJmqdG`yA8BUH+f`Hba=s z#o!C)XEuP8ROKy+<8QIewR@id}dpLi^cE}o)VQD#|CkT6|Vf1|R$}JG7eOnH& z;zf<&RYVuNFk)v{iP7;UFc+~fVk->SGb=!8XAb%8%=lcgS@ZX!VD#{XFyn-ksX=U? zQZ;~w%QI`nK}%I{Da$4qhYy@uGW?X>#rI)i`i^3#aHX!37I2GHT#oz{oXy|YIRg|i zVfj*Xw_x3-K}tOCo0~erpileX%p?!6OLORk7T?oYs~r(*9#g5F^hnOSjB7c<%_b&u zy}uE-e)F#95pdYBd?MZv(&FixbXVFNN2bdyK>%Ce^wwfnPMTbJs$6Y#em!+QuNV@r z1;iL@Olvl26@1N#LelN94MiZ5h6&}*dCB1k_qwX^Gp>x5P2XhyI$D^>D9Bu;d zk^I;R!`3$xE^DCo0=)&*GnQU&=qY<525u?F>;1BIU=a{HgSIEnE%?4g11c&GP^0<# zwG@Z+LW1wZq7!O2)H0BxJ0D$U`c*jrzSlorEa!Hc^-;2GGIr#*2u{8iEVGyNy74IAiaQma$0UU?nn6az0|DS@K0Nla{KRe7(3cpmbp&1@ml7%Dq1`% z8oRV&b0rLIy-0;tzbex6dMs~&vYROcX)utgeBh`Mn*bWWRR(g?3qu)kQEG)nj6zXr zm3J(Dsg$BiU?aJMW%V0HGX4fblXCjfm<7ZXr2$JaZhjX(4JR4+c8{Uh31*x;BQo_< zs$eE=Xuuih1!OZsD|_bxFJlvq%M9zlC0FEUqGA-)od^(YAF!$I<~`;B8T+mLyPoAP=Uc zR)$sI3LiWgOiL;2*@}%PJRLeWR>bQn#HTjF9prR^UCN&xsT3L$>Kb zl=}oJc!~1G0%wyx^nS_zjVJVlS1Rn()iv$ckap=x+`VTkwmp{l2L`Uu9mf9n16G+L zlBUeeZDIC-700l=Yg&>6vsJ0Fb8Ppdvpj}pT&}+8sjFxFPoHfj?h@=D+v!8Svo$4Y z$inx72lXFgYa+bM%JQ>FF%OJ(z}$tJQ@l%-rFj%i3sn+5_CJi@GPRjkQov1O4&r|0 zXA`p_FFKeTM0b~Pi}fyTllFN}f%*Hg{shd+N3KJB*9D%i_`9Y~sZ-&9PtyX!KU{2O=muK^{wa z*OPCvi>Ay95EgdD+C0Z77!K01=`&rfn72oP*IR=3Bh|84*|W5hc(NGw9k zzBaG(gm>JsmLgUKGs@7Slq{FxE2#4mMZO0r^0o&fY6-P*kNcfqbaT~CcvU0tHywfR zf@^&Xq0_uPRoeLd@m@vh2Sn$!M^eQ?R%JMa)!Ke%Cgfv2y~lmmH1}b~kq72eb_tu^ zVN#i~3YP4X=}3<%M^A6tu0a;iW0O7)={&mp@tqDW#WIxr<%;RY3o*k#ylVRIJD>tA znUs<(rIZRStvoG#4ShoueVyVPTL?K?dRoS9@zF5~YBF*u>H(S>DsifQ8gd9RN^uz~ zvR$B8w_Xw%wH@IvMW}y?lK-qI|9#c}-7CCK0PPX z1=2pB4Nu3deMhaS@O@+bPx80VC>{YiXKWoSx;j0;B`IOj#-Wld@&dGF#oj785>vWm z2u%ewPO&)^PE? ztI|XbM-4-v+o(lLsv}`>X}#+KxC8Ky?N2;)>#*{2H&658`XT&pDox0*=V0`+;{Uz> zQ?{_d6hh)MpiwhXL+rC!tPAurQ@7l!#^Z!+LQ2giDog`+QWuSl={@RPHU8APqSgq3 zh#0NYNwZEN%E+g<34Wdj?=l)e{pGsL=-CtDaqn+0xg zsrhZD@7;wj#vm9~CHg)59K*e6Umv?Q8f{hn^AMPDbzG;EkxlW&+jphxZG-9ZCABvG&ir^jU_PwhrK(!=vO+bP*BiB>rHAxD%G&Kg&}bU&gv|?Zx2c0 zqAtk(+OtQJg&mN6W)^d2yxgBIBtFO<{jUb749d_CAL)#8Jv~wqHZczPOMk5aqRr=i=5yR4V9wMBUP-5)g zEFz$Rb;1M(90{@MCE@&w{fzo;-AHZ2D&|CID4c7xKKRBXj-xTf&^*6O4gT$6V zP+HPM6NFrDYCZ~)J-~Nbp4DS86b+?fQD%~yTM5BidOHt8Nfgbl46_(ZFde3M7?3(r z3QRnzJNZSeEQK{v?A;MDa|}y$=$ItsCe=F^NyTa*eHMId<~_{Qx%{D*dwcyAS|R=T zKB>h03b9WqDh%=u&!0z9JtWcj5k@E~L&q)xL#>ugRPQTMW02U|crok21*12n0S>g+ zi!-egBiqNJQ4?L}a%rym-&QM~%o6|}__Yu{>>&~mGb*#)v^+(AbU7{Wd?zC64u-Oi z*TgRQJ!_t4cOp*VE<{VEmwrPyR|*NNGGJ4K3VOAL>BZP5TN*5xq}CpH&O%N{pPX)e>7$ni3( z2PtyT)G6(D%CJv@LFThKxM-qr7VcMyW_ebbE!CP&0z8n|BN|P-r3`fq+A1Pt7i>Go)~yq8z*@#2pBmGbe@rR-hDX&M>;o% zE1L#9F4f4-(C5z<^>RZz;ekG#C7Rg!M2d02ZQE+4_^M(`G*)t`YoNX`VEn{oD)}8kh)3;0ojzI^#z29NnV(%cPb&D zxQg^ZU$(h7!kk@b>h4p*IdE>fH5KY=cRoRe0g3lGoQX2Pv&yN$NVFgA8#NMId3i3t zadtyr`cmp3n!+ekb@-@eS5{#poQOABYJ4lXzD8dhnR5vbYQzUt?yzK2wiU`wu;%x{ z8I#HePXa-V2SMJaRE-6l~IEx>NL)okJBW4Mfo$uK}i_`!<6+ zvm&{nFP>kcq?tw)PttMiXdGGhO{P)!iRXnCQOe(Mos}?D!2 z84V$k=0jC9=B_!Zd_Aw2{`&djd_s`ElXgs2@MKZ=l1g7?Qxr|!Q)s!|!8MCPoRbL1 zD3ehtJ?kgqLC7`VN?o~5Cvi;BR2Hq^T2_+;vQ^kPNj2{t=2I0=a)=5KXDbCqfw6=# zYTLF>P*}SPMl6x&AZ4)w(g_as5hKF(1`hBvIWKgN+D0#BMkYwPNmz~)LsrSB_ z(5!5wdCHc!e|yX47$Gjip3tD_ZqqlvBxs&Eyh3bSil3e{ri=;_g&%~(^A0y5EjG&WKdZ+wzRgV0{%Ou{5E)g4*=Kua3HEdjt;cS_e}%uJzd=D)=q7g8f8`*1;mmYjsn(722 zSp+`n$V&CeSbMX4>Xvq?&ki*S!@ACIGooEOagO_oY7%8YyRRAWb7x4k@xGKI;0Mi} zv!`@a38@yP+^Ey1iJtD>>Vh{WQCXv6`oXb)V_UqDW&$j{V#&QgoFV<796|1s&R;~# zcg2r?@td#XFRo_l^zg~*?oy;r^fAOXKue*Vwg~OCGJl9+_DV;g3 zwK#48{O9+1g#E;zi^MS7V#{H?TL~%N2|FAOVU*48v;#W&V2}(k*K|`j<2XH46iX?( z{P^w5eWwexd#5WN-+k`Jd;rMjF*?nbNAaRL+FDB2Te0Zxxr1?N$4UeBp8K!#Vef3S zd?h$3uV}}*!~B#$Er1r>4LM+Zp@b>SK{87lKLt5n7r4Ve79vyEx@ha>8?$IJM0k?X zx;CYS`6D+wY2jy~hSPoD>nt|4ZFf}XyU z9obq@UuIdSpVMO3to^2iC?7|G*l^ z6Z#Fgop^}wfeaqi79vC?off&0m`o}43jle+(PMA_9I`_oT4k;%c2bo%O0VQ|_^{1W zzqw7!YWFyHLKiKJ2bvqQNOe*U+5_?Eno;Kd&e%Fe#U0w&HJVZ`qU0T_y+4)@&ZcZD z)&r3@$)~QeSa0sET&c0+t?47*^Sxm4Y^(&{PNcf|N?i;FBsxryeA~C|6CdDU%cq8$ z${OIDWS6c47Hhy4$wk0?Vkz%uV>|O8{04YXqt`a|mtn}vt3B?6Xx&oh7*g*3XsXmm zzz8qAI1`hz(c;H||h!E0%D7^-13yq`K3C+F)&SDC2ikb1Ew8`Tn&ddRuO4t@@l-&~enun89 z`&qh21I727JDLt4v@ea2w;N2@+BP{GFrZI%3}Gw}d|P-!0#U)9NbX3DNW*!b^@Ado zAW?M5O}lfUC43|Gkz9}*yY$3We1mf%;{3FlhHCB%msP63;S4zwE|LOn!x>cQ^N6~K zqqjM`8wfvsppkeI_<lG9%3@*aD2_rhL@X92!dH8VbeB!tV&M^HUu|J9 z$VFOFpd|ydonm-NIX7KLXJe*4fOoN~o*KYuarDvFR(ErN>b>v0JFEX3knkYfbdcPk zS#$bnix)63FrqZkA!$|#`l_vuZiYon^XOc+k_Z~+DO?2uj>&GQ&zL3$YNA=|_O_#U zTvaRN5*^q_w9b!VS54Wus9xmqt|DETFojq!kDGL>N)u!HG8eYV!9}szw+jLtY4oc~ z7jMprU2$+^955{=K$F)Ryf zhkv!|H=kJ#t=V;4ufUTcxKG4in%c~ew_KA<%gi7~2Br});zg2hNusIoQkT)y_=jYGydrvmW6V5J5YpfKDSUCk;5f(H zR2*4B6HZ;_-g3}?&n<|j{HY5}yE+j@zsH$53|RxC(@vcwei|Z`Xp>cpU@5sUrCMqr zYvSHuA;!4cO_@~D%a=Dta90UAbjP-4x9;hy0$gS)ZY4Cm8;|pkzI#W*6Em z=+ktk$!Na5c$pKrIdQ$UVA}Z#NKWOXyZpJ+L-PAdh;pQ8ZoS?V`m2l2Wv2G%OBFq- zU45y=Rg~%t$8Pp@(OHF})k&vHbt4xO?E)6`^?pHTZrZ|6kom}t0cMpdX!Baq5!UJ5 zP}l9gHl@6s$oy4`p2!&v&jgdImQRq*F+Ch+kP2&M*-;;gx6rzqvI{w?z?@X5%)Ouv zQSIcKE)YQ{Y4SaJS9V(S8S2Bd90rgQXHJd2G<#xDblqYiPn^w%@{r%R4nAx7s!)Fb z?&LsM*Fw0J8b2ftT;`c(gJj&&P^s>lYhv+?;GvkVOPZ;R3)T*rM(9Bjs*h4%YQ-}% zNe=p4smlxi7t2^`it-@)?gVq|KUGBn-TgMIU zY?SeNThwEZKhHkV3&@%kAO-ao!E&95tcHTfhVs7P@fSoGT2I6vgo)qH+hc9fHaw5A5b;#gmi`q6H} z4}3heV8O%3zNXKWwi!VuQ-erv-YF-a}ef9d%OaMSXK3)R#OZ-)M_p7At zw>C3!wY70DGW>NwQt2D%Svvs#Hk$sdo&2G<`7O7Vp0m;KRbj7%mc)NfY-9gJdu455 zX6-;_U`B0g>16Wq^EYej&xDNsXN*6pzJ3m(-WOe``1*o8?MsV{z8vy?==EMz;eV9s zkBGK5R@AOmmWhfQ7E829-eZ-tZd4O?vt9ICDV=C#8k3365ucESl&zR*2npFf`0xzW zyyHOK$42yw;`Ul=CRb8#m($Pl>Ir<{q$*c};0ay{gOu!voDhgge<}ncH0ipg1oFTUCvak^oi4qK*#vUM zjn}|xfr5CJ4G2HbmqNFpd=YEKTRp#uE39Z-Or}?}puDMMEbxi^U8bNg zj|@hK0Sx@IY{;gh*&+>o6aZWi*W`o-y1YP4xVpOpO~RmD>vV#yth(-}{FP!oib-jb zmf~i^Qa)|Yqz&CffkQQ4;@%K}W|tf4h%skQf0|cA4A`rKAA9S)d=pB?5Nq4U!Zyy& zf%rpU+`|5@%<*LaI={ppcbflpAllm7*c#b8ni)C33|2$FEZ_j+Tsn5+3o(WMs{6Qa zHgO&I;qp&Xgtv$^?LohwAVio{wyZ_p)md>{2+FE*)D!v z_Wmx{55@7%Txq|{_3L8!ce#HkkbmYL_>0_sTtog2>xUxwCl=_-YV~XRe=W%$u|!|# zlYe%}kAe0p){pNWE8Z{RN6X0kL*zf|WL}o)|4sBmvHX+h<3A(%O~3rV@qZ|of8yW& zEBv2t0)JbTAByImR6jIEuY2RS@%eWx@*;Ei9ZcBY!TkRG@)Po}70(PFa%t8I5n*60Y?KRtLG0ji5ke74XKWMjKuCHFhzjmPb34ew6&*1;- zPVt)HwOhnb0&o0(MDYK0l6cMh+Be}Rvjf4uVE#)_h1Z;~pEG}Q*1c?Z|Dd;isV(8p zh3v1p@AaF-Pd=WPt>)kH{pkhcbtPZlr2Zturu`SBe_gZJ2KY}BN#=h;@;`>>Yb*LE z&FNpz{LZF+-6*e3*q=ZxFSpIFd*Zi!<@X!HYlHSR#Sh4r?eIV0hsF16$oD;c@qhZC z6n|;|{lxyWIrhW;`z8E1N^rhhfBaV5U#-EP+xK7DgFiEy{Wg literal 0 HcmV?d00001 diff --git a/test/src/test/java/hudson/PluginManagerTest.java b/test/src/test/java/hudson/PluginManagerTest.java index fd47f6a6ca..3ff3456dda 100644 --- a/test/src/test/java/hudson/PluginManagerTest.java +++ b/test/src/test/java/hudson/PluginManagerTest.java @@ -156,4 +156,14 @@ public class PluginManagerTest extends HudsonTestCase { t.setContextClassLoader(old); } } + + public void testInstallWithoutRestart() throws Exception { + URL res = getClass().getClassLoader().getResource("plugins/htmlpublisher.hpi"); + File f = new File(jenkins.getRootDir(), "plugins/htmlpublisher.hpi"); + FileUtils.copyURLToFile(res, f); + jenkins.pluginManager.dynamicLoad(f); + + Class c = jenkins.getPluginManager().uberClassLoader.loadClass("htmlpublisher.HtmlPublisher$DescriptorImpl"); + assertNotNull(jenkins.getDescriptorByType(c)); + } } -- GitLab From 21fa16672da16c4712b34da4ff39faba27043a38 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 16:47:26 -0800 Subject: [PATCH 076/158] support discovery of ExtensionFinder --- .../java/jenkins/ExtensionComponentSet.java | 19 +++++++++++++++++++ core/src/main/java/jenkins/model/Jenkins.java | 15 ++++++++++++++- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/jenkins/ExtensionComponentSet.java b/core/src/main/java/jenkins/ExtensionComponentSet.java index 9fd3a6d697..dee05cbbc2 100644 --- a/core/src/main/java/jenkins/ExtensionComponentSet.java +++ b/core/src/main/java/jenkins/ExtensionComponentSet.java @@ -28,7 +28,10 @@ import hudson.ExtensionComponent; import hudson.ExtensionFinder; import hudson.ExtensionPoint; import hudson.model.Descriptor; +import hudson.model.Hudson; +import jenkins.model.Jenkins; +import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.List; @@ -80,4 +83,20 @@ public abstract class ExtensionComponentSet { } }; } + + public static ExtensionComponentSet union(ExtensionComponentSet... members) { + return union(Arrays.asList(members)); + } + + /** + * Wraps {@link ExtensionFinder} into {@link ExtensionComponentSet}. + */ + public static ExtensionComponentSet allOf(final ExtensionFinder f) { + return new ExtensionComponentSet() { + @Override + public Collection> find(Class type) { + return f.find(type,Hudson.getInstance()); + } + }; + } } diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index 3b1f85bec5..bbcea5eba7 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -27,6 +27,7 @@ package jenkins.model; import com.google.common.collect.Lists; import com.google.inject.Injector; +import hudson.ExtensionComponent; import hudson.ExtensionFinder; import hudson.model.Messages; import hudson.model.Node; @@ -1950,7 +1951,9 @@ public class Jenkins extends AbstractCIBase implements ModifiableItemGroup finders = getExtensionList(ExtensionFinder.class); @@ -1965,6 +1968,16 @@ public class Jenkins extends AbstractCIBase implements ModifiableItemGroup> newFinders = Lists.newArrayList(delta.find(ExtensionFinder.class)); + while (!newFinders.isEmpty()) { + ExtensionFinder f = newFinders.remove(newFinders.size()-1).getInstance(); + + ExtensionComponentSet ecs = ExtensionComponentSet.allOf(f); + newFinders.addAll(ecs.find(ExtensionFinder.class)); + delta = ExtensionComponentSet.union(delta, ecs); + } + for (ExtensionList el : extensionLists.values()) { el.refresh(delta); } -- GitLab From f4512aeb4b473e052c93de4de55aa16c299bdc62 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 16:59:03 -0800 Subject: [PATCH 077/158] fixed root action support --- core/src/main/java/jenkins/model/Jenkins.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index bbcea5eba7..261031efcf 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -1984,6 +1984,12 @@ public class Jenkins extends AbstractCIBase implements ModifiableItemGroup ea : delta.find(RootAction.class)) { + Action a = ea.getInstance(); + if (!actions.contains(a)) actions.add(a); + } } /** -- GitLab From 992158b67e66de69c050923bb65e22d1dde4ad88 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:01:22 -0800 Subject: [PATCH 078/158] filled in the real version --- core/src/main/java/hudson/Extension.java | 2 +- core/src/main/java/hudson/ExtensionFinder.java | 2 +- core/src/main/java/hudson/model/UpdateCenter.java | 2 +- core/src/main/java/jenkins/ExtensionComponentSet.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/hudson/Extension.java b/core/src/main/java/hudson/Extension.java index fe7872fb31..8fa8d2bfe2 100644 --- a/core/src/main/java/hudson/Extension.java +++ b/core/src/main/java/hudson/Extension.java @@ -105,7 +105,7 @@ public @interface Extension { * is marked as YES, then Jenkins will simply dynamic load the plugin without asking the user. * Otherwise, Jenkins will ask the user if he wants to restart, or go ahead and dynamically deploy. * - * @since 1.DynamicExtensionFinder + * @since 1.442 */ YesNoMaybe dynamicLoadable() default MAYBE; } diff --git a/core/src/main/java/hudson/ExtensionFinder.java b/core/src/main/java/hudson/ExtensionFinder.java index b91b5c01f8..cd130b592f 100644 --- a/core/src/main/java/hudson/ExtensionFinder.java +++ b/core/src/main/java/hudson/ExtensionFinder.java @@ -108,7 +108,7 @@ public abstract class ExtensionFinder implements ExtensionPoint { *

      * The behaviour is undefined if {@link #isRefreshable()} is returning false. * - * @since 1.DynamicExtensionFinder + * @since 1.442 * @see #isRefreshable() * @return never null */ diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index 5e8db727d7..2b03deff53 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -1081,7 +1081,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { private final boolean dynamicLoad; /** - * @deprecated as of 1.DynamicExtensionFinder + * @deprecated as of 1.442 */ public InstallationJob(Plugin plugin, UpdateSite site, Authentication auth) { this(plugin,site,auth,false); diff --git a/core/src/main/java/jenkins/ExtensionComponentSet.java b/core/src/main/java/jenkins/ExtensionComponentSet.java index dee05cbbc2..66678c17b0 100644 --- a/core/src/main/java/jenkins/ExtensionComponentSet.java +++ b/core/src/main/java/jenkins/ExtensionComponentSet.java @@ -40,7 +40,7 @@ import java.util.List; * Represents the components that's newly discovered during {@link ExtensionFinder#refresh()}. * * @author Kohsuke Kawaguchi - * @since 1.DynamicExtensionFinder. + * @since 1.442 */ public abstract class ExtensionComponentSet { /** -- GitLab From 383bd9a491fad80d1c302df1b92871f811bcab46 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:04:17 -0800 Subject: [PATCH 079/158] recording the previous branch merge of add-plugin-without-restart --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index 8bbfc1abea..d7edde5971 100644 --- a/changelog.html +++ b/changelog.html @@ -71,6 +71,8 @@ Upcoming changes (pull #316)

    • Upgrade to Maven Wagon 2.1 which supports preemptive authz for dav deployment. +
    • + Plugins can be now installed without taking Jenkins offline.
    -- GitLab From b64f3eac7d03eb3ce262de95073269e83879de35 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:05:55 -0800 Subject: [PATCH 080/158] creating an RC branch --- changelog.html | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/changelog.html b/changelog.html index d7edde5971..98de95f3ce 100644 --- a/changelog.html +++ b/changelog.html @@ -54,6 +54,14 @@ Upcoming changes + + + - - -

    What's new in 1.441 (2011/11/27)

      -- GitLab From 3fb5d750aa86a7137ba17a5cef4d0bc0e19d737c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:05:59 -0800 Subject: [PATCH 081/158] the trunk is toward 1.443-SNAPSHOT --- cli/pom.xml | 2 +- core/pom.xml | 2 +- maven-plugin/pom.xml | 2 +- plugins/pom.xml | 12 ++++++------ pom.xml | 2 +- test/pom.xml | 2 +- ui-samples-plugin/pom.xml | 2 +- war/pom.xml | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/cli/pom.xml b/cli/pom.xml index d787cbf2be..1ad9e1e015 100644 --- a/cli/pom.xml +++ b/cli/pom.xml @@ -5,7 +5,7 @@ pom org.jenkins-ci.main - 1.442-SNAPSHOT + 1.443-SNAPSHOT cli diff --git a/core/pom.xml b/core/pom.xml index 5aeec743f5..f3a40d6749 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.442-SNAPSHOT + 1.443-SNAPSHOT ../pom.xml diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index ef44620700..af4bbb243e 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.442-SNAPSHOT + 1.443-SNAPSHOT maven-plugin diff --git a/plugins/pom.xml b/plugins/pom.xml index 9dfe37964a..4b8545ceb2 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -10,7 +10,7 @@ org.jenkins-ci.plugins plugin Jenkins plugin POM - 1.442-SNAPSHOT + 1.443-SNAPSHOT pom org.jenkins-ci.main maven-plugin - 1.442-SNAPSHOT + 1.443-SNAPSHOT @@ -43,25 +43,25 @@ org.jenkins-ci.main jenkins-war war - 1.442-SNAPSHOT + 1.443-SNAPSHOT test org.jenkins-ci.main jenkins-core - 1.442-SNAPSHOT + 1.443-SNAPSHOT provided org.jenkins-ci.main jenkins-test-harness - 1.442-SNAPSHOT + 1.443-SNAPSHOT test org.jenkins-ci.main ui-samples-plugin - 1.442-SNAPSHOT + 1.443-SNAPSHOT test diff --git a/pom.xml b/pom.xml index 8d37429083..8ab82d58de 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.442-SNAPSHOT + 1.443-SNAPSHOT pom Jenkins main module diff --git a/test/pom.xml b/test/pom.xml index ed8646f763..8f02f8c7e6 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. pom org.jenkins-ci.main - 1.442-SNAPSHOT + 1.443-SNAPSHOT org.jenkins-ci.main jenkins-test-harness diff --git a/ui-samples-plugin/pom.xml b/ui-samples-plugin/pom.xml index deb32097f2..ec7b5d6a19 100644 --- a/ui-samples-plugin/pom.xml +++ b/ui-samples-plugin/pom.xml @@ -29,7 +29,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.442-SNAPSHOT + 1.443-SNAPSHOT ui-samples-plugin diff --git a/war/pom.xml b/war/pom.xml index 7c2b0c0433..69ab7d4aa6 100644 --- a/war/pom.xml +++ b/war/pom.xml @@ -28,7 +28,7 @@ THE SOFTWARE. org.jenkins-ci.main pom - 1.442-SNAPSHOT + 1.443-SNAPSHOT ../pom.xml -- GitLab From d01dbe6246800f55cf9d7a4d22d1f8294073dc49 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:49:30 -0800 Subject: [PATCH 082/158] [FIXED JENKINS-6629] make restart work with Solaris 32bit x86 --- changelog.html | 3 +++ core/pom.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 98de95f3ce..09d2457bd3 100644 --- a/changelog.html +++ b/changelog.html @@ -72,6 +72,9 @@ Upcoming changes
    • Copy artifacts fails on windows slaves due to failing to set a timestamp. (issue 11073) +
    • + Self-restart wasn't working with 32bit x86 Solaris + (issue 6629)
    • Upgrade aether version to 1.13 and sisu to 2.3.0 .
    • diff --git a/core/pom.xml b/core/pom.xml index f3a40d6749..9758c28686 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -484,7 +484,7 @@ THE SOFTWARE. org.kohsuke akuma - 1.5 + 1.7 org.jvnet.libpam4j -- GitLab From b29f3de98894bb5ecc1fe14a403bf0f27237b1c5 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 28 Nov 2011 17:53:21 -0800 Subject: [PATCH 083/158] [JENKINS-6629] merge messup --- changelog.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/changelog.html b/changelog.html index 09d2457bd3..f63abbce3d 100644 --- a/changelog.html +++ b/changelog.html @@ -55,7 +55,9 @@ Upcoming changes @@ -72,9 +74,6 @@ Upcoming changes
    • Copy artifacts fails on windows slaves due to failing to set a timestamp. (issue 11073) -
    • - Self-restart wasn't working with 32bit x86 Solaris - (issue 6629)
    • Upgrade aether version to 1.13 and sisu to 2.3.0 .
    • -- GitLab From 72976d460e80e73d20a9652aaad71b4052a24a34 Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Tue, 29 Nov 2011 15:23:19 +0100 Subject: [PATCH 084/158] use last hpi version,use wagon http shaded to avoid issue with dav wagon --- maven-plugin/pom.xml | 15 +++++++++++++++ pom.xml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index af4bbb243e..15cc6c713f 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -246,6 +246,21 @@ THE SOFTWARE. org.apache.maven.wagon wagon-http ${wagonVersion} + shaded + + + org.apache.maven.wagon + wagon-http-shared4 + + + org.apache.httpcomponents + httpclient + + + org.apache.httpcomponents + httpcore + + org.apache.maven.wagon diff --git a/pom.xml b/pom.xml index 8ab82d58de..df860b77f5 100644 --- a/pom.xml +++ b/pom.xml @@ -469,7 +469,7 @@ THE SOFTWARE. org.jenkins-ci.tools maven-hpi-plugin - 1.74 + 1.78 org.apache.maven.plugins -- GitLab From 9eaf921ed6b5bfb45136b608751044d6bbd0146f Mon Sep 17 00:00:00 2001 From: olivier lamy Date: Tue, 29 Nov 2011 15:53:24 +0100 Subject: [PATCH 085/158] [FIXED JENKINS-11318] Wagon 2.0 upgrade broke the Redeploy task for webdav repositories upgrade embeder version which doesn't have more deps on wagon http ligth --- maven-plugin/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 15cc6c713f..660ccbea86 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -310,7 +310,7 @@ THE SOFTWARE. org.jenkins-ci.lib lib-jenkins-maven-embedder - 3.8 + 3.9 jtidy -- GitLab From 9140a2bf9c54ebaa257ecab70d043a5f39ec69f8 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Tue, 29 Nov 2011 19:03:33 +0100 Subject: [PATCH 086/158] change log entry for JENKINS-11318 --- changelog.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.html b/changelog.html index f63abbce3d..52a7aa40b7 100644 --- a/changelog.html +++ b/changelog.html @@ -55,6 +55,9 @@ Upcoming changes diff --git a/war/pom.xml b/war/pom.xml index 69ab7d4aa6..b58221a2e2 100644 --- a/war/pom.xml +++ b/war/pom.xml @@ -99,7 +99,7 @@ THE SOFTWARE. --> org.jenkins-ci winstone - 0.9.10-jenkins-29 + 0.9.10-jenkins-30 test -- GitLab From 887d6cfff5b98331424a8d2d94de21684a35e56a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 29 Nov 2011 16:45:26 -0800 Subject: [PATCH 089/158] Improving the error diagnostics in case of a warning like this: Nov 29, 2011 4:20:09 PM hudson.ExpressionFactory2$JexlExpression evaluate WARNING: Caught exception evaluating: descriptor.getPropertyType(instance,field).itemTypeDescriptorOrDie. Reason: java.lang.reflect.InvocationTargetException java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.commons.jexl.util.PropertyExecutor.execute(PropertyExecutor.java:125) at org.apache.commons.jexl.util.introspection.UberspectImpl$VelGetterImpl.invoke(UberspectImpl.java:314) at org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:185) at org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:75) at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:83) at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:57) at org.apache.commons.jexl.parser.ASTReferenceExpression.value(ASTReferenceExpression.java:51) at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:80) at hudson.ExpressionFactory2$JexlExpression.evaluate(ExpressionFactory2.java:72) at org.apache.commons.jelly.tags.core.CoreTagLibrary$3.run(CoreTagLibrary.java:134) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:46) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:38) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.JellyViewScript.run(JellyViewScript.java:63) at org.kohsuke.stapler.jelly.IncludeTag.doTag(IncludeTag.java:146) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:46) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:38) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.ForEachTag.doTag(ForEachTag.java:150) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:46) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161) at org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:38) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.tags.core.CoreTagLibrary$1.run(CoreTagLibrary.java:98) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.JellyViewScript.run(JellyViewScript.java:63) at org.kohsuke.stapler.jelly.IncludeTag.doTag(IncludeTag.java:146) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$1.run(CoreTagLibrary.java:98) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98) at org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91) at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:270) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99) at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119) at org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105) at org.kohsuke.stapler.jelly.JellyViewScript.run(JellyViewScript.java:63) at org.kohsuke.stapler.jelly.DefaultScriptInvoker.invokeScript(DefaultScriptInvoker.java:63) at org.kohsuke.stapler.jelly.DefaultScriptInvoker.invokeScript(DefaultScriptInvoker.java:53) at org.kohsuke.stapler.jelly.JellyFacet$1.dispatch(JellyFacet.java:92) at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:561) at org.kohsuke.stapler.Stapler.invoke(Stapler.java:646) at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:234) at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53) at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:561) at org.kohsuke.stapler.Stapler.invoke(Stapler.java:646) at org.kohsuke.stapler.Stapler.invoke(Stapler.java:477) at org.kohsuke.stapler.Stapler.service(Stapler.java:159) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1221) at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:95) at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:87) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212) at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:85) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84) at hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:166) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:173) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at jenkins.security.ApiTokenFilter.doFilter(ApiTokenFilter.java:61) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249) at hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:66) at hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87) at hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:76) at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:164) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212) at hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:81) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399) at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182) at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450) at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230) at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:326) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542) at org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928) at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549) at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212) at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:410) at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582) Caused by: java.lang.AssertionError: class hudson.plugins.git.GitPublisher$BranchToPush is missing its descriptor at jenkins.model.Jenkins.getDescriptorOrDie(Jenkins.java:1042) at hudson.model.Descriptor$PropertyType.getItemTypeDescriptorOrDie(Descriptor.java:187) ... 183 more --- core/src/main/java/hudson/model/Descriptor.java | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/hudson/model/Descriptor.java b/core/src/main/java/hudson/model/Descriptor.java index 3fb40e2b09..1df0e4af0a 100644 --- a/core/src/main/java/hudson/model/Descriptor.java +++ b/core/src/main/java/hudson/model/Descriptor.java @@ -28,7 +28,6 @@ import hudson.RelativePath; import hudson.XmlFile; import hudson.BulkChange; import hudson.Util; -import static hudson.Functions.jsStringEscape; import hudson.model.listeners.SaveableListener; import hudson.util.ReflectionUtils; import hudson.util.ReflectionUtils.Parameter; @@ -42,6 +41,7 @@ import org.springframework.util.StringUtils; import org.jvnet.tiger_types.Types; import org.apache.commons.io.IOUtils; +import static hudson.Functions.*; import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND; import javax.servlet.ServletException; import javax.servlet.RequestDispatcher; @@ -134,18 +134,20 @@ public abstract class Descriptor> implements Saveable { public final Class clazz; public final Type type; private volatile Class itemType; + public final String displayName; - PropertyType(Class clazz, Type type) { + PropertyType(Class clazz, Type type, String displayName) { this.clazz = clazz; this.type = type; + this.displayName = displayName; } PropertyType(Field f) { - this(f.getType(),f.getGenericType()); + this(f.getType(),f.getGenericType(),f.toString()); } PropertyType(Method getter) { - this(getter.getReturnType(),getter.getGenericReturnType()); + this(getter.getReturnType(),getter.getGenericReturnType(),getter.toString()); } public Enum[] getEnumConstants() { @@ -184,7 +186,11 @@ public abstract class Descriptor> implements Saveable { } public Descriptor getItemTypeDescriptorOrDie() { - return Jenkins.getInstance().getDescriptorOrDie(getItemType()); + Class it = getItemType(); + Descriptor d = Jenkins.getInstance().getDescriptor(it); + if (d==null) + throw new AssertionError(it +" is missing its descriptor in "+displayName+". See https://wiki.jenkins-ci.org/display/JENKINS/My+class+is+missing+descriptor"); + return d; } /** -- GitLab From 9bcf9b0bfba9089a62a701c1137b44493bc9a4ec Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 29 Nov 2011 16:56:46 -0800 Subject: [PATCH 090/158] [FIXED JENKINS-11598] improving the error diagnostics. Note that the root cause isn't in Jenkins. See "Caused by: java.net.ConnectException: Connection refused: connect" line that indicates a problem in the network connectivity. But this change improves the error diagnostics. --- .../main/java/hudson/model/UpdateCenter.java | 54 ++++++++++--------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/core/src/main/java/hudson/model/UpdateCenter.java b/core/src/main/java/hudson/model/UpdateCenter.java index 2b03deff53..584b95e13b 100644 --- a/core/src/main/java/hudson/model/UpdateCenter.java +++ b/core/src/main/java/hudson/model/UpdateCenter.java @@ -622,37 +622,41 @@ public class UpdateCenter extends AbstractModelObject implements Saveable { * @see DownloadJob */ public File download(DownloadJob job, URL src) throws IOException { - URLConnection con = connect(job,src); - int total = con.getContentLength(); - CountingInputStream in = new CountingInputStream(con.getInputStream()); - byte[] buf = new byte[8192]; - int len; + try { + URLConnection con = connect(job,src); + int total = con.getContentLength(); + CountingInputStream in = new CountingInputStream(con.getInputStream()); + byte[] buf = new byte[8192]; + int len; - File dst = job.getDestination(); - File tmp = new File(dst.getPath()+".tmp"); - OutputStream out = new FileOutputStream(tmp); + File dst = job.getDestination(); + File tmp = new File(dst.getPath()+".tmp"); + OutputStream out = new FileOutputStream(tmp); - LOGGER.info("Downloading "+job.getName()); - try { - while((len=in.read(buf))>=0) { - out.write(buf,0,len); - job.status = job.new Installing(total==-1 ? -1 : in.getCount()*100/total); + LOGGER.info("Downloading "+job.getName()); + try { + while((len=in.read(buf))>=0) { + out.write(buf,0,len); + job.status = job.new Installing(total==-1 ? -1 : in.getCount()*100/total); + } + } catch (IOException e) { + throw new IOException2("Failed to load "+src+" to "+tmp,e); } - } catch (IOException e) { - throw new IOException2("Failed to load "+src+" to "+tmp,e); - } - in.close(); - out.close(); + in.close(); + out.close(); - if (total!=-1 && total!=tmp.length()) { - // don't know exactly how this happens, but report like - // http://www.ashlux.com/wordpress/2009/08/14/hudson-and-the-sonar-plugin-fail-maveninstallation-nosuchmethoderror/ - // indicates that this kind of inconsistency can happen. So let's be defensive - throw new IOException("Inconsistent file length: expected "+total+" but only got "+tmp.length()); - } + if (total!=-1 && total!=tmp.length()) { + // don't know exactly how this happens, but report like + // http://www.ashlux.com/wordpress/2009/08/14/hudson-and-the-sonar-plugin-fail-maveninstallation-nosuchmethoderror/ + // indicates that this kind of inconsistency can happen. So let's be defensive + throw new IOException("Inconsistent file length: expected "+total+" but only got "+tmp.length()); + } - return tmp; + return tmp; + } catch (IOException e) { + throw new IOException2("Failed to download from "+src,e); + } } /** -- GitLab From 471566ddfa4e2bf9aa5ba0685020a6d233b5b010 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 29 Nov 2011 17:29:09 -0800 Subject: [PATCH 091/158] [FIXED JENKINS-11720] Unhandled AuthenticationException causes ExceptionTranslationFilter to initiate the authentication, but for check methods it makes no sense. So catch them, and report it as a problem. --- .../security/GlobalMatrixAuthorizationStrategy.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/src/main/java/hudson/security/GlobalMatrixAuthorizationStrategy.java b/core/src/main/java/hudson/security/GlobalMatrixAuthorizationStrategy.java index 599d513d26..0e551ce5f9 100644 --- a/core/src/main/java/hudson/security/GlobalMatrixAuthorizationStrategy.java +++ b/core/src/main/java/hudson/security/GlobalMatrixAuthorizationStrategy.java @@ -39,6 +39,7 @@ import hudson.util.RobustReflectionConverter; import hudson.Functions; import hudson.Extension; import net.sf.json.JSONObject; +import org.acegisecurity.AuthenticationException; import org.acegisecurity.userdetails.UsernameNotFoundException; import org.acegisecurity.acls.sid.Sid; import org.kohsuke.stapler.Stapler; @@ -308,6 +309,9 @@ public class GlobalMatrixAuthorizationStrategy extends AuthorizationStrategy { // fall through next } catch (DataAccessException e) { // fall through next + } catch (AuthenticationException e) { + // other seemingly unexpected error. + return FormValidation.error(e,"Failed to test the validity of the user name "+v); } try { @@ -320,6 +324,9 @@ public class GlobalMatrixAuthorizationStrategy extends AuthorizationStrategy { // fall through next } catch (DataAccessException e) { // fall through next + } catch (AuthenticationException e) { + // other seemingly unexpected error. + return FormValidation.error(e,"Failed to test the validity of the group name "+v); } // couldn't find it. it doesn't exist @@ -330,5 +337,7 @@ public class GlobalMatrixAuthorizationStrategy extends AuthorizationStrategy { return String.format("", Stapler.getCurrentRequest().getContextPath(), Jenkins.RESOURCE_PATH, gif); } } + + private static final Logger LOGGER = Logger.getLogger(GlobalMatrixAuthorizationStrategy.class.getName()); } -- GitLab From 68a7f8e319472e680a8a329f5c9d94362bbbdc02 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Wed, 30 Nov 2011 10:06:41 -0800 Subject: [PATCH 092/158] [FIXED JENKINS-11714] Fixed the problem in the find command operator priority. see https://groups.google.com/forum/#!topic/jenkinsci-ja/4FsDhryOwYE --- changelog.html | 3 +++ osx/scripts/postinstall-launchd | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index b18c0f399b..cc4c03e227 100644 --- a/changelog.html +++ b/changelog.html @@ -64,6 +64,9 @@ Upcoming changes
    • Fixed IPv6 handling in Winstone (pull request #2) +
    • + OS X installer can fail to set the file permissions correctly. + (issue 11714)
    diff --git a/osx/scripts/postinstall-launchd b/osx/scripts/postinstall-launchd index fef5f04d7d..0a9cb23271 100755 --- a/osx/scripts/postinstall-launchd +++ b/osx/scripts/postinstall-launchd @@ -6,7 +6,7 @@ JENKINS_PLIST="/Library/LaunchDaemons/org.jenkins-ci.plist" chown root:wheel ${JENKINS_PLIST} chmod 644 ${JENKINS_PLIST} mkdir -p /Users/Shared/Jenkins -find /Users/Shared/Jenkins -not -user daemon -or -not -group daemon -print0 | xargs -0 chown daemon:daemon +find /Users/Shared/Jenkins \( -not -user daemon -or -not -group daemon \) -print0 | xargs -0 chown daemon:daemon # Load and start the launch daemon /bin/launchctl load -w ${JENKINS_PLIST} -- GitLab From 7870d1987dceeab111f7a03455035d251724d02a Mon Sep 17 00:00:00 2001 From: Fred G Date: Thu, 24 Nov 2011 02:09:03 +0100 Subject: [PATCH 093/158] [FIXED JENKINS-7403] Build history timeline doesn't display in IE8 Use window.attachEvent if window.addEventListener is not supported. --- changelog.html | 3 +++ .../model/BuildTimelineWidget/control.jelly | 25 ++++++++++++++++--- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/changelog.html b/changelog.html index cc4c03e227..2a9c806953 100644 --- a/changelog.html +++ b/changelog.html @@ -67,6 +67,9 @@ Upcoming changes
  • OS X installer can fail to set the file permissions correctly. (issue 11714) +
  • + Build history time line wasn't working for IE8. + (issue 7403) diff --git a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly index 5819b0462f..7ced802813 100644 --- a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly +++ b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly @@ -35,7 +35,7 @@ THE SOFTWARE. var tz = ${tz.rawOffset / 3600000}; -- GitLab From 9cb686fd17f0cb0d1774c5ad591e2caf6748f941 Mon Sep 17 00:00:00 2001 From: Fred G Date: Thu, 24 Nov 2011 02:22:39 +0100 Subject: [PATCH 094/158] [FIXED JENKINS-11834] Build timeline on build history page should be resizable Use YUI resize method to add resize handle for build timeline widget. --- changelog.html | 3 ++ .../model/BuildTimelineWidget/control.jelly | 33 ++++++++++++++++--- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/changelog.html b/changelog.html index 2a9c806953..fa2305bf28 100644 --- a/changelog.html +++ b/changelog.html @@ -70,6 +70,9 @@ Upcoming changes
  • Build history time line wasn't working for IE8. (issue 7403) +
  • + Build history time line should be resizable + (issue 11834) diff --git a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly index 7ced802813..9e5a819adc 100644 --- a/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly +++ b/core/src/main/resources/hudson/model/BuildTimelineWidget/control.jelly @@ -29,11 +29,18 @@ THE SOFTWARE. -
    +
    +
    +
    + + + + -- GitLab From b3f73fa287f5a3d1d9325fc4c575945584b6616e Mon Sep 17 00:00:00 2001 From: Fred G Date: Thu, 24 Nov 2011 02:25:59 +0100 Subject: [PATCH 095/158] Add functionality to click on a timestamp of a build history list entry to center the timeline widget on this event. (Does not work with IE yet!) --- core/src/main/resources/lib/hudson/buildListTable.jelly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/lib/hudson/buildListTable.jelly b/core/src/main/resources/lib/hudson/buildListTable.jelly index afe97d495b..8ff0df2531 100644 --- a/core/src/main/resources/lib/hudson/buildListTable.jelly +++ b/core/src/main/resources/lib/hudson/buildListTable.jelly @@ -57,7 +57,7 @@ THE SOFTWARE. ${b.displayName} - + ${b.timestampString} -- GitLab From ed31f9d2b9060cc37cbef8e4f42fcfc60e26c690 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Wed, 30 Nov 2011 10:40:13 -0800 Subject: [PATCH 096/158] Windows service slave disconnection handling fix See https://github.com/jenkinsci/jenkins/pull/315 --- .../os/windows/ManagedWindowsServiceConnector.java | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/core/src/main/java/hudson/os/windows/ManagedWindowsServiceConnector.java b/core/src/main/java/hudson/os/windows/ManagedWindowsServiceConnector.java index 1bbf7be693..163d34d4a5 100644 --- a/core/src/main/java/hudson/os/windows/ManagedWindowsServiceConnector.java +++ b/core/src/main/java/hudson/os/windows/ManagedWindowsServiceConnector.java @@ -33,22 +33,10 @@ public class ManagedWindowsServiceConnector extends ComputerConnector { @Override public ManagedWindowsServiceLauncher launch(final String hostName, TaskListener listener) throws IOException, InterruptedException { - return new ManagedWindowsServiceLauncher(userName,Secret.toString(password)) { - @Override - protected String determineHost(Computer c) throws IOException, InterruptedException { - return hostName; - } - - @Override - public Descriptor getDescriptor() { - return Jenkins.getInstance().getDescriptor(ManagedWindowsServiceLauncher.class); - } - }; + return new ManagedWindowsServiceLauncher(userName,Secret.toString(password),hostName); } @Extension -// Fix broken trunk (temporary) -// public static class DescriptorImpl extends Descriptor { public static class DescriptorImpl extends ComputerConnectorDescriptor { public String getDisplayName() { return Messages.ManagedWindowsServiceLauncher_DisplayName(); -- GitLab From a1714c1690a1ddf387d87fee0869024c599a95fe Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Wed, 30 Nov 2011 10:44:43 -0800 Subject: [PATCH 097/158] [FIXED JENKINS-11767] missing break in getValues@RegistryKey --- changelog.html | 3 +++ core/src/main/java/hudson/util/jna/RegistryKey.java | 2 ++ 2 files changed, 5 insertions(+) diff --git a/changelog.html b/changelog.html index fa2305bf28..883ee75a91 100644 --- a/changelog.html +++ b/changelog.html @@ -73,6 +73,9 @@ Upcoming changes
  • Build history time line should be resizable (issue 11834) +
  • + Fixed a bug in Windows registry enumeration with large data. + (issue 11767) diff --git a/core/src/main/java/hudson/util/jna/RegistryKey.java b/core/src/main/java/hudson/util/jna/RegistryKey.java index b654fe6391..95ae2c2772 100644 --- a/core/src/main/java/hudson/util/jna/RegistryKey.java +++ b/core/src/main/java/hudson/util/jna/RegistryKey.java @@ -259,6 +259,8 @@ public class RegistryKey { default: break; // not supported yet } + break; + default: check(result); } -- GitLab From 487b9455298f581600d173c45d613f5ef21f77ff Mon Sep 17 00:00:00 2001 From: Richard Mortimer Date: Wed, 16 Nov 2011 00:35:28 +0000 Subject: [PATCH 098/158] [FIXED JENKINS-11744] Debian/Ubuntu init script does not wait long enough during stop operation Increase stop timeout from 5 to 20 seconds. --- changelog.html | 3 +++ debian/debian/jenkins.init | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 883ee75a91..a4e82f6c03 100644 --- a/changelog.html +++ b/changelog.html @@ -76,6 +76,9 @@ Upcoming changes
  • Fixed a bug in Windows registry enumeration with large data. (issue 11767) +
  • + Debian/Ubuntu init script does not wait long enough during stop operation + (issue 11744) diff --git a/debian/debian/jenkins.init b/debian/debian/jenkins.init index d6c2d5586e..3d57949510 100644 --- a/debian/debian/jenkins.init +++ b/debian/debian/jenkins.init @@ -147,7 +147,7 @@ do_stop() 0) $DAEMON $DAEMON_ARGS --stop || return 2 # wait for the process to really terminate - for n in 1 2 3 4 5; do + for n in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do sleep 1 $DAEMON $DAEMON_ARGS --running || break done -- GitLab From 9714917685e2b50f59b4feda9bc4e561870a944f Mon Sep 17 00:00:00 2001 From: Richard Mortimer Date: Wed, 16 Nov 2011 00:04:34 +0000 Subject: [PATCH 099/158] [FIXED JENKINS-11366] Jenkins takes up too much space in /var/run Use /var/cache/jenkins to hold the unpacked jenkins.war file at runtime. --- changelog.html | 3 +++ debian/debian/dirs | 3 +++ debian/debian/jenkins.default | 2 +- debian/debian/jenkins.postinst | 8 +++++--- debian/debian/jenkins.postrm | 3 ++- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/changelog.html b/changelog.html index a4e82f6c03..f201cc6f21 100644 --- a/changelog.html +++ b/changelog.html @@ -79,6 +79,9 @@ Upcoming changes
  • Debian/Ubuntu init script does not wait long enough during stop operation (issue 11744) +
  • + Jenkins takes up too much space in /var/run + (issue 11366) diff --git a/debian/debian/dirs b/debian/debian/dirs index b899acdb32..a232932cba 100644 --- a/debian/debian/dirs +++ b/debian/debian/dirs @@ -11,3 +11,6 @@ var/run/jenkins # Store jenkins log file in it's own directory since they can become rather large and in the future # rotating logs can be easily added. var/log/jenkins + +# Cache directory for the unpacked jenkins.war file. +var/cache/jenkins diff --git a/debian/debian/jenkins.default b/debian/debian/jenkins.default index f1831acbea..78baf4ee56 100644 --- a/debian/debian/jenkins.default +++ b/debian/debian/jenkins.default @@ -51,4 +51,4 @@ AJP_PORT=-1 # --argumentsRealm.passwd.$ADMIN_USER=[password] # --argumentsRealm.$ADMIN_USER=admin # --webroot=~/.jenkins/war -JENKINS_ARGS="--webroot=/var/run/jenkins/war --httpPort=$HTTP_PORT --ajp13Port=$AJP_PORT" +JENKINS_ARGS="--webroot=/var/cache/jenkins/war --httpPort=$HTTP_PORT --ajp13Port=$AJP_PORT" diff --git a/debian/debian/jenkins.postinst b/debian/debian/jenkins.postinst index 581321eab0..a2327a7e33 100644 --- a/debian/debian/jenkins.postinst +++ b/debian/debian/jenkins.postinst @@ -47,9 +47,11 @@ case "$1" in # we don't do "chmod 750" so that the user can choose the pemission for g and o on their own chmod u+rwx /var/lib/jenkins /var/log/jenkins - # make sure jenkins can delete everything in /var/run/jenkins to re-explode war - chown -R jenkins:adm /var/run/jenkins - chmod -R 750 /var/run/jenkins + # make sure jenkins can delete everything in /var/cache/jenkins to + # re-explode war. older installations may use /var/run/jenkins + # so make sure that they can delete too. + chown -R jenkins:adm /var/cache/jenkins /var/run/jenkins + chmod -R 750 /var/cache/jenkins /var/run/jenkins ;; abort-upgrade|abort-remove|abort-deconfigure) diff --git a/debian/debian/jenkins.postrm b/debian/debian/jenkins.postrm index 04130e5449..d338c17316 100644 --- a/debian/debian/jenkins.postrm +++ b/debian/debian/jenkins.postrm @@ -5,7 +5,8 @@ set -e case "$1" in purge) userdel jenkins || true - rm -rf /var/lib/jenkins /var/log/jenkins /var/run/jenkins + rm -rf /var/lib/jenkins /var/log/jenkins \ + /var/run/jenkins /var/cache/jenkins ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) -- GitLab From 8d1cda0edd31764f613f1ab100205c9d9a7faac9 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 10 Nov 2011 10:24:24 +0100 Subject: [PATCH 100/158] [JENKINS-5771] Use $JENKINS_USER in Debian postinst. --- changelog.html | 3 +++ debian/debian/jenkins.postinst | 15 +++++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/changelog.html b/changelog.html index f201cc6f21..649720be2a 100644 --- a/changelog.html +++ b/changelog.html @@ -82,6 +82,9 @@ Upcoming changes
  • Jenkins takes up too much space in /var/run (issue 11366) +
  • + Use $JENKINS_USER in Debian postinst script. + (issue 5771) diff --git a/debian/debian/jenkins.postinst b/debian/debian/jenkins.postinst index a2327a7e33..c114ab5fca 100644 --- a/debian/debian/jenkins.postinst +++ b/debian/debian/jenkins.postinst @@ -21,13 +21,16 @@ set -e case "$1" in configure) + [ -r /etc/default/jenkins ] && . /etc/default/jenkins + : ${JENKINS_USER:=jenkins} + # Create jenkins user if it doesn't exist. # sometimes tools that users want Jenkins to run need a shell, # so use /bin/bash. See JENKINS-4830 - if ! id jenkins > /dev/null 2>&1 ; then + if ! id $JENKINS_USER > /dev/null 2>&1 ; then adduser --system --home /var/lib/jenkins --no-create-home \ --ingroup nogroup --disabled-password --shell /bin/bash \ - jenkins + $JENKINS_USER fi # If we have an old hudson install, rename it to jenkins @@ -38,20 +41,20 @@ case "$1" in touch /var/lib/hudson/.from-hudson mv -f /var/lib/hudson/* /var/lib/hudson/.??* /var/lib/jenkins rmdir /var/lib/hudson - find /var/lib/jenkins -user hudson -exec chown jenkins {} + || true + find /var/lib/jenkins -user hudson -exec chown $JENKINS_USER {} + || true fi # directories needed for jenkins # we don't do -R because it can take a long time on big installation - chown jenkins:adm /var/lib/jenkins /var/log/jenkins + chown $JENKINS_USER:adm /var/lib/jenkins /var/log/jenkins # we don't do "chmod 750" so that the user can choose the pemission for g and o on their own chmod u+rwx /var/lib/jenkins /var/log/jenkins # make sure jenkins can delete everything in /var/cache/jenkins to # re-explode war. older installations may use /var/run/jenkins # so make sure that they can delete too. - chown -R jenkins:adm /var/cache/jenkins /var/run/jenkins - chmod -R 750 /var/cache/jenkins /var/run/jenkins + chown -R $JENKINS_USER:adm /var/cache/jenkins /var/run/jenkins + chmod -R 750 /var/cache/jenkins /var/run/jenkins ;; abort-upgrade|abort-remove|abort-deconfigure) -- GitLab From 4e7220c9246e740e6fff8a346dd72f359d732eb2 Mon Sep 17 00:00:00 2001 From: Elbandi Date: Thu, 17 Nov 2011 01:20:09 +0100 Subject: [PATCH 101/158] valueExists use the same code as getValue --- .../java/hudson/util/jna/RegistryKey.java | 28 +++++++++++++------ 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/hudson/util/jna/RegistryKey.java b/core/src/main/java/hudson/util/jna/RegistryKey.java index 95ae2c2772..18dc4f8d99 100644 --- a/core/src/main/java/hudson/util/jna/RegistryKey.java +++ b/core/src/main/java/hudson/util/jna/RegistryKey.java @@ -156,14 +156,26 @@ public class RegistryKey { * Does a specified value exist? */ public boolean valueExists(String name) { - int r = Advapi32.INSTANCE.RegQueryValueEx(handle, name, null, new IntByReference(), new byte[1], new IntByReference()); - switch(r) { - case WINERROR.ERROR_FILE_NOT_FOUND: - return false; - case WINERROR.ERROR_SUCCESS: - return true; - default: - throw new JnaException(r); + IntByReference pType, lpcbData; + byte[] lpData = new byte[1]; + + pType = new IntByReference(); + lpcbData = new IntByReference(); + + OUTER: + while(true) { + int r = Advapi32.INSTANCE.RegQueryValueEx(handle, name, null, pType, lpData, lpcbData); + switch(r) { + case WINERROR.ERROR_MORE_DATA: + lpData = new byte[lpcbData.getValue()]; + continue OUTER; + case WINERROR.ERROR_FILE_NOT_FOUND: + return false; + case WINERROR.ERROR_SUCCESS: + return true; + default: + throw new JnaException(r); + } } } -- GitLab From 9af1018fa2c8b364b7dd73bcaf013ded6920d79c Mon Sep 17 00:00:00 2001 From: Elbandi Date: Thu, 17 Nov 2011 01:18:21 +0100 Subject: [PATCH 102/158] eliminate double Advapi32 call from getValues --- core/src/main/java/hudson/util/jna/RegistryKey.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/hudson/util/jna/RegistryKey.java b/core/src/main/java/hudson/util/jna/RegistryKey.java index 18dc4f8d99..b04c9c0f80 100644 --- a/core/src/main/java/hudson/util/jna/RegistryKey.java +++ b/core/src/main/java/hudson/util/jna/RegistryKey.java @@ -242,11 +242,12 @@ public class RegistryKey { lpType = new IntByReference(); lpData = new byte[1]; lpcbData = new IntByReference(); + lpcbData.setValue(0); dwIndex = 0; + OUTER: while (true) { - lpcbData.setValue(0); result = Advapi32.INSTANCE.RegEnumValue(handle, dwIndex, lpValueName, lpcchValueName, null, lpType, lpData, lpcbData); switch (result) { @@ -256,9 +257,9 @@ public class RegistryKey { case WINERROR.ERROR_MORE_DATA: lpData = new byte[lpcbData.getValue()]; lpcchValueName = new IntByReference(16384); - check(Advapi32.INSTANCE.RegEnumValue(handle, dwIndex, lpValueName, lpcchValueName, null, - lpType, lpData, lpcbData)); + continue OUTER; + case WINERROR.ERROR_SUCCESS: name = new String(lpValueName, 0, lpcchValueName.getValue()); switch (lpType.getValue()) { @@ -277,6 +278,7 @@ public class RegistryKey { check(result); } dwIndex++; + lpcbData.setValue(0); } } -- GitLab From 3b7e7c7c6ed44a1bae1a9a5874ef86a02d387c15 Mon Sep 17 00:00:00 2001 From: Christoph Kutzinski Date: Thu, 1 Dec 2011 23:21:58 +0100 Subject: [PATCH 103/158] At least tell users that this isn't working, yet --- maven-plugin/src/main/java/hudson/maven/MavenBuild.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maven-plugin/src/main/java/hudson/maven/MavenBuild.java b/maven-plugin/src/main/java/hudson/maven/MavenBuild.java index 6d759d7d61..5c076ed226 100644 --- a/maven-plugin/src/main/java/hudson/maven/MavenBuild.java +++ b/maven-plugin/src/main/java/hudson/maven/MavenBuild.java @@ -695,14 +695,15 @@ public class MavenBuild extends AbstractMavenBuild { // backward compatibility systemProps.put("hudson.build.number",String.valueOf(getNumber())); - boolean normalExit = false; if (maven3orLater) { // FIXME here for maven 3 builds + listener.getLogger().println("Building single Maven modules is not implemented for Maven 3, yet!"); return Result.ABORTED; } else { + boolean normalExit = false; try { Result r = process.call(new Builder( listener,new ProxyImpl(), -- GitLab From e38e687d5b66238f406d1e3642a3d5f6a02aaeb2 Mon Sep 17 00:00:00 2001 From: Andrew Bayer Date: Thu, 1 Dec 2011 14:50:04 -0800 Subject: [PATCH 104/158] [FIXED JENKINS-2548] Slaves taken offline for low disk space will now come back online when disk space becomes available. --- changelog.html | 3 +++ .../node_monitors/AbstractDiskSpaceMonitor.java | 4 ++++ .../AbstractNodeMonitorDescriptor.java | 15 +++++++++++++++ .../hudson/node_monitors/Messages.properties | 1 + 4 files changed, 23 insertions(+) diff --git a/changelog.html b/changelog.html index 649720be2a..691c6fbf5b 100644 --- a/changelog.html +++ b/changelog.html @@ -85,6 +85,9 @@ Upcoming changes
  • Use $JENKINS_USER in Debian postinst script. (issue 5771) +
  • + Slaves taken offline due to insufficient disk space should automatically come back online when disk space is cleared. + (issue 2548) diff --git a/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java b/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java index ddf9a9ff22..1812b38845 100644 --- a/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java +++ b/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java @@ -45,6 +45,10 @@ public abstract class AbstractDiskSpaceMonitor extends NodeMonitor { if(getDescriptor().markOffline(c,size)) { LOGGER.warning(Messages.DiskSpaceMonitor_MarkedOffline(c.getName())); } + } else if (c.isTemporarilyOffline()) { + if (getDescriptor().markOnline(c)) { + LOGGER.warning(Messages.DiskSpaceMonitor_MarkedOnline(c.getName())); + } } return size; } diff --git a/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java b/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java index 3e7e2daa00..72c3ffe33c 100644 --- a/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java +++ b/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java @@ -148,6 +148,21 @@ public abstract class AbstractNodeMonitorDescriptor extends Descriptor Date: Thu, 1 Dec 2011 17:28:06 -0800 Subject: [PATCH 105/158] [FIXED JENKINS-4641] updated log4j (For whatever reason commons-logging depends on log4j. WTF?) --- core/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/pom.xml b/core/pom.xml index 9758c28686..57e50dab92 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -436,7 +436,7 @@ THE SOFTWARE. commons-logging commons-logging - 1.1 + 1.1.1 com.sun.xml.txw2 -- GitLab From 5bc37c2ad49d6093e9b912159faf0db0131273c5 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 17:37:17 -0800 Subject: [PATCH 106/158] [FIXED JENKINS-11960] NoSuchMethodError on slf4j on JBoss EAP 5.1 --- changelog.html | 3 +++ core/src/main/java/hudson/util/DescribableList.java | 1 - maven-plugin/pom.xml | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 691c6fbf5b..e3db1ddaa1 100644 --- a/changelog.html +++ b/changelog.html @@ -82,6 +82,9 @@ Upcoming changes
  • Jenkins takes up too much space in /var/run (issue 11366) +
  • + Fixed a NoSuchMethodError on JBoss 5.1 EAP + (issue 11960)
  • Use $JENKINS_USER in Debian postinst script. (issue 5771) diff --git a/core/src/main/java/hudson/util/DescribableList.java b/core/src/main/java/hudson/util/DescribableList.java index 6e7c9270a6..8ec6418386 100644 --- a/core/src/main/java/hudson/util/DescribableList.java +++ b/core/src/main/java/hudson/util/DescribableList.java @@ -39,7 +39,6 @@ import hudson.model.Descriptor.FormException; import hudson.model.ReconfigurableDescribable; import hudson.model.Saveable; import net.sf.json.JSONObject; -import org.apache.avalon.framework.configuration.Reconfigurable; import org.kohsuke.stapler.StaplerRequest; import java.io.IOException; diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 660ccbea86..38c5613799 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -354,6 +354,10 @@ THE SOFTWARE. wagon-webdav-jackrabbit ${wagonVersion} + + org.slf4j + jcl-over-slf4j + nekohtml -- GitLab From 706b2dfd71904224399e52843233c12e219803e4 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 17:43:13 -0800 Subject: [PATCH 107/158] Revert "[FIXED JENKINS-2548] Slaves taken offline for low disk space will now" This reverts commit e38e687d5b66238f406d1e3642a3d5f6a02aaeb2. --- changelog.html | 3 --- .../node_monitors/AbstractDiskSpaceMonitor.java | 4 ---- .../AbstractNodeMonitorDescriptor.java | 15 --------------- .../hudson/node_monitors/Messages.properties | 1 - 4 files changed, 23 deletions(-) diff --git a/changelog.html b/changelog.html index e3db1ddaa1..7ac5297f50 100644 --- a/changelog.html +++ b/changelog.html @@ -88,9 +88,6 @@ Upcoming changes
  • Use $JENKINS_USER in Debian postinst script. (issue 5771) -
  • - Slaves taken offline due to insufficient disk space should automatically come back online when disk space is cleared. - (issue 2548) diff --git a/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java b/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java index 1812b38845..ddf9a9ff22 100644 --- a/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java +++ b/core/src/main/java/hudson/node_monitors/AbstractDiskSpaceMonitor.java @@ -45,10 +45,6 @@ public abstract class AbstractDiskSpaceMonitor extends NodeMonitor { if(getDescriptor().markOffline(c,size)) { LOGGER.warning(Messages.DiskSpaceMonitor_MarkedOffline(c.getName())); } - } else if (c.isTemporarilyOffline()) { - if (getDescriptor().markOnline(c)) { - LOGGER.warning(Messages.DiskSpaceMonitor_MarkedOnline(c.getName())); - } } return size; } diff --git a/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java b/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java index 72c3ffe33c..3e7e2daa00 100644 --- a/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java +++ b/core/src/main/java/hudson/node_monitors/AbstractNodeMonitorDescriptor.java @@ -148,21 +148,6 @@ public abstract class AbstractNodeMonitorDescriptor extends Descriptor Date: Thu, 1 Dec 2011 20:47:58 -0800 Subject: [PATCH 108/158] as discussed in the project meeting, excluding these tests that various people report false positives. --- test/src/test/java/hudson/slaves/NodeProvisionerTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java index ba582c1a09..6832221e1d 100644 --- a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java +++ b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java @@ -101,7 +101,7 @@ public class NodeProvisionerTest extends HudsonTestCase { /** * Scenario: schedule a build and see if one slave is provisioned. */ - public void testAutoProvision() throws Exception { + public void _testAutoProvision() throws Exception {// excluded since it's fragile BulkChange bc = new BulkChange(hudson); try { DummyCloudImpl cloud = initHudson(10); @@ -122,7 +122,7 @@ public class NodeProvisionerTest extends HudsonTestCase { /** * Scenario: we got a lot of jobs all of the sudden, and we need to fire up a few nodes. */ - public void testLoadSpike() throws Exception { + public void _testLoadSpike() throws Exception {// excluded since it's fragile BulkChange bc = new BulkChange(hudson); try { DummyCloudImpl cloud = initHudson(0); @@ -140,7 +140,7 @@ public class NodeProvisionerTest extends HudsonTestCase { /** * Scenario: make sure we take advantage of statically configured slaves. */ - public void testBaselineSlaveUsage() throws Exception { + public void _testBaselineSlaveUsage() throws Exception {// excluded since it's fragile BulkChange bc = new BulkChange(hudson); try { DummyCloudImpl cloud = initHudson(0); @@ -160,7 +160,7 @@ public class NodeProvisionerTest extends HudsonTestCase { /** * Scenario: loads on one label shouldn't translate to load on another label. */ - public void testLabels() throws Exception { + public void _testLabels() throws Exception {// excluded since it's fragile BulkChange bc = new BulkChange(hudson); try { DummyCloudImpl cloud = initHudson(0); -- GitLab From e31842216a255709d2251452186dd0e6f0bb27bc Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 109/158] Community-contributed localization for Arabic (ar) --- .../model/View/People/index_ar.properties | 27 +++++++++++++++++++ .../hudson/model/View/sidepanel_ar.properties | 27 +++++++++++++++++++ .../BuildButtonColumn/column_ar.properties | 23 ++++++++++++++++ .../DefaultViewsTabBar/viewTabs_ar.properties | 23 ++++++++++++++++ .../columnHeader_ar.properties | 23 ++++++++++++++++ .../columnHeader_ar.properties | 23 ++++++++++++++++ .../LastFailureColumn/column_ar.properties | 23 ++++++++++++++++ .../columnHeader_ar.properties | 23 ++++++++++++++++ .../LastSuccessColumn/column_ar.properties | 23 ++++++++++++++++ .../StatusColumn/columnHeader_ar.properties | 23 ++++++++++++++++ .../WeatherColumn/columnHeader_ar.properties | 23 ++++++++++++++++ .../lib/hudson/buildHealth_ar.properties | 23 ++++++++++++++++ .../hudson/editableDescription_ar.properties | 23 ++++++++++++++++ .../lib/hudson/executors_ar.properties | 25 +++++++++++++++++ .../lib/hudson/iconSize_ar.properties | 23 ++++++++++++++++ .../resources/lib/hudson/queue_ar.properties | 24 +++++++++++++++++ .../resources/lib/hudson/rssBar_ar.properties | 26 ++++++++++++++++++ .../resources/lib/layout/layout_ar.properties | 27 +++++++++++++++++++ 18 files changed, 432 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/People/index_ar.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_ar.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_ar.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_ar.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_ar.properties create mode 100644 core/src/main/resources/lib/hudson/executors_ar.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_ar.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ar.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_ar.properties create mode 100644 core/src/main/resources/lib/layout/layout_ar.properties diff --git a/core/src/main/resources/hudson/model/View/People/index_ar.properties b/core/src/main/resources/hudson/model/View/People/index_ar.properties new file mode 100644 index 0000000000..a9c8e758f0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ar.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=\u0622\u062E\u0631 \u0646\u0634\u0627\u0637 +Name=\u0627\u0644\u0627\u0633\u0645 +On=\u0641\u064A +People=\u0627\u0644\u0623\u0641\u0631\u0627\u062F +User\ Id=\u0645\u0639\u0631\u0641 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ar.properties b/core/src/main/resources/hudson/model/View/sidepanel_ar.properties new file mode 100644 index 0000000000..0623f96fb1 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_ar.properties @@ -0,0 +1,27 @@ +# 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\ History=\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u062A\u0639\u0645\u064A\u0631 +Check\ File\ Fingerprint=\u062A\u062F\u0642\u064A\u0642 \u0628\u0628\u0635\u0645\u0629 \u0627\u0644\u0645\u0644\u0641 +NewJob=\u062C\u062F\u064A\u062F +People=\u0627\u0644\u0623\u0634\u062E\u0627\u0635 +Project\ Relationship=\u0639\u0644\u0627\u0642\u0629 \u0627\u0644\u0645\u0634\u0627\u0631\u064A\u0639 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties new file mode 100644 index 0000000000..4a3f10a6f7 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u062A\u062D\u062F\u064A\u062F \u0645\u0648\u0639\u062F \u0644\u0644\u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties new file mode 100644 index 0000000000..e90459febe --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ar.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u0645\u0646\u0638\u0631 \u062C\u062F\u064A\u062F diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties new file mode 100644 index 0000000000..541d88e2a9 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=\u0623\u062E\u0631 \u0645\u062F\u0629 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties new file mode 100644 index 0000000000..45a05d2fa1 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=\u0623\u062E\u0631 \u0641\u0634\u0644 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_ar.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_ar.properties new file mode 100644 index 0000000000..6433cac03e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_ar.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties new file mode 100644 index 0000000000..58d9a073b7 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=\u0623\u062E\u0631 \u0646\u062C\u0627\u062D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_ar.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ar.properties new file mode 100644 index 0000000000..6433cac03e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_ar.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties new file mode 100644 index 0000000000..7618c4fc7f --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ar.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=\u062D\u0627\u0644\u0629 \u0623\u062E\u0631 \u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties new file mode 100644 index 0000000000..44e6ba7bdc --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u062A\u0642\u0631\u064A\u0631 \u0627\u0644\u0637\u0642\u0633 \u0645\u0628\u064A\u0646\u0627\u064B \u0627\u0644\u062D\u0627\u0644\u0629 \u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0629 \u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0628\u0646\u0627\u0621 \u0627\u0644\u062D\u062F\u064A\u062B\u0629 diff --git a/core/src/main/resources/lib/hudson/buildHealth_ar.properties b/core/src/main/resources/lib/hudson/buildHealth_ar.properties new file mode 100644 index 0000000000..90b1ff4d3b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Description=\u0634\u0631\u062D \u0645\u0641\u0635\u0644 diff --git a/core/src/main/resources/lib/hudson/editableDescription_ar.properties b/core/src/main/resources/lib/hudson/editableDescription_ar.properties new file mode 100644 index 0000000000..14314c2dc8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_ar.properties @@ -0,0 +1,23 @@ +# 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. + +add\ description=\u0625\u0636\u0627\u0641\u0629 \u0634\u0631\u062D \u0645\u0641\u0635\u0644 diff --git a/core/src/main/resources/lib/hudson/executors_ar.properties b/core/src/main/resources/lib/hudson/executors_ar.properties new file mode 100644 index 0000000000..b6684c6b1b --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_ar.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. + +Build\ Executor\ Status=\u062D\u0627\u0644\u0629 \u0623\u0644\u0628\u0627\u0646\u064A +Idle=\u063A\u064A\u0631 \u0645\u0634\u063A\u0648\u0644 +Status=\u062D\u0627\u0644\u0629 diff --git a/core/src/main/resources/lib/hudson/iconSize_ar.properties b/core/src/main/resources/lib/hudson/iconSize_ar.properties new file mode 100644 index 0000000000..b9dd71f166 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_ar.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=\u0635\u0648\u0631\u0629 diff --git a/core/src/main/resources/lib/hudson/queue_ar.properties b/core/src/main/resources/lib/hudson/queue_ar.properties new file mode 100644 index 0000000000..c870efb771 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ar.properties @@ -0,0 +1,24 @@ +# 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\ Queue=\u0635\u0641 \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631 +No\ builds\ in\ the\ queue.=\u0644\u0627 \u0628\u0646\u0627\u0621 \u0641\u064A \u0635\u0641 \u0627\u0644\u0627\u0646\u062A\u0638\u0627\u0631 diff --git a/core/src/main/resources/lib/hudson/rssBar_ar.properties b/core/src/main/resources/lib/hudson/rssBar_ar.properties new file mode 100644 index 0000000000..70b0d56d04 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_ar.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=\u0641\u0647\u0631\u0633\u062A +for\ all=\u0644\u0644\u062C\u0645\u064A\u0639 +for\ failures=\u0644\u0644\u0641\u0634\u0644 +for\ just\ latest\ builds=\u0641\u0642\u0637 \u0623\u062E\u0631 \u0623\u0639\u0645\u0627\u0644 \u0628\u0646\u0627\u0621 diff --git a/core/src/main/resources/lib/layout/layout_ar.properties b/core/src/main/resources/lib/layout/layout_ar.properties new file mode 100644 index 0000000000..ced651941f --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_ar.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=\u0633\u0645\u062D \u0644\u0644\u062A\u062D\u062F\u064A\u062B \u0627\u0644\u0623\u062A\u0648\u0645\u0627\u062A\u064A\u0643\u064A +Page\ generated=\u0635\u0641\u062D\u0629 \u0628\u0646\u064A\u062A +logout=\u062E\u0631\u0648\u062C +search=\u0627\u0628\u062D\u062B +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From d88a5415f01d2edf28691736665f24dd38854bb9 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 110/158] Community-contributed localization for Bulgarian (bg) --- .../message_bg.properties | 24 +++++++++++++ .../model/AbstractBuild/index_bg.properties | 24 +++++++++++++ .../AbstractBuild/sidepanel_bg.properties | 23 ++++++++++++ .../model/AbstractBuild/tasks_bg.properties | 27 ++++++++++++++ .../configure-common_bg.properties | 23 ++++++++++++ .../model/AbstractProject/main_bg.properties | 25 +++++++++++++ .../AbstractProject/sidepanel_bg.properties | 30 ++++++++++++++++ .../hudson/model/Computer/index_bg.properties | 26 ++++++++++++++ .../model/Computer/sidepanel_bg.properties | 29 +++++++++++++++ .../model/ComputerSet/index_bg.properties | 25 +++++++++++++ .../model/ComputerSet/sidepanel_bg.properties | 26 ++++++++++++++ .../hudson/model/Job/configure_bg.properties | 27 ++++++++++++++ .../hudson/model/Job/index_bg.properties | 23 ++++++++++++ .../hudson/model/Job/permalinks_bg.properties | 23 ++++++++++++ .../model/LoadStatistics/main_bg.properties | 26 ++++++++++++++ .../config_bg.properties | 24 +++++++++++++ .../Permalink/link_bg.properties | 23 ++++++++++++ .../hudson/model/Run/console_bg.properties | 24 +++++++++++++ .../hudson/model/View/newJob_bg.properties | 24 +++++++++++++ .../hudson/model/View/sidepanel_bg.properties | 29 +++++++++++++++ .../SecurityRealm/loginLink_bg.properties | 23 ++++++++++++ .../ComputerLauncher/main_bg.properties | 23 ++++++++++++ .../LaunchFailed/cause_bg.properties | 23 ++++++++++++ .../SlaveComputer/sidepanel2_bg.properties | 24 +++++++++++++ .../tasks/LogRotator/config_bg.properties | 25 +++++++++++++ .../hudson/tasks/Mailer/config_bg.properties | 24 +++++++++++++ .../floatingBox_bg.properties | 25 +++++++++++++ .../BuildButtonColumn/column_bg.properties | 23 ++++++++++++ .../DefaultViewsTabBar/viewTabs_bg.properties | 23 ++++++++++++ .../columnHeader_bg.properties | 23 ++++++++++++ .../columnHeader_bg.properties | 23 ++++++++++++ .../columnHeader_bg.properties | 23 ++++++++++++ .../StatusColumn/columnHeader_bg.properties | 23 ++++++++++++ .../widgets/HistoryWidget/entry_bg.properties | 23 ++++++++++++ .../widgets/HistoryWidget/index_bg.properties | 26 ++++++++++++++ .../model/Jenkins/downgrade_bg.properties | 24 +++++++++++++ .../model/Jenkins/manage_bg.properties | 35 +++++++++++++++++++ .../resources/lib/form/helpArea_bg.properties | 23 ++++++++++++ .../form/repeatableDeleteButton_bg.properties | 23 ++++++++++++ .../lib/hudson/buildCaption_bg.properties | 24 +++++++++++++ .../lib/hudson/buildHealth_bg.properties | 23 ++++++++++++ .../lib/hudson/buildProgressBar_bg.properties | 23 ++++++++++++ .../hudson/editableDescription_bg.properties | 24 +++++++++++++ .../lib/hudson/executors_bg.properties | 29 +++++++++++++++ .../lib/hudson/iconSize_bg.properties | 23 ++++++++++++ .../lib/hudson/newFromList/form_bg.properties | 23 ++++++++++++ .../config-customWorkspace_bg.properties | 24 +++++++++++++ .../project/config-disableBuild_bg.properties | 23 ++++++++++++ .../project/config-retryCount_bg.properties | 23 ++++++++++++ .../project/upstream-downstream_bg.properties | 24 +++++++++++++ .../resources/lib/hudson/queue_bg.properties | 24 +++++++++++++ .../resources/lib/hudson/rssBar_bg.properties | 26 ++++++++++++++ .../resources/lib/layout/layout_bg.properties | 27 ++++++++++++++ 53 files changed, 1304 insertions(+) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_bg.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_bg.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_bg.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_bg.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_bg.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_bg.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_bg.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_bg.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties create mode 100644 core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties create mode 100644 core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/config_bg.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_bg.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties create mode 100644 core/src/main/resources/lib/form/helpArea_bg.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_bg.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_bg.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_bg.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_bg.properties create mode 100644 core/src/main/resources/lib/hudson/executors_bg.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_bg.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_bg.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties create mode 100644 core/src/main/resources/lib/hudson/queue_bg.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_bg.properties create mode 100644 core/src/main/resources/lib/layout/layout_bg.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties new file mode 100644 index 0000000000..e8c7b7d3ea --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Dismiss=\u041F\u0440\u043E\u043F\u0443\u0441\u043D\u0438 +More\ Info=\u041F\u043E\u0432\u0435\u0447\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties new file mode 100644 index 0000000000..d6f48036ed --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Took=\u041E\u0442\u043D\u0435 +startedAgo=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D \u043F\u0440\u0435\u0434\u0438 {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties new file mode 100644 index 0000000000..e69b6285f8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=\u041F\u0440\u0435\u0434\u0438\u0448\u0435\u043D \u0431\u0438\u043B\u0434 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties new file mode 100644 index 0000000000..8676fc521b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_bg.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u0430 +Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 +Console\ Output=\u0418\u0437\u0433\u043B\u0435\u0434 \u0432 \u043A\u043E\u043D\u0437\u043E\u043B\u0430\u0442\u0430 +Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F\u0442\u0430 \u0437\u0430 \u0431\u0438\u043B\u0434\u0430 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_bg.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_bg.properties new file mode 100644 index 0000000000..ad363cc302 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Restrict\ where\ this\ project\ can\ be\ run=\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0438 \u043A\u044A\u0434\u0435 \u0434\u0430 \u0441\u0435 \u043F\u0443\u0441\u043A\u0430 \u0442\u043E\u0437\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/main_bg.properties new file mode 100644 index 0000000000..3173ac136b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_bg.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. + +Last\ Successful\ Artifacts=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438 \u0443\u0441\u043F\u0435\u0448\u043D\u0438 \u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0442\u0438 +Recent\ Changes=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438 +Workspace=\u0420\u0430\u0431\u043E\u0442\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties new file mode 100644 index 0000000000..db2d86f245 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_bg.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=\u041D\u0430\u0437\u0430\u0434 \u043A\u044A\u043C \u0442\u0430\u0431\u043B\u043E\u0442\u043E +Build\ scheduled=\u041D\u0430\u0441\u0440\u043E\u0447\u0435\u043D \u0431\u0438\u043B\u0434 +Changes=\u041F\u0440\u043E\u043C\u0435\u043D\u0438 +Configure=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Wipe\ Out\ Workspace=\u0418\u0437\u0442\u0440\u0438\u0439 \u0440\u0430\u0431\u043E\u0442\u043D\u043E\u0442\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E +Workspace=\u0420\u0430\u0431\u043E\u0442\u043D\u043E \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E +delete=\u0418\u0437\u0442\u0440\u0438\u0439 {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_bg.properties b/core/src/main/resources/hudson/model/Computer/index_bg.properties new file mode 100644 index 0000000000..df11dfbc83 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_bg.properties @@ -0,0 +1,26 @@ +# 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. + +Labels:=\u0415\u0442\u0438\u043A\u0435\u0442\u0438: +None=\u041D\u044F\u043C\u0430 +submit.not.temporarilyOffline=\u041C\u0430\u0440\u043A\u0438\u0440\u0430\u0439 \u0442\u0430\u0437\u0438 \u043C\u0430\u0448\u0438\u043D\u0430 \u0432\u0440\u0435\u043C\u0435\u043D\u043D\u043E \u043E\u0444\u043B\u0430\u0439\u043D +title.projects_tied_on=\u041F\u0440\u043E\u0435\u043A\u0442\u0438, \u0438\u0437\u043F\u044A\u043B\u043D\u044F\u0432\u0430\u043D\u0438 \u043D\u0430 {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties new file mode 100644 index 0000000000..d7d2c90921 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_bg.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u0441\u043F\u0438\u0441\u044A\u043A\u0430 +Build\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u0431\u0438\u043B\u0434\u0430 +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 +Delete\ Slave=\u0418\u0437\u0442\u0440\u0438\u0439 \u043C\u0430\u0448\u0438\u043D\u0430 +Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0438\u044F\u0442\u0430 +Script\ Console=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/index_bg.properties new file mode 100644 index 0000000000..7b844145ad --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_bg.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. + +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 +Name=\u0418\u043C\u0435 +Refresh\ status=\u0421\u0442\u0430\u0442\u0443\u0441 \u043D\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D\u0435\u0442\u043E diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties new file mode 100644 index 0000000000..6aea59b8db --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_bg.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=\u041E\u0431\u0440\u0430\u0442\u043D\u043E \u043A\u044A\u043C \u043E\u0441\u043D\u043E\u0432\u043D\u0438\u044F \u0435\u043A\u0440\u0430\u043D +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 +Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Jenkins +New\ Node=\u041D\u043E\u0432\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 diff --git a/core/src/main/resources/hudson/model/Job/configure_bg.properties b/core/src/main/resources/hudson/model/Job/configure_bg.properties new file mode 100644 index 0000000000..5d8f2e7029 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_bg.properties @@ -0,0 +1,27 @@ +# 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. + +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +Discard\ Old\ Builds=\u041F\u0440\u0435\u043D\u0435\u0431\u0440\u0435\u0433\u0432\u0430\u043D\u0435 \u043D\u0430 \u0441\u0442\u0430\u0440\u0438\u0442\u0435 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 +LOADING=\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 +Save=\u0417\u0430\u043F\u0438\u0448\u0438 +name=\u0438\u043C\u0435 diff --git a/core/src/main/resources/hudson/model/Job/index_bg.properties b/core/src/main/resources/hudson/model/Job/index_bg.properties new file mode 100644 index 0000000000..3ed94ba342 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_bg.properties @@ -0,0 +1,23 @@ +# 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=\u0417\u0430\u0431\u0440\u0430\u043D\u0438 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_bg.properties b/core/src/main/resources/hudson/model/Job/permalinks_bg.properties new file mode 100644 index 0000000000..2c37fa3b8a --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=\u0421\u0442\u0430\u0442\u0438\u0447\u043D\u0438 \u0432\u0440\u044A\u0437\u043A\u0438 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties new file mode 100644 index 0000000000..4901c0926c --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_bg.properties @@ -0,0 +1,26 @@ +# 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. + +Long=\u0414\u044A\u043B\u044A\u0433 +Medium=\u0421\u0440\u0435\u0434\u0435\u043D +Short=\u041A\u0440\u0430\u0442\u044A\u043A +title=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435\u0442\u043E: {0} diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_bg.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_bg.properties new file mode 100644 index 0000000000..de74757cf3 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Add\ Parameter=\u0414\u043E\u0431\u0430\u0432\u0438 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u044A\u0440 +This\ build\ is\ parameterized=\u0422\u043E\u0437\u0438 \u0431\u0438\u043B\u0434 \u0435 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438\u0437\u0438\u0440\u0430\u043D diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties new file mode 100644 index 0000000000..1770903b98 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_bg.properties @@ -0,0 +1,23 @@ +# 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. + +format=\u043F\u0440\u0435\u0434\u0438 {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/Run/console_bg.properties b/core/src/main/resources/hudson/model/Run/console_bg.properties new file mode 100644 index 0000000000..3481dd6d7b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u0430 \u0441 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 +View\ as\ plain\ text=\u0420\u0430\u0437\u0433\u043B\u0435\u0436\u0434\u0430\u043D\u0435 \u043A\u0430\u0442\u043E \u043E\u0431\u0438\u043A\u043D\u043E\u0432\u0435\u043D \u0442\u0435\u043A\u0441\u0442 diff --git a/core/src/main/resources/hudson/model/View/newJob_bg.properties b/core/src/main/resources/hudson/model/View/newJob_bg.properties new file mode 100644 index 0000000000..2116a9fd08 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_bg.properties @@ -0,0 +1,24 @@ +# 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. + +CopyExisting=\u041A\u043E\u043F\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0441\u044A\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449a {0} +JobName=\u0418\u043C\u0435 \u043D\u0430 {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_bg.properties b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties new file mode 100644 index 0000000000..88cdf8fdc8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_bg.properties @@ -0,0 +1,29 @@ +# 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\ History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435\u0442\u0435 +Check\ File\ Fingerprint=\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u043E\u0442\u043F\u0435\u0447\u0430\u0442\u044A\u043A\u0430 \u043D\u0430 \u0444\u0430\u0439\u043B\u0430 +Delete\ View=\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434 +Edit\ View=\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0438\u0437\u0433\u043B\u0435\u0434 +NewJob=\u041D\u043E\u0432\u0438 {0} +People=\u0425\u043E\u0440\u0430 +Project\ Relationship=\u0412\u0440\u044A\u0437\u043A\u0430 \u0441 \u043F\u0440\u043E\u0435\u043A\u0442 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties new file mode 100644 index 0000000000..13f7744740 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_bg.properties @@ -0,0 +1,23 @@ +# 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. + +login=\u0432\u0445\u043E\u0434 diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties new file mode 100644 index 0000000000..6f764d513e --- /dev/null +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Launch\ slave\ agent=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0430\u0433\u0435\u043D\u0442\u0430 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties new file mode 100644 index 0000000000..4a2c20e292 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_bg.properties @@ -0,0 +1,23 @@ +# 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. + +See\ log\ for\ more\ details=\u041F\u0440\u0435\u0433\u043B\u0435\u0434 \u043D\u0430 \u043B\u043E\u0433\u0430 \u0437\u0430 \u043F\u043E\u0432\u0435\u0447\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties new file mode 100644 index 0000000000..008958ca66 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Log=\u041B\u043E\u0433 +System\ Information=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_bg.properties new file mode 100644 index 0000000000..090901ab68 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_bg.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. + +Days\ to\ keep\ artifacts=\u0414\u043D\u0438, \u043F\u0440\u0435\u0437 \u043A\u043E\u0438\u0442\u043E \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0430\u0440\u0442\u0438\u0444\u0430\u043A\u0442\u0438\u0442\u0435 +Days\ to\ keep\ builds=\u0414\u043D\u0438, \u043F\u0440\u0435\u0437 \u043A\u043E\u0438\u0442\u043E \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0431\u0438\u043B\u0434\u043E\u0432\u0435\u0442\u0435 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u0430\u043A\u043E \u043D\u0435 \u0435 \u043F\u0440\u0430\u0437\u043D\u043E, \u0434\u0430 \u0441\u0435 \u043F\u0430\u0437\u044F\u0442 \u0441\u0430\u043C\u043E \u0442\u043E\u043B\u043A\u043E\u0432\u0430 \u0437\u0430\u043F\u0438\u0441\u0438 \u0437\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 diff --git a/core/src/main/resources/hudson/tasks/Mailer/config_bg.properties b/core/src/main/resources/hudson/tasks/Mailer/config_bg.properties new file mode 100644 index 0000000000..a7ac14ce2a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/config_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Recipients=\u041F\u043E\u043B\u0443\u0447\u0430\u0442\u0435\u043B\u0438 +Send\ e-mail\ for\ every\ unstable\ build=\u0418\u0437\u043F\u0440\u0430\u0449\u0430\u0439 \u0438\u043C\u0435\u0439\u043B \u0437\u0430 \u0432\u0441\u0435\u043A\u0438 \u043D\u0435\u0441\u0442\u0430\u0431\u0438\u043B\u0435\u043D \u0431\u0438\u043B\u0434 diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_bg.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_bg.properties new file mode 100644 index 0000000000..fcd0fc1bc5 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_bg.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. + +Test\ Result\ Trend=\u0422\u0435\u043D\u0434\u0435\u043D\u0446\u0438\u044F \u043D\u0430 \u0442\u0435\u0441\u0442\u043E\u0432\u0438\u0442\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0438 +enlarge=\u0443\u0433\u043E\u043B\u0435\u043C\u0438 +just\ show\ failures=\u043F\u043E\u043A\u0430\u0436\u0438 \u0441\u0430\u043C\u043E \u043F\u0440\u043E\u043F\u0430\u0434\u0430\u0449\u0438 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties new file mode 100644 index 0000000000..a95970d844 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u041D\u0430\u0441\u0440\u043E\u0447\u0438 build diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bg.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bg.properties new file mode 100644 index 0000000000..506fc8076c --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_bg.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u041D\u043E\u0432 \u0438\u0437\u0433\u043B\u0435\u0434 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties new file mode 100644 index 0000000000..a4eb002195 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u043F\u0440\u043E\u0434\u044A\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties new file mode 100644 index 0000000000..1193a2c148 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=\u041F\u043E\u0441\u043B\u0435\u0434\u0435\u043D \u043D\u0435\u0443\u0441\u043F\u0435\u0448\u0435\u043D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties new file mode 100644 index 0000000000..20e2cc8d34 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=\u041F\u043E\u0441\u043B\u0435\u0434\u0435\u043D \u0443\u0441\u043F\u0435\u0448\u0435\u043D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties new file mode 100644 index 0000000000..667ffbd671 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_bg.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \u043D\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u044F \u0431\u0438\u043B\u0434 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties new file mode 100644 index 0000000000..75285c4330 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u041A\u043E\u043D\u0437\u043E\u043B\u0435\u043D \u0438\u0437\u0445\u043E\u0434 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties new file mode 100644 index 0000000000..96b3ef6648 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_bg.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=\u041F\u043E\u0432\u0435\u0447\u0435... +for\ all=\u0437\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 +for\ failures=\u0437\u0430 \u043F\u0440\u043E\u043F\u0430\u0434\u0430\u0449\u0438\u0442\u0435 +trend=\u0442\u0435\u043D\u0434\u0435\u043D\u0446\u0438\u044F diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties new file mode 100644 index 0000000000..6e827c7d05 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u0435\u0434\u0438\u0448\u043D\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044F \u043D\u0430 Jenkins +buttonText=\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u0434\u043E {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties new file mode 100644 index 0000000000..1f5839b069 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_bg.properties @@ -0,0 +1,35 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435, \u043F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435, \u0441\u043F\u0438\u0440\u0430\u043D\u0435 \u0438 \u043F\u0443\u0441\u043A\u0430\u043D\u0435 \u043D\u0430 \u043F\u043B\u044A\u0433\u0438\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u043C\u043E\u0433\u0430\u0442 \u0434\u0430 \u0440\u0430\u0437\u0448\u0438\u0440\u044F\u0442 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0441\u0442\u0442\u0430 \u043D\u0430 Jenkins. +Configure\ System=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 +Configure\ global\ settings\ and\ paths.=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0433\u043B\u0430\u0432\u043D\u0438\u0442\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0438 \u043F\u044A\u0442\u0435\u043A\u0438 +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u041F\u043E\u043A\u0430\u0437\u0432\u0430 \u0440\u0430\u0437\u043D\u043E\u043E\u0431\u0440\u0430\u0437\u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0437\u0430 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0441 \u0446\u0435\u043B \u0434\u0430 \u0430\u0441\u0438\u0441\u0442\u0438\u0440\u0430 \u043E\u0442\u0441\u0442\u0440\u0430\u043D\u044F\u0432\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438. +Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435\u0442\u043E +Manage\ Jenkins=\u041E\u0440\u0433\u0430\u043D\u0438\u0437\u0430\u0446\u0438\u044F \u043D\u0430 Jenkins +Manage\ Nodes=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0438 +Manage\ Plugins=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043F\u043B\u044A\u0433\u0438\u043D\u0438 +Prepare\ for\ Shutdown=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 \u0437\u0430 \u0438\u0437\u043A\u043B\u044E\u0447\u0432\u0430\u043D\u0435 +Reload\ Configuration\ from\ Disk=\u041F\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435 \u043D\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043E\u0442 \u0434\u0438\u0441\u043A +System\ Information=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F. +System\ Log=\u0421\u0438\u0441\u0442\u0435\u043C\u0435\u043D \u043B\u043E\u0433 +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u041F\u043E\u043B\u0435\u0437\u043D\u043E \u0435 \u0430\u043A\u043E \u0441\u0442\u0435 \u043C\u043E\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u0430\u043B\u0438 \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043E\u043D\u043D\u0438\u0442\u0435 \u0444\u0430\u0439\u043B\u043E\u0432\u0435 \u0434\u0438\u0440\u0435\u043A\u0442\u043D\u043E \u043D\u0430 \u0434\u0438\u0441\u043A\u0430. diff --git a/core/src/main/resources/lib/form/helpArea_bg.properties b/core/src/main/resources/lib/form/helpArea_bg.properties new file mode 100644 index 0000000000..3ce755b05b --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=\u0417\u0430\u0440\u0435\u0436\u0434\u0430\u043D\u0435... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties new file mode 100644 index 0000000000..e2dcf86ecc --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=\u0418\u0437\u0442\u0440\u0438\u0439 diff --git a/core/src/main/resources/lib/hudson/buildCaption_bg.properties b/core/src/main/resources/lib/hudson/buildCaption_bg.properties new file mode 100644 index 0000000000..ba4662f316 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u041F\u0440\u043E\u0433\u0440\u0435\u0441 +cancel=\u043E\u0442\u043C\u044F\u043D\u0430 diff --git a/core/src/main/resources/lib/hudson/buildHealth_bg.properties b/core/src/main/resources/lib/hudson/buildHealth_bg.properties new file mode 100644 index 0000000000..bb5e44bfeb --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties new file mode 100644 index 0000000000..b8dc8b4e9f --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_bg.properties @@ -0,0 +1,23 @@ +# 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. + +text=\u0421\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043D \u043F\u0440\u0435\u0434\u0438 {0}
    \u041F\u0440\u0438\u0431\u043B\u0438\u0437\u0438\u0442\u0435\u043B\u043D\u043E \u043E\u0441\u0442\u0430\u0432\u0430\u0449\u043E \u0432\u0440\u0435\u043C\u0435: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_bg.properties b/core/src/main/resources/lib/hudson/editableDescription_bg.properties new file mode 100644 index 0000000000..fe32d896ad --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_bg.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=\u0434\u043E\u0431\u0430\u0432\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +edit\ description=\u043F\u0440\u043E\u043C\u0435\u043D\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435\u0442\u043E diff --git a/core/src/main/resources/lib/hudson/executors_bg.properties b/core/src/main/resources/lib/hudson/executors_bg.properties new file mode 100644 index 0000000000..35d3e2f86b --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_bg.properties @@ -0,0 +1,29 @@ +# 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=\u0421\u0442\u0430\u0442\u0443\u0441 \u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430\u0442\u0430 \u0438\u0437\u043F\u044A\u043B\u043D\u0438\u0442\u0435\u043B +Building=\u0411\u0438\u043B\u0434\u0432\u0430\u043D\u0435 +Idle=\u0421\u0432\u044A\u0440\u0437\u0430\u043D +Master=\u0413\u043B\u0430\u0432\u043D\u0430 \u043C\u0430\u0448\u0438\u043D\u0430 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +offline=\u043E\u0444\u043B\u0430\u0439\u043D +terminate\ this\ build=\u043F\u0440\u0435\u043A\u0440\u0430\u0442\u0438 \u0431\u0438\u043B\u0434\u0430 diff --git a/core/src/main/resources/lib/hudson/iconSize_bg.properties b/core/src/main/resources/lib/hudson/iconSize_bg.properties new file mode 100644 index 0000000000..95f5cae9f7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=\u0418\u043A\u043E\u043D\u0430 diff --git a/core/src/main/resources/lib/hudson/newFromList/form_bg.properties b/core/src/main/resources/lib/hudson/newFromList/form_bg.properties new file mode 100644 index 0000000000..176a3de347 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=\u041A\u043E\u043F\u0438\u0440\u0430\u0439 \u043E\u0442 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties new file mode 100644 index 0000000000..3fa45a7e9b --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Directory=\u041F\u0430\u043F\u043A\u0430 +Use\ custom\ workspace=\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439 \u0434\u0440\u0443\u0433\u0430 \u0440\u0430\u0431\u043E\u0442\u043D\u0430 \u043F\u0430\u043F\u043A\u0430 diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties new file mode 100644 index 0000000000..8717d41f6d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_bg.properties @@ -0,0 +1,23 @@ +# 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\ Build=\u0417\u0430\u043C\u0440\u0430\u0437\u0438 \u0431\u0438\u043B\u0434\u0430 diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties new file mode 100644 index 0000000000..fc4a87cd1f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_bg.properties @@ -0,0 +1,23 @@ +# 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. + +Retry\ Count=\u0411\u0440\u043E\u0439 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u0438 \u043E\u043F\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties new file mode 100644 index 0000000000..50d2fd145e --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_bg.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=\u041F\u043E\u0441\u043B\u0435\u0434\u0432\u0430\u0449\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 +Upstream\ Projects=\u041F\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0430\u0449\u0438 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/queue_bg.properties b/core/src/main/resources/lib/hudson/queue_bg.properties new file mode 100644 index 0000000000..2fd80ea311 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_bg.properties @@ -0,0 +1,24 @@ +# 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\ Queue=\u041E\u043F\u0430\u0448\u043A\u0430 \u043E\u0442 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 +No\ builds\ in\ the\ queue.=\u041D\u044F\u043C\u0430 \u0431\u0438\u043B\u0434\u043E\u0432\u0435 \u0432 \u043E\u043F\u0430\u0448\u043A\u0430\u0442\u0430 diff --git a/core/src/main/resources/lib/hudson/rssBar_bg.properties b/core/src/main/resources/lib/hudson/rssBar_bg.properties new file mode 100644 index 0000000000..86274d5256 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_bg.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=\u041B\u0435\u0433\u0435\u043D\u0434\u0430 +for\ all=\u0437\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 +for\ failures=\u0437\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0435\u043D\u0438\u0442\u0435 +for\ just\ latest\ builds=\u0441\u0430\u043C\u043E \u0437\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0442\u0435 diff --git a/core/src/main/resources/lib/layout/layout_bg.properties b/core/src/main/resources/lib/layout/layout_bg.properties new file mode 100644 index 0000000000..14ab0502e8 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_bg.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=\u0420\u0410\u0417\u0420\u0415\u0428\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u041E \u041E\u0411\u041D\u041E\u0412\u042F\u0412\u0410\u041D\u0415 +Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0433\u0435\u043D\u0435\u0440\u0438\u0440\u0430\u043D\u0430 +logout=\u0438\u0437\u0445\u043E\u0434 +search=\u0442\u044A\u0440\u0441\u0435\u043D\u0435 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/\u041A\u0443\u0442\u0438\u044F+\u0437\u0430+\u0442\u044A\u0440\u0441\u0435\u043D\u0435 -- GitLab From 095a8f72487bd8fa21cdad673abb6340f2bb8fff Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 111/158] Community-contributed localization for Catalan; Valencian (ca) --- .../AbstractBuild/sidepanel_ca.properties | 23 ++++++++++++++++ .../model/AbstractBuild/tasks_ca.properties | 27 +++++++++++++++++++ .../AbstractProject/sidepanel_ca.properties | 4 +-- .../hudson/model/Job/index_ca.properties | 23 ++++++++++++++++ .../hudson/model/Job/permalinks_ca.properties | 23 ++++++++++++++++ .../Permalink/link_ca.properties | 23 ++++++++++++++++ .../hudson/model/Run/console_ca.properties | 24 +++++++++++++++++ .../hudson/model/View/sidepanel_ca.properties | 5 +++- .../floatingBox_ca.properties | 25 +++++++++++++++++ .../DefaultViewsTabBar/viewTabs_ca.properties | 23 ++++++++++++++++ .../LastFailureColumn/column_ca.properties | 2 +- .../StatusColumn/columnHeader_ca.properties | 2 +- .../widgets/HistoryWidget/entry_ca.properties | 23 ++++++++++++++++ .../lib/hudson/buildHealth_ca.properties | 23 ++++++++++++++++ .../lib/hudson/buildProgressBar_ca.properties | 23 ++++++++++++++++ .../hudson/editableDescription_ca.properties | 1 + .../lib/hudson/executors_ca.properties | 5 ++++ .../project/upstream-downstream_ca.properties | 24 +++++++++++++++++ .../resources/lib/hudson/queue_ca.properties | 24 +++++++++++++++++ .../resources/lib/layout/layout_ca.properties | 5 +++- 20 files changed, 326 insertions(+), 6 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ca.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_ca.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_ca.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ca.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_ca.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_ca.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_ca.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_ca.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ca.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties new file mode 100644 index 0000000000..11d7c8e084 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ca.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=Construcci\u00F3 anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties new file mode 100644 index 0000000000..51e4192dcb --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ca.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=Tornar al projecte +Changes=Canvis +Console\ Output=Sortida de la consola +Edit\ Build\ Information=Editar Informaci\u00F3 de la Construcci\u00F3 +Status=Estat diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties index c7fabe1bf1..072e73f4c2 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ca.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Dashboard=Retornar al Panell de Control -Build\ scheduled=Pla de construcci\u00F3 +Build\ scheduled=Construcci\u00F3 programada Changes=Canvis Configure=Configurar Status=Estat -Wipe\ Out\ Workspace=Neteja de l''Espai de Treball +Wipe\ Out\ Workspace=Neteja l''''Espai de Treball Workspace=Espai de Treball delete=Eliminar {0} diff --git a/core/src/main/resources/hudson/model/Job/index_ca.properties b/core/src/main/resources/hudson/model/Job/index_ca.properties new file mode 100644 index 0000000000..f33ecada56 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ca.properties @@ -0,0 +1,23 @@ +# 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=Deshabilitar projecte diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ca.properties b/core/src/main/resources/hudson/model/Job/permalinks_ca.properties new file mode 100644 index 0000000000..28727122bc --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_ca.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=Enlla\u00E7os permanents diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties new file mode 100644 index 0000000000..0a0c3f966f --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ca.properties @@ -0,0 +1,23 @@ +# 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. + +format=Fa {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/Run/console_ca.properties b/core/src/main/resources/hudson/model/Run/console_ca.properties new file mode 100644 index 0000000000..0ecb6dad9e --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_ca.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Sortida de la consola +View\ as\ plain\ text=Veure com a texte pla diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties index a48f904a01..abed996243 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ca.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ca.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historic de construcci\u00F3 +Build\ History=Hist\u00F2ric de builds +Edit\ View=Editar Vista +NewJob={0} nou +People=Persones diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ca.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ca.properties new file mode 100644 index 0000000000..d4c2bf096f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ca.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. + +Test\ Result\ Trend=Tend\u00E8ncia resultats de test +enlarge=engrandir +just\ show\ failures=nom\u00E9s veure fallades diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties new file mode 100644 index 0000000000..4e81e10cb9 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ca.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nova vista diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties index 5972548e14..7f59267d42 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=N/D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties index 1c7d8deaf1..2c9abb9ad3 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ca.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estat de l''\u00FAltima construcci\u00F3 +Status\ of\ the\ last\ build=Estat de l''''\u00FAltim build diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ca.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ca.properties new file mode 100644 index 0000000000..e37bef6838 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ca.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Sortida de la consola diff --git a/core/src/main/resources/lib/hudson/buildHealth_ca.properties b/core/src/main/resources/lib/hudson/buildHealth_ca.properties new file mode 100644 index 0000000000..3e588504dd --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_ca.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Descripci\u00F3 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ca.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ca.properties new file mode 100644 index 0000000000..1c92333c89 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ca.properties @@ -0,0 +1,23 @@ +# 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. + +text=Iniciat fa {0}
    Temps restant estimat: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ca.properties b/core/src/main/resources/lib/hudson/editableDescription_ca.properties index da37d99233..975a488871 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ca.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ca.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. add\ description=afegir descripci\u00F3 +edit\ description=edita descripci\u00F3 diff --git a/core/src/main/resources/lib/hudson/executors_ca.properties b/core/src/main/resources/lib/hudson/executors_ca.properties index c04cfaf780..87a0556780 100644 --- a/core/src/main/resources/lib/hudson/executors_ca.properties +++ b/core/src/main/resources/lib/hudson/executors_ca.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build\ Executor\ Status=Estat de l''executador de builds +Building=Construint +Idle=Oci\u00F3s +Master=Master Status=Estat +terminate\ this\ build=finalitza aquest build diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ca.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ca.properties new file mode 100644 index 0000000000..a2a8047de7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ca.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Projectes en avall +Upstream\ Projects=Projectes en amunt diff --git a/core/src/main/resources/lib/hudson/queue_ca.properties b/core/src/main/resources/lib/hudson/queue_ca.properties new file mode 100644 index 0000000000..17d2dea07e --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ca.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Cua de builds +No\ builds\ in\ the\ queue.=No hi ha builds a la cua diff --git a/core/src/main/resources/lib/layout/layout_ca.properties b/core/src/main/resources/lib/layout/layout_ca.properties index 774ef4e6e3..f18826f025 100644 --- a/core/src/main/resources/lib/layout/layout_ca.properties +++ b/core/src/main/resources/lib/layout/layout_ca.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=HABILITAR REFREC AUTOM\u00C0TIC +ENABLE\ AUTO\ REFRESH=HABILITAR REFRESC AUTOM\u00C0TIC +Page\ generated=P\u00E0gina generada +logout=Sortir +search=cerca -- GitLab From 929ea0d56514288ea1cea549a8d530d2cafd070c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 112/158] Community-contributed localization for Czech (cs) --- .../hudson/PluginManager/index_cs.properties | 26 ++++++++++++ .../hudson/PluginManager/tabBar_cs.properties | 26 ++++++++++++ .../hudson/PluginManager/table_cs.properties | 27 ++++++++++++ .../message_cs.properties | 24 +++++++++++ .../matrix/MatrixProject/index_cs.properties | 24 +++++++++++ .../model/AbstractBuild/index_cs.properties | 26 ++++++++++++ .../AbstractBuild/sidepanel_cs.properties | 24 +++++++++++ .../model/AbstractBuild/tasks_cs.properties | 28 +++++++++++++ .../AbstractProject/changes_cs.properties | 23 +++++++++++ .../model/AbstractProject/main_cs.properties | 2 + .../AbstractProject/sidepanel_cs.properties | 30 ++++++++++++++ .../hudson/model/AllView/noJob_cs.properties | 24 +++++++++++ .../UserIdCause/description_cs.properties | 23 +++++++++++ .../hudson/model/Computer/index_cs.properties | 25 +++++++++++ .../model/Computer/sidepanel_cs.properties | 29 +++++++++++++ .../model/ComputerSet/index_cs.properties | 25 +++++++++++ .../model/ComputerSet/sidepanel_cs.properties | 26 ++++++++++++ .../DirectoryBrowserSupport/dir_cs.properties | 24 +++++++++++ .../hudson/model/Job/index_cs.properties | 23 +++++++++++ .../Permalink/link_cs.properties | 23 +++++++++++ .../hudson/model/Run/configure_cs.properties | 26 ++++++++++++ .../hudson/model/Run/console_cs.properties | 26 ++++++++++++ .../hudson/model/Run/delete_cs.properties | 23 +++++++++++ .../hudson/model/Run/logKeep_cs.properties | 23 +++++++++++ .../ConnectionCheckJob/row_cs.properties | 23 +++++++++++ .../CoreUpdateMonitor/message_cs.properties | 25 +++++++++++ .../DownloadJob/Pending/status_cs.properties | 23 +++++++++++ .../DownloadJob/Success/status_cs.properties | 23 +++++++++++ .../model/UpdateCenter/body_cs.properties | 23 +++++++++++ .../model/UpdateCenter/index_cs.properties | 23 +++++++++++ .../UpdateCenter/sidepanel_cs.properties | 2 + .../hudson/model/User/configure_cs.properties | 25 +++++++++++ .../hudson/model/User/index_cs.properties | 23 +++++++++++ .../hudson/model/User/sidepanel_cs.properties | 27 ++++++++++++ .../model/View/People/index_cs.properties | 27 ++++++++++++ .../hudson/model/View/builds_cs.properties | 24 +++++++++++ .../hudson/model/View/delete_cs.properties | 24 +++++++++++ .../hudson/model/View/noJob_cs.properties | 24 +++++++++++ .../hudson/model/View/sidepanel_cs.properties | 6 ++- .../DiskSpace/cause_cs.properties | 23 +++++++++++ .../SlaveComputer/sidepanel2_cs.properties | 25 +++++++++++ .../Mailer/UserProperty/config_cs.properties | 24 +++++++++++ .../MetaTabulatedResult/body_cs.properties | 31 ++++++++++++++ .../test/TestObject/sidepanel_cs.properties | 24 +++++++++++ .../tasks/test/TestResult/index_cs.properties | 23 +++++++++++ .../floatingBox_cs.properties | 24 +++++++++++ .../BuildButtonColumn/column_cs.properties | 23 +++++++++++ .../DefaultViewsTabBar/viewTabs_cs.properties | 23 +++++++++++ .../columnHeader_cs.properties | 2 +- .../columnHeader_cs.properties | 2 +- .../StatusColumn/columnHeader_cs.properties | 2 +- .../WeatherColumn/columnHeader_cs.properties | 2 +- .../widgets/HistoryWidget/entry_cs.properties | 23 +++++++++++ .../widgets/HistoryWidget/index_cs.properties | 26 ++++++++++++ .../jenkins/model/Jenkins/_cli_cs.properties | 24 +++++++++++ .../model/Jenkins/downgrade_cs.properties | 24 +++++++++++ .../model/Jenkins/legend_cs.properties | 35 ++++++++++++++++ .../model/Jenkins/manage_cs.properties | 41 +++++++++++++++++++ .../model/Jenkins/systemInfo_cs.properties | 27 ++++++++++++ .../resources/lib/form/helpArea_cs.properties | 23 +++++++++++ .../lib/hudson/buildCaption_cs.properties | 24 +++++++++++ .../lib/hudson/buildListTable_cs.properties | 25 +++++++++++ .../lib/hudson/buildProgressBar_cs.properties | 23 +++++++++++ .../hudson/editableDescription_cs.properties | 3 +- .../lib/hudson/executors_cs.properties | 4 ++ .../lib/hudson/iconSize_cs.properties | 23 +++++++++++ .../lib/hudson/project/matrix_cs.properties | 23 +++++++++++ .../project/upstream-downstream_cs.properties | 23 +++++++++++ .../lib/hudson/propertyTable_cs.properties | 24 +++++++++++ .../resources/lib/hudson/queue_cs.properties | 4 +- .../resources/lib/hudson/rssBar_cs.properties | 26 ++++++++++++ .../lib/hudson/test-result_cs.properties | 24 +++++++++++ .../resources/lib/layout/layout_cs.properties | 7 +++- .../lib/layout/main-panel_cs.properties | 23 +++++++++++ .../main/resources/lib/test/bar_cs.properties | 24 +++++++++++ .../MavenModuleSet/actions_cs.properties | 23 +++++++++++ .../maven/MavenModuleSet/index_cs.properties | 25 +++++++++++ 77 files changed, 1671 insertions(+), 10 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/index_cs.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_cs.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_cs.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_cs.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_cs.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_cs.properties create mode 100644 core/src/main/resources/hudson/model/User/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/delete_cs.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_cs.properties create mode 100644 core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_cs.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_cs.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_cs.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties create mode 100644 core/src/main/resources/lib/form/helpArea_cs.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_cs.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_cs.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_cs.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_cs.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_cs.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_cs.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_cs.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_cs.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_cs.properties create mode 100644 core/src/main/resources/lib/test/bar_cs.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_cs.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_cs.properties b/core/src/main/resources/hudson/PluginManager/index_cs.properties new file mode 100644 index 0000000000..b66b733535 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_cs.properties @@ -0,0 +1,26 @@ +# 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. + +All=V\u0161e +None=Nic +Select=Vybrat +UpdatePageDescription=Str\u00E1nka zobrazuje aktualizace plugin\u016F, kter\u00E9 aktu\u00E1ln\u011B pou\u017E\u00EDv\u00E1te. diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties b/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties new file mode 100644 index 0000000000..4d0f10e412 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_cs.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=Pokro\u010Dil\u00E9 +Available=Dostupn\u00E9 +Installed=Nainstalovan\u00E9 +Updates=Aktualizace diff --git a/core/src/main/resources/hudson/PluginManager/table_cs.properties b/core/src/main/resources/hudson/PluginManager/table_cs.properties new file mode 100644 index 0000000000..0a0553f903 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_cs.properties @@ -0,0 +1,27 @@ +# 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. + +Check\ to\ install\ the\ plugin=Pro nainstalov\u00E1n\u00ED pluginu za\u0161krtn\u011Bte +Install=Nainstalovat +Installed=Nainstalovan\u00E1 verze +Name=Jm\u00E9no +Version=Aktu\u00E1ln\u00ED verze diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties new file mode 100644 index 0000000000..f1d636122b --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Dismiss=Zru\u0161it +More\ Info=V\u00EDce informac\u00ED diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties new file mode 100644 index 0000000000..1894df2ccc --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_cs.properties @@ -0,0 +1,24 @@ +# 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=Vypnout projekt +Project=Projekt diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties new file mode 100644 index 0000000000..550b23f6bd --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_cs.properties @@ -0,0 +1,26 @@ +# 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=Build +Not\ yet\ determined=Prozat\u00EDm nezji\u0161t\u011Bno +Took=Trval +startedAgo=Spu\u0161t\u011Bn p\u0159ed {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties new file mode 100644 index 0000000000..0726daca12 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Next\ Build=Dal\u0161\u00ED build +Previous\ Build=P\u0159edchoz\u00ED sestaven\u00ED diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties new file mode 100644 index 0000000000..457b06fbb0 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_cs.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Zp\u011Bt na projekt +Changes=Zm\u011Bny +Console\ Output=V\u00FDstup konzole +Edit\ Build\ Information=Zm\u011Bnit informace o sestaven\u00ED +Status=Status +raw=neform\u00E1tovan\u00FD diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties new file mode 100644 index 0000000000..70ed680273 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Zm\u011Bny diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties index f7a6a2614e..b5b4b83128 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_cs.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Latest\ Test\ Result=V\u00FDsledky posledn\u00EDho testu +Recent\ Changes=Ned\u00E1vn\u00E9 zm\u011Bny +Workspace=Workspace diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties new file mode 100644 index 0000000000..a441f896d8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_cs.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Zp\u011Bt na n\u00E1st\u011Bnku +Build\ scheduled=Sestaven\u00ED napl\u00E1nov\u00E1no +Changes=Zm\u011Bny +Configure=Nastavit +Status=Stav +Wipe\ Out\ Workspace=Vypr\u00E1zdnit pracovn\u00ED prostor +Workspace=Pracovn\u00ED prostor +delete=Vymazat {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_cs.properties b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties new file mode 100644 index 0000000000..2ee32213ed --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=V\u00EDtejte v Jenkinsu +newJob=Pros\u00EDm vytvo\u0159te novou pr\u00E1ci abychom mohli za\u010D\u00EDt. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties new file mode 100644 index 0000000000..9af05a2a70 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_cs.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_user=Zah\u00E1jen u\u017Eivatelem {1} diff --git a/core/src/main/resources/hudson/model/Computer/index_cs.properties b/core/src/main/resources/hudson/model/Computer/index_cs.properties new file mode 100644 index 0000000000..ac0cf2d9f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_cs.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. + +Labels:=Popisky: +submit.not.temporarilyOffline=Ozna\u010Dit uzel jako do\u010Dasn\u011B nedostupn\u00FD +submit.temporarilyOffline=P\u0159ipojit uzel zp\u011Bt diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties new file mode 100644 index 0000000000..4facbaf734 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_cs.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=Zp\u011Bt na seznam +Build\ History=Historie sestaven\u00ED +Configure=Nastavit +Delete\ Slave=Vymazat server +Load\ Statistics=Na\u010D\u00EDst statistiku +Script\ Console=Konzole +Status=Stav diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/index_cs.properties new file mode 100644 index 0000000000..3d55aa144e --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_cs.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. + +Configure=Nastavit +Name=Jm\u00E9no +Refresh\ status=Obnovit status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties new file mode 100644 index 0000000000..6eb3fdaa43 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_cs.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=zp\u011Bt +Configure=Nastavit +Manage\ Jenkins=Spravovat Jenkins +New\ Node=Nov\u00E1 pozn\u00E1mka diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties new file mode 100644 index 0000000000..3788f11659 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_cs.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=v\u0161echny soubory v zip archivu +view=zobrazit diff --git a/core/src/main/resources/hudson/model/Job/index_cs.properties b/core/src/main/resources/hudson/model/Job/index_cs.properties new file mode 100644 index 0000000000..daaf0c9732 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_cs.properties @@ -0,0 +1,23 @@ +# 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=Deaktivovat projekt diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties new file mode 100644 index 0000000000..087b2ba694 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_cs.properties @@ -0,0 +1,23 @@ +# 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. + +format="{0} ({1}), p\u0159ed {2}" diff --git a/core/src/main/resources/hudson/model/Run/configure_cs.properties b/core/src/main/resources/hudson/model/Run/configure_cs.properties new file mode 100644 index 0000000000..d73238e839 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_cs.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Popis +DisplayName=Zobrazovan\u00E9 jm\u00E9no +LOADING=NAHR\u00C1V\u00C1N\u00CD +Save=Ulo\u017Eit diff --git a/core/src/main/resources/hudson/model/Run/console_cs.properties b/core/src/main/resources/hudson/model/Run/console_cs.properties new file mode 100644 index 0000000000..0a4acd4634 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_cs.properties @@ -0,0 +1,26 @@ +# 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. + +Console\ Output=V\u00FDstup na konzoli +View\ as\ plain\ text=Zobrazit jako text +skipSome=Vynech\u00E1no {0,number,integer} kB.. Zobrazit cel\u00FD text + diff --git a/core/src/main/resources/hudson/model/Run/delete_cs.properties b/core/src/main/resources/hudson/model/Run/delete_cs.properties new file mode 100644 index 0000000000..ccde40cbca --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=Smazat tento build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_cs.properties b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties new file mode 100644 index 0000000000..8f7c582adb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=Zachovat tento build nav\u017Edy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties new file mode 100644 index 0000000000..3c042d61dc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=P\u0159\u00EDprava diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.properties new file mode 100644 index 0000000000..a6e14b9575 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_cs.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. + +NewVersionAvailable=Nov\u00E1 verze Jenkinse ({0}) je dostupn\u00E1 ke sta\u017Een\u00ED (zm\u011Bny). +Or\ Upgrade\ Automatically=A nebo upgradovat automaticky +UpgradeComplete=Upgrade na Jenkinse {0} je hotov, \u010Dek\u00E1 na restart. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties new file mode 100644 index 0000000000..1107b57834 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u010Cek\u00E1 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties new file mode 100644 index 0000000000..19d48ff5bf --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Success=\u00DAsp\u011B\u0161n\u011B dokon\u010Deno diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties new file mode 100644 index 0000000000..c98d943d07 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_cs.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Restartovat Jenkins a\u017E skon\u010D\u00ED instalace nepob\u011B\u017E\u00ED \u017E\u00E1dn\u00E9 \u00FAlohy diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties new file mode 100644 index 0000000000..111a7890f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=Instalace plugin\u016F / aktualizac\u00ED diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties index 89cb3ae4bb..ce11a7c975 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_cs.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Zp\u011Bt na Dashboard Manage\ Jenkins=Administrace +Manage\ Plugins=Spravovat pluginy diff --git a/core/src/main/resources/hudson/model/User/configure_cs.properties b/core/src/main/resources/hudson/model/User/configure_cs.properties new file mode 100644 index 0000000000..f93cd0d028 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_cs.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. + +Description=Popis +Save=Ulo\u017Eit +Your\ name=Va\u0161e jm\u00E9no diff --git a/core/src/main/resources/hudson/model/User/index_cs.properties b/core/src/main/resources/hudson/model/User/index_cs.properties new file mode 100644 index 0000000000..877efc1772 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=ID u\u017Eivatele pro Jenkis diff --git a/core/src/main/resources/hudson/model/User/sidepanel_cs.properties b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties new file mode 100644 index 0000000000..68a3b5066b --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_cs.properties @@ -0,0 +1,27 @@ +# 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. + +Builds=Buildy +Configure=Konfiguruj +My\ Views=M\u00E9 n\u00E1hledy +People=Lid\u00E9 +Status=Status diff --git a/core/src/main/resources/hudson/model/View/People/index_cs.properties b/core/src/main/resources/hudson/model/View/People/index_cs.properties new file mode 100644 index 0000000000..e81a79eb01 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_cs.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=Posledn\u00ED aktivita +Name=Jm\u00E9no +On=Na +People=Lid\u00E9 +User\ Id=U\u017Eivatelsk\u00E9 ID diff --git a/core/src/main/resources/hudson/model/View/builds_cs.properties b/core/src/main/resources/hudson/model/View/builds_cs.properties new file mode 100644 index 0000000000..810d9727f9 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=Exportovat jako XML +buildHistory=Historie build\u016F {0} diff --git a/core/src/main/resources/hudson/model/View/delete_cs.properties b/core/src/main/resources/hudson/model/View/delete_cs.properties new file mode 100644 index 0000000000..1107fa0d09 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/delete_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ view?=Opravdu chcete smazat pohled? +Yes=Ano diff --git a/core/src/main/resources/hudson/model/View/noJob_cs.properties b/core/src/main/resources/hudson/model/View/noJob_cs.properties new file mode 100644 index 0000000000..25d960876b --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_cs.properties @@ -0,0 +1,24 @@ +# 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. + +description_1=Pohled nem\u00E1 \u017E\u00E1dn\u00E9 p\u0159i\u0159azen\u00E9 \u00FAkoly. +description_2=M\u016F\u017Eete bu\u010F p\u0159idat existuj\u00EDc\u00ED \u00FAkoly nebo vytvo\u0159it nov\u00FD \u00FAkol v tomto pohledu. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties index b5860672e6..534ab73af7 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_cs.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_cs.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historie build\u016F +Build\ History=Historie sestaven\u00ED +Check\ File\ Fingerprint=Ov\u011B\u0159it otsk souboru +NewJob=Nov\u00E9 +People=Lid\u00E9 +Project\ Relationship=Vazby mezi projekty diff --git a/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_cs.properties b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_cs.properties new file mode 100644 index 0000000000..d74adadeb2 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_cs.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=M\u00E1lo m\u00EDsta na disku. Zb\u00FDv\u00E1 pouze {0}GB. diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_cs.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_cs.properties new file mode 100644 index 0000000000..955f5c2b64 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_cs.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. + +Disconnect=Odpojit +Log=Log +System\ Information=Syst\u00E9mov\u00E9 informace diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_cs.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_cs.properties new file mode 100644 index 0000000000..ca738ae2c4 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_cs.properties @@ -0,0 +1,24 @@ +# 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. + +E-mail\ address=E-mailov\u00E1 adresa +description=Va\u0161e E-mailov\u00E1 adresa, ve form\u00E1tu joe.chin@sun.com diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties new file mode 100644 index 0000000000..ed35c6fdce --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_cs.properties @@ -0,0 +1,31 @@ +# 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. + +All\ Failed\ Tests=V\u0161echny ne\u00FAsp\u011B\u0161n\u00E9 testy +All\ Tests=V\u0161echny testy +Duration=Trv\u00E1n\u00ED +Fail=Selh\u00E1n\u00ED +Loading...=Nahr\u00E1v\u00E1n\u00ED... +Skip=P\u0159esko\u010Deno +Test\ Name=N\u00E1zev testu +Total=Celkem +diff=zm\u011Bna diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_cs.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_cs.properties new file mode 100644 index 0000000000..f901de30ce --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_cs.properties @@ -0,0 +1,24 @@ +# 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. + +History=Historie +Previous\ Build=P\u0159edchoz\u00ED build diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_cs.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_cs.properties new file mode 100644 index 0000000000..2be98c1820 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_cs.properties @@ -0,0 +1,23 @@ +# 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. + +took=Trval {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties new file mode 100644 index 0000000000..8317960f39 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Test\ Result\ Trend=Trend v\u00FDsledk\u016F test\u016F +just\ show\ failures=zobrazit pouze chyby diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties new file mode 100644 index 0000000000..23afd2fa5b --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Napl\u00E1novat sestaven\u00ED diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties new file mode 100644 index 0000000000..26c39728b0 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_cs.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nov\u00FD pohled diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties index 916ff52c9c..88ed31bc64 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Posledn\u00ED ne\u00FAsp\u011B\u0161n\u00FD +Last\ Failure=Posledn\u00ED ne\u00FAsp\u011B\u0161n\u00E9 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties index 0cd53dbb81..a7b16f8435 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Posledn\u00ED \u00FAsp\u011B\u0161n\u00FD +Last\ Success=Posledn\u00ED \u00FAsp\u011B\u0161n\u00E9 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties index ffd7415ff4..30b0b6cb76 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=V\u00FDsledek posledn\u00EDho buildu. +Status\ of\ the\ last\ build=V\u00FDsledek posledn\u00EDho sestaven\u00ED. diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties index 58a0bd14dd..1e7ad76ea5 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_cs.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Pr\u016Fm\u011Br v\u00FDsledk\u016F z posledn\u00EDch build\u016F. +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Pr\u016Fm\u011Br v\u00FDsledk\u016F z posledn\u00EDch sestaven\u00ED. diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_cs.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_cs.properties new file mode 100644 index 0000000000..fd157ebaec --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=V\u00FDstup konzole diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties new file mode 100644 index 0000000000..1ff18924dc --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_cs.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=V\u00EDce ... +for\ all=v\u0161eho +for\ failures=chybn\u00FDch sestaven\u00ED +trend=trend diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties new file mode 100644 index 0000000000..1ec4864812 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Available\ Commands=Dostupn\u00E9 p\u0159\u00EDkazy +Jenkins\ CLI=Jenkins CLI diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties new file mode 100644 index 0000000000..86dc0f151b --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Obnovit p\u0159edchoz\u00ED verzi Jenkinse +buttonText=Downgradovat na {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties new file mode 100644 index 0000000000..59ce893d8f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_cs.properties @@ -0,0 +1,35 @@ +# 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. + +blue=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD. +blue_anime=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD a pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. +grey=Project je\u0161t\u011B nem\u011Bl ani jeden build a nebo je deaktivovan\u00FD. +grey_anime=Prvn\u00ED build projektu pr\u00E1v\u011B prob\u00EDh\u00E1. +health-00to20=Zdrav\u00ED projektu je ni\u017E\u0161\u00ED ne\u017E 20%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. +health-21to40=Zdrav\u00ED projektu je mezi 20% a 40%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. +health-41to60=Zdrav\u00ED projektu je mezi 40% a 60%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. +health-61to80=Zdrav\u00ED projektu je mezi 60% a 80%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. +health-81plus=Zdrav\u00ED projektu je vy\u0161\u0161\u00ED ne\u017E 80%. Podr\u017Ete kurzor my\u0161i nad ikonou projektu pro v\u00EDce informac\u00ED. +red=Posledn\u00ED build selhal. +red_anime=Posledn\u00ED build selhal a pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. +yellow=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD, ale nestabiln\u00ED. Toto obvykle znamen\u00E1 \u017Ee n\u011Bkter\u00E9 testy nepro\u0161ly. +yellow_anime=Posledn\u00ED build byl \u00FAsp\u011B\u0161n\u00FD, ale nestabiln\u00ED. Pr\u00E1v\u011B prob\u00EDh\u00E1 nov\u00FD build. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties new file mode 100644 index 0000000000..43bdaa501c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_cs.properties @@ -0,0 +1,41 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=P\u0159id\u00E1v\u00E1n\u00ED, odstra\u0148ov\u00E1n\u00ED, zap\u00EDn\u00E1n\u00ED a vyp\u00EDn\u00E1n\u00ED plugin\u016F kter\u00E9 mohou roz\u0161i\u0159ovat funkcionalitu Jenkinse. +Configure\ System=Nastavit syst\u00E9m +Configure\ global\ settings\ and\ paths.=Nastavit glob\u00E1ln\u00ED nastaven\u00ED a cesty +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Zahodit v\u0161echna nahran\u00E1 data v pam\u011Bti a znovu nahr\u00E1t v\u0161e z disku. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Zobrazuje r\u016Fzn\u00E9 informace o prost\u0159ed\u00ED ke snadn\u011Bj\u0161\u00EDmu hled\u00E1n\u00ED chyb. +Jenkins\ CLI=Jenkins CLI +JenkinsCliText=P\u0159\u00EDstup/nastaven\u00ED Jenkinse z p\u0159\u00EDkazov\u00E9 \u0159\u00E1dky nebo pomoc\u00ED skriptu. +Load\ Statistics=Z\u00E1t\u011B\u017Eov\u00E9 statistiky +LoadStatisticsText=Zkontrolujte vyu\u017Eit\u00ED syst\u00E9mov\u00FDch zdroj\u016F a zjist\u011Bte, zda nepot\u0159ebujete pro va\u0161e buildy dal\u0161\u00ED hardware. +Manage\ Jenkins=Spravovat Jenkinse +Manage\ Plugins=Spravovat pluginy +Prepare\ for\ Shutdown=P\u0159ipravit na vypnut\u00ED +Reload\ Configuration\ from\ Disk=Znovu nahr\u00E1t konfiguraci z disku +Script\ Console=Konzole +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=P\u0159estane spou\u0161t\u011Bt nov\u00E9 buildy, aby mohl b\u00FDt syst\u00E9m pozd\u011Bji bezpe\u010Dn\u011B vypnut. +System\ Information=Syst\u00E9mov\u00E9 informace +System\ Log=Syst\u00E9mov\u00FD log +SystemLogText=Syst\u00E9mov\u00FD log ukl\u00E1d\u00E1 v\u00FDstup java.util.logging, kter\u00FD se t\u00FDk\u00E1 Jenkinse. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Hod\u00ED se pokud jste zm\u011Bnili konfigura\u010Dn\u00ED soubory p\u0159\u00EDmo na disku. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties new file mode 100644 index 0000000000..798571a624 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_cs.properties @@ -0,0 +1,27 @@ +# 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. + +Enabled=Spu\u0161t\u011Bno +Name=Jm\u00E9no +Plugins=Dopl\u0148ky +System\ Properties=Syst\u00E9mov\u00E9 informace +Version=Verze diff --git a/core/src/main/resources/lib/form/helpArea_cs.properties b/core/src/main/resources/lib/form/helpArea_cs.properties new file mode 100644 index 0000000000..506d2cde46 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=Nahr\u00E1v\u00E1n\u00ED... diff --git a/core/src/main/resources/lib/hudson/buildCaption_cs.properties b/core/src/main/resources/lib/hudson/buildCaption_cs.properties new file mode 100644 index 0000000000..c12b490f14 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Postup +cancel=zru\u0161it diff --git a/core/src/main/resources/lib/hudson/buildListTable_cs.properties b/core/src/main/resources/lib/hudson/buildListTable_cs.properties new file mode 100644 index 0000000000..52da69f638 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_cs.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. + +Build=Build +Console\ output=V\u00FDstup z konzole +Status=Stav diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties new file mode 100644 index 0000000000..9dd28535da --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_cs.properties @@ -0,0 +1,23 @@ +# 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. + +text=Nastartov\u00E1no p\u0159ed {0}
    P\u0159edpokl\u00E1d\u00E1n\u00FD zb\u00FDvaj\u00EDc\u00ED \u010Das: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_cs.properties b/core/src/main/resources/lib/hudson/editableDescription_cs.properties index 398cbc7ffb..6c75fc72c7 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_cs.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_cs.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -edit\ description=editace popisu +add\ description=P\u0159idat popis +edit\ description=\u00FAprava popisu diff --git a/core/src/main/resources/lib/hudson/executors_cs.properties b/core/src/main/resources/lib/hudson/executors_cs.properties index 32417106ea..a07c797a5b 100644 --- a/core/src/main/resources/lib/hudson/executors_cs.properties +++ b/core/src/main/resources/lib/hudson/executors_cs.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Build\ Executor\ Status=Stav vykon\u00E1v\u00E1n\u00ED sestaven\u00ED +Building=Prob\u00EDh\u00E1 build Idle=Voln\u00FD Master=Hlavn\u00ED +Status=Stav +terminate\ this\ build=ukon\u010Dit tento build diff --git a/core/src/main/resources/lib/hudson/iconSize_cs.properties b/core/src/main/resources/lib/hudson/iconSize_cs.properties new file mode 100644 index 0000000000..5917729e15 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikona diff --git a/core/src/main/resources/lib/hudson/project/matrix_cs.properties b/core/src/main/resources/lib/hudson/project/matrix_cs.properties new file mode 100644 index 0000000000..04ad3a2878 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Configurations=Konfigurace diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties new file mode 100644 index 0000000000..43873436d7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Upstream\ Projects=Posledn\u00ED zm\u011Bny diff --git a/core/src/main/resources/lib/hudson/propertyTable_cs.properties b/core/src/main/resources/lib/hudson/propertyTable_cs.properties new file mode 100644 index 0000000000..45027813ef --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_cs.properties @@ -0,0 +1,24 @@ +# 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. + +Name=Jm\u00E9no +Value=Hodnota diff --git a/core/src/main/resources/lib/hudson/queue_cs.properties b/core/src/main/resources/lib/hudson/queue_cs.properties index d401f8b0cb..1308d503ed 100644 --- a/core/src/main/resources/lib/hudson/queue_cs.properties +++ b/core/src/main/resources/lib/hudson/queue_cs.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch build\u016F -No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00FD \u010Dekaj\u00EDc\u00ED build +Build\ Queue=Fronta \u010Dekaj\u00EDc\u00EDch sestaven\u00ED +No\ builds\ in\ the\ queue.=\u017D\u00E1dn\u00E9 \u010Dekaj\u00EDc\u00ED sestaven\u00ED diff --git a/core/src/main/resources/lib/hudson/rssBar_cs.properties b/core/src/main/resources/lib/hudson/rssBar_cs.properties new file mode 100644 index 0000000000..708f9e0feb --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_cs.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=N\u00E1pov\u011Bda +for\ all=pro v\u0161echny +for\ failures=pro chybn\u00E9 +for\ just\ latest\ builds=pro posledn\u00ED sestaven\u00ED diff --git a/core/src/main/resources/lib/hudson/test-result_cs.properties b/core/src/main/resources/lib/hudson/test-result_cs.properties new file mode 100644 index 0000000000..3c504bf238 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_cs.properties @@ -0,0 +1,24 @@ +# 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. + +no\ failures=\u017E\u00E1dn\u00E9 chyby +no\ tests=\u017E\u00E1dn\u00E9 testy diff --git a/core/src/main/resources/lib/layout/layout_cs.properties b/core/src/main/resources/lib/layout/layout_cs.properties index ab34d45713..8acb193083 100644 --- a/core/src/main/resources/lib/layout/layout_cs.properties +++ b/core/src/main/resources/lib/layout/layout_cs.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=zapnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky +DISABLE\ AUTO\ REFRESH=Vypnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky +ENABLE\ AUTO\ REFRESH=Zapnout automatick\u00E9 obnovov\u00E1n\u00ED str\u00E1nky Page\ generated=Str\u00E1nka generov\u00E1na -logout=odhl\u00E1sit +logout=Odhl\u00E1sit +search=vyhledat +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_cs.properties b/core/src/main/resources/lib/layout/main-panel_cs.properties new file mode 100644 index 0000000000..e61e09afb3 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkins je p\u0159ipraven na vypnut\u00ED diff --git a/core/src/main/resources/lib/test/bar_cs.properties b/core/src/main/resources/lib/test/bar_cs.properties new file mode 100644 index 0000000000..534d02312b --- /dev/null +++ b/core/src/main/resources/lib/test/bar_cs.properties @@ -0,0 +1,24 @@ +# 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. + +failures={0} chyb +tests={0} test\u016F diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_cs.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_cs.properties new file mode 100644 index 0000000000..7da39d8a47 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_cs.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduly 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 new file mode 100644 index 0000000000..a4a3319bf5 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_cs.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. + +Disable\ Project=Deaktivovat projekt +Latest\ Test\ Result=Posledn\u00ED v\u00FDsledky test\u016F +Recent\ Changes=Posledn\u00ED zm\u011Bny -- GitLab From 36ce52d86a705d414b0ed92f173193f05f46e5ac Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 113/158] Community-contributed localization for Danish (da) --- .../hudson/AboutJenkins/index_da.properties | 25 ++++++++++++++++++ .../hudson/PluginManager/index_da.properties | 3 +++ .../message_da.properties | 2 +- .../config_da.properties | 23 ++++++++++++++++ .../MatrixProject/newJobDetail_da.properties | 3 +-- .../model/AbstractBuild/index_da.properties | 2 +- .../AbstractBuild/sidepanel_da.properties | 4 +-- .../model/AbstractBuild/tasks_da.properties | 3 ++- .../model/AbstractProject/main_da.properties | 2 +- .../ExternalJob/newJobDetail_da.properties | 4 +-- .../newJobDetail_da.properties | 4 +-- .../hudson/model/Job/index_da.properties | 1 + .../hudson/model/Run/configure_da.properties | 26 +++++++++++++++++++ .../hudson/model/Run/console_da.properties | 2 +- .../hudson/model/User/index_da.properties | 23 ++++++++++++++++ .../model/View/People/index_da.properties | 1 + .../hudson/model/View/sidepanel_da.properties | 6 ++--- .../config_da.properties | 1 + .../BuildButtonColumn/column_da.properties | 2 +- .../columnHeader_da.properties | 2 +- .../WeatherColumn/columnHeader_da.properties | 2 +- .../widgets/HistoryWidget/entry_da.properties | 23 ++++++++++++++++ .../jenkins/model/Jenkins/_cli_da.properties | 1 + .../model/Jenkins/manage_da.properties | 22 +++++++--------- .../model/Jenkins/systemInfo_da.properties | 3 +++ .../lib/hudson/buildCaption_da.properties | 2 +- .../hudson/editableDescription_da.properties | 2 +- .../lib/hudson/executors_da.properties | 7 ++--- .../resources/lib/hudson/rssBar_da.properties | 2 +- .../hudson/thirdPartyLicenses_da.properties | 25 ++++++++++++++++++ .../resources/lib/layout/layout_da.properties | 5 ++-- .../maven/MavenModuleSet/index_da.properties | 1 + .../MavenModuleSet/newJobDetail_da.properties | 3 +-- 33 files changed, 193 insertions(+), 44 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_da.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_da.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_da.properties create mode 100644 core/src/main/resources/hudson/model/User/index_da.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_da.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_da.properties b/core/src/main/resources/hudson/AboutJenkins/index_da.properties new file mode 100644 index 0000000000..fad7253196 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_da.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. + +about=Om Jenkins {0} +blurb=Jenkins er en f\u00E6llesskab udviklede open-source continuous integration server. +dependencies=Jenkins afh\u00E6nger af de f\u00F8lgende 3. parts libraries diff --git a/core/src/main/resources/hudson/PluginManager/index_da.properties b/core/src/main/resources/hudson/PluginManager/index_da.properties index 58b73e6b86..a1239b8bfb 100644 --- a/core/src/main/resources/hudson/PluginManager/index_da.properties +++ b/core/src/main/resources/hudson/PluginManager/index_da.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Alle +None=Ingen +Select=V\u00E6lg UpdatePageDescription=Denne side angiver opdateringer til de plugins du allerede har installeret UpdatePageLegend=R\u00e6kker der er sl\u00e5et fra er allerede opgraderede, og afventer genstart. \ diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_da.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_da.properties index 95b4505236..836f19e9b8 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_da.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_da.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -More\ Info=Mere Info +More\ Info=Mere info blurb=Det ser ud til at din omvendt proxy konfiguration er i uorden. Dismiss=Luk diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_da.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_da.properties new file mode 100644 index 0000000000..f9b9b7f219 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_da.properties @@ -0,0 +1,23 @@ +# 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. + +disableSyntaxHighlighting=Sl\u00E5 syntaks markering fra diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_da.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_da.properties index 87c2f60f88..31cd9aa20c 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_da.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_da.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Velegnet til projekter der har behov for mange forskellige konfigurationer, \ -s\u00e5som test p\u00e5 flere milj\u00f8er, operativsystemer, platformspecifikke byg, osv. +body=Velegnet til projekter, der har behov for mange forskellige konfigurationer, s\u00E5som test p\u00E5 flere omgivelser, operativsystemer, platformspecifikke byg, osv. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties index b5c5beacaf..09234d7f27 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_da.properties @@ -24,7 +24,7 @@ Upstream\ Builds=Upstreambyg Not\ yet\ determined=Endnu ikke fastlagt Build\ Artifacts=Byggeartifakter Build=Byg -startedAgo=Startet for {0} siden +startedAgo=Startede for {0} siden Took=Tog Changes\ in\ dependency=\u00c6ndringer i afh\u00e6ngighed on=p\u00e5 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties index f3b69f29b1..e24ce18e18 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Foreg\u00e5ende Byg -Next\ Build=N\u00e6ste Byg +Previous\ Build=Forrige byg +Next\ Build=N\u00E6ste byg diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties index f159e5152a..982ef21ce9 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_da.properties @@ -22,6 +22,7 @@ Changes=\u00c6ndringer raw=r\u00e5 +Edit\ Build\ Information=Rediger job beskrivelse Status=Status Console\ Output=Konsol Output -Back\ to\ Project=Tilbage til Projekt +Back\ to\ Project=Tilbage til projektet diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_da.properties b/core/src/main/resources/hudson/model/AbstractProject/main_da.properties index f45215ba68..db6df0a7ba 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_da.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_da.properties @@ -23,4 +23,4 @@ Latest\ Test\ Result=Seneste testresultat Workspace=Arbejdsomr\u00e5de Last\ Successful\ Artifacts=Seneste succesfulde artifakter -Recent\ Changes=Nyelige \u00e6ndringer +Recent\ Changes=Nylige \u00E6ndringer diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_da.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_da.properties index 8adaa6aa9a..07511d3b06 100644 --- a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_da.properties +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_da.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Denne jobtype benyttes til at overv\u00e5ge udf\u00f8relsen af en process der k\u00f8rer udenfor Jenkins, \ -ogs\u00e5 p\u00e5 en anden maskine. Ideen er at du kan bruge Jenkins som dashboard til overv\u00e5gning af dit eksisterende automatiseringssystem. Se \ -dokumentationen for flere detaljer +body=Denne jobtype giver dig mulighed til at overv\u00E5ge udf\u00F8relsen af en process, der k\u00F8rer udenfor Jenkins, ogs\u00E5 p\u00E5 en anden maskine. Ideen er at du kan bruge Jenkins som dashboard til overv\u00E5gning af dit eksisterende automatiseringssystem. Se dokumentationen for flere detaljer diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_da.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_da.properties index 3855c65ae3..b4febcef13 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_da.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_da.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Dette er den centrale feature i Jenkins. Jenkins vil bygge dit projekt \ -ved at kombinere enhver kombination af kildekodestyring (SCM) med ethvert \ -byggesystem, dette kan bruges til meget andet end at bygge software. +body=Dette er den centrale feature i Jenkins. Jenkins vil bygge dit projekt i enhver kombination af kildekodestyring (SCM) med ethvert byggesystem og dette kan bruges til meget andet end at bygge software. diff --git a/core/src/main/resources/hudson/model/Job/index_da.properties b/core/src/main/resources/hudson/model/Job/index_da.properties index 8941ebc708..5c88b9a3c8 100644 --- a/core/src/main/resources/hudson/model/Job/index_da.properties +++ b/core/src/main/resources/hudson/model/Job/index_da.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=Sl\u00E5 projektet fra Enable=Sl\u00e5 til This\ project\ is\ currently\ disabled=Dette projekt er for nuv\u00e6rende sl\u00e5et fra diff --git a/core/src/main/resources/hudson/model/Run/configure_da.properties b/core/src/main/resources/hudson/model/Run/configure_da.properties new file mode 100644 index 0000000000..a678d199b7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_da.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Beskrivelse +DisplayName=Vist navn +LOADING=INDL\u00C6SER +Save=Sikker diff --git a/core/src/main/resources/hudson/model/Run/console_da.properties b/core/src/main/resources/hudson/model/Run/console_da.properties index da9897173b..29c157e3f4 100644 --- a/core/src/main/resources/hudson/model/Run/console_da.properties +++ b/core/src/main/resources/hudson/model/Run/console_da.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. skipSome=Springer over {0,number,integer} KB.. Fuld Log -View\ as\ plain\ text=Vis som r\u00e5 tekstfil +View\ as\ plain\ text=Vis som ren tekst Console\ Output=Konsol Output diff --git a/core/src/main/resources/hudson/model/User/index_da.properties b/core/src/main/resources/hudson/model/User/index_da.properties new file mode 100644 index 0000000000..b1f64e6e35 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_da.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins BrugerID diff --git a/core/src/main/resources/hudson/model/View/People/index_da.properties b/core/src/main/resources/hudson/model/View/People/index_da.properties index 07f503a64f..78a983f7b8 100644 --- a/core/src/main/resources/hudson/model/View/People/index_da.properties +++ b/core/src/main/resources/hudson/model/View/People/index_da.properties @@ -25,3 +25,4 @@ Last\ Active=Sidst Aktiv People=Personer Name=Navn All\ People=Alle Personer +User\ Id=Bruger ID diff --git a/core/src/main/resources/hudson/model/View/sidepanel_da.properties b/core/src/main/resources/hudson/model/View/sidepanel_da.properties index effd42a790..0ed83e1228 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_da.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_da.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. Check\ File\ Fingerprint=Check filfingeraftryk -Project\ Relationship=Projektforhold +Project\ Relationship=Projektrelationer Delete\ View=Slet visning People=Personer -Build\ History=Byggehistorik -Edit\ View=Rediger visning +Build\ History=Bygge historie +Edit\ View=Redig\u00E9r visning NewJob=Nyt {0} diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_da.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_da.properties index 2cc112ca3d..78c79a33cb 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_da.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_da.properties @@ -23,4 +23,5 @@ Anonymous=Anonym User/group\ to\ add=Brugergruppe der skal tilf\u00f8jes Add=Tilf\u00f8j +Remove\ user/group=Fjern user/gruppe User/group=Bruger/gruppe diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties index 30e2e57d3e..1ca72f034d 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Start et byg +Schedule\ a\ build=Planl\u00E6g et byg diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_da.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_da.properties index 94faea1ccf..edf0739f0b 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_da.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Seneste Varighed +Last\ Duration=Seneste varighed diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties index 148b0a36f0..dbac6ff144 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_da.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vejrudsigt der viser en samlet status dor de seneste byg +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vejrudsigt, der viser en samlet status for de seneste byg diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties new file mode 100644 index 0000000000..f097d3ae95 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_da.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsol ouput diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties index 4ef7f8066b..8f8d70f07d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_da.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Available\ Commands=Tilg\u00E6ngelige kommandoer Jenkins\ CLI=Jenkins CLI blurb=Du kan tilg\u00e5 diverse features i Jenkins igennem et kommandolinie v\u00e6rkt\u00f8j. Se \ diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties index 5749578d8f..08cc5cc930 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_da.properties @@ -21,30 +21,26 @@ # THE SOFTWARE. System\ Information=Systeminformation -JenkinsCliText=Tilg\u00e5/bestyr Jenkins fra din shell, eller fra dit skript. +JenkinsCliText=Tilg\u00E5/bestyr Jenkins fra din shell eller fra dit skript. Configure\ global\ settings\ and\ paths.=Konfigurer globale indstillinger og stier. -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\ -Holder op med at afvikle nye byg, s\u00e5 systemet kan lukke sikkert ned. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Stopper udf\u00F8ring at nye byg, s\u00E5 systemet kan lukke sikkert ned. Reload\ Configuration\ from\ Disk=Genindl\u00e6s konfiguration fra harddisk updates\ available=opdateringer tilg\u00e6ngelige SystemLogText=Systemloggen opsamler output fra java.util.logging relateret til Jenkins. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\ -Tilf\u00f8je, slette, h\u00e5ndtere og overv\u00e5ge de forskellige noder som Jenkins k\u00f8rer jobs p\u00e5. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Tilf\u00F8je, slette, h\u00E5ndtere og overv\u00E5ge de forskellige knuder som Jenkins k\u00F8rer jobs p\u00E5. Jenkins\ CLI=Jenkins CLI Manage\ Plugins=Pluginh\u00e5ndtering -LoadStatisticsText=Check dit ressourceforbrug og se om du har brug for flere maskiner til dine byg. +LoadStatisticsText=Tjek dit ressourceforbrug og se om du har brug for flere maskiner til dine byg. Manage\ Jenkins=Bestyr Jenkins -Configure\ System=Konfigurer Systemet +Configure\ System=Konfigurer systemet Manage\ Nodes=Bestyr Noder Load\ Statistics=Belastningsstatistik -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Viser diverse milj\u00f8informationer for at lette fejlfinding. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Viser forskellige milj\u00F8informationer for at lette fejlfinding. Script\ Console=Skriptkonsol -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\ -Tilf\u00f8j, fjern og h\u00e5ndter diverse plugins der udvider Jenkinss funktionalitet. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Tilf\u00F8j, fjern og sl\u00E5 fra/til diverse plugins, der udvider Jenkins funktionalitet. Cancel\ Shutdown=Aflys nedlukning System\ Log=Systemlog Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Afvikler selvvalgt skript til administration/fejlfinding/diagnostik. -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\ -Fjern alle loadede data i RAM og genindl\u00e6s alt fra harddisken. -Prepare\ for\ Shutdown=G\u00f8r klar til nedlukning +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Forkast alle indl\u00E6ste data i RAM og genindl\u00E6s alt fra harddisken. +Prepare\ for\ Shutdown=forbered nedlukning Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Nyttigt hvis du har modificeret konfigurationsfiler direkte p\u00e5 disken. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties index e7a0918968..d4e60028fc 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_da.properties @@ -20,5 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=Navn System\ Properties=Systemegenskaber +Enabled=Aktiveret Environment\ Variables=Milj\u00f8variable +Version=Version diff --git a/core/src/main/resources/lib/hudson/buildCaption_da.properties b/core/src/main/resources/lib/hudson/buildCaption_da.properties index b3045da1fc..f19b3563cc 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_da.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_da.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -cancel=annuller +cancel=annull\u00E9r Progress=Fremdrift diff --git a/core/src/main/resources/lib/hudson/editableDescription_da.properties b/core/src/main/resources/lib/hudson/editableDescription_da.properties index 25c592586d..1975928c33 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_da.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_da.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=tilf\u00f8j beskrivelse -edit\ description=rediger beskrivelse +edit\ description=redig\u00E9r beskrivelse diff --git a/core/src/main/resources/lib/hudson/executors_da.properties b/core/src/main/resources/lib/hudson/executors_da.properties index 3c10675ba4..97559ae0d9 100644 --- a/core/src/main/resources/lib/hudson/executors_da.properties +++ b/core/src/main/resources/lib/hudson/executors_da.properties @@ -20,12 +20,13 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -terminate\ this\ build=annuller dette byg +terminate\ this\ build=annull\u00E9r dette byg +Building=Bygger Dead=D\u00f8dt suspended=suspenderet Offline=Offline Status=Status -Build\ Executor\ Status=Byggeafviklerstatus -Idle=Tomgang +Build\ Executor\ Status=Status for byggeafvikler +Idle=venter Master=Master offline=offline diff --git a/core/src/main/resources/lib/hudson/rssBar_da.properties b/core/src/main/resources/lib/hudson/rssBar_da.properties index 20668ce130..4741a76b0d 100644 --- a/core/src/main/resources/lib/hudson/rssBar_da.properties +++ b/core/src/main/resources/lib/hudson/rssBar_da.properties @@ -23,4 +23,4 @@ for\ just\ latest\ builds=kun for seneste byg for\ failures=kun for fejlede byg for\ all=for alle byg -Legend=Overskrift +Legend=beskrivelse diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_da.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_da.properties new file mode 100644 index 0000000000..cb802a5671 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_da.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. + +License=Licens +Maven\ ID=Maven ID +Name=Navn diff --git a/core/src/main/resources/lib/layout/layout_da.properties b/core/src/main/resources/lib/layout/layout_da.properties index 081f77b140..7ca950b4bf 100644 --- a/core/src/main/resources/lib/layout/layout_da.properties +++ b/core/src/main/resources/lib/layout/layout_da.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -logout=Log ud +logout=log ud Page\ generated=Side genereret +search=s\u00F8g searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -ENABLE\ AUTO\ REFRESH=Sl\u00e5 automatisk genindl\u00e6sning til +ENABLE\ AUTO\ REFRESH=Sl\u00E5 automatisk opdatering til DISABLE\ AUTO\ REFRESH=Sl\u00e5 automatisk genindl\u00e6sning fra 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 7461f8265c..9c412e6144 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,6 +21,7 @@ # THE SOFTWARE. Latest\ Test\ Result=Seneste testmodul +Disable\ Project=Deaktiver projekt Enable=Sl\u00e5 til Workspace=Arbejdsomr\u00e5de Last\ Successful\ Artifacts=Seneste succesfulde artifakter diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_da.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_da.properties index 08c6e64fd3..6290c75169 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_da.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_da.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=Byg et maven2/3 projekt. Jenkins udnytter dine POM filer og reducerer herved \ -dramatisk behovet for konfiguration. +body=Byg et maven2 projekt. Jenkins udnytter dine POM filer og reducerer herved behovet for konfiguration dramatisk. -- GitLab From c1b62245bc0bbe93913875fc73aeb20b815f9756 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:44 -0800 Subject: [PATCH 114/158] Community-contributed localization for German (de) --- .../hudson/AboutJenkins/index_de.properties | 27 +++++++++++ .../hudson/PluginManager/index_de.properties | 5 +- .../PluginManager/installed_de.properties | 3 +- .../config_de.properties | 3 +- .../matrix/MatrixProject/index_de.properties | 3 +- .../model/AbstractBuild/index_de.properties | 4 +- .../model/AbstractBuild/tasks_de.properties | 6 +-- .../AbstractProject/sidepanel_de.properties | 2 +- .../UserIdCause/description_de.properties | 1 + .../hudson/model/Run/console_de.properties | 2 +- .../CoreUpdateMonitor/message_de.properties | 4 +- .../Canceled/status_de.properties | 23 +++++++++ .../model/UpdateCenter/body_de.properties | 23 +++++++++ .../hudson/model/User/sidepanel_de.properties | 2 +- .../config_de.properties | 1 + .../config_de.properties | 4 +- .../LDAPSecurityRealm/config_de.properties | 1 + .../SecurityRealm/loginLink_de.properties | 2 +- .../hudson/tasks/Mailer/global_de.properties | 2 +- .../LastDurationColumn/column_de.properties | 2 +- .../LastSuccessColumn/column_de.properties | 2 +- .../WeatherColumn/columnHeader_de.properties | 3 +- .../widgets/HistoryWidget/entry_de.properties | 23 +++++++++ .../widgets/HistoryWidget/index_de.properties | 4 +- .../jenkins/model/Jenkins/_cli_de.properties | 1 + .../model/Jenkins/configure_de.properties | 2 + .../model/Jenkins/manage_de.properties | 2 +- .../resources/lib/form/textarea_de.properties | 24 ++++++++++ .../lib/hudson/buildProgressBar_de.properties | 2 +- .../lib/hudson/executors_de.properties | 4 +- .../resources/lib/hudson/queue_de.properties | 2 +- .../resources/lib/hudson/rssBar_de.properties | 2 +- .../hudson/thirdPartyLicenses_de.properties | 25 ++++++++++ .../resources/lib/layout/layout_de.properties | 6 +-- .../MavenModuleSetBuild/main_de.properties | 47 ++++++++++--------- 35 files changed, 213 insertions(+), 56 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_de.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_de.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_de.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties create mode 100644 core/src/main/resources/lib/form/textarea_de.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_de.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_de.properties b/core/src/main/resources/hudson/AboutJenkins/index_de.properties new file mode 100644 index 0000000000..ef4f4c8384 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_de.properties @@ -0,0 +1,27 @@ +# 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. + +about=\u00DCber Jenkins {0} +blurb=Jenkins ist ein Open Source Continuous Integration Server. + + +dependencies=Jenkins benutzt folgende Dritthersteller-Bibliotheken. diff --git a/core/src/main/resources/hudson/PluginManager/index_de.properties b/core/src/main/resources/hudson/PluginManager/index_de.properties index 9820b47766..5f883831bf 100644 --- a/core/src/main/resources/hudson/PluginManager/index_de.properties +++ b/core/src/main/resources/hudson/PluginManager/index_de.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Alle +None=Keine +Select=Ausw\u00E4hlen UpdatePageDescription=Für diese installierten Plugins gibt es aktuellere Versionen. UpdatePageLegend=Deaktivierte Zeilen zeigen bereits aktualisierte Plugins, die einen \ Neustart erwarten. Grau hinterlegte, aber anwählbare Zeilen zeigen Plugins, deren \ - Aktualisierung noch läuft oder fehlschlug. \ No newline at end of file + Aktualisierung noch läuft oder fehlschlug. diff --git a/core/src/main/resources/hudson/PluginManager/installed_de.properties b/core/src/main/resources/hudson/PluginManager/installed_de.properties index a0ba115eab..f6a2601e39 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_de.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_de.properties @@ -31,4 +31,5 @@ Restart\ Once\ No\ Jobs\ Are\ Running=Neu starten, sobald keine Jobs mehr laufen Previously\ installed\ version=Vorher installierte Version downgradeTo={0} wiederherstellen Pinned=Gesperrt -Unpin=Entsperren \ No newline at end of file +Unpin=Entsperren +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_de.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_de.properties index 37410a3daa..bb70491a0b 100644 --- a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_de.properties +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_de.properties @@ -1 +1,2 @@ -blurb=Behandle den Text als HTML ohne jede Übersetzung \ No newline at end of file +blurb=Behandle den Text als HTML ohne jede Übersetzung +disableSyntaxHighlighting=Syntaxhervorhebung abschalten 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 9a39c6500d..8c58827bcb 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_de.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Latest\ Test\ Result=Aktuelle Testergebnisse Project=Projekt Enable=Aktivieren This\ project\ is\ currently\ disabled=Dieses Projekt ist momentan deaktiviert. -Disable\ Project=Projekt deaktivieren \ No newline at end of file +Disable\ Project=Projekt deaktivieren diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties index adad89eec5..6d3b144c83 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_de.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. startedAgo=Vor {0} gestartet -Build=Build -Build\ Artifacts=Build Artefakte +Build=Bauen +Build\ Artifacts=Build-Artefakte Changes\ in\ dependency=Änderungen in den Abhängigkeiten detail=Details Not\ yet\ determined=Noch nicht bestimmt diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties index 3a33c79672..07f44ca78c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_de.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Project=Zur\u00FCck zum Job +Back\ to\ Project=Zur\u00FCck zum Projekt Status=Status Changes=\u00C4nderungen Console\ Output=Konsolenausgabe raw=unformatiert Configure=Konfigurieren -Edit\ Build\ Information=Build Informationen editieren -View\ Build\ Information=Build Informationen anzeigen \ No newline at end of file +Edit\ Build\ Information=Build-Informationen editieren +View\ Build\ Information=Buildinformationen anzeigen diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties index 6351892dc9..117101b4d7 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_de.properties @@ -24,7 +24,7 @@ Back\ to\ Dashboard= Zur Status=Status Changes=Änderungen Workspace=Arbeitsbereich -delete=Löschen +delete={0} L\u00F6schen Configure=Konfigurieren View\ Configuration=Konfiguration anzeigen Build\ scheduled=Build geplant diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_de.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_de.properties index 7508582c3a..45b2b71eac 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_de.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_de.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Gestartet durch anonymes Benutzerkonto started_by_user=Gestartet durch Benutzer {1} diff --git a/core/src/main/resources/hudson/model/Run/console_de.properties b/core/src/main/resources/hudson/model/Run/console_de.properties index e1e95fe86a..f207b99476 100644 --- a/core/src/main/resources/hudson/model/Run/console_de.properties +++ b/core/src/main/resources/hudson/model/Run/console_de.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Console\ Output=Konsolenausgabe -View\ as\ plain\ text=Als reinen Text anzeigen +View\ as\ plain\ text=Als unformatierten Text anzeigen skipSome=Vorausgehende {0,number,integer} KB sind in dieser Darstellung ausgelassen. Alles anzeigen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_de.properties index 91b6a26e09..1d5e4f3e12 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_de.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_de.properties @@ -22,7 +22,5 @@ UpgradeComplete=Aktualisierung auf Jenkins {0} abgeschlossen. Neustart von Jenkins erforderlich. UpgradeProgress=Aktualisierung auf Jenkins {0} in Arbeit oder fehlgeschlagen. -NewVersionAvailable=\ - Eine neue Version von Jenkins ({0}) kann heruntergeladen werden \ - (Was ist neu?). +NewVersionAvailable=Eine neue Version von Jenkins ({0}) kann hier heruntergeladen werden (Was ist neu?). Or\ Upgrade\ Automatically=Automatisch aktualisieren diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_de.properties new file mode 100644 index 0000000000..c6f87d93ff --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_de.properties @@ -0,0 +1,23 @@ +# 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. + +Canceled=Abgebrochen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties new file mode 100644 index 0000000000..7a0bf077ba --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_de.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Starte Jenkins neu, nachdem die Installation beendet ist und keine Prozesse laufen. diff --git a/core/src/main/resources/hudson/model/User/sidepanel_de.properties b/core/src/main/resources/hudson/model/User/sidepanel_de.properties index 41c4c6c09d..84d3227119 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_de.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_de.properties @@ -23,6 +23,6 @@ People=Benutzer Status=Status Builds=Builds -Configure=Konfigurieren +Configure=Einstellungen My\ Views=Meine Ansichten Delete=Löschen diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties index 3081c2e1ba..b79c62574a 100644 --- a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_de.properties @@ -1,2 +1,3 @@ Administrator\ user\ name=Administrativer Benutzer +Host=Host Password=Passwort diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_de.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_de.properties index 4ca61ddc95..09e5858300 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_de.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_de.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Remove\ user/group=Nutzer/Gruppe entfernen +Toggle\ all=Alles ausw\u00E4hlen User/group=Benutzer/Gruppe -Anonymous=Anonymous +Anonymous=Anonym User/group\ to\ add=Weitere Benutzer/Gruppe Add=Hinzufügen diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_de.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_de.properties index be132b1670..c97cac8cdf 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_de.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_de.properties @@ -26,4 +26,5 @@ User\ search\ base=Basis zur Benutzerabfrage User\ search\ filter=Filter zu Benutzerabfrage Manager\ DN=Manager-DN Manager\ Password=Manager-Passwort +Allow\ blank\ rootDN=Leere rootDN erlauben Group\ search\ base=Basis zur Gruppenabfrage diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_de.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_de.properties index 683673dd4f..6d9fd63908 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_de.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_de.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Login +login=anmelden diff --git a/core/src/main/resources/hudson/tasks/Mailer/global_de.properties b/core/src/main/resources/hudson/tasks/Mailer/global_de.properties index a276b16511..3c408aa796 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/global_de.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/global_de.properties @@ -23,7 +23,7 @@ E-mail\ Notification=E-Mail Benachrichtigung Test\ configuration\ by\ sending\ e-mail=E-Mail versenden, um Konfiguration zu testen SMTP\ server=SMTP-Server -Default\ user\ e-mail\ suffix=Standardendung f\u00b8r E-Mail-Adressen +Default\ user\ e-mail\ suffix=Standardendung f\u00FCr E-Mail-Adressen System\ Admin\ E-mail\ Address=E-Mail-Adresse des Systemadministrators Jenkins\ URL=Jenkins URL User\ Name=Benutzername diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_de.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_de.properties index e6e5346fea..9a822afaa2 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/column_de.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=Unbekannt +N/A=Nicht anwendbar diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_de.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_de.properties index a06ee901bf..943221337a 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_de.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_de.properties @@ -1 +1 @@ -N/A=Unbekannt +N/A=Nicht anwendbar diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_de.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_de.properties index cd35c39c2a..ab60bb6304 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_de.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_de.properties @@ -20,5 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\ - Wetterbericht, der die Ergebnisse der neuesten Builds zusammenfasst. +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Kurzbericht, der die Ergebnisse der neuesten Builds zusammenfasst. diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties new file mode 100644 index 0000000000..b69dbaf245 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_de.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsolenausgabe diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties index 2ba8dd0638..8160d2a74a 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_de.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. trend=Trend -for\ all=Alle Builds -for\ failures=Nur Fehlschläge +for\ all=aller Builds +for\ failures=der Fehlschl\u00E4ge More\ ...=Mehr... diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties index 24364e0433..d7b0a91ed1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_de.properties @@ -1,3 +1,4 @@ +Available\ Commands=Verf\u00FCgbare Kommandos Jenkins\ CLI=Jenkins CLI blurb=\ Sie können ausgewählte Funktionen von Jenkins über ein Kommandozeilenwerkzeug (engl.: Command Line Interface, CLI) nutzen. \ diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties index c62709d81b..f1195d228d 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_de.properties @@ -40,10 +40,12 @@ SCM\ checkout\ retry\ count=Anzahl der SCM-Checkout Wiederholungen Prevent\ Cross\ Site\ Request\ Forgery\ exploits="Cross Site Request Forgery"-Angriffe verhindern Crumbs=Crumbs Crumb\ Algorithm=Crumb-Algorithmus +Workspace\ Root\ Directory=Workspace Wurzelverzeichnis statsBlurb=\ Helfen Sie Jenkins zu verbessern, indem Sie anonyme Nutzungsstatistiken und Absturzprotokolle \ an das Jenkins-Projekt senden. Global\ properties=Globale Eigenschaften +Build\ Record\ Root\ Directory=Verzeichnis f\u00FCr aufgezeichnete Builds Cloud=Cloud Add\ a\ new\ cloud=Neue Cloud hinzufügen Delete\ cloud=Cloud löschen diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties index 7def350900..5202b2ea39 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_de.properties @@ -33,7 +33,7 @@ Script\ Console=Skript-Konsole Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Führt ein beliebiges Skript aus zur Administration/Fehlersuche/Diagnose. Cancel\ Shutdown=Herunterfahren abbrechen Prepare\ for\ Shutdown=Herunterfahren vorbereiten -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Verhindert die Ausführung neuer Builds, so daß Jenkins sicher heruntergefahren werden kann. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Verhindert die Ausf\u00FChrung neuer Builds, so dass Jenkins sicher heruntergefahren werden kann. Configure\ System=System konfigurieren Configure\ global\ settings\ and\ paths.=Globale Einstellungen und Pfade konfigurieren. Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Plugins installieren, deinstallieren, aktivieren oder deaktivieren, welche die Funktionalität von Jenkins erweitern. diff --git a/core/src/main/resources/lib/form/textarea_de.properties b/core/src/main/resources/lib/form/textarea_de.properties new file mode 100644 index 0000000000..30f4a028db --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_de.properties @@ -0,0 +1,24 @@ +# 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. + +Hide\ preview=Vorschau verstecken +Preview=Vorschau diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_de.properties b/core/src/main/resources/lib/hudson/buildProgressBar_de.properties index 3a91450727..268a3a8d99 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_de.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_de.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Gestartet vor {0}
    Geschätzte verbleibende Zeit: {1} +text=Gestartet vor {0}
    Ungef\u00E4hr verbleibende Zeit: {1} diff --git a/core/src/main/resources/lib/hudson/executors_de.properties b/core/src/main/resources/lib/hudson/executors_de.properties index ab2ef6c45c..7c91c83652 100644 --- a/core/src/main/resources/lib/hudson/executors_de.properties +++ b/core/src/main/resources/lib/hudson/executors_de.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status= Build-Prozessor Status +Build\ Executor\ Status=Build-Prozessor-Status Status=Status Master=Master offline=offline Dead=Tot -Idle=Bereit +Idle=Ruhend Building=Baue terminate\ this\ build=Diesen Build abbrechen suspended=eingestellt diff --git a/core/src/main/resources/lib/hudson/queue_de.properties b/core/src/main/resources/lib/hudson/queue_de.properties index 3f51fa820c..9d3433f320 100644 --- a/core/src/main/resources/lib/hudson/queue_de.properties +++ b/core/src/main/resources/lib/hudson/queue_de.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Geplante Builds +Build\ Queue=Build Warteschlange No\ builds\ in\ the\ queue.=Keine Builds geplant Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins fährt gerade herunter. Es werden keine weiteren Builds ausgeführt. cancel=Abbrechen diff --git a/core/src/main/resources/lib/hudson/rssBar_de.properties b/core/src/main/resources/lib/hudson/rssBar_de.properties index 30babbf953..01ba56a370 100644 --- a/core/src/main/resources/lib/hudson/rssBar_de.properties +++ b/core/src/main/resources/lib/hudson/rssBar_de.properties @@ -23,4 +23,4 @@ Legend=Legende for\ all=Alle Builds for\ failures=Nur Fehlschläge -for\ just\ latest\ builds=Nur jeweils letzte Builds +for\ just\ latest\ builds=Nur jeweils letzter Build diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_de.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_de.properties new file mode 100644 index 0000000000..f5685d0221 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_de.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. + +License=Lizenz +Maven\ ID=Maven ID +Name=Name diff --git a/core/src/main/resources/lib/layout/layout_de.properties b/core/src/main/resources/lib/layout/layout_de.properties index 6bd368fb46..46bbdfc045 100644 --- a/core/src/main/resources/lib/layout/layout_de.properties +++ b/core/src/main/resources/lib/layout/layout_de.properties @@ -23,6 +23,6 @@ searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box logout=Abmelden DISABLE\ AUTO\ REFRESH=AUTO-AKTUALISIERUNG AUSSCHALTEN -ENABLE\ AUTO\ REFRESH=AUTO-AKTUALISIERUNG EINSCHALTEN -Page\ generated=Erzeugung dieser Seite -search=suchen +ENABLE\ AUTO\ REFRESH=Automatische Aktualisierung einschalten +Page\ generated=Erstelldatum dieser Seite +search=Suchen diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_de.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_de.properties index 8410563374..4360e95996 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_de.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_de.properties @@ -1,23 +1,24 @@ -# 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. - -Module\ Builds=Modul-Builds \ No newline at end of file +# 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. + +Module\ Builds=Modul-Builds +noRun=\u00FCbersprungen -- GitLab From b88aaf302b28b9af977f75e95c25805afe3c6dca Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:45 -0800 Subject: [PATCH 115/158] Community-contributed localization for Greek, Modern (1453-) (el) --- .../model/AbstractBuild/index_el.properties | 24 +++++++++++++++ .../model/AbstractBuild/tasks_el.properties | 2 ++ .../model/AbstractProject/main_el.properties | 24 +++++++++++++++ .../AbstractProject/sidepanel_el.properties | 29 +++++++++++++++++++ .../hudson/model/AllView/noJob_el.properties | 24 +++++++++++++++ .../UserIdCause/description_el.properties | 23 +++++++++++++++ .../hudson/model/Job/permalinks_el.properties | 23 +++++++++++++++ .../hudson/model/Run/console_el.properties | 24 +++++++++++++++ .../model/View/People/index_el.properties | 1 + .../hudson/model/View/builds_el.properties | 24 +++++++++++++++ .../hudson/model/View/newJob_el.properties | 2 ++ .../hudson/model/View/sidepanel_el.properties | 5 ++-- .../SecurityRealm/loginLink_el.properties | 23 +++++++++++++++ .../myViewTabs_el.properties | 23 +++++++++++++++ .../DefaultViewsTabBar/viewTabs_el.properties | 23 +++++++++++++++ .../columnHeader_el.properties | 2 +- .../columnHeader_el.properties | 2 +- .../widgets/HistoryWidget/entry_el.properties | 23 +++++++++++++++ .../widgets/HistoryWidget/index_el.properties | 25 ++++++++++++++++ .../lib/hudson/buildCaption_el.properties | 24 +++++++++++++++ .../lib/hudson/buildListTable_el.properties | 26 +++++++++++++++++ .../lib/hudson/buildProgressBar_el.properties | 23 +++++++++++++++ .../hudson/editableDescription_el.properties | 2 +- .../lib/hudson/executors_el.properties | 2 +- .../project/upstream-downstream_el.properties | 24 +++++++++++++++ .../resources/lib/hudson/queue_el.properties | 4 +-- .../resources/lib/layout/layout_el.properties | 1 + 27 files changed, 424 insertions(+), 8 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_el.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_el.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_el.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_el.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_el.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_el.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_el.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_el.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_el.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_el.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_el.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties new file mode 100644 index 0000000000..54c2851bfe --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_el.properties @@ -0,0 +1,24 @@ +# 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=Build +startedAgo=\u0386\u03C1\u03C7\u03B9\u03C3\u03B5 \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties index c2105ce7b0..5c3b74ba50 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_el.properties @@ -22,4 +22,6 @@ Back\ to\ Project=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF Project Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Console\ Output=\u0391\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 +Edit\ Build\ Information=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 Build Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_el.properties b/core/src/main/resources/hudson/model/AbstractProject/main_el.properties new file mode 100644 index 0000000000..0857a348ec --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_el.properties @@ -0,0 +1,24 @@ +# 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. + +Last\ Successful\ Artifacts=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u0395\u03C0\u03B9\u03C4\u03C5\u03C7\u03AE \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03B1 +Recent\ Changes=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B5\u03C2 \u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties new file mode 100644 index 0000000000..667045338c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_el.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ Dashboard=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03BF Dashboard +Build\ scheduled=\u0397 \u039A\u03C4\u03AF\u03C3\u03B7 \u03A3\u03C7\u03B5\u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BA\u03B5 +Changes=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 +Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +Wipe\ Out\ Workspace=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A7\u03CE\u03C1\u03BF\u03C5 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 +Workspace=\u03A7\u03CE\u03C1\u03BF\u03C2 \u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 +delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE diff --git a/core/src/main/resources/hudson/model/AllView/noJob_el.properties b/core/src/main/resources/hudson/model/AllView/noJob_el.properties new file mode 100644 index 0000000000..752bdfc43a --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_el.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=O Jenkins \u03C3\u03B5 \u03BA\u03B1\u03BB\u03C9\u03C3\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9. +newJob=\u039E\u03B5\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5, \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BC\u03B9\u03B1 \u03BD\u03AD\u03B1\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties new file mode 100644 index 0000000000..2df4aa8ede --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_el.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_user=\u03A4\u03BF \u03BE\u03B5\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 {1} diff --git a/core/src/main/resources/hudson/model/Job/permalinks_el.properties b/core/src/main/resources/hudson/model/Job/permalinks_el.properties new file mode 100644 index 0000000000..74cb8d013b --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_el.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=\u039C\u03CC\u03BD\u03B9\u03BC\u03BF\u03C2 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 diff --git a/core/src/main/resources/hudson/model/Run/console_el.properties b/core/src/main/resources/hudson/model/Run/console_el.properties new file mode 100644 index 0000000000..cf5ca26bfc --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_el.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=\u0391\u03C0\u03BF\u03C4\u03B5\u03BB\u03AD\u03C3\u03BC\u03B1\u03C4\u03B1 \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 +View\ as\ plain\ text=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03C9\u03C2 \u03B1\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF diff --git a/core/src/main/resources/hudson/model/View/People/index_el.properties b/core/src/main/resources/hudson/model/View/People/index_el.properties index b2627b7de2..40bc3149b1 100644 --- a/core/src/main/resources/hudson/model/View/People/index_el.properties +++ b/core/src/main/resources/hudson/model/View/People/index_el.properties @@ -24,3 +24,4 @@ Last\ Active=\u03A4\u03B5\u03B1\u03BB\u03B1\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C7 Name=\u038C\u03BD\u03BF\u03BC\u03B1 On=\u03A4\u03B5\u03BB\u03B1\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C3\u03C4\u03BF project People=\u0386\u03BD\u03C1\u03B8\u03C9\u03C0\u03BF\u03B9 +User\ Id=Id \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 diff --git a/core/src/main/resources/hudson/model/View/builds_el.properties b/core/src/main/resources/hudson/model/View/builds_el.properties new file mode 100644 index 0000000000..293937cebb --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_el.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C9\u03C2 XML +buildHistory=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC Build \u03C4\u03BF\u03C5 {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_el.properties b/core/src/main/resources/hudson/model/View/newJob_el.properties index ccabb0279d..24f33c1f90 100644 --- a/core/src/main/resources/hudson/model/View/newJob_el.properties +++ b/core/src/main/resources/hudson/model/View/newJob_el.properties @@ -20,3 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +CopyExisting=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 {0} +JobName={0} \u03CC\u03BD\u03BF\u03BC\u03B1 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_el.properties b/core/src/main/resources/hudson/model/View/sidepanel_el.properties index 2abeb55dcf..17fe776fb5 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_el.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_el.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC Build +Build\ History=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD Delete\ View=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u038C\u03C8\u03B7\u03C2 Edit\ View=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u038C\u03C8\u03B7\u03C2 -People=\u039F\u03B9 \u03AC\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B9 +NewJob=\u039D\u03AD\u03BF/\u03B1 {0} +People=\u03A7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2 Project\ Relationship=\u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 Project diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties new file mode 100644 index 0000000000..686e09241a --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_el.properties @@ -0,0 +1,23 @@ +# 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. + +login=\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_el.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_el.properties new file mode 100644 index 0000000000..f127880848 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_el.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u039D\u03AD\u03B1 \u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_el.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_el.properties new file mode 100644 index 0000000000..7941a3a9f3 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_el.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u039D\u03AD\u03B1 \u038C\u03C8\u03B7 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_el.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_el.properties index 8fa6d6581e..8cea54c365 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_el.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 +Last\ Failure=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u0391\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B1 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_el.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_el.properties index a83a9be7e3..dc5c05597e 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_el.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_el.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1 +Last\ Success=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u0395\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties new file mode 100644 index 0000000000..101b4c7a1c --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_el.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C9\u03B3\u03B1 \u03A4\u03BF\u03C5 Console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.properties new file mode 100644 index 0000000000..ca2c550b38 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_el.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. + +for\ all=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1 +for\ failures=\u03B3\u03B9\u03B1 \u03B1\u03C0\u03BF\u03C4\u03C5\u03C7\u03AF\u03B5\u03C2 +trend=\u03C4\u03AC\u03C3\u03B7 diff --git a/core/src/main/resources/lib/hudson/buildCaption_el.properties b/core/src/main/resources/lib/hudson/buildCaption_el.properties new file mode 100644 index 0000000000..99ffd2e96b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_el.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u03A0\u03C1\u03CC\u03BF\u03B4\u03BF\u03C2 +cancel=\u03B1\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 diff --git a/core/src/main/resources/lib/hudson/buildListTable_el.properties b/core/src/main/resources/lib/hudson/buildListTable_el.properties new file mode 100644 index 0000000000..5587cbb854 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_el.properties @@ -0,0 +1,26 @@ +# 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=Build +Console\ output=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1\u03C2 +Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +Time\ Since=\u03A0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_el.properties b/core/src/main/resources/lib/hudson/buildProgressBar_el.properties new file mode 100644 index 0000000000..f318d7879d --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_el.properties @@ -0,0 +1,23 @@ +# 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. + +text=\u0386\u03C1\u03C7\u03B9\u03C3\u03B5 \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC {0}
    \u0395\u03BA\u03C4\u03B9\u03BC\u03CE\u03BC\u03B5\u03BD\u03BF\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_el.properties b/core/src/main/resources/lib/hudson/editableDescription_el.properties index 11d7fb73db..2255f7ae53 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_el.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C0\u03B5\u03C1\u03B9\u03C1\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 +add\ description=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 edit\ description=\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 diff --git a/core/src/main/resources/lib/hudson/executors_el.properties b/core/src/main/resources/lib/hudson/executors_el.properties index 77a36ef170..ca4535fe71 100644 --- a/core/src/main/resources/lib/hudson/executors_el.properties +++ b/core/src/main/resources/lib/hudson/executors_el.properties @@ -20,6 +20,6 @@ # 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 +Build\ Executor\ Status=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD 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/lib/hudson/project/upstream-downstream_el.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties new file mode 100644 index 0000000000..9d1b0e6d3d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_el.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=\u03A0\u03C1\u03CC\u03C4\u03B6\u03B5\u03BA\u03C4 \u039A\u03B1\u03C4\u03B5\u03B2\u03B1\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD +Upstream\ Projects=\u03A0\u03C1\u03CC\u03C4\u03B6\u03B5\u03BA\u03C4 \u0391\u03BD\u03B5\u03B2\u03B1\u03C3\u03BC\u03AC\u03C4\u03C9\u03BD diff --git a/core/src/main/resources/lib/hudson/queue_el.properties b/core/src/main/resources/lib/hudson/queue_el.properties index 05687539d1..5bb3aff0a9 100644 --- a/core/src/main/resources/lib/hudson/queue_el.properties +++ b/core/src/main/resources/lib/hudson/queue_el.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u039F\u03C5\u03C1\u03AC Build -No\ builds\ in\ the\ queue.=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD build \u03C3\u03C4\u03B7\u03BD \u03BF\u03C5\u03C1\u03AC +Build\ Queue=\u039F\u03C5\u03C1\u03AC \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD +No\ builds\ in\ the\ queue.=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03B4\u03B9\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B5\u03BD \u03B1\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE diff --git a/core/src/main/resources/lib/layout/layout_el.properties b/core/src/main/resources/lib/layout/layout_el.properties index 888b21ccfb..b8f324c054 100644 --- a/core/src/main/resources/lib/layout/layout_el.properties +++ b/core/src/main/resources/lib/layout/layout_el.properties @@ -24,4 +24,5 @@ DISABLE\ AUTO\ REFRESH=\u0391\u03C0\u03B1\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u0 ENABLE\ AUTO\ REFRESH=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 Page\ generated=\u0397 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 logout=\u0391\u03C0\u03BF\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 +search=\u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 searchBox.url=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 -- GitLab From e25dc7690f4239cf941b0a625e0b2a1db246fadc Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:45 -0800 Subject: [PATCH 116/158] Community-contributed localization for Esperanto (eo) --- .../message_eo.properties | 25 ++++++++++++++ .../AbstractBuild/sidepanel_eo.properties | 23 +++++++++++++ .../model/AbstractBuild/tasks_eo.properties | 27 +++++++++++++++ .../hudson/model/Run/console_eo.properties | 24 ++++++++++++++ .../hudson/model/View/sidepanel_eo.properties | 25 ++++++++++++++ .../BuildButtonColumn/column_eo.properties | 23 +++++++++++++ .../DefaultViewsTabBar/viewTabs_eo.properties | 23 +++++++++++++ .../columnHeader_eo.properties | 23 +++++++++++++ .../columnHeader_eo.properties | 23 +++++++++++++ .../LastFailureColumn/column_eo.properties | 23 +++++++++++++ .../columnHeader_eo.properties | 23 +++++++++++++ .../LastSuccessColumn/column_eo.properties | 23 +++++++++++++ .../StatusColumn/columnHeader_eo.properties | 23 +++++++++++++ .../WeatherColumn/columnHeader_eo.properties | 23 +++++++++++++ .../model/Jenkins/manage_eo.properties | 33 +++++++++++++++++++ .../lib/hudson/buildCaption_eo.properties | 24 ++++++++++++++ .../lib/hudson/buildHealth_eo.properties | 23 +++++++++++++ .../lib/hudson/buildProgressBar_eo.properties | 23 +++++++++++++ .../hudson/editableDescription_eo.properties | 23 +++++++++++++ .../lib/hudson/executors_eo.properties | 25 ++++++++++++++ .../lib/hudson/iconSize_eo.properties | 23 +++++++++++++ .../resources/lib/hudson/queue_eo.properties | 24 ++++++++++++++ .../resources/lib/hudson/rssBar_eo.properties | 26 +++++++++++++++ .../resources/lib/layout/layout_eo.properties | 27 +++++++++++++++ 24 files changed, 582 insertions(+) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eo.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_eo.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_eo.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eo.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_eo.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_eo.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_eo.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_eo.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_eo.properties create mode 100644 core/src/main/resources/lib/hudson/executors_eo.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_eo.properties create mode 100644 core/src/main/resources/lib/hudson/queue_eo.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_eo.properties create mode 100644 core/src/main/resources/lib/layout/layout_eo.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.properties new file mode 100644 index 0000000000..c40574deee --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_eo.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. + +Dismiss=Malakcepti +More\ Info=Pli da info +blurb=\u015Cajne la via inversa prokura aran\u011Do estas rompita. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eo.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eo.properties new file mode 100644 index 0000000000..8c5900b182 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=Lasta konstrukto diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties new file mode 100644 index 0000000000..dfb82f4851 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_eo.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=Reen al la projekto +Changes=\u015Can\u011Doj +Console\ Output=Terminala eligo +Edit\ Build\ Information=Redakti konstruktan informon +Status=Statuso diff --git a/core/src/main/resources/hudson/model/Run/console_eo.properties b/core/src/main/resources/hudson/model/Run/console_eo.properties new file mode 100644 index 0000000000..a47e35d90f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_eo.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Terminala eligo +View\ as\ plain\ text=Vidi kiel klara teksto diff --git a/core/src/main/resources/hudson/model/View/sidepanel_eo.properties b/core/src/main/resources/hudson/model/View/sidepanel_eo.properties new file mode 100644 index 0000000000..1c36c3eeef --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_eo.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. + +Build\ History=Konstrua historio +NewJob=Nova {0} +People=Homoj diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties new file mode 100644 index 0000000000..22823e099a --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Enhorarigi konstruon diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eo.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eo.properties new file mode 100644 index 0000000000..49880ddf90 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_eo.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nova vido diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties new file mode 100644 index 0000000000..77f4229e05 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Lasta tempoda\u016Dro diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties new file mode 100644 index 0000000000..792c18edbd --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Lasta malsukceso diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties new file mode 100644 index 0000000000..20ca946e6c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_eo.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=--- diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties new file mode 100644 index 0000000000..1b62bd4a2d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Lasta sukceso diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties new file mode 100644 index 0000000000..20ca946e6c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_eo.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=--- diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties new file mode 100644 index 0000000000..7e47342193 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eo.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Statuso de la lasta konstruo diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties new file mode 100644 index 0000000000..989bd3edf9 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vetera raporto montranta la resumitan statuson de la lasta konstruoj diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_eo.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_eo.properties new file mode 100644 index 0000000000..de89854130 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_eo.properties @@ -0,0 +1,33 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Aldoni, forigi, invalidi a\u00FB permesi modulojn kiu povas pluigi funkciecon de Jenkins. +Configure\ System=Konfiguri sistemon +Configure\ global\ settings\ and\ paths.=Konfiguri universalajn seta\u011Dojn kaj vojojn +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=For\u0135eti tuta la \u015Dar\u011Ditaj dataoj el memoro kaj re\u015Dar\u011Di \u0109io el storo. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Vidas diversaj medioinformoj kiu helpas riparebli problemoj. +Manage\ Jenkins=Administri Jenkins +Manage\ Plugins=Administri modulojn +Reload\ Configuration\ from\ Disk=Re\u015Dar\u011Di konfiguron el storo +System\ Information=Sistema informo +System\ Log=Sistema loglibro +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Utile dum vi modifikis konfiguraj dosieroj direkte en la storo. diff --git a/core/src/main/resources/lib/hudson/buildCaption_eo.properties b/core/src/main/resources/lib/hudson/buildCaption_eo.properties new file mode 100644 index 0000000000..262953c882 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_eo.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Progreso +cancel=nuligi diff --git a/core/src/main/resources/lib/hudson/buildHealth_eo.properties b/core/src/main/resources/lib/hudson/buildHealth_eo.properties new file mode 100644 index 0000000000..eb6d31a994 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Lasta priskribo diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_eo.properties b/core/src/main/resources/lib/hudson/buildProgressBar_eo.properties new file mode 100644 index 0000000000..9f0b84a3b1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_eo.properties @@ -0,0 +1,23 @@ +# 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. + +text=Iniciatis anta\u016De {0}
    Taksita tempo restanta: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_eo.properties b/core/src/main/resources/lib/hudson/editableDescription_eo.properties new file mode 100644 index 0000000000..d67842200a --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_eo.properties @@ -0,0 +1,23 @@ +# 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. + +edit\ description=redakti priscribon diff --git a/core/src/main/resources/lib/hudson/executors_eo.properties b/core/src/main/resources/lib/hudson/executors_eo.properties new file mode 100644 index 0000000000..261ae13943 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_eo.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. + +Build\ Executor\ Status=Statuso de la konstrua efektivigilo +Idle=Neaktiva +Status=Statuso diff --git a/core/src/main/resources/lib/hudson/iconSize_eo.properties b/core/src/main/resources/lib/hudson/iconSize_eo.properties new file mode 100644 index 0000000000..1f38ba9ed2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_eo.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikono diff --git a/core/src/main/resources/lib/hudson/queue_eo.properties b/core/src/main/resources/lib/hudson/queue_eo.properties new file mode 100644 index 0000000000..2cd7d6be36 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_eo.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Konstrua atendovico +No\ builds\ in\ the\ queue.=Neniuj konstruoj en la atendovico. diff --git a/core/src/main/resources/lib/hudson/rssBar_eo.properties b/core/src/main/resources/lib/hudson/rssBar_eo.properties new file mode 100644 index 0000000000..f36dde6bf2 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_eo.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Legendo +for\ all=por \u0109iuj +for\ failures=por malsukcesoj +for\ just\ latest\ builds=por la lastaj konstruoj diff --git a/core/src/main/resources/lib/layout/layout_eo.properties b/core/src/main/resources/lib/layout/layout_eo.properties new file mode 100644 index 0000000000..c3dca82c40 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_eo.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=ebligi automatan refre\u015Digon +Page\ generated=Pa\u011Do produktita +logout=elsaluti +search=ser\u0109i +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 33d1175ee83000324d43bd0030e63bea796c4415 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:45 -0800 Subject: [PATCH 117/158] Community-contributed localization for Spanish; Castilian (es) --- .../hudson/AboutJenkins/index_es.properties | 25 +++++++++++++++++ .../hudson/PluginManager/index_es.properties | 3 +++ .../PluginManager/index_es_AR.properties | 26 ++++++++++++++++++ .../PluginManager/installed_es.properties | 4 +-- .../PluginManager/tabBar_es_AR.properties | 26 ++++++++++++++++++ .../PluginManager/table_es_AR.properties | 27 +++++++++++++++++++ .../config_es.properties | 1 + .../AbstractBuild/sidepanel_es.properties | 2 +- .../model/AbstractBuild/tasks_es.properties | 2 ++ .../AbstractItem/noWorkspace_es.properties | 1 - .../model/AbstractProject/main_es.properties | 2 +- .../hudson/model/AllView/noJob_es.properties | 6 ++--- .../DirectoryBrowserSupport/dir_es.properties | 2 +- .../hudson/model/Job/index_es.properties | 2 +- .../hudson/model/Job/permalinks_es.properties | 2 +- .../model/LoadStatistics/main_es.properties | 2 +- .../Permalink/link_es.properties | 2 +- .../RestartJenkinsJob/row_es.properties | 23 ++++++++++++++++ .../model/UpdateCenter/body_es.properties | 23 ++++++++++++++++ .../model/View/People/index_es.properties | 3 ++- .../hudson/model/View/sidepanel_es.properties | 6 ++--- .../hudson/tasks/Mailer/global_es.properties | 8 +++--- .../junit/CaseResult/index_es.properties | 2 +- .../BuildButtonColumn/column_es.properties | 2 +- .../widgets/HistoryWidget/entry_es.properties | 23 ++++++++++++++++ .../widgets/HistoryWidget/index_es.properties | 2 +- .../model/Jenkins/configure_es.properties | 2 ++ .../model/Jenkins/manage_es.properties | 4 +-- .../lib/hudson/buildHealth_es.properties | 2 +- .../lib/hudson/buildProgressBar_es.properties | 2 +- .../hudson/editableDescription_es.properties | 2 +- .../lib/hudson/executors_es.properties | 4 +-- .../lib/hudson/iconSize_es.properties | 2 +- .../resources/lib/hudson/queue_es.properties | 4 +-- .../resources/lib/hudson/rssBar_es.properties | 8 +++--- .../hudson/thirdPartyLicenses_es.properties | 25 +++++++++++++++++ .../resources/lib/layout/layout_es.properties | 5 ++-- .../lib/layout/layout_es_AR.properties | 25 +++++++++++++++++ 38 files changed, 272 insertions(+), 40 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_es.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_es_AR.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_es_AR.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_es_AR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_es.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_es.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_es.properties create mode 100644 core/src/main/resources/lib/layout/layout_es_AR.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_es.properties b/core/src/main/resources/hudson/AboutJenkins/index_es.properties new file mode 100644 index 0000000000..b447817027 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_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. + +about=Sobre Jenkins {0} +blurb=Jenkins un servidor de Integraci\u00F3n Cont\u00EDnua, de c\u00F3digo abierto y desarrollado en comunidad. +dependencies=Jenkins depende de las siguientes librerias de terceros. diff --git a/core/src/main/resources/hudson/PluginManager/index_es.properties b/core/src/main/resources/hudson/PluginManager/index_es.properties index 40b07c0678..eb869f12e4 100644 --- a/core/src/main/resources/hudson/PluginManager/index_es.properties +++ b/core/src/main/resources/hudson/PluginManager/index_es.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Todo +None=Ninguno +Select=Seleccionar UpdatePageDescription=Esta página muestra la lista de ''plugins'' que estás usando actualmente. UpdatePageLegend=Las filas desactivadas ya han sido actualizadas, esperando para reiniciar. \ Las filas que siguen activadas pero sombreadas han fallado o están siendo actualizadas. diff --git a/core/src/main/resources/hudson/PluginManager/index_es_AR.properties b/core/src/main/resources/hudson/PluginManager/index_es_AR.properties new file mode 100644 index 0000000000..71fb5e5e93 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_es_AR.properties @@ -0,0 +1,26 @@ +# 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. + +All=Todo +None=Ninguno +Select=Seleccionar +UpdatePageDescription=Esta p\u00E1gina lista las actualizaciones de plugines actualmente instalados diff --git a/core/src/main/resources/hudson/PluginManager/installed_es.properties b/core/src/main/resources/hudson/PluginManager/installed_es.properties index 94738c7435..b49818dcce 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_es.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_es.properties @@ -31,5 +31,5 @@ Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar cuando no haya tareas en ejecuci wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins downgradeTo=Bajar a la version {0}. Previously\ installed\ version=Versión previamente instalada. -Pinned= -Unpin= +Pinned=marcado +Unpin=desmarcar diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_es_AR.properties b/core/src/main/resources/hudson/PluginManager/tabBar_es_AR.properties new file mode 100644 index 0000000000..0708cfed7a --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_es_AR.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=Avanzado +Available=Disponible +Installed=Instalado +Updates=Actualizar diff --git a/core/src/main/resources/hudson/PluginManager/table_es_AR.properties b/core/src/main/resources/hudson/PluginManager/table_es_AR.properties new file mode 100644 index 0000000000..4fe90a733d --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_es_AR.properties @@ -0,0 +1,27 @@ +# 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. + +Check\ to\ install\ the\ plugin=Selecione para instalar el plugin +Install=Instalar +Installed=Instalado +Name=Nombre +Version=Version diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_es.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_es.properties index e2f160e288..21aa3bf912 100644 --- a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_es.properties +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_es.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. blurb=Utiliza el texto como HTML +disableSyntaxHighlighting=Deshabilitar coloreado de sintaxis. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties index 23fc8fc8a8..ecf92f1a4c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Ejecucion previa +Previous\ Build=Ejecuci\u00F3n previa Next\ Build=Ejecución siguiente diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties index 12f1a2f28c..d98c79a9b1 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_es.properties @@ -24,6 +24,8 @@ Console\ Output=Salida de consola Back\ to\ Project=Volver al Proyecto Changes=Cambios +Edit\ Build\ Information=Editar informaci\u00F3n de compilaci\u00F3n Status=Estado +View\ Build\ Information=Ver Informaci\u00F3n de Construcci\u00F3n raw=crudo (raw) Configure=Configurar diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties index 0141faed28..d2ec0f04ca 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_es.properties @@ -26,6 +26,5 @@ There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are\:=No hay es The\ project\ was\ renamed\ recently\ and\ no\ build\ was\ done\ under\ the\ new\ name.=El proyecto se ha renombrado y no se a ejecutado desde entonces Error\:\ no\ workspace=Error, no hay espacio de trabajo The\ slave\ this\ project\ has\ run\ on\ for\ the\ last\ time\ was\ removed.=El nodo esclavo donde se ejecutó la última vez se ha eliminado -A\ project\ won''t\ have\ any\ workspace\ until\ at\ least\ one\ build\ is\ performed.=Un proyecto no tiene espacio de trabajo hasta que se ejecuta por primera vez diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties index 9c4def28b7..d572be21a1 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_es.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_es.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Workspace=Espacio de trabajo -Last\ Successful\ Artifacts=Última ejecución correcta +Last\ Successful\ Artifacts=\u00DAltima Ejecuci\u00F3n Exitosa Recent\ Changes=Cambios recientes Latest\ Test\ Result=Últimos resultados de tests diff --git a/core/src/main/resources/hudson/model/AllView/noJob_es.properties b/core/src/main/resources/hudson/model/AllView/noJob_es.properties index 9cf7435957..fd6f16a4e7 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_es.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_es.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -newJob=Crea nuevas tareas para comenzar. +newJob=Por favor, crea una nueva tarea para empezar. login=Entra para crear nuevas tareas. signup=Si no tienes una cuenta, puedes crear una ahora. -newJob=Nueva tarea -Welcome\ to\ Jenkins!=Bienvenido a Jenkins +newJob=Por favor, crea una nueva tarea para empezar. +Welcome\ to\ Jenkins!=Bienvenido a Jenkins! signup=Registrarse diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties index c08fd00829..5f20da718a 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_es.properties @@ -22,4 +22,4 @@ No\ files\ in\ directory=No hay ficheros en el directorio view=vista -all\ files\ in\ zip=Todos los ficheros del archivo ''zip'' +all\ files\ in\ zip=Descargar archivos en formato ''''zip'''' 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 790f690b23..ff6ad4fcd1 100644 --- a/core/src/main/resources/hudson/model/Job/index_es.properties +++ b/core/src/main/resources/hudson/model/Job/index_es.properties @@ -22,4 +22,4 @@ This\ project\ is\ currently\ disabled=Este projecto está desactivado actualmente Enable=Activar -Disable\ Project=Desactivar el proyecto +Disable\ Project=Desactivar el Proyecto diff --git a/core/src/main/resources/hudson/model/Job/permalinks_es.properties b/core/src/main/resources/hudson/model/Job/permalinks_es.properties index 52098edf72..61079fb8bd 100644 --- a/core/src/main/resources/hudson/model/Job/permalinks_es.properties +++ b/core/src/main/resources/hudson/model/Job/permalinks_es.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Permalinks=Permalinks +Permalinks=Ligas Permanentes diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties index 62beb31c67..9c97d4eb70 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_es.properties @@ -51,7 +51,7 @@ blurb=\ Se hacen tomas de datos de 3 tipos: cada 10 segundos, cada minuto y cada hora, para los valores de intervalo pequeño, mediano y grande respectivamente. Short=Pequeño -Long=Grande +Long=Largo Timespan=Visualizar datos para valores de intervalo: Medium=Mediano Load\ statistics\ graph=Cargar gráfico de estadísticas diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties index 0b0157934a..60e82e3c1e 100644 --- a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -format="{0} ({1}), hace {2}" +format=hace {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es.properties new file mode 100644 index 0000000000..98aa69d365 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_es.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Reiniciando Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties new file mode 100644 index 0000000000..2f288080d7 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_es.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Reiniciar Jenkins cuando la instalaci\u00F3n este completa y no se encuentre ninguna tarea en ejecuci\u00F3n diff --git a/core/src/main/resources/hudson/model/View/People/index_es.properties b/core/src/main/resources/hudson/model/View/People/index_es.properties index b7b7e98123..7d6a4d25f4 100644 --- a/core/src/main/resources/hudson/model/View/People/index_es.properties +++ b/core/src/main/resources/hudson/model/View/People/index_es.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. Name=Nombre -Last\ Active=Actividad reciente +Last\ Active=Actividad Reciente On=En All\ People=Todos People=Actividad +User\ Id=Nombre de Usario diff --git a/core/src/main/resources/hudson/model/View/sidepanel_es.properties b/core/src/main/resources/hudson/model/View/sidepanel_es.properties index ad9e6ded48..867d991c2c 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_es.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_es.properties @@ -21,9 +21,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=Historia de ejecuciones -NewJob=Crear nueva {0} -People=Actividad +Build\ History=Historial de construcci\u00F3n +NewJob=Nueva {0} +People=Personas Edit\ View=Editar la vista Delete\ View=Borrar la vista Project\ Relationship=Dependencia entre proyectos diff --git a/core/src/main/resources/hudson/tasks/Mailer/global_es.properties b/core/src/main/resources/hudson/tasks/Mailer/global_es.properties index 44082d81d4..925a7509d7 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/global_es.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/global_es.properties @@ -20,14 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -E-mail\ Notification=Notificaci\u00dbn por correo electr\u00dbnico +E-mail\ Notification=Notificaci\u00F3n por correo electr\u00DBnico SMTP\ server=Servidor de correo saliente (SMTP) Default\ user\ e-mail\ suffix=sufijo de email por defecto System\ Admin\ E-mail\ Address=Direcci\u00dbn del administrador -Jenkins\ URL=Direcci\u00dbn web de Jenkins -Use\ SMTP\ Authentication=Usar autenticaci\u00dbn SMTP +Jenkins\ URL=Direcci\u00F3n web de Jenkins +Use\ SMTP\ Authentication=Usar autenticaci\u00F3n SMTP User\ Name=Nombre de usuario -Password=Contrase\u00d2a +Password=Contrase\u00F1a Use\ SSL=Usar seguridad SSL SMTP\ Port=Puerto de SMTP Test\ configuration\ by\ sending\ e-mail=Probar la configuraci\u00dbn enviando un correo diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_es.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_es.properties index a96f1f6e73..56ab661e1c 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_es.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_es.properties @@ -22,7 +22,7 @@ failingFor=Fallando durante los últimos {0} {0,choice,0#builds|1#build|1 y falta aproximadamente: {1} +text=Comenz\u00F3 hace {0}
    Tiempo restante estimado: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_es.properties b/core/src/main/resources/lib/hudson/editableDescription_es.properties index c789d6a854..a16b928ce6 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_es.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_es.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Insertar descripci\u00F3n +add\ description=insertar descripci\u00F3n edit\ description=editar descripción diff --git a/core/src/main/resources/lib/hudson/executors_es.properties b/core/src/main/resources/lib/hudson/executors_es.properties index cb3c4f8590..8ccffc2e7f 100644 --- a/core/src/main/resources/lib/hudson/executors_es.properties +++ b/core/src/main/resources/lib/hudson/executors_es.properties @@ -25,10 +25,10 @@ offline=fuera de linea suspended=suspendido Dead=Colgado Offline=Fuera de linea -Idle=Disponible +Idle=Inactivo Building=Ejecutándose Unknown\ Task=Tarea desconocida -terminate\ this\ build=Terminar este proceso +terminate\ this\ build=Terminar esta ejecucion Build\ Executor\ Status=Estado de los nodos Status=Estado Master=Principal diff --git a/core/src/main/resources/lib/hudson/iconSize_es.properties b/core/src/main/resources/lib/hudson/iconSize_es.properties index 661362bf2e..ebaff8d307 100644 --- a/core/src/main/resources/lib/hudson/iconSize_es.properties +++ b/core/src/main/resources/lib/hudson/iconSize_es.properties @@ -21,4 +21,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Icono +Icon=\u00CDcono diff --git a/core/src/main/resources/lib/hudson/queue_es.properties b/core/src/main/resources/lib/hudson/queue_es.properties index 61043b1394..b2dabc3b25 100644 --- a/core/src/main/resources/lib/hudson/queue_es.properties +++ b/core/src/main/resources/lib/hudson/queue_es.properties @@ -21,10 +21,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Trabajos en la cola +Build\ Queue=Trabajos en cola Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins va a ser apagado. No se procesarán nuevas tareas. cancel=cancelar -No\ builds\ in\ the\ queue.=No hay tareas pendientes +No\ builds\ in\ the\ queue.=No hay trabajos en cola Unknown\ Task=Tarea desconocida diff --git a/core/src/main/resources/lib/hudson/rssBar_es.properties b/core/src/main/resources/lib/hudson/rssBar_es.properties index c199eabaff..69953437bd 100644 --- a/core/src/main/resources/lib/hudson/rssBar_es.properties +++ b/core/src/main/resources/lib/hudson/rssBar_es.properties @@ -21,8 +21,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Suscribirse a RSS de: -for\ all=todos los trabajos -for\ failures=sólo los fallidos -for\ just\ latest\ builds=los más recientes +Legend=Gu\u00EDa de \u00EDconos +for\ all=de todos +for\ failures=de los fallidos +for\ just\ latest\ builds=de los m\u00E1s recientes diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_es.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_es.properties new file mode 100644 index 0000000000..2b8c360eea --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_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. + +License=Licencia +Maven\ ID=Nombre de Maven +Name=Nombre diff --git a/core/src/main/resources/lib/layout/layout_es.properties b/core/src/main/resources/lib/layout/layout_es.properties index 9f9511fa0c..24ec6f6087 100644 --- a/core/src/main/resources/lib/layout/layout_es.properties +++ b/core/src/main/resources/lib/layout/layout_es.properties @@ -23,8 +23,9 @@ DISABLE\ AUTO\ REFRESH=DESACTIVAR AUTO REFRESCO -ENABLE\ AUTO\ REFRESH=ACTIVAR AUTO REFRESCO -logout=Salir +ENABLE\ AUTO\ REFRESH=ACTIVAR ACTUALIZACI\u00D3N AUTOM\u00C1TICA +logout=salir +search=buscar searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box Page\ generated=Página generada el diff --git a/core/src/main/resources/lib/layout/layout_es_AR.properties b/core/src/main/resources/lib/layout/layout_es_AR.properties new file mode 100644 index 0000000000..1dbee4ff00 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_es_AR.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. + +Page\ generated=P\u00E1gina generada +logout=Finalizar la sesi\u00F3n +search=Buscar -- GitLab From 85c9d5cc53f5cb85c675e77f97cd6a8db51c72d5 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 118/158] Community-contributed localization for Estonian (et) --- .../model/AbstractBuild/tasks_et.properties | 23 +++++++++++++++++ .../hudson/model/View/sidepanel_et.properties | 24 ++++++++++++++++++ .../resources/lib/layout/layout_et.properties | 25 +++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_et.properties create mode 100644 core/src/main/resources/lib/layout/layout_et.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties new file mode 100644 index 0000000000..e3d11de1fa --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_et.properties @@ -0,0 +1,23 @@ +# 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=staatus diff --git a/core/src/main/resources/hudson/model/View/sidepanel_et.properties b/core/src/main/resources/hudson/model/View/sidepanel_et.properties new file mode 100644 index 0000000000..66a3e0d221 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_et.properties @@ -0,0 +1,24 @@ +# 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. + +NewJob=Uus {0} +People=Inimesed diff --git a/core/src/main/resources/lib/layout/layout_et.properties b/core/src/main/resources/lib/layout/layout_et.properties new file mode 100644 index 0000000000..deccd1e33e --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_et.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. + +ENABLE\ AUTO\ REFRESH=UUENDA AUTOMAATSELT +logout=logi v\u00E4lja +search=otsi -- GitLab From 737210ede0610aa5b4e8ecb5f5b7884e45bb4864 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 119/158] Community-contributed localization for Basque (eu) --- .../hudson/model/View/sidepanel_eu.properties | 25 ++++++++++++++++++ .../loginLink_eu.properties | 23 ++++++++++++++++ .../SecurityRealm/loginLink_eu.properties | 23 ++++++++++++++++ .../columnHeader_eu.properties | 23 ++++++++++++++++ .../columnHeader_eu.properties | 23 ++++++++++++++++ .../LastFailureColumn/column_eu.properties | 23 ++++++++++++++++ .../columnHeader_eu.properties | 23 ++++++++++++++++ .../StatusColumn/columnHeader_eu.properties | 23 ++++++++++++++++ .../WeatherColumn/columnHeader_eu.properties | 23 ++++++++++++++++ .../lib/hudson/buildHealth_eu.properties | 23 ++++++++++++++++ .../lib/hudson/executors_eu.properties | 25 ++++++++++++++++++ .../lib/hudson/iconSize_eu.properties | 23 ++++++++++++++++ .../resources/lib/hudson/queue_eu.properties | 24 +++++++++++++++++ .../resources/lib/hudson/rssBar_eu.properties | 26 +++++++++++++++++++ .../resources/lib/layout/layout_eu.properties | 26 +++++++++++++++++++ 15 files changed, 356 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_eu.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_eu.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_eu.properties create mode 100644 core/src/main/resources/lib/hudson/executors_eu.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_eu.properties create mode 100644 core/src/main/resources/lib/hudson/queue_eu.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_eu.properties create mode 100644 core/src/main/resources/lib/layout/layout_eu.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_eu.properties b/core/src/main/resources/hudson/model/View/sidepanel_eu.properties new file mode 100644 index 0000000000..bc8ef943d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_eu.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. + +Build\ History=Lan historia +NewJob=Berria {0} +People=Gendea diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties new file mode 100644 index 0000000000..2f8cf78d8f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_eu.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=izena eman diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties new file mode 100644 index 0000000000..59fe83ec09 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_eu.properties @@ -0,0 +1,23 @@ +# 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. + +login=sartu diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties new file mode 100644 index 0000000000..55f90ba09e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Azken iraupena diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties new file mode 100644 index 0000000000..b8ae1463e2 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Azken porrota diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_eu.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_eu.properties new file mode 100644 index 0000000000..3ee7e32be8 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_eu.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Z/E diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties new file mode 100644 index 0000000000..fd7f978bfc --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Azken arrakasta diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties new file mode 100644 index 0000000000..f7478bebb8 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_eu.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Azken lanaren egoera diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties new file mode 100644 index 0000000000..36f5c36205 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Lan berria ohartzen du eguraldiaren iragarpena diff --git a/core/src/main/resources/lib/hudson/buildHealth_eu.properties b/core/src/main/resources/lib/hudson/buildHealth_eu.properties new file mode 100644 index 0000000000..6371d355a5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Deskribapena diff --git a/core/src/main/resources/lib/hudson/executors_eu.properties b/core/src/main/resources/lib/hudson/executors_eu.properties new file mode 100644 index 0000000000..d6b184c65d --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_eu.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. + +Build\ Executor\ Status=Langilearen egoera +Idle=Geldirik +Status=Egoera diff --git a/core/src/main/resources/lib/hudson/iconSize_eu.properties b/core/src/main/resources/lib/hudson/iconSize_eu.properties new file mode 100644 index 0000000000..9a21e0e6e0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_eu.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikurra diff --git a/core/src/main/resources/lib/hudson/queue_eu.properties b/core/src/main/resources/lib/hudson/queue_eu.properties new file mode 100644 index 0000000000..fc4d7aac68 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_eu.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Lan ilara +No\ builds\ in\ the\ queue.=Ez dago lanik ilaran. diff --git a/core/src/main/resources/lib/hudson/rssBar_eu.properties b/core/src/main/resources/lib/hudson/rssBar_eu.properties new file mode 100644 index 0000000000..d38d3c6161 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_eu.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Kondaira +for\ all=denentzako +for\ failures=porrotentzako +for\ just\ latest\ builds=azken lanentzako diff --git a/core/src/main/resources/lib/layout/layout_eu.properties b/core/src/main/resources/lib/layout/layout_eu.properties new file mode 100644 index 0000000000..015f20ec57 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_eu.properties @@ -0,0 +1,26 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=AUTOMATIKOKI REFRESKATU +Page\ generated=Azken eguneraketa +search=Bilatu +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From b0c80c04de4232b12ceb2e40623a3f7e7c6f4e40 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 120/158] Community-contributed localization for Finnish (fi) --- .../hudson/AboutJenkins/index_fi.properties | 25 +++++++++++++++ .../PluginManager/advanced_fi.properties | 2 ++ .../PluginManager/checkUpdates_fi.properties | 25 +++++++++++++++ .../PluginManager/installed_fi.properties | 30 ++++++++++++++++++ .../hudson/PluginManager/table_fi.properties | 1 + .../OldDataMonitor/manage_fi.properties | 31 +++++++++++++++++++ .../OldDataMonitor/message_fi.properties | 25 +++++++++++++++ .../message_fi.properties | 25 +++++++++++++++ .../MatrixProject/ajaxMatrix_fi.properties | 23 ++++++++++++++ .../matrix/MatrixProject/index_fi.properties | 1 + .../AbstractBuild/sidepanel_fi.properties | 1 + .../model/AbstractBuild/tasks_fi.properties | 1 + .../AbstractProject/changes_fi.properties | 23 ++++++++++++++ .../AbstractProject/sidepanel_fi.properties | 4 +-- .../config_fi.properties | 23 ++++++++++++++ .../UserIdCause/description_fi.properties | 23 ++++++++++++++ .../hudson/model/Computer/index_fi.properties | 23 ++++++++++++++ .../model/Computer/sidepanel_fi.properties | 27 ++++++++++++++++ .../model/ComputerSet/index_fi.properties | 25 +++++++++++++++ .../model/ComputerSet/sidepanel_fi.properties | 25 +++++++++++++++ .../model/Job/buildTimeTrend_fi.properties | 24 ++++++++++++++ .../hudson/model/Job/configure_fi.properties | 24 ++++++++++++++ .../hudson/model/Job/index_fi.properties | 23 ++++++++++++++ .../model/LoadStatistics/main_fi.properties | 27 ++++++++++++++++ .../MyViewsProperty/config_fi.properties | 23 ++++++++++++++ .../MyViewsProperty/newView_fi.properties | 23 ++++++++++++++ .../config_fi.properties | 23 ++++++++++++++ .../model/UpdateCenter/body_fi.properties | 23 ++++++++++++++ .../hudson/model/User/configure_fi.properties | 24 ++++++++++++++ .../hudson/model/User/index_fi.properties | 23 ++++++++++++++ .../hudson/model/User/sidepanel_fi.properties | 1 + .../model/View/People/index_fi.properties | 27 ++++++++++++++++ .../hudson/model/View/builds_fi.properties | 23 ++++++++++++++ .../hudson/model/View/newJob_fi.properties | 24 ++++++++++++++ .../hudson/model/View/sidepanel_fi.properties | 2 ++ .../scm/SCM/project-changes_fi.properties | 24 ++++++++++++++ .../config_fi.properties | 23 ++++++++++++++ .../Details/config_fi.properties | 23 ++++++++++++++ .../Mailer/UserProperty/config_fi.properties | 23 ++++++++++++++ .../myViewTabs_fi.properties | 23 ++++++++++++++ .../DefaultViewsTabBar/viewTabs_fi.properties | 23 ++++++++++++++ .../widgets/HistoryWidget/entry_fi.properties | 23 ++++++++++++++ .../model/Jenkins/downgrade_fi.properties | 23 ++++++++++++++ .../Jenkins/fingerprintCheck_fi.properties | 27 ++++++++++++++++ .../model/Jenkins/manage_fi.properties | 30 +++++++++--------- .../lib/hudson/buildListTable_fi.properties | 25 +++++++++++++++ .../lib/hudson/buildProgressBar_fi.properties | 2 +- .../lib/hudson/executors_fi.properties | 2 +- .../lib/hudson/iconSize_fi.properties | 2 +- .../lib/hudson/newFromList/form_fi.properties | 23 ++++++++++++++ .../config-customWorkspace_fi.properties | 23 ++++++++++++++ .../resources/lib/hudson/queue_fi.properties | 2 ++ .../hudson/thirdPartyLicenses_fi.properties | 25 +++++++++++++++ .../resources/lib/layout/layout_fi.properties | 5 ++- .../lib/layout/main-panel_fi.properties | 23 ++++++++++++++ .../MavenModuleSet/actions_fi.properties | 23 ++++++++++++++ .../maven/MavenModuleSet/index_fi.properties | 26 ++++++++++++++++ .../MavenModuleSet/newJobDetail_fi.properties | 23 ++++++++++++++ 58 files changed, 1103 insertions(+), 20 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_fi.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_fi.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_fi.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fi.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_fi.properties create mode 100644 core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fi.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_fi.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_fi.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_fi.properties create mode 100644 core/src/main/resources/hudson/model/User/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_fi.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_fi.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_fi.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties create mode 100644 core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fi.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_fi.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_fi.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_fi.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fi.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_fi.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_fi.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_fi.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_fi.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_fi.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_fi.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_fi.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_fi.properties b/core/src/main/resources/hudson/AboutJenkins/index_fi.properties new file mode 100644 index 0000000000..a182a18565 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_fi.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. + +about=Tietoja Jenkinsist\u00E4 {0} +blurb=Jenkins on yhteis\u00F6kehitteinen, avoimen l\u00E4hdekoodin jatkuvan integroinnin palvelinohjelmisto +dependencies=Jenkins k\u00E4ytt\u00E4\u00E4 seuraavia kolmannen osapuolen kirjastoja diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties index 8317e80caa..32bfe1e8a3 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fi.properties @@ -27,6 +27,8 @@ Password=Salasana Port=Portti Server=Palvelin Submit=L\u00E4het\u00E4 +URL=URL +Update\ Site=P\u00E4ivitys sivusto Upload=Lataa Upload\ Plugin=Lataa liit\u00E4nn\u00E4inen User\ name=K\u00E4ytt\u00E4j\u00E4 diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_fi.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_fi.properties new file mode 100644 index 0000000000..ddf3c99854 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_fi.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. + +Checking\ Updates...=Tarkastetaan p\u00E4ivityksi\u00E4... +Done=Valmis +Go\ back\ to\ update\ center=Palaa takaisin liit\u00E4nn\u00E4isten hallintaan diff --git a/core/src/main/resources/hudson/PluginManager/installed_fi.properties b/core/src/main/resources/hudson/PluginManager/installed_fi.properties new file mode 100644 index 0000000000..cf7144fc87 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_fi.properties @@ -0,0 +1,30 @@ +# 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. + +Enabled=Aktivoitu +Name=Nimi +Pinned=Lukittu +Previously\ installed\ version=Aiemmin asennettu versio +Uncheck\ to\ disable\ the\ plugin=Poist ruudun rasti poistaaksesi liit\u00E4nn\u00E4inen k\u00E4yt\u00F6st\u00E4 +Unpin=Vapauta lukitus +Version=Versio +downgradeTo=Alenna versioon {0} diff --git a/core/src/main/resources/hudson/PluginManager/table_fi.properties b/core/src/main/resources/hudson/PluginManager/table_fi.properties index 0af95952e1..32e59afec6 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fi.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fi.properties @@ -24,4 +24,5 @@ Check\ to\ install\ the\ plugin=Rastita asentaaksesi liit\u00E4nn\u00E4isen Install=Asenna Installed=Asennettu Name=Nimi +No\ updates=Ei p\u00E4ivityksi\u00E4 Version=Versio diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties new file mode 100644 index 0000000000..2d1a819b3f --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fi.properties @@ -0,0 +1,31 @@ +# 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. + +Manage\ Old\ Data=Hallitse vanhoja tietoja +Name=Nimi +No\ old\ data\ was\ found.=Vanhassa muodossa talletettua tietoa ei l\u00F6ytynyt. +Type=Tyyppi +Version=Versio +blurb.1=Kun levylle kirjoitettava tieto muuttuu, Jenkins tekee sen seuraavasti: tiedot siirret\u00E4\u00E4n uuteen muotoon luettaessa levylt\u00E4, mutta tietoja ei tallenneta uudessa muodossa. T\u00E4m\u00E4 tekee mahdolliseksi palata vanhaan Jenkinsin versioon jos tarve tulee. T\u00E4m\u00E4n takia tiedot my\u00F6s j\u00E4\u00E4v\u00E4t levylle vanhaan muotoon kunnes ne k\u00E4yd\u00E4\u00E4n erikseen muuttamassa. Allaoleva taulukko luettelee tiedostot, joissa on vanhaa tietoa ja miss\u00E4 Jenkinsin versiossa tietorakenne muuttui. +blurb.2=Joskus tietoja luettaessa tapahtuu virheit\u00E4 (esim. jos joku laajennus on lis\u00E4nyt tietoja ja t\u00E4m\u00E4 laajennus on my\u00F6hemmin k\u00E4\u00E4nnetty pois p\u00E4\u00E4lt\u00E4 tai Jenkins on vaihdettu vanhempaan versioon sen j\u00E4lkeen kun se on kirjoittanut tietoja levylle muotoon, jota vanhempi versio ei osaa viel\u00E4 lukea. Jotta Jenkins silti k\u00E4ynnistyisi ja toimisi kunnolla, n\u00E4m\u00E4 virheet kirjoitetaan lokiiin ja sitten hyp\u00E4t\u00E4\u00E4n niiden tietojen yli, joita ei pystyt\u00E4 lukemaan. +blurb.3=Allaolevalla lomakkeella voidaan tallentaa n\u00E4m\u00E4 tiedostot nykyiseen muotoon. N\u00E4it\u00E4 tietoja ei pystyt\u00E4 lukemaan jos Jenkins vaihdetaan vanhempaan versioon. Huomaa, ett\u00E4 jo pelk\u00E4st\u00E4\u00E4n uusien t\u00F6iden luominen, olemassaolevien t\u00F6iden muokkaus tai uusien k\u00E4\u00E4nn\u00F6sten ajaminen saattaa tallettaa tietoja muodossa, jota vanhemmat Jenkinsin versiot eiv\u00E4t pysty lukemaan (vaikkei t\u00E4t\u00E4 lomaketta olisikaan k\u00E4ytetty.) Huomaa my\u00F6s, ett\u00E4 jos taulun oikeassa reunassa on kerrottu lukuvirheist\u00E4, kyseiset tiedot katoavat kun tiedosto tallennetaan. +blurb.4=Jossain vaiheessa tietoja uuteen muotoon siirt\u00E4v\u00E4 koodi poistetaan. Yhteensopivuutta yll\u00E4pidet\u00E4\u00E4n ainakin 150 versiota tietorakenteen muuttamisen j\u00E4lkeen. T\u00E4t\u00E4 vanhemmat versiot on yll\u00E4 esitetty lihavoituna ja n\u00E4iden tiedostojen tallentaminen on suositeltavaa. diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.properties new file mode 100644 index 0000000000..214ea5dbdf --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_fi.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. + +Dismiss=\u00C4l\u00E4 v\u00E4lit\u00E4 +Manage=Korjaa +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Tietoja on talletettu vanhassa muodossa tai tietoja ei pystyt\u00E4 lukemaan. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.properties new file mode 100644 index 0000000000..f67877c0fe --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fi.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. + +Dismiss=Poistu +More\ Info=Lis\u00E4tietoa +blurb=Reverse-proxysi n\u00E4ytt\u00E4isi olevan rikki. diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fi.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fi.properties new file mode 100644 index 0000000000..7c70b59bdd --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Not\ configured=Ei konfiguroitu 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 51ce9039c3..5dda8a2c80 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_fi.properties @@ -20,4 +20,5 @@ # 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/model/AbstractBuild/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties index dbe3f704d6..783fc37540 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fi.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Next\ Build=Seuraava k\u00E4\u00E4nn\u00F6s Previous\ Build=Edellinen k\u00E4\u00E4nn\u00F6s diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties index 6ca3f22456..337f6b70c3 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fi.properties @@ -23,5 +23,6 @@ Back\ to\ Project=Takaisin projektiin Changes=Muutokset Console\ Output=Konsoli +Edit\ Build\ Information=Muokkaa k\u00E4\u00E4nn\u00F6ksen tietoja Status=Tila raw=muotoilematon diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_fi.properties new file mode 100644 index 0000000000..583978cf89 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Muutokset diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties index 1b50f0d26c..4fa02167a0 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fi.properties @@ -22,9 +22,9 @@ Back\ to\ Dashboard=Takaisin kojetauluun Build\ scheduled=K\u00E4\u00E4nn\u00F6s on jonossa -Changes=Muutokste +Changes=Muutokset Configure=Muokkaa Status=Tila Wipe\ Out\ Workspace=Tyhjenn\u00E4 ty\u00F6hakemisto Workspace=Ty\u00F6hakemisto -delete=Poista {0} +delete=Poista projekti diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fi.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fi.properties new file mode 100644 index 0000000000..d0b2748f33 --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +or=tai diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties new file mode 100644 index 0000000000..78d12af509 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fi.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_anonymous=Anonyymin k\u00E4ytt\u00E4j\u00E4n k\u00E4ynnist\u00E4m\u00E4 diff --git a/core/src/main/resources/hudson/model/Computer/index_fi.properties b/core/src/main/resources/hudson/model/Computer/index_fi.properties new file mode 100644 index 0000000000..e52bcb741f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_fi.properties @@ -0,0 +1,23 @@ +# 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. + +None=Ei mit\u00E4\u00E4n diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties new file mode 100644 index 0000000000..9c4e6a6f4e --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_fi.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ List=Takaisin listaan +Build\ History=K\u00E4\u00E4nn\u00F6shistoria +Configure=Konfiguroi +Load\ Statistics=Kuormatilastot +Status=Tila diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties b/core/src/main/resources/hudson/model/ComputerSet/index_fi.properties new file mode 100644 index 0000000000..ae9b6ab296 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_fi.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. + +Configure=Konfiguroi +Name=Nimi +Refresh\ status=P\u00E4ivit\u00E4 tilaa diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.properties new file mode 100644 index 0000000000..7f0ec465ee --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_fi.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. + +Configure=Konfiguroi +Manage\ Jenkins=Hallinnoi Jenkinsi\u00E4 +New\ Node=Uusi noodi diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties new file mode 100644 index 0000000000..557b9f44bb --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fi.properties @@ -0,0 +1,24 @@ +# 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. + +Duration=Kesto +Timeline=Aikajana diff --git a/core/src/main/resources/hudson/model/Job/configure_fi.properties b/core/src/main/resources/hudson/model/Job/configure_fi.properties new file mode 100644 index 0000000000..03769c1d17 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_fi.properties @@ -0,0 +1,24 @@ +# 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. + +Description=Kuvaus +Save=Tallenna diff --git a/core/src/main/resources/hudson/model/Job/index_fi.properties b/core/src/main/resources/hudson/model/Job/index_fi.properties new file mode 100644 index 0000000000..a79ddf7f60 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_fi.properties @@ -0,0 +1,23 @@ +# 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=Kytke pois p\u00E4\u00E4lt\u00E4 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties new file mode 100644 index 0000000000..2fa2f2257c --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_fi.properties @@ -0,0 +1,27 @@ +# 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. + +Long=Pitk\u00E4 +Medium=Keskipitk\u00E4 +Short=Lyhyt +Timespan=Aikajakso +title=Kuormatilastot: {0} diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties new file mode 100644 index 0000000000..d2ce7a832a --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Default\ View=Oletusn\u00E4kym\u00E4 diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties new file mode 100644 index 0000000000..41e77939b2 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_fi.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=N\u00E4kym\u00E4n nimi diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_fi.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_fi.properties new file mode 100644 index 0000000000..a8c1dd2413 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ Parameter=Lis\u00E4\u00E4 parametri diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties new file mode 100644 index 0000000000..9c244dad4d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fi.properties @@ -0,0 +1,23 @@ +# 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. + +warning=K\u00E4ynnist\u00E4 Jenkins uudelleen kun asennus on valmis ja t\u00F6it\u00E4 ei ole ajossa diff --git a/core/src/main/resources/hudson/model/User/configure_fi.properties b/core/src/main/resources/hudson/model/User/configure_fi.properties new file mode 100644 index 0000000000..03769c1d17 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_fi.properties @@ -0,0 +1,24 @@ +# 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. + +Description=Kuvaus +Save=Tallenna diff --git a/core/src/main/resources/hudson/model/User/index_fi.properties b/core/src/main/resources/hudson/model/User/index_fi.properties new file mode 100644 index 0000000000..a2c340304f --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins k\u00E4ytt\u00E4j\u00E4tunnus diff --git a/core/src/main/resources/hudson/model/User/sidepanel_fi.properties b/core/src/main/resources/hudson/model/User/sidepanel_fi.properties index 4fe2d2c945..22468d2641 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_fi.properties @@ -23,4 +23,5 @@ Builds=K\u00E4\u00E4nn\u00F6kset Configure=Muokkaa My\ Views=Omat n\u00E4kym\u00E4t +People=K\u00E4ytt\u00E4j\u00E4t Status=Tila diff --git a/core/src/main/resources/hudson/model/View/People/index_fi.properties b/core/src/main/resources/hudson/model/View/People/index_fi.properties new file mode 100644 index 0000000000..8eb0aab87c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_fi.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=Viimeksi Aktiivisena +Name=Nimi +On=Viimeksi Aktiivinen Ty\u00F6 +People=K\u00E4ytt\u00E4j\u00E4t +User\ Id=K\u00E4ytt\u00E4j\u00E4tunnus diff --git a/core/src/main/resources/hudson/model/View/builds_fi.properties b/core/src/main/resources/hudson/model/View/builds_fi.properties new file mode 100644 index 0000000000..246e57f394 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_fi.properties @@ -0,0 +1,23 @@ +# 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. + +buildHistory={0} k\u00E4\u00E4nn\u00F6shistoria diff --git a/core/src/main/resources/hudson/model/View/newJob_fi.properties b/core/src/main/resources/hudson/model/View/newJob_fi.properties new file mode 100644 index 0000000000..aa5ff366bb --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_fi.properties @@ -0,0 +1,24 @@ +# 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. + +CopyExisting=Kopioi olemassa oleva {0} +JobName={0} nimi diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties index 084aae47ac..433f20a49d 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fi.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fi.properties @@ -22,6 +22,8 @@ Build\ History=K\u00E4\u00E4nn\u00F6shistoria Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4ljet +Delete\ View=Poista n\u00E4kym\u00E4 +Edit\ View=Muokkaa n\u00E4kym\u00E4\u00E4 NewJob=Uusi {0} People=K\u00E4ytt\u00E4j\u00E4t Project\ Relationship=Projektien riippuvuudet diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties new file mode 100644 index 0000000000..908711d3d7 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_fi.properties @@ -0,0 +1,24 @@ +# 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. + +No\ changes\ in\ any\ of\ the\ builds.=Ei muutoksia miss\u00E4\u00E4n k\u00E4\u00E4nn\u00F6ksist\u00E4. +detail=yksityiskohdat diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fi.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fi.properties new file mode 100644 index 0000000000..f293ef2a6e --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Remove\ user/group=Poista k\u00E4ytt\u00E4j\u00E4/ryhm\u00E4 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_fi.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_fi.properties new file mode 100644 index 0000000000..69474803a8 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Password=Salasana diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_fi.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_fi.properties new file mode 100644 index 0000000000..3c844cc10c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_fi.properties @@ -0,0 +1,23 @@ +# 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. + +E-mail\ address=S\u00E4hk\u00F6postiosoite diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_fi.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_fi.properties new file mode 100644 index 0000000000..b2c9ec6e43 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_fi.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Uusi n\u00E4kym\u00E4 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fi.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fi.properties new file mode 100644 index 0000000000..b2c9ec6e43 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fi.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Uusi n\u00E4kym\u00E4 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties new file mode 100644 index 0000000000..883807f5b8 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsoli diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties new file mode 100644 index 0000000000..fbe3b65327 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Palauta Jenkinsin edellinen versio diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties new file mode 100644 index 0000000000..3efe313dcd --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_fi.properties @@ -0,0 +1,27 @@ +# 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. + +Check=Tarkasta +Check\ File\ Fingerprint=Tarkasta tiedoston sormenj\u00E4lki +File\ to\ check=Tiedosto joka tarkastetaan +description=Onko sinulla jar tiedosto jonka versiota et tied\u00E4?
    Selvit\u00E4 versio tarkastamalla tiedoston sormenj\u00E4lki Jenkinsin tietokannasta +more\ details=lis\u00E4tietoja diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties index c343ad1ce5..c2fad712b4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fi.properties @@ -20,22 +20,24 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lis\u00E4\u00E4, poista, hallitse ja monitoroi Hudons k\u00E4\u00E4nn\u00F6s solmuja. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lis\u00E4\u00E4, poista, aktivoi tai deaktivoi liit\u00E4nn\u00E4isi\u00E4 joilla voit lis\u00E4t\u00E4 Jenkinsin toiminnallisuutta. -Configure\ System=J\u00E4rjestelm\u00E4 Asetukset -Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Lue levylt\u00E4 uudet asetukset. -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=N\u00E4ytt\u00E4\u00E4 erin\u00E4isi\u00E4 j\u00E4rjestelm\u00E4tietoja jotka auttavat vianetsinn\u00E4ss\u00E4. -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Suorittaa erin\u00E4isi\u00E4 skripteij\u00E4 hallintaan, vianetsin\u00E4\u00E4n ja diagnostiikkaan. +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Lis\u00E4\u00E4, poista, hallitse ja monitoroi Jenkinsin k\u00E4\u00E4nn\u00F6ssolmuja. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Lis\u00E4\u00E4, poista, sammuta tai k\u00E4ynnist\u00E4 liit\u00E4nn\u00E4isi\u00E4, joilla voit laajentaa Jenkinsin toiminnallisuutta. +Cancel\ Shutdown=Keskeyt\u00E4 alasajo +Configure\ System=J\u00E4rjestelm\u00E4n asetukset +Configure\ global\ settings\ and\ paths.=S\u00E4\u00E4d\u00E4 j\u00E4rjestelm\u00E4n asetuksia ja polkuja. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Hylk\u00E4\u00E4 kaikki muistissa oleva tieto ja lataa kaikki uudelleen levylt\u00E4. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=N\u00E4ytt\u00E4\u00E4 erin\u00E4isi\u00E4 j\u00E4rjestelm\u00E4tietoja, jotka auttavat vianetsinn\u00E4ss\u00E4. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Suorittaa erin\u00E4isi\u00E4 skriptej\u00E4 hallintaan, vianetsin\u00E4\u00E4n ja diagnostiikkaan. Jenkins\ CLI=Jenkins CLI -JenkinsCliText=Hallitse Jenkinsia komnetorivilt\u00E4 tai skriptill\u00E4. -Load\ Statistics=Kuormitus Statistiikkaa -LoadStatisticsText=Tarkkaile resurssien k\u00E4ytt\u00F6\u00E4 ja seuraa onko tarvetta lis\u00E4 tietokoneille k\u00E4\u00E4nn\u00F6sty\u00F6t\u00E4 varten. -Manage\ Jenkins=Hallitse Jenkinsia -Manage\ Nodes=Hallitse Jenkins Solmuja -Manage\ Plugins=Hallitse liit\u00E4nn\u00E4isi\u00E4 +JenkinsCliText=Hallitse Jenkinsia komentorivilt\u00E4 tai skriptill\u00E4. +Load\ Statistics=Kuormitustilastot +LoadStatisticsText=Tarkkaile resurssien k\u00E4ytt\u00F6\u00E4 ja seuraa, onko tarvetta lis\u00E4t\u00E4 kapasiteettia (tietokoneita) k\u00E4\u00E4nn\u00F6sty\u00F6t\u00E4 varten. +Manage\ Jenkins=S\u00E4\u00E4d\u00E4 Jenkinsia +Manage\ Nodes=Hallitse Jenkinsin solmupisteit\u00E4 +Manage\ Plugins=Hallinnoi liit\u00E4nn\u00E4isi\u00E4 Prepare\ for\ Shutdown=Valmistaudu alasajoon -Reload\ Configuration\ from\ Disk=Lataa asetukset levylt\u00E4 -Script\ Console=Skripti konsoli +Reload\ Configuration\ from\ Disk=Uudelleenlataa konfiguraatio +Script\ Console=Skriptikonsoli Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Pys\u00E4ytt\u00E4\u00E4 uusien k\u00E4\u00E4nn\u00F6ksien k\u00E4ynnist\u00E4misen niin ett\u00E4 j\u00E4rjestelm\u00E4 voidaan ajaa turvallisesti alas. System\ Information=J\u00E4rjestelm\u00E4tiedot System\ Log=J\u00E4rjestelm\u00E4loki diff --git a/core/src/main/resources/lib/hudson/buildListTable_fi.properties b/core/src/main/resources/lib/hudson/buildListTable_fi.properties new file mode 100644 index 0000000000..82e03361e0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_fi.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. + +Build=K\u00E4\u00E4nn\u00F6s +Console\ output=Konsolituloste +Status=Status diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_fi.properties b/core/src/main/resources/lib/hudson/buildProgressBar_fi.properties index 8288d47bad..da8da8efb4 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_fi.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Aloitettiin {0} sitten
    Arvioitu valmistumis aika: {1} +text=Aloitettiin {0} sitten
    Arvioitu valmistumisaika: {1} diff --git a/core/src/main/resources/lib/hudson/executors_fi.properties b/core/src/main/resources/lib/hudson/executors_fi.properties index 19e2d5e9f0..f13404a568 100644 --- a/core/src/main/resources/lib/hudson/executors_fi.properties +++ b/core/src/main/resources/lib/hudson/executors_fi.properties @@ -25,6 +25,6 @@ Building=K\u00E4\u00E4nnet\u00E4\u00E4n Idle=Joutilas Master=P\u00E4\u00E4llikk\u00F6 Offline=ei yhteytt\u00E4 -Status=Status +Status=Tila offline=ei yhteytt\u00E4 terminate\ this\ build=Keskeyt\u00E4 k\u00E4\u00E4nt\u00E4minen diff --git a/core/src/main/resources/lib/hudson/iconSize_fi.properties b/core/src/main/resources/lib/hudson/iconSize_fi.properties index 59ded19330..8bdd1b0c2a 100644 --- a/core/src/main/resources/lib/hudson/iconSize_fi.properties +++ b/core/src/main/resources/lib/hudson/iconSize_fi.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Ikoni koko +Icon=Ikoni diff --git a/core/src/main/resources/lib/hudson/newFromList/form_fi.properties b/core/src/main/resources/lib/hudson/newFromList/form_fi.properties new file mode 100644 index 0000000000..0ddc7e8b6e --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=Kopioi diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_fi.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_fi.properties new file mode 100644 index 0000000000..f088c4562f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Directory=Hakemisto diff --git a/core/src/main/resources/lib/hudson/queue_fi.properties b/core/src/main/resources/lib/hudson/queue_fi.properties index 651c9b4473..d9376cea1a 100644 --- a/core/src/main/resources/lib/hudson/queue_fi.properties +++ b/core/src/main/resources/lib/hudson/queue_fi.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Build\ Queue=K\u00E4\u00E4nn\u00F6sjono +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkinsin alasajo alkaa pian. Enempi\u00E4 k\u00E4\u00E4nn\u00F6ksi\u00E4 ei nyt aloiteta. No\ builds\ in\ the\ queue.=Ei k\u00E4\u00E4nn\u00F6ksi\u00E4 jonossa +cancel=keskeyt\u00E4 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_fi.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_fi.properties new file mode 100644 index 0000000000..1d9b8bb5fa --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_fi.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. + +License=Lisenssi +Maven\ ID=Maven tunniste +Name=Nimi diff --git a/core/src/main/resources/lib/layout/layout_fi.properties b/core/src/main/resources/lib/layout/layout_fi.properties index 38497385d5..939cbb94de 100644 --- a/core/src/main/resources/lib/layout/layout_fi.properties +++ b/core/src/main/resources/lib/layout/layout_fi.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +DISABLE\ AUTO\ REFRESH=AUTOM. P\u00C4IVITYS POIS P\u00C4\u00C4LT\u00C4 ENABLE\ AUTO\ REFRESH=AUTOM. P\u00C4IVITYS P\u00C4\u00C4LLE -Page\ generated=Sivu luotiin +Page\ generated=Sivu generoitiin logout=Kirjaudu ulos +search=etsi +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_fi.properties b/core/src/main/resources/lib/layout/main-panel_fi.properties new file mode 100644 index 0000000000..44d0a9b28f --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkinsin alasajo alkaa pian diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_fi.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_fi.properties new file mode 100644 index 0000000000..88bb89bb7c --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_fi.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduulit 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 new file mode 100644 index 0000000000..fb0769f870 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_fi.properties @@ -0,0 +1,26 @@ +# 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=Ota projekti pois k\u00E4yt\u00F6st\u00E4 +Last\ Successful\ Artifacts=Viimeinen onnistunut artifakti +Recent\ Changes=Viimeisimm\u00E4t muutokset +Workspace=Ty\u00F6tila diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_fi.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_fi.properties new file mode 100644 index 0000000000..e131249968 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_fi.properties @@ -0,0 +1,23 @@ +# 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. + +body=K\u00E4\u00E4nn\u00E4 maven2 projekti. Jenkins hy\u00F6dynt\u00E4\u00E4 POM tiedostoja ja v\u00E4hent\u00E4\u00E4 huomattavasti konfiguroinnin tarvetta. -- GitLab From 380f75e350493fc7cebf4f5fa1fa9ca1023e7bf5 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 121/158] Community-contributed localization for French (fr) --- .../PluginManager/advanced_fr.properties | 3 +++ .../hudson/PluginManager/index_fr.properties | 4 +++ .../PluginManager/installed_fr.properties | 7 +++-- .../hudson/PluginManager/table_fr.properties | 1 + .../OldDataMonitor/manage_fr.properties | 8 ++++++ .../message_fr.properties | 25 ++++++++++++++++++ .../sidepanel_fr.properties | 1 + .../config_fr.properties | 24 +++++++++++++++++ .../matrix/MatrixProject/index_fr.properties | 4 +++ .../model/AbstractBuild/index_fr.properties | 5 ++-- .../AbstractBuild/sidepanel_fr.properties | 4 +-- .../model/AbstractBuild/tasks_fr.properties | 7 ++++- .../model/AbstractItem/delete_fr.properties | 1 + .../AbstractProject/changes_fr.properties | 2 +- .../model/AbstractProject/main_fr.properties | 1 + .../AbstractProject/sidepanel_fr.properties | 4 +-- .../wipeOutWorkspaceBlocked_fr.properties | 24 +++++++++++++++++ .../hudson/model/AllView/noJob_fr.properties | 2 +- .../UserIdCause/description_fr.properties | 1 + .../model/CauseAction/summary_fr.properties | 23 ++++++++++++++++ .../ExternalJob/newJobDetail_fr.properties | 6 +---- .../newJobDetail_fr.properties | 5 +--- .../model/Job/buildTimeTrend_fr.properties | 2 ++ .../hudson/model/Job/index_fr.properties | 1 + .../ListView/configure-entries_fr.properties | 7 ++++- .../model/LoadStatistics/main_fr.properties | 1 + .../ProxyView/configure-entries_fr.properties | 24 +++++++++++++++++ .../Run/KeepLogBuildBadge/badge_fr.properties | 23 ++++++++++++++++ .../hudson/model/Run/configure_fr.properties | 26 +++++++++++++++++++ .../hudson/model/Run/console_fr.properties | 2 +- .../hudson/model/Run/delete_fr.properties | 2 +- .../DownloadJob/Failure/status_fr.properties | 1 + .../RestartJenkinsJob/row_fr.properties | 23 ++++++++++++++++ .../model/UpdateCenter/body_fr.properties | 23 ++++++++++++++++ .../hudson/model/User/configure_fr.properties | 2 +- .../hudson/model/User/index_fr.properties | 23 ++++++++++++++++ .../model/View/People/index_fr.properties | 4 ++- .../hudson/model/View/builds_fr.properties | 4 +-- .../hudson/model/View/newJob_fr.properties | 2 ++ .../hudson/model/View/sidepanel_fr.properties | 4 +-- .../message_fr.properties | 23 ++++++++++++++++ .../config_fr.properties | 1 + .../_entryForm_fr.properties | 10 +++---- .../index_fr.properties | 1 + .../LDAPSecurityRealm/config_fr.properties | 1 + .../DefaultCrumbIssuer/config_fr.properties | 23 ++++++++++++++++ .../hudson/tasks/Mailer/global_fr.properties | 7 +++-- .../tasks/junit/CaseResult/list_fr.properties | 26 +++++++++++++++++++ .../tasks/junit/History/index_fr.properties | 23 ++++++++++++++++ .../MetaTabulatedResult/body_fr.properties | 4 +-- .../test/TestObject/sidepanel_fr.properties | 3 ++- .../ToolInstallation/global_fr.properties | 2 +- .../BuildAction/index_fr.properties | 25 ++++++++++++++++++ .../BuildButtonColumn/column_fr.properties | 2 +- .../DefaultViewsTabBar/viewTabs_fr.properties | 2 +- .../columnHeader_fr.properties | 2 +- .../columnHeader_fr.properties | 2 +- .../columnHeader_fr.properties | 2 +- .../StatusColumn/columnHeader_fr.properties | 2 +- .../WeatherColumn/columnHeader_fr.properties | 2 +- .../BuildHistoryWidget/entries_fr.properties | 1 + .../widgets/HistoryWidget/entry_fr.properties | 24 +++++++++++++++++ .../widgets/HistoryWidget/index_fr.properties | 6 ++--- .../model/Jenkins/configure_fr.properties | 2 ++ .../model/Jenkins/downgrade_fr.properties | 24 +++++++++++++++++ .../model/Jenkins/loginError_fr.properties | 1 + .../model/Jenkins/manage_fr.properties | 2 +- .../model/Jenkins/systemInfo_fr.properties | 4 +++ .../resources/lib/form/textarea_fr.properties | 24 +++++++++++++++++ .../lib/hudson/artifactList_fr.properties | 23 ++++++++++++++++ .../lib/hudson/buildCaption_fr.properties | 2 +- .../lib/hudson/buildListTable_fr.properties | 6 ++--- .../lib/hudson/buildProgressBar_fr.properties | 2 +- .../lib/hudson/executors_fr.properties | 10 +++---- .../lib/hudson/project/matrix_fr.properties | 2 +- .../resources/lib/hudson/queue_fr.properties | 2 +- .../resources/lib/hudson/rssBar_fr.properties | 8 +++--- .../lib/hudson/scriptConsole_fr.properties | 6 +---- .../hudson/thirdPartyLicenses_fr.properties | 24 +++++++++++++++++ .../resources/lib/layout/layout_fr.properties | 9 ++++--- .../maven/MavenModuleSet/index_fr.properties | 3 +++ .../MavenModuleSet/modules_fr.properties | 2 +- .../MavenModuleSetBuild/main_fr.properties | 2 +- .../index_fr.properties | 4 +-- 84 files changed, 612 insertions(+), 80 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fr.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_fr.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_fr.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_fr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties create mode 100644 core/src/main/resources/hudson/model/User/index_fr.properties create mode 100644 core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/CaseResult/list_fr.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_fr.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_fr.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_fr.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties create mode 100644 core/src/main/resources/lib/form/textarea_fr.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_fr.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_fr.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties index 07b73d83eb..5b35621f0d 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_fr.properties @@ -24,11 +24,14 @@ HTTP\ Proxy\ Configuration=Configuration du proxy HTTP Submit=Soumettre Upload\ Plugin=Soumettre un plugin File=Fichier +Update\ Site=Site de mise \u00E0 jour Upload=Soumettre lastUpdated=Dernière mise à jour: il y a {0} Check\ now=Vérifier maintenant uploadtext=Indiquez ici le chemin vers un plugin à ajouter à ce serveur Jenkins +Proxy\ Needs\ Authorization=Le proxy n\u00E9cessite une authentification Server=Serveur Port= User\ name=Nom d''utilisateur +No\ Proxy\ for=Pas de proxy pour Password=Mot de passe diff --git a/core/src/main/resources/hudson/PluginManager/index_fr.properties b/core/src/main/resources/hudson/PluginManager/index_fr.properties index 1579ef4c1b..ecd3a9d140 100644 --- a/core/src/main/resources/hudson/PluginManager/index_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/index_fr.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Tous +None=Aucun +Select=S\u00E9lectionnez UpdatePageDescription=Cette page liste les mises à jour des plugins en cours d''utilisation. +UpdatePageLegend=Les lignes d\u00E9sactiv\u00E9es sont d\u00E9j\u00E0 mises \u00E0 jour et attendent un red\u00E9marrage. Les lignes gris\u00E9es mais s\u00E9lectionnables sont en cours ou en \u00E9chec. diff --git a/core/src/main/resources/hudson/PluginManager/installed_fr.properties b/core/src/main/resources/hudson/PluginManager/installed_fr.properties index 4aff97ef93..e66ab64597 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_fr.properties @@ -27,6 +27,9 @@ Restart\ Once\ No\ Jobs\ Are\ Running=Red\u00E9marrer quand tous les travaux son Uncheck\ to\ disable\ the\ plugin=D\u00e9cochez pour d\u00e9sactiver le plugin Enabled=Activ\u00e9 Name=Nom +Unpin=D\u00E9tacher Version=Version -Previously\ installed\ version=Version pr\u00e9c\u00e9dement install\u00e9e -downgradeTo=Downgrader vers {0} +Pinned=Epingl\u00E9 +Previously\ installed\ version=Version pr\u00E9c\u00E9dente +downgradeTo=R\u00E9trograder vers {0} +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/table_fr.properties b/core/src/main/resources/hudson/PluginManager/table_fr.properties index 8dec3e802d..289e71cc74 100644 --- a/core/src/main/resources/hudson/PluginManager/table_fr.properties +++ b/core/src/main/resources/hudson/PluginManager/table_fr.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Cochez pour installer le plugin +Click\ this\ heading\ to\ sort\ by\ category=Cliquez sur cette rubrique pour trier par cat\u00E9gorie Install=Installer Installed=Install\u00E9e Name=Nom diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties index 396316f0a8..7eec7b7d4a 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_fr.properties @@ -20,9 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Discard\ Unreadable\ Data=Supprimer les donn\u00E9es non lisibles Error=Erreur +Manage\ Old\ Data=Gestion des donn\u00E9es p\u00E9rim\u00E9es Name=Nom +No\ old\ data\ was\ found.=Aucune donn\u00E9e obsol\u00E8te n''a \u00E9t\u00E9 trouv\u00E9e. Type=Type Unreadable\ Data=Donn\u00E9es illisibles Upgrade=Mettre \u00E0 jour Version=Version +blurb.1=Lorsqu''''''il y a des changements dans la fa\u00E7on de stocker les donn\u00E9es sur le disque, Jenkins utilise la strat\u00E9gie suivante: les donn\u00E9es sont migr\u00E9es vers la nouvelle structure lors de son chargement, mais le fichier n''''''est pas sauv\u00E9 dans le nouveau format. Cela permet de ramener Jenkins \u00E0 une version ant\u00E9rieure si besoin. Cependant, cela peut aussi laisser des donn\u00E9es dans le vieux format ind\u00E9finiment. La table ci-dessous liste les fichiers contenant de telles donn\u00E9es, ainsi que les versions de Jenkins o\u00F9 la structure de donn\u00E9es a \u00E9t\u00E9 modifi\u00E9e. +blurb.2=Parfois des erreurs apparaissent lors de la lecture de donn\u00E9es de configuration (si un plugin ajoute des donn\u00E9es et que ce plugin est d\u00E9sactiv\u00E9 ult\u00E9rieurement, si le code de migration ne prend pas en compte les changements de structure, ou si Jenkins est ramen\u00E9 en arri\u00E8re apr\u00E8s qu''''''il ait d\u00E9j\u00E0 \u00E9crit des donn\u00E9es non lisibles par l''''''ancienne version). Ces erreurs sont logg\u00E9es, mais les donn\u00E9es non lisibles sont ensuite ignor\u00E9es, permettant \u00E0 Jenkins de d\u00E9marrer et fonctionner correctement. +blurb.3=Le formulaire ci-dessous peut \u00EAtre utilis\u00E9 pour re-sauvegarder ces fichiers dans le format actuel. Cela implique qu''une r\u00E9installation de Jenkins \u00E0 une version ant\u00E9rieure \u00E0 la version s\u00E9lectionn\u00E9e ne sera pas capable de lire les donn\u00E9es stock\u00E9es dans le nouveau format. Notez que simplement utiliser Jenkins pour cr\u00E9er et configurer des jobs et ex\u00E9cuter des builds peut sauver des donn\u00E9es qui ne sont pas lisible par des versions plus vielles de Jenkins, m\u00EAme si ce formulaire est utilis\u00E9. De plus, si des erreurs concernant des donn\u00E9es illisibles sont report\u00E9es sur la partie droite du tableau ci-dessus, notez que ces donn\u00E9es seront perdues lorsque le fichier sera re-sauvegard\u00E9. +blurb.4=Le code supportant ces migrations de donn\u00E9es pourra finalement \u00EAtre enlev\u00E9. La compatibilit\u00E9 sera conserv\u00E9e pendant au moins 150 releases depuis le changement de structure. Les versions plus anciennes que cela sont en gras ci-dessus, et il est recommand\u00E9 de re-sauvegarder ces fichiers. +blurb.6=Il est acceptable de laisser des donn\u00E9es illisible dans ces fichiers, puisque Jenkins les ignorera. Pour \u00E9viter les messages de log au d\u00E9marrage de Jenkins, vous pouvez supprimer d\u00E9finitivement les donn\u00E9es illisibles en re-sauvant ces fichiers en utilisant le bouton ci-dessous. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.properties new file mode 100644 index 0000000000..0c99f7367c --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_fr.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. + +Dismiss=Rejeter +More\ Info=Plus d''informations +blurb=Il semble que votre configuration "reverse proxy" soit erron\u00E9e diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_fr.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_fr.properties index 3178372cc6..a7c3cc7c48 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_fr.properties @@ -22,6 +22,7 @@ Back\ to\ Dashboard=Retour au tableau de bord Manage\ Jenkins=Administrer Jenkins +Log\ Levels=Niveaux des logs Logger\ List=Liste des loggers All\ Logs=Tous les logs New\ Log\ Recorder=Nouveau enregistreur de log diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fr.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fr.properties new file mode 100644 index 0000000000..e5d31cf342 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_fr.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=Consid\u00E9rer le texte comme du HTML et l''utiliser sans le traduire +disableSyntaxHighlighting=D\u00E9sactiver la coloration syntaxique 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 37ea62333c..684d982824 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_fr.properties @@ -20,4 +20,8 @@ # 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 Project=projet +This\ project\ is\ currently\ disabled=Ce projet est d\u00E9sactiv\u00E9 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties index 3f56a76a35..eb1bc75d9d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_fr.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +on=sur startedAgo=Démarré il y a {0} -Build=Build +Build=Compilation Changes\ in\ dependency=Changements dans les dépendances detail=détails Not\ yet\ determined=Non encore déterminé @@ -32,5 +33,5 @@ Downstream\ Builds=Builds en aval none=aucun Permalinks=Liens permanents Build\ number=Num\u00E9ro de build -Build\ Artifacts=Artefacts du build +Build\ Artifacts=Artefacts de la construction Took=A pris diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties index 7bc4995589..90dd6f53e8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_fr.properties @@ -25,5 +25,5 @@ Status=Statut Changes=Changements Console\ Output=Sortie console raw=brut -Previous\ Build=Build précédent -Next\ Build=Build suivant +Previous\ Build=Construction pr\u00E9c\u00E9dente +Next\ Build=Construction suivante diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties index 3369357c3d..e7fbfd7f3d 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_fr.properties @@ -21,7 +21,12 @@ # THE SOFTWARE. Back\ to\ Project=Retour au Projet +Build\ Now=Construire maintenant +Build\ scheduled=Construction planifi\u00E9e Changes=Changements -Console\ Output=Sortie de la console +Configure=Configurer +Console\ Output=Sortie Console +Edit\ Build\ Information=Informations du Build Status=Statut +View\ Build\ Information=Voir les infos de compilation raw=brut diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties index 2ce2983a91..729b885048 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_fr.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=Etes-vous sûr de vouloir supprimer ce job? Yes=Oui +blurb=Etes vous sure de vouloir supprimer ce {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties index 7a1f9cc5fb..faa831ea94 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. changes.title=Changements dans {0} -Changes=Changements +Changes=Modifications from.label=de #{0} to.label=à #{0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties index 6733607417..825f4f1f8c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_fr.properties @@ -22,5 +22,6 @@ Workspace=Espace de travail Recent\ Changes=Changements récents +Latest\ Console\ output=Derni\u00E8re sortie de la console Latest\ Test\ Result=Derniers résultats des tests Last\ Successful\ Artifacts=Derniers artefacts obtenus avec succès diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties index d1929a4ab9..d7c058155d 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_fr.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Dashboard=Retour au tableau de bord -Status=Statut +Status=\u00C9tat Changes=Modifications Workspace=Espace de travail delete=Supprimer ce {0} Configure=Configurer -Build\ scheduled=Build programmé +Build\ scheduled=Construction programm\u00E9e Wipe\ Out\ Workspace=Effacer le r\u00E9pertoire de travail diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_fr.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_fr.properties new file mode 100644 index 0000000000..fc5b997f91 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspaceBlocked_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Error:\ Wipe\ Out\ Workspace\ blocked\ by\ SCM=Erreur : La suppression de l''''espace de travail a été bloquée par le SCM +The\ SCM\ for\ this\ project\ has\ blocked\ this\ attempt\ to\ wipe\ out\ the\ project''s\ workspace.=Le SCM de ce projet a bloqué la tentative de suppression de l''''espace de travail de ce projet diff --git a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties index b105d258be..5be9024431 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_fr.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Welcome\ to\ Jenkins\!=Bienvenue sur Jenkins ! -newJob=Lancez-vous et créez un nouveau job. +newJob=Veuillez cr\u00E9ez un nouveau job pour d\u00E9marrer. login=Vous devez vous \ identifier \ diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties index b02e0de047..c47f4c09de 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_fr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Lanc\u00E9 par l''usager anonyme started_by_user=Lanc\u00e9 par l''utilisateur {1} diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_fr.properties b/core/src/main/resources/hudson/model/CauseAction/summary_fr.properties new file mode 100644 index 0000000000..6a214cac4c --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Ntimes=({0} fois) diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_fr.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_fr.properties index a126c55331..fd11eefbc0 100644 --- a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_fr.properties +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_fr.properties @@ -20,9 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Ce type de job permet de suivre l''exécution d''un process lancé hors de Jenkins, \ - même sur une machine distante. Cette option permet l''utilisation de Jenkins \ - comme tableau de bord de votre environnement d''automatisation. Voir \ - la documentation pour plus de détails. +body=Ce type de t\u00E2che permet de suivre l''''ex\u00E9cution d''''un process lanc\u00E9 en dehors de Hudson, m\u00EAme sur une machine distante.
    Cette option permet l''''utilisation de Hudson comme tableau de bord de votre environnement d''''automatisation.
    Voir la documentation pour plus de d\u00E9tails. diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties index 288f452209..854403a6f5 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_fr.properties @@ -20,8 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Ceci est la fonction principale de Jenkins qui sert à builder (construire) votre projet. \ - Vous pouvez intégrer tous les outils de gestion de version avec tous les systèmes de build. \ - Il est même possible d''utiliser Jenkins pour tout autre chose qu''un build logiciel. +body=Ceci est la fonction principale de Hudson qui sert \u00E0 builder (construire) votre projet.
    Vous pouvez int\u00E9grer tous les outils de gestion de version avec tous les syst\u00E8mes de build.
    Il est m\u00EAme possible d''''utiliser Hudson pour tout autre chose qu''''un build logiciel. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties index 022f1f3ef9..11b3336883 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_fr.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Timeline=Chronologie title={0} Courbe de tendance de la durée du build Build=Build +Build\ Time\ Trend=Tendance des temps des builds Duration=Durée Slave=Esclave More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Plus de 1 build est nécessaire pour le rapport de tendance. diff --git a/core/src/main/resources/hudson/model/Job/index_fr.properties b/core/src/main/resources/hudson/model/Job/index_fr.properties index 1e0070fe93..14d18b5485 100644 --- a/core/src/main/resources/hudson/model/Job/index_fr.properties +++ b/core/src/main/resources/hudson/model/Job/index_fr.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. This\ project\ is\ currently\ disabled=Ce projet est actuellement désactivé +Disable\ Project=D\u00E9sactiver le Projet Enable=Activer diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties index 6c8d6df3ac..df6410cc92 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_fr.properties @@ -21,7 +21,12 @@ # THE SOFTWARE. Add\ column=Ajouter une colonne +All\ selected\ jobs=Toutes les t\u00E2ches s\u00E9lectionn\u00E9es Columns=Colonnes -Jobs= +Disabled\ jobs\ only=Uniquement les t\u00E2ches d\u00E9sactiv\u00E9es +Enabled\ jobs\ only=Uniquement les t\u00E2ches activ\u00E9es +Job\ Filters=Filtres pour les t\u00E2ches +Jobs=T\u00E2ches +Status\ Filter=\u00C9tat du filtre Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Utilisez une expression r\u00E9guli\u00E8re pour inclure les jobs dans la vue Regular\ expression=Expression r\u00E9guli\u00E8re diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties index 61adb78213..a2c5c44989 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_fr.properties @@ -24,6 +24,7 @@ title=Statistiques de l''utilisation du syst Timespan=Durée Short=Courte Medium=Moyenne +Load\ statistics\ graph=Graphique des statistiques de charge Long=Longue blurb=\ Les statistiques d''utilisation du système permettre de garder trace de trois métriques de mesure de la charge: \ diff --git a/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties b/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties new file mode 100644 index 0000000000..8bd5490935 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/configure-entries_fr.properties @@ -0,0 +1,24 @@ +# 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. + +The\ name\ of\ a\ global\ view\ that\ will\ be\ shown.=Le nom de la vue globale qui sera affich\u00E9e. +View\ name=Nom de la vue diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties new file mode 100644 index 0000000000..9ed9229f93 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=Garder ce build ind\u00E9finiment diff --git a/core/src/main/resources/hudson/model/Run/configure_fr.properties b/core/src/main/resources/hudson/model/Run/configure_fr.properties new file mode 100644 index 0000000000..0be558de21 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_fr.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Description +DisplayName=Nom \u00E0 afficher +LOADING=CHARGEMENT +Save=Sauvegarder diff --git a/core/src/main/resources/hudson/model/Run/console_fr.properties b/core/src/main/resources/hudson/model/Run/console_fr.properties index b9a29171d3..335c9e41e7 100644 --- a/core/src/main/resources/hudson/model/Run/console_fr.properties +++ b/core/src/main/resources/hudson/model/Run/console_fr.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Console\ Output=Sortie Console -View\ as\ plain\ text=Voir en mode texte simple +View\ as\ plain\ text=Version texte simple skipSome=Saute {0,number,integer} Ko. Log complet diff --git a/core/src/main/resources/hudson/model/Run/delete_fr.properties b/core/src/main/resources/hudson/model/Run/delete_fr.properties index 75accf5e9a..379810569a 100644 --- a/core/src/main/resources/hudson/model/Run/delete_fr.properties +++ b/core/src/main/resources/hudson/model/Run/delete_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Supprimer ce build +Delete\ this\ build=Supprimer cette construction diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties index c2818cda8c..572bc275b8 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Failure/status_fr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Details=D\u00E9tails Failure=\u00C9chec diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties new file mode 100644 index 0000000000..bf057c3815 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Red\u00E9marrer Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties new file mode 100644 index 0000000000..61d6621779 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_fr.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Red\u00E9marrer Jenkins quand l''''installation est termin\u00E9e et qu''''aucun job n''''est en cours diff --git a/core/src/main/resources/hudson/model/User/configure_fr.properties b/core/src/main/resources/hudson/model/User/configure_fr.properties index e1af6344a6..a802e06246 100644 --- a/core/src/main/resources/hudson/model/User/configure_fr.properties +++ b/core/src/main/resources/hudson/model/User/configure_fr.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Your\ name=Votre nom -Description= +Description=Pr\u00E9sentation Save=Sauvegarder title=Configuration de l''utilisateur ''{0}'' diff --git a/core/src/main/resources/hudson/model/User/index_fr.properties b/core/src/main/resources/hudson/model/User/index_fr.properties new file mode 100644 index 0000000000..328efdb183 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Identifiant d''utilisateur Jenkins diff --git a/core/src/main/resources/hudson/model/View/People/index_fr.properties b/core/src/main/resources/hudson/model/View/People/index_fr.properties index 362fec2217..2ea67bfbf9 100644 --- a/core/src/main/resources/hudson/model/View/People/index_fr.properties +++ b/core/src/main/resources/hudson/model/View/People/index_fr.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Name=Nom +Name=Nom complet +All\ People=Tout le monde Last\ Active=Dernière activité On=Sur People=Personnes +User\ Id=Identifiant diff --git a/core/src/main/resources/hudson/model/View/builds_fr.properties b/core/src/main/resources/hudson/model/View/builds_fr.properties index 4e0bb5ec5d..b483b8129d 100644 --- a/core/src/main/resources/hudson/model/View/builds_fr.properties +++ b/core/src/main/resources/hudson/model/View/builds_fr.properties @@ -21,5 +21,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -buildHistory=Historique des builds de {0} -Export\ as\ plain\ XML=Exporter au format XML \ No newline at end of file +buildHistory=Historique des constructions de {0} +Export\ as\ plain\ XML=Exporter au format XML diff --git a/core/src/main/resources/hudson/model/View/newJob_fr.properties b/core/src/main/resources/hudson/model/View/newJob_fr.properties index e83da6a657..298147e53d 100644 --- a/core/src/main/resources/hudson/model/View/newJob_fr.properties +++ b/core/src/main/resources/hudson/model/View/newJob_fr.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Job\ name=Nom de la t\u00E2che JobName=Nom du {0} +Copy\ existing\ job=Copier une t\u00E2che existante CopyExisting=Copier un {0} existant diff --git a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties index b832668020..f9bbeae0eb 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_fr.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. NewJob=Nouveau {0} -People=Personnes -Build\ History=Historique des constructions +People=Utlisateurs +Build\ History=Historique des compilations Edit\ View=\u00C9diter la vue Delete\ View=Supprimer la vue Project\ Relationship=Relations entre les projets diff --git a/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties new file mode 100644 index 0000000000..2db564e96e --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/MonitorMarkedNodeOffline/message_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Dismiss=Cacher diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fr.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fr.properties index fc64f7b4cf..fbb1cc44e2 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fr.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_fr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Remove\ user/group=Supprimer utilisateur/groupe User/group=Utilisateur/groupe Anonymous=Anonyme User/group\ to\ add=Utilisateur/groupe à ajouter diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties index 2e89b9a09f..5d7f372290 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/_entryForm_fr.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Username= -Password= -Confirm\ password= -Full\ name= -E-mail\ address= +Username=Nom d''utilisateur +Password=Mot de passe +Confirm\ password=Confirmation du mot de passe +Full\ name=Nom +E-mail\ address=Adresse m\u00E9l Enter\ text\ as\ shown= diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties index abb00f3b76..2fcee527a5 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_fr.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Users=Utilisateurs blurb=\ Ces utilisateurs peuvent se logguer sur Jenkins. C''est le groupe contenant cette liste, \ qui contient également les utilisateus créés automatiquement qui ont simplement fait des commits sur certains \ diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_fr.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_fr.properties index 800d156668..5032d007e0 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_fr.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_fr.properties @@ -26,4 +26,5 @@ User\ search\ base=Base pour la recherche d''utilisateurs User\ search\ filter=Filtre pour la recherche d''utilisateurs Manager\ DN=DN du gestionnaire Manager\ Password=Mot de passe du gestionnaire +Allow\ blank\ rootDN=Autoriser un rootDN vide Group\ search\ base=Base pour la recherche de groupes diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties new file mode 100644 index 0000000000..e04ac17b1c --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_fr.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=Activer la compatibilit\u00E9 proxy diff --git a/core/src/main/resources/hudson/tasks/Mailer/global_fr.properties b/core/src/main/resources/hudson/tasks/Mailer/global_fr.properties index 9f4afcfbe0..ea89fcfd0b 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/global_fr.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/global_fr.properties @@ -21,11 +21,14 @@ # THE SOFTWARE. E-mail\ Notification=Notification par email +Test\ configuration=Tester la configuration Test\ configuration\ by\ sending\ e-mail=Tester la configuration en envoyant un email -Test\ e-mail\ recipient=Destinataire du email de test +Test\ configuration\ by\ sending\ test\ e-mail=Tester la configuration en envoyant un e-mail de test +Test\ e-mail\ recipient=Destinataire du courriel de test SMTP\ server=Serveur SMTP Charset=Jeu de caract\u00e8res -Default\ user\ e-mail\ suffix=Suffixe par d\u00c8faut des emails des utilisateurs +Default\ user\ e-mail\ suffix=Suffixe par d\u00E9faut des emails des utilisateurs +Sender\ E-mail\ Address=Adresse e-mail de l''''exp\u00E9diteur System\ Admin\ E-mail\ Address=Adresse email de l''administrateur syst\u00cbme Jenkins\ URL=URL de Jenkins User\ Name=Nom d''utilisateur diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/list_fr.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/list_fr.properties new file mode 100644 index 0000000000..256a8197bb --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/list_fr.properties @@ -0,0 +1,26 @@ +# 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=Construction +Test\ Description=Description +Test\ Duration=Dur\u00E9e +Test\ Result=R\u00E9sultat diff --git a/core/src/main/resources/hudson/tasks/junit/History/index_fr.properties b/core/src/main/resources/hudson/tasks/junit/History/index_fr.properties new file mode 100644 index 0000000000..8b603e2c07 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/History/index_fr.properties @@ -0,0 +1,23 @@ +# 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. + +title=Historique pour {0} diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fr.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fr.properties index 1a13384d7a..2b854cafb0 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fr.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_fr.properties @@ -27,6 +27,6 @@ Test\ Name=Nom du test Duration=Dur\u00E9e Age=Age All\ Tests=Tous les tests -Fail=Echec -diff=diif +Fail=\u00C9chec +diff=diff Total=Total diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_fr.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_fr.properties index e19774e035..2f8270bd3c 100644 --- a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_fr.properties +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_fr.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. History=Historique -Previous\ Build=Build pr\u00E9c\u00E9dente +Next\ Build=Build suivant +Previous\ Build=Build Pr\u00E9c\u00E9dent diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_fr.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_fr.properties index 54578f0ace..d020ce6543 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_fr.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -description=Nombre d''installation {0} sur ce syst\u00E8me +description=Nombre d''''installations {0} sur ce syst\u00E8me label.add=Ajouter {0} label.delete=Supprimer {0} title={0} installations diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_fr.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_fr.properties new file mode 100644 index 0000000000..ce3b8096e7 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_fr.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. + +Polling\ Log=Journal de d\u00E9clenchement +View\ as\ plain\ text=Voir en texte +blurb=Cette page affiche le journal de ce qui a d\u00E9clench\u00E9 cette build. diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties index bc8ea1ba9f..615b4cb821 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Demander une construction +Schedule\ a\ build=Programmer une compilation diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fr.properties index 39adade7bc..4411214d77 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fr.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View=Nouvelle Vue +New\ View=Nouvelle vue diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_fr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_fr.properties index e9a8803796..dbfdf98900 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_fr.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Dernière durée +Last\ Duration=Derni\u00E8re Dur\u00E9e diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fr.properties index 2bc53cd489..0c48252a8b 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fr.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Dernier échec +Last\ Failure=Dernier Echec diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_fr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_fr.properties index 61e976967d..11d070d918 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_fr.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Dernier succès +Last\ Success=Dernier Succ\u00E8s diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_fr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_fr.properties index f3e5f3707d..9915fe36e1 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_fr.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Statut de la derni\u00E8re construction +Status\ of\ the\ last\ build=Statut de la derni\u00E8re compilation diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_fr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_fr.properties index 8c137326ec..d69a8c4a5b 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_fr.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Graphe montrant les statuts de toutes les construction r\u00E9centes +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Graphe montrant les statuts de toutes les constructions r\u00E9centes diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties index c88137216e..d8e31c7b1e 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_fr.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +cancel\ this\ build=annuler ce build pending=à lancer diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fr.properties new file mode 100644 index 0000000000..88cb848278 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Sortie Console +Console\ output=Sortie de la console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_fr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_fr.properties index 85246ea989..3851701bf6 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_fr.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -trend=tendance -for\ all=tous les builds -for\ failures=tous les échecs +trend=Tendances +for\ all=toutes les constructions +for\ failures=de tous les \u00E9checs More\ ...=Détails... diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties index cbdc83bce1..39551f1ab6 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_fr.properties @@ -33,6 +33,7 @@ Disable=D Access\ Control=Contrôle de l''accès Security\ Realm=Royaume pour la sécurité (Realm) Authorization=Autorisations +Workspace\ Root\ Directory=R\u00E9pertoire racine de l''espace de travail (workspace) name=Nom JDKs=JDK JDK\ installations=Installations des JDK @@ -44,6 +45,7 @@ statsBlurb=\ Aidez-nous à améliorer Jenkins en envoyant sous forme anonyme les statistiques d''utilisation et les rapports de crash au projet Jenkins. \#\ of\ executors=Nb d''exécuteurs Labels=Libellés +Build\ Record\ Root\ Directory=R\u00E9pertoire racine des builds Cloud= Add\ a\ new\ cloud=Ajouter un nouveau cloud Global\ properties=Propriétés globales diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties new file mode 100644 index 0000000000..f4b4be3658 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Restaurer la version pr\u00E9c\u00E9dente de Jenkins +buttonText=Revenir \u00E0 la version {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties index 60a60dd7c4..f9398c753e 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_fr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=Si vous \u00EAtes administrateur syst\u00E8me et que vous souspconer un probl\u00E8me de configuration, reportez vous \u00E0 la sortie console pour plus de d\u00E9tail Invalid\ login\ information.\ Please\ try\ again.=Identification invalide. Merci d''essayer à nouveau. Try\ again=Essayez à nouveau. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties index 58b63be3fc..f1384e5bb5 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_fr.properties @@ -31,7 +31,7 @@ System\ Log=Log syst SystemLogText=\ Le log système capture la sortie java.util.logging relative à Jenkins. Script\ Console=Console de script -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Exécute des scripts arbitraires pour l''administration, la résolution de problèmes ou pour un diagnostique. +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Ex\u00E9cute des scripts arbitraires pour l''''administration, la r\u00E9solution de probl\u00E8mes ou pour un diagnostic. Cancel\ Shutdown=Annuler la fermeture Prepare\ for\ Shutdown=Préparer à la fermeture Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Cesser d''ex\u00E9cuter de nouveaux builds, afin que le syst\u00E8me puisse se fermer. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties index 4f7cb19a15..4588c57375 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_fr.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=Nom +Pinned=Rep\u00E9r\u00E9 System\ Properties=Propriétés système +Enabled=En effet Environment\ Variables=Variables d''environnement +Version=Version diff --git a/core/src/main/resources/lib/form/textarea_fr.properties b/core/src/main/resources/lib/form/textarea_fr.properties new file mode 100644 index 0000000000..75ed6951ae --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_fr.properties @@ -0,0 +1,24 @@ +# 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. + +Hide\ preview=Masquer l''aper\u00E7u +Preview=Aper\u00E7u diff --git a/core/src/main/resources/lib/hudson/artifactList_fr.properties b/core/src/main/resources/lib/hudson/artifactList_fr.properties new file mode 100644 index 0000000000..98db46c735 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_fr.properties @@ -0,0 +1,23 @@ +# 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. + +View=Afficher diff --git a/core/src/main/resources/lib/hudson/buildCaption_fr.properties b/core/src/main/resources/lib/hudson/buildCaption_fr.properties index 4c82280294..774be45776 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_fr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=Progression +Progress=Avancement cancel=Annuler diff --git a/core/src/main/resources/lib/hudson/buildListTable_fr.properties b/core/src/main/resources/lib/hudson/buildListTable_fr.properties index d232f5719b..fd6e65d54f 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_fr.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Time\ Since=Date -Status=Statut -Build=Build +Time\ Since=Temps \u00E9coul\u00E9 +Status=\u00C9tat +Build=Construction Console\ output=Sortie console diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties index 7a162d8700..54c1d2aa13 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=D\u00E9marr\u00E9 il y a {0}
    Temps restant estim\u00E9 : {1} +text=D\u00E9marr\u00E9 il y a {0}
    Temps restant estim\u00E9 : {1} diff --git a/core/src/main/resources/lib/hudson/executors_fr.properties b/core/src/main/resources/lib/hudson/executors_fr.properties index 846bff3aca..d0b20a54dc 100644 --- a/core/src/main/resources/lib/hudson/executors_fr.properties +++ b/core/src/main/resources/lib/hudson/executors_fr.properties @@ -20,13 +20,13 @@ # 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 +Build\ Executor\ Status=\u00C9tat du lanceur de constructions +Status=Statut Master=Maître -offline=Déconnecté +offline=d\u00E9connect\u00E9 Dead=Hors service Idle=En attente -Building=En construction -terminate\ this\ build=Arrêter ce build +Building=En cours d''\u00E9xecution +terminate\ this\ build=arr\u00EAter ce build suspended=suspendu Offline=Déconnecté diff --git a/core/src/main/resources/lib/hudson/project/matrix_fr.properties b/core/src/main/resources/lib/hudson/project/matrix_fr.properties index 9e91f1ab59..953560a2a5 100644 --- a/core/src/main/resources/lib/hudson/project/matrix_fr.properties +++ b/core/src/main/resources/lib/hudson/project/matrix_fr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configurations= +Configurations=Configurations Configuration\ Matrix=Matrice de Configuration diff --git a/core/src/main/resources/lib/hudson/queue_fr.properties b/core/src/main/resources/lib/hudson/queue_fr.properties index ce00574bda..830009efef 100644 --- a/core/src/main/resources/lib/hudson/queue_fr.properties +++ b/core/src/main/resources/lib/hudson/queue_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build\ Queue=File d''attente des constructions -No\ builds\ in\ the\ queue.=Pas de construction en attente. +No\ builds\ in\ the\ queue.=File d''attente des constructions vide Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est en cours de fermeture. Aucun nouveau build ne sera lancé. cancel=Annuler appears\ to\ be\ stuck=semble être bloqué diff --git a/core/src/main/resources/lib/hudson/rssBar_fr.properties b/core/src/main/resources/lib/hudson/rssBar_fr.properties index 29627e43bf..6054466498 100644 --- a/core/src/main/resources/lib/hudson/rssBar_fr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_fr.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Légende -for\ all=toutes les constructions -for\ failures=tous les échecs -for\ just\ latest\ builds=pour les derni\u00E8res constructions seulement +Legend=L\u00E9gende +for\ all=pour toutes +for\ failures=pour tous les \u00E9checs +for\ just\ latest\ builds=juste pour les derniers \u00E9checs diff --git a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties index 1f871b24d1..b2904dc3d9 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_fr.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_fr.properties @@ -23,9 +23,5 @@ Script\ Console=Console de script Result=Résultat Run=Exécuter -description=\ - Entrez ici un script Groovy quelconque pour \ - l''exécuter sur le serveur. Utile pour la résolution de problèmes et le diagnostique. \ - Utilisez la commande ''println'' pour voir la sortie (si vous utilisez System.out, \ - cela ira vers la sortie standard du serveur, ce qui est plus complexe à voir.) Par exemple: +description=Entrez ici un script Groovy quelconque pour l''''ex\u00E9cuter sur le serveur.
    Utile pour la r\u00E9solution de probl\u00E8mes et le diagnostique.
    Utilisez la commande ''''println'''' pour voir la sortie (si vous utilisez System.out, cela ira vers la sortie standard du serveur, ce qui est plus complexe \u00E0 voir.)
    Par exemple : diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_fr.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_fr.properties new file mode 100644 index 0000000000..ac890ad00c --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_fr.properties @@ -0,0 +1,24 @@ +# 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. + +License=Licence +Name=Nom diff --git a/core/src/main/resources/lib/layout/layout_fr.properties b/core/src/main/resources/lib/layout/layout_fr.properties index e9713ecb94..39b15e91f2 100644 --- a/core/src/main/resources/lib/layout/layout_fr.properties +++ b/core/src/main/resources/lib/layout/layout_fr.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=rechercher searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Page g\u00E9n\u00E9r\u00E9e -logout=D\u00E9connexion -DISABLE\ AUTO\ REFRESH=ANNULER LE RAFRAICHISSEMENT AUTOMATIQUE -ENABLE\ AUTO\ REFRESH=ACTIVER LE RAFRAICHISSEMENT AUTOMATIQUE +Page\ generated=Page g\u00E9n\u00E9r\u00E9e le +logout=Se d\u00E9connecter +DISABLE\ AUTO\ REFRESH=ANNULER LE RAFRA\u00CECHISSEMENT AUTOMATIQUE +ENABLE\ AUTO\ REFRESH=ACTIVER LE RAFRA\u00CECHISSEMENT AUTOMATIQUE 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 2bd03a599e..5e4c5a6a74 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,7 +20,10 @@ # 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 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 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_fr.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_fr.properties index c42aad0446..f8db34bbee 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_fr.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_fr.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Modules= +Modules=Modules A\ build\ is\ in\ progress\ to\ parse\ the\ list\ of\ modules\ from\ POM.=Un build est en cours de parcours de la liste des modules fournis par le POM. text=\ Merci de lancer un build afin que Jenkins \ diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_fr.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_fr.properties index 72dcf73aee..d2a0d11e75 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_fr.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_fr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Module\ Builds=Builds des modules +Module\ Builds=Construction du module diff --git a/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties b/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties index eda1b7861b..f4f0860564 100644 --- a/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties +++ b/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_fr.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Test\ Result=Résultat des tests -Module= +Module=Module Fail=Echec diff=Différence -Total= +Total=Total -- GitLab From 02562c0c103ec9e3c81a94138c74411806046628 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 122/158] Community-contributed localization for Hebrew (he) --- .../hudson/AboutJenkins/index_he.properties | 23 +++++++++++++ .../hudson/PluginManager/index_he.properties | 23 +++++++++++++ .../hudson/PluginManager/tabBar_he.properties | 26 ++++++++++++++ .../hudson/PluginManager/table_he.properties | 27 +++++++++++++++ .../message_he.properties | 24 +++++++++++++ .../AbstractBuild/sidepanel_he.properties | 23 +++++++++++++ .../model/AbstractBuild/tasks_he.properties | 27 +++++++++++++++ .../AbstractProject/sidepanel_he.properties | 29 ++++++++++++++++ .../model/Computer/sidepanel_he.properties | 29 ++++++++++++++++ .../hudson/model/Run/console_he.properties | 24 +++++++++++++ .../ConnectionCheckJob/row_he.properties | 23 +++++++++++++ .../DownloadJob/Pending/status_he.properties | 23 +++++++++++++ .../Pending/status_he.properties | 23 +++++++++++++ .../RestartJenkinsJob/row_he.properties | 23 +++++++++++++ .../model/UpdateCenter/body_he.properties | 23 +++++++++++++ .../model/UpdateCenter/index_he.properties | 23 +++++++++++++ .../UpdateCenter/sidepanel_he.properties | 25 ++++++++++++++ .../hudson/model/View/sidepanel_he.properties | 27 +++++++++++++++ .../SecurityRealm/loginLink_he.properties | 23 +++++++++++++ .../SlaveComputer/sidepanel2_he.properties | 24 +++++++++++++ .../BuildButtonColumn/column_he.properties | 23 +++++++++++++ .../DefaultViewsTabBar/viewTabs_he.properties | 23 +++++++++++++ .../columnHeader_he.properties | 23 +++++++++++++ .../columnHeader_he.properties | 23 +++++++++++++ .../LastFailureColumn/column_he.properties | 23 +++++++++++++ .../columnHeader_he.properties | 23 +++++++++++++ .../StatusColumn/columnHeader_he.properties | 23 +++++++++++++ .../WeatherColumn/columnHeader_he.properties | 23 +++++++++++++ .../widgets/HistoryWidget/index_he.properties | 25 ++++++++++++++ .../model/Jenkins/manage_he.properties | 34 +++++++++++++++++++ .../form/repeatableDeleteButton_he.properties | 23 +++++++++++++ .../lib/hudson/buildCaption_he.properties | 24 +++++++++++++ .../lib/hudson/buildHealth_he.properties | 23 +++++++++++++ .../lib/hudson/buildProgressBar_he.properties | 23 +++++++++++++ .../hudson/editableDescription_he.properties | 23 +++++++++++++ .../lib/hudson/executors_he.properties | 27 +++++++++++++++ .../lib/hudson/iconSize_he.properties | 23 +++++++++++++ .../resources/lib/hudson/queue_he.properties | 25 ++++++++++++++ .../resources/lib/hudson/rssBar_he.properties | 26 ++++++++++++++ .../hudson/thirdPartyLicenses_he.properties | 24 +++++++++++++ .../resources/lib/layout/layout_he.properties | 27 +++++++++++++++ .../lib/layout/main-panel_he.properties | 23 +++++++++++++ .../maven/MavenBuild/actions_he.properties | 23 +++++++++++++ .../MavenModuleSet/actions_he.properties | 23 +++++++++++++ .../maven/MavenModuleSet/index_he.properties | 25 ++++++++++++++ 45 files changed, 1097 insertions(+) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_he.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_he.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_he.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_he.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_he.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_he.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_he.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_he.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_he.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_he.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_he.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_he.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_he.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_he.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_he.properties create mode 100644 core/src/main/resources/lib/hudson/executors_he.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_he.properties create mode 100644 core/src/main/resources/lib/hudson/queue_he.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_he.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties create mode 100644 core/src/main/resources/lib/layout/layout_he.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_he.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_he.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_he.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_he.properties b/core/src/main/resources/hudson/AboutJenkins/index_he.properties new file mode 100644 index 0000000000..d0067ef8a9 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_he.properties @@ -0,0 +1,23 @@ +# 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. + +about={0} \u05D0\u05D5\u05D3\u05D5\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 diff --git a/core/src/main/resources/hudson/PluginManager/index_he.properties b/core/src/main/resources/hudson/PluginManager/index_he.properties new file mode 100644 index 0000000000..2d4817e9ea --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_he.properties @@ -0,0 +1,23 @@ +# 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. + +UpdatePageDescription=\u05D3\u05E3 \u05D6\u05D4 \u05DE\u05E6\u05D9\u05D2 \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05DC\u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \u05E9\u05D4\u05E0\u05DA \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DB\u05E8\u05D2\u05E2. diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_he.properties b/core/src/main/resources/hudson/PluginManager/tabBar_he.properties new file mode 100644 index 0000000000..5d16cda137 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_he.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=\u05DE\u05EA\u05E7\u05D3\u05DD +Available=\u05D6\u05DE\u05D9\u05E0\u05D9\u05DD +Installed=\u05DE\u05D5\u05EA\u05E7\u05E0\u05D9\u05DD +Updates=\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/hudson/PluginManager/table_he.properties b/core/src/main/resources/hudson/PluginManager/table_he.properties new file mode 100644 index 0000000000..1be2f6642d --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_he.properties @@ -0,0 +1,27 @@ +# 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. + +Check\ to\ install\ the\ plugin=\u05E1\u05DE\u05DF \u05DC\u05D4\u05EA\u05E7\u05E0\u05EA \u05D4\u05EA\u05D5\u05E1\u05E3 +Install=\u05D4\u05EA\u05E7\u05DF +Installed=\u05DE\u05D5\u05EA\u05E7\u05DF +Name=\u05E9\u05DD +Version=\u05D2\u05E8\u05E1\u05D4 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties new file mode 100644 index 0000000000..ef8a704d54 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_he.properties @@ -0,0 +1,24 @@ +# 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. + +Dismiss=\u05DE\u05E9\u05D5\u05D7\u05E8\u05E8 +More\ Info=\u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties new file mode 100644 index 0000000000..f138863721 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_he.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=\u05D1\u05E0\u05D9\u05D4 \u05E7\u05D5\u05D3\u05DE\u05EA diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties new file mode 100644 index 0000000000..7549fe48e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_he.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E4\u05E8\u05D5\u05D9\u05D9\u05E7 +Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD +Console\ Output=\u05DE\u05DC\u05DC \u05DE\u05E1\u05DA +Edit\ Build\ Information=\u05E2\u05E8\u05D5\u05DA \u05DE\u05D9\u05D3\u05E2 \u05E2\u05DC \u05D1\u05E0\u05D9\u05D4 \u05E0\u05D5\u05DB\u05D7\u05D9\u05EA +Status=\u05DE\u05E6\u05D1 \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties new file mode 100644 index 0000000000..00b7087934 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_he.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05E8\u05D0\u05E9\u05D9 +Build\ scheduled=\u05D1\u05E0\u05D9\u05D5\u05EA \u05DE\u05EA\u05D5\u05D6\u05DE\u05E0\u05D5\u05EA +Changes=\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD +Configure=\u05D4\u05D2\u05D3\u05E8 +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +Wipe\ Out\ Workspace=\u05DE\u05D7\u05D9\u05E7\u05D4 \u05DC\u05DC\u05D0 \u05E9\u05D7\u05D6\u05D5\u05E8 \u05E9\u05DC \u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 +Workspace=\u05DE\u05E9\u05D8\u05D7 \u05E2\u05D1\u05D5\u05D3\u05D4 diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties new file mode 100644 index 0000000000..17436729ee --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_he.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05E8\u05E9\u05D9\u05DE\u05D4 +Build\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05D9\u05EA \u05D1\u05E0\u05D9\u05D5\u05EA +Configure=\u05E7\u05D1\u05D9\u05E2\u05EA \u05EA\u05E6\u05D5\u05E8\u05D4 +Delete\ Slave=\u05DE\u05D7\u05D9\u05E7\u05EA \u05EA\u05D7\u05E0\u05D4 +Load\ Statistics=\u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA \u05D4\u05E2\u05D5\u05DE\u05E1 +Script\ Console=\u05DE\u05E1\u05D5\u05E3 \u05D4\u05E1\u05E7\u05E8\u05D9\u05E4\u05D8\u05D9\u05DD +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 diff --git a/core/src/main/resources/hudson/model/Run/console_he.properties b/core/src/main/resources/hudson/model/Run/console_he.properties new file mode 100644 index 0000000000..7bbd4b49a0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_he.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=\u05DE\u05DC\u05DC \u05DE\u05E1\u05DA +View\ as\ plain\ text=\u05E6\u05E4\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 \u05DC\u05D0 \u05DE\u05E2\u05D5\u05E6\u05D1 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties new file mode 100644 index 0000000000..99871ec9ec --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_he.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\u05D4\u05DB\u05E0\u05D5\u05EA diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties new file mode 100644 index 0000000000..61825676e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_he.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u05D8\u05D5\u05E2\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties new file mode 100644 index 0000000000..61825676e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_he.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u05D8\u05D5\u05E2\u05DF diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties new file mode 100644 index 0000000000..f0fdd4b1b3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_he.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=\u05DE\u05D0\u05EA\u05D7\u05DC \u05DE\u05D7\u05D3\u05E9 \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties new file mode 100644 index 0000000000..e626db0de7 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_he.properties @@ -0,0 +1,23 @@ +# 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. + +warning=\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05E9\u05E8\u05EA \u05DB\u05D0\u05E9\u05E8 \u05D4\u05D4\u05EA\u05E7\u05E0\u05D4 \u05DE\u05E1\u05EA\u05D9\u05D9\u05DE\u05EA \u05D5\u05D0\u05D9\u05DF \u05E2\u05D1\u05D5\u05D3\u05D5\u05EA \u05E9\u05E8\u05E6\u05D5\u05EA diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties new file mode 100644 index 0000000000..14c19feba8 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_he.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=\u05D4\u05EA\u05E7\u05E0\u05EA \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD \ \u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.properties new file mode 100644 index 0000000000..b124d86aa3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_he.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. + +Back\ to\ Dashboard=\u05D7\u05D6\u05E8\u05D4 \u05DC\u05DE\u05E1\u05DA \u05D4\u05E8\u05D0\u05E9\u05D9 +Manage\ Jenkins=\u05E0\u05D4\u05DC \u05D0\u05EA \u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 +Manage\ Plugins=\u05E0\u05D4\u05DC \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD diff --git a/core/src/main/resources/hudson/model/View/sidepanel_he.properties b/core/src/main/resources/hudson/model/View/sidepanel_he.properties new file mode 100644 index 0000000000..917b703946 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_he.properties @@ -0,0 +1,27 @@ +# 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\ History=\u05D4\u05D9\u05E1\u05D8\u05D5\u05E8\u05D9\u05EA \u05D1\u05E0\u05D9\u05D4 +Edit\ View=\u05E2\u05E8\u05D5\u05DA \u05DE\u05E1\u05DA +NewJob={0} \u05D7\u05D3\u05E9 +People=\u05D0\u05E0\u05E9\u05D9\u05DD +Project\ Relationship=\u05E7\u05E9\u05E8\u05D9 \u05E4\u05E8\u05D5\u05D9\u05D9\u05E7\u05D8\u05D9\u05DD diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties new file mode 100644 index 0000000000..04d3180ab5 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_he.properties @@ -0,0 +1,23 @@ +# 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. + +login=\u05D4\u05EA\u05D7\u05D1\u05E8 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties new file mode 100644 index 0000000000..ba6e2c05dd --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_he.properties @@ -0,0 +1,24 @@ +# 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. + +Log=\u05D9\u05D5\u05DE\u05DF +System\ Information=\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties new file mode 100644 index 0000000000..55c5a80de5 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_he.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u05EA\u05D6\u05DE\u05DF \u05D1\u05E0\u05D9\u05D4 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_he.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_he.properties new file mode 100644 index 0000000000..6962c7f98d --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_he.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u05EA\u05E6\u05D5\u05D2\u05D4 \u05D7\u05D3\u05E9\u05D4 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties new file mode 100644 index 0000000000..4ef9482181 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_he.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=\u05D6\u05DE\u05DF \u05D1\u05D9\u05E6\u05D5\u05E2 \u05D0\u05D7\u05E8\u05D5\u05DF diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties new file mode 100644 index 0000000000..c3bdbed920 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_he.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=\u05DB\u05E9\u05DC\u05D5\u05DF \u05D0\u05D7\u05E8\u05D5\u05DF diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_he.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_he.properties new file mode 100644 index 0000000000..88286e2af7 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_he.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u05DC\u05D0 \u05D6\u05DE\u05D9\u05DF diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_he.properties new file mode 100644 index 0000000000..33391fd1c3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_he.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=\u05D4\u05E6\u05DC\u05D7\u05D4 \u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties new file mode 100644 index 0000000000..0cd69f71b2 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_he.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=\u05DE\u05E6\u05D1 \u05D1\u05E0\u05D9\u05D4 \u05D0\u05D7\u05E8\u05D5\u05DF diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties new file mode 100644 index 0000000000..2c23a354d6 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_he.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u05EA\u05D7\u05D6\u05D9\u05EA \u05D4\u05DE\u05E6\u05D9\u05D2\u05D4 \u05D0\u05EA \u05DE\u05E6\u05D1 \u05D4Build\u05D9\u05DD \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.properties new file mode 100644 index 0000000000..0e1906e027 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_he.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. + +for\ all=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD +for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05E9\u05D2\u05D9\u05D0\u05D5\u05EA +trend=\u05D8\u05E8\u05E0\u05D3 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties new file mode 100644 index 0000000000..7d7c566799 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_he.properties @@ -0,0 +1,34 @@ +# 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. + +Configure\ System=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05E2\u05E8\u05DB\u05EA +Configure\ global\ settings\ and\ paths.=\u05D4\u05D2\u05D3\u05E8\u05EA \u05DE\u05E9\u05EA\u05E0\u05D9\u05DD \u05D5\u05E1\u05E4\u05E8\u05D9\u05D5\u05EA +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05D4\u05DE\u05D9\u05D3\u05E2 \u05D1\u05D6\u05DB\u05E8\u05D5\u05DF \u05D5\u05D8\u05E2\u05DF \u05E9\u05D5\u05D1 \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 +Load\ Statistics=\u05D8\u05E2\u05DF \u05E1\u05D8\u05D8\u05D9\u05E1\u05D8\u05D9\u05E7\u05D5\u05EA +Manage\ Jenkins=\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA +Manage\ Nodes=\u05E0\u05D4\u05DC \u05EA\u05D7\u05E0\u05D5\u05EA +Manage\ Plugins=\u05E0\u05D4\u05DC \u05EA\u05D5\u05E1\u05E4\u05D9\u05DD +Prepare\ for\ Shutdown=\u05D4\u05EA\u05DB\u05D5\u05E0\u05DF \u05DC\u05DB\u05D9\u05D1\u05D5\u05D9 +Reload\ Configuration\ from\ Disk=\u05D8\u05E2\u05DF \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 +System\ Information=\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05D4\u05DE\u05E2\u05E8\u05DB\u05EA +System\ Log=\u05DC\u05D5\u05D2\u05D9\u05DD +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u05E9\u05D9\u05DE\u05D5\u05E9\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05E2\u05D3\u05DB\u05E0\u05EA \u05E7\u05D1\u05E6\u05D9 \u05DE\u05E2\u05E8\u05DB\u05EA \u05DE\u05D4\u05D3\u05D9\u05E1\u05E7 diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties new file mode 100644 index 0000000000..d201e4b1f1 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_he.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=\u05DE\u05D7\u05E7 diff --git a/core/src/main/resources/lib/hudson/buildCaption_he.properties b/core/src/main/resources/lib/hudson/buildCaption_he.properties new file mode 100644 index 0000000000..e4aa62fbf1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_he.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u05D4\u05EA\u05E7\u05D3\u05DE\u05D5\u05EA +cancel=\u05D1\u05D8\u05DC diff --git a/core/src/main/resources/lib/hudson/buildHealth_he.properties b/core/src/main/resources/lib/hudson/buildHealth_he.properties new file mode 100644 index 0000000000..b20e795bde --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_he.properties @@ -0,0 +1,23 @@ +# 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. + +Description=\u05EA\u05D9\u05D0\u05D5\u05E8 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_he.properties b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties new file mode 100644 index 0000000000..c3b00e2f55 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_he.properties @@ -0,0 +1,23 @@ +# 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. + +text=\u05D4\u05EA\u05D7\u05D9\u05DC \u05DC\u05E4\u05E0\u05D9 {0}, \u05D6\u05DE\u05DF \u05DE\u05D5\u05E2\u05E8\u05DA \u05E9\u05E0\u05E9\u05D0\u05E8: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_he.properties b/core/src/main/resources/lib/hudson/editableDescription_he.properties new file mode 100644 index 0000000000..98d4dbf72e --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_he.properties @@ -0,0 +1,23 @@ +# 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. + +add\ description=\u05D4\u05D5\u05E1\u05E3 \u05EA\u05D9\u05D0\u05D5\u05E8 diff --git a/core/src/main/resources/lib/hudson/executors_he.properties b/core/src/main/resources/lib/hudson/executors_he.properties new file mode 100644 index 0000000000..78ea52a1a9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_he.properties @@ -0,0 +1,27 @@ +# 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=\u05DE\u05E6\u05D1 \u05DE\u05DB\u05D5\u05E0\u05EA \u05D4Build +Building=\u05D1\u05D5\u05E0\u05D4 +Idle=\u05E4\u05E0\u05D5\u05D9 +Status=\u05E1\u05D8\u05D8\u05D5\u05E1 +terminate\ this\ build=\u05D1\u05D8\u05DC \u05D1\u05E0\u05D9\u05D4 \u05D6\u05D0\u05EA diff --git a/core/src/main/resources/lib/hudson/iconSize_he.properties b/core/src/main/resources/lib/hudson/iconSize_he.properties new file mode 100644 index 0000000000..41eeebdc7a --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_he.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=\u05E1\u05DE\u05DC diff --git a/core/src/main/resources/lib/hudson/queue_he.properties b/core/src/main/resources/lib/hudson/queue_he.properties new file mode 100644 index 0000000000..cf798c7ff8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_he.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. + +Build\ Queue=\u05EA\u05D5\u05E8 \u05D1\u05E0\u05D9\u05D9\u05D4 +No\ builds\ in\ the\ queue.=\u05E8\u05E9\u05D9\u05DE\u05EA \u05D4\u05DE\u05EA\u05E0\u05D4 \u05DC\u05D1\u05E0\u05D9\u05D4 \u05E8\u05D9\u05E7\u05D4. +cancel=\u05D1\u05D8\u05DC diff --git a/core/src/main/resources/lib/hudson/rssBar_he.properties b/core/src/main/resources/lib/hudson/rssBar_he.properties new file mode 100644 index 0000000000..04aa513d55 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_he.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=\u05DE\u05E7\u05E8\u05D0 +for\ all=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD +for\ failures=\u05E2\u05D1\u05D5\u05E8 \u05DB\u05E9\u05DC\u05D5\u05DF +for\ just\ latest\ builds=\u05E2\u05D1\u05D5\u05E8 \u05D4Build\u05D9\u05DD \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties new file mode 100644 index 0000000000..a5d31e21df --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_he.properties @@ -0,0 +1,24 @@ +# 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. + +License=\u05E8\u05E9\u05D9\u05D5\u05DF +Name=\u05E9\u05DD diff --git a/core/src/main/resources/lib/layout/layout_he.properties b/core/src/main/resources/lib/layout/layout_he.properties new file mode 100644 index 0000000000..aa62b4b692 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_he.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=\u05D0\u05E4\u05E9\u05E8 \u05E8\u05E2\u05E0\u05D5\u05DF \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 +Page\ generated=\u05D3\u05E3 \u05E0\u05D5\u05E6\u05E8 \u05D1 +logout=\u05D4\u05EA\u05E0\u05EA\u05E7 +search=\u05D7\u05D9\u05E4\u05D5\u05E9 +searchBox.url=\u05EA\u05D9\u05D1\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9 diff --git a/core/src/main/resources/lib/layout/main-panel_he.properties b/core/src/main/resources/lib/layout/main-panel_he.properties new file mode 100644 index 0000000000..0b436e8abe --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_he.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=\u05D2''\u05E0\u05E7\u05D9\u05E0\u05E1 \u05D4\u05D5\u05DC\u05DA \u05DC\u05D4\u05DB\u05D1\u05D5\u05EA \u05D1\u05E7\u05E8\u05D5\u05D1 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_he.properties b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_he.properties new file mode 100644 index 0000000000..b270a15f3b --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_he.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=Executed Mojos diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_he.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_he.properties new file mode 100644 index 0000000000..769fc349e6 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_he.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=\u05DE\u05D5\u05D3\u05D5\u05DC\u05D9\u05DD 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 new file mode 100644 index 0000000000..ebd91438ed --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_he.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. + +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 -- GitLab From d56bf7f26f1b3f430cf22ddaf84676ed7b5eae28 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:46 -0800 Subject: [PATCH 123/158] Community-contributed localization for hi_IN (hi_IN) --- .../AbstractBuild/sidepanel_hi_IN.properties | 23 ++++++++++++++++ .../AbstractBuild/tasks_hi_IN.properties | 27 +++++++++++++++++++ .../hudson/model/Run/console_hi_IN.properties | 24 +++++++++++++++++ .../hudson/model/Run/logKeep_hi_IN.properties | 23 ++++++++++++++++ .../model/View/sidepanel_hi_IN.properties | 24 +++++++++++++++++ .../lib/hudson/buildCaption_hi_IN.properties | 24 +++++++++++++++++ .../hudson/buildProgressBar_hi_IN.properties | 23 ++++++++++++++++ .../lib/hudson/rssBar_hi_IN.properties | 25 +++++++++++++++++ .../lib/layout/layout_hi_IN.properties | 25 +++++++++++++++++ 9 files changed, 218 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_hi_IN.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_hi_IN.properties create mode 100644 core/src/main/resources/lib/layout/layout_hi_IN.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties new file mode 100644 index 0000000000..d41f677093 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hi_IN.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=\u092A\u0942\u0930\u094D\u0935 \u0917\u0920\u0928 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties new file mode 100644 index 0000000000..64c2002725 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hi_IN.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=\u092A\u0930\u093F\u092F\u094B\u091C\u0928\u093E \u092A\u0930 \u0935\u093E\u092A\u0938 \u091C\u093E\u090F\u0901 +Changes=\u092A\u0930\u093F\u0935\u0930\u094D\u0924\u0928 +Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u0915\u093E \u0915\u093F\u092F\u093E \u0915\u093E\u092E +Edit\ Build\ Information=\u0917\u0920\u0928 \u0938\u0942\u091A\u0928\u093E \u0938\u0902\u092A\u093E\u0926\u093F\u0924 \u0915\u0930\u0947\u0902 +Status=\u0938\u094D\u0925\u0924\u093F diff --git a/core/src/main/resources/hudson/model/Run/console_hi_IN.properties b/core/src/main/resources/hudson/model/Run/console_hi_IN.properties new file mode 100644 index 0000000000..f1f867c293 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_hi_IN.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=\u0915\u0902\u0938\u094B\u0932 \u0915\u093E \u0915\u093F\u092F\u093E \u0915\u093E\u092E +View\ as\ plain\ text=\u0938\u093E\u0926\u0947 \u0936\u092C\u094D\u0926\u094B\u0902 \u0915\u0947 \u0930\u0942\u092A \u092E\u0947\u0902 \u0926\u0947\u0916\u0947\u0902 diff --git a/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties b/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties new file mode 100644 index 0000000000..8c7f6687f2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_hi_IN.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=\u0907\u0938 \u092C\u093F\u0932\u094D\u0921 \u0915\u094B \u0939\u092E\u0947\u0936\u093E \u0915\u0947 \u0932\u093F\u090F \u0930\u0916\u0947\u0902. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties b/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties new file mode 100644 index 0000000000..44ad4a20c9 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_hi_IN.properties @@ -0,0 +1,24 @@ +# 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. + +NewJob=\u0928\u092F\u093E {\u0966} +People=\u0932\u094B\u0917 diff --git a/core/src/main/resources/lib/hudson/buildCaption_hi_IN.properties b/core/src/main/resources/lib/hudson/buildCaption_hi_IN.properties new file mode 100644 index 0000000000..b3b82aa04c --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_hi_IN.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u092A\u094D\u0930\u0917\u0924\u093F +cancel=\u0930\u0926\u094D\u0926 \u0915\u0930\u0947\u0902 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_hi_IN.properties b/core/src/main/resources/lib/hudson/buildProgressBar_hi_IN.properties new file mode 100644 index 0000000000..0072660dbf --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_hi_IN.properties @@ -0,0 +1,23 @@ +# 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. + +text="{0} \u092A\u0939\u0932\u0947 \u0936\u0941\u0930\u0942 \u0915\u093F\u092F\u093E \u0925\u093E
    \u0905\u0928\u0941\u092E\u093E\u0928\u093F\u0924 \u0936\u0947\u0937 \u0938\u092E\u092F: {1}" diff --git a/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties b/core/src/main/resources/lib/hudson/rssBar_hi_IN.properties new file mode 100644 index 0000000000..6059b781a7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_hi_IN.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. + +for\ all=\u0938\u092D\u0940 \u0915\u0947 \u0932\u093F\u090F +for\ failures=\u0905\u0938\u092B\u0932\u0924\u093E\u0913\u0902 \u0915\u0947 \u0932\u093F\u090F +for\ just\ latest\ builds=\u092C\u0938 \u0928\u0935\u0940\u0928 builds \u0915\u0947 \u0932\u093F\u090F diff --git a/core/src/main/resources/lib/layout/layout_hi_IN.properties b/core/src/main/resources/lib/layout/layout_hi_IN.properties new file mode 100644 index 0000000000..241f6adc7f --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_hi_IN.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. + +Page\ generated=\u0909\u0924\u094D\u092A\u0928\u094D\u0928 \u092A\u0943\u0937\u094D\u0920 +search=\u0916\u094B\u091C\u0947\u0902 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 275dbca3229e47459a614b966e00c45a057af336 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 124/158] Community-contributed localization for Hungarian (hu) --- .../hudson/PluginManager/index_hu.properties | 23 +++++++++++ .../hudson/PluginManager/table_hu.properties | 27 +++++++++++++ .../message_hu.properties | 25 ++++++++++++ .../model/AbstractBuild/changes_hu.properties | 23 +++++++++++ .../model/AbstractBuild/index_hu.properties | 24 ++++++++++++ .../AbstractBuild/sidepanel_hu.properties | 3 +- .../model/AbstractBuild/tasks_hu.properties | 28 +++++++++++++ .../model/AbstractItem/delete_hu.properties | 1 + .../AbstractProject/changes_hu.properties | 23 +++++++++++ .../AbstractProject/sidepanel_hu.properties | 6 ++- .../wipeOutWorkspace_hu.properties | 24 ++++++++++++ .../hudson/model/AllView/noJob_hu.properties | 23 +++++++++++ .../model/ComputerSet/configure_hu.properties | 23 +++++++++++ .../model/ComputerSet/index_hu.properties | 25 ++++++++++++ .../model/ComputerSet/sidepanel_hu.properties | 26 +++++++++++++ .../hudson/model/Job/index_hu.properties | 23 +++++++++++ .../ListView/configure-entries_hu.properties | 26 +++++++++++++ .../Permalink/link_hu.properties | 23 +++++++++++ .../hudson/model/Run/console_hu.properties | 2 +- .../ConnectionCheckJob/row_hu.properties | 23 +++++++++++ .../CoreUpdateMonitor/message_hu.properties | 23 +++++++++++ .../DownloadJob/Pending/status_hu.properties | 23 +++++++++++ .../DownloadJob/Success/status_hu.properties | 23 +++++++++++ .../model/UpdateCenter/body_hu.properties | 23 +++++++++++ .../model/UpdateCenter/index_hu.properties | 23 +++++++++++ .../UpdateCenter/sidepanel_hu.properties | 4 +- .../hudson/model/User/index_hu.properties | 23 +++++++++++ .../hudson/model/User/sidepanel_hu.properties | 27 +++++++++++++ .../model/View/People/index_hu.properties | 28 +++++++++++++ .../hudson/model/View/builds_hu.properties | 24 ++++++++++++ .../hudson/model/View/configure_hu.properties | 24 ++++++++++++ .../hudson/model/View/sidepanel_hu.properties | 11 ++++-- .../config_hu.properties | 23 +++++++++++ .../EmptyChangeLogSet/digest_hu.properties | 23 +++++++++++ .../loginLink_hu.properties | 23 +++++++++++ .../SecurityRealm/loginLink_hu.properties | 23 +++++++++++ .../test/TestObject/sidepanel_hu.properties | 23 +++++++++++ .../floatingBox_hu.properties | 25 ++++++++++++ .../BuildButtonColumn/column_hu.properties | 23 +++++++++++ .../myViewTabs_hu.properties | 23 +++++++++++ .../DefaultViewsTabBar/viewTabs_hu.properties | 23 +++++++++++ .../columnHeader_hu.properties | 2 +- .../LastDurationColumn/column_hu.properties | 23 +++++++++++ .../columnHeader_hu.properties | 2 +- .../columnHeader_hu.properties | 2 +- .../LastSuccessColumn/column_hu.properties | 23 +++++++++++ .../StatusColumn/columnHeader_hu.properties | 23 +++++++++++ .../WeatherColumn/columnHeader_hu.properties | 23 +++++++++++ .../widgets/HistoryWidget/entry_hu.properties | 23 +++++++++++ .../widgets/HistoryWidget/index_hu.properties | 1 + .../model/Jenkins/configure_hu.properties | 1 + .../model/Jenkins/downgrade_hu.properties | 24 ++++++++++++ .../jenkins/model/Jenkins/login_hu.properties | 27 +++++++++++++ .../model/Jenkins/manage_hu.properties | 39 +++++++++++++++++++ .../Jenkins/projectRelationship_hu.properties | 26 +++++++++++++ .../form/repeatableDeleteButton_hu.properties | 23 +++++++++++ .../lib/hudson/buildCaption_hu.properties | 2 +- .../lib/hudson/buildHealth_hu.properties | 23 +++++++++++ .../lib/hudson/buildListTable_hu.properties | 26 +++++++++++++ .../hudson/editableDescription_hu.properties | 24 ++++++++++++ .../lib/hudson/executors_hu.properties | 7 +++- .../lib/hudson/iconSize_hu.properties | 23 +++++++++++ .../project/upstream-downstream_hu.properties | 24 ++++++++++++ .../resources/lib/hudson/queue_hu.properties | 3 +- .../resources/lib/hudson/rssBar_hu.properties | 2 +- .../resources/lib/layout/layout_hu.properties | 6 ++- .../MavenModuleSet/actions_hu.properties | 1 + .../maven/MavenModuleSet/index_hu.properties | 5 ++- .../MavenModuleSetBuild/main_hu.properties | 24 ++++++++++++ 69 files changed, 1280 insertions(+), 18 deletions(-) create mode 100644 core/src/main/resources/hudson/PluginManager/index_hu.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_hu.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_hu.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_hu.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/User/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_hu.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_hu.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_hu.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_hu.properties create mode 100644 core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_hu.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hu.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hu.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_hu.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_hu.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_hu.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_hu.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_hu.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_hu.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_hu.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_hu.properties b/core/src/main/resources/hudson/PluginManager/index_hu.properties new file mode 100644 index 0000000000..4362c28642 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_hu.properties @@ -0,0 +1,23 @@ +# 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. + +UpdatePageDescription=Ezen az oldalon tal\u00E1lhat\u00F3 az \u00D6n \u00E1ltal haszn\u00E1lt plugin-ek list\u00E1ja. diff --git a/core/src/main/resources/hudson/PluginManager/table_hu.properties b/core/src/main/resources/hudson/PluginManager/table_hu.properties new file mode 100644 index 0000000000..5a6c66824c --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_hu.properties @@ -0,0 +1,27 @@ +# 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. + +Check\ to\ install\ the\ plugin=Jel\u00F6lje ki a plugin telep\u00EDt\u00E9s\u00E9hez +Install=Telep\u00EDt\u00E9s +Installed=Telep\u00EDtett +Name=N\u00E9v +Version=Verzi\u00F3 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.properties new file mode 100644 index 0000000000..3d4a2148f6 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_hu.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. + +Dismiss=Elutas\u00EDt +More\ Info=T\u00F6bb Inform\u00E1ci\u00F3 +blurb=A reverse proxy be\u00E1ll\u00EDt\u00E1sok rossznak t\u0171nnek. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties new file mode 100644 index 0000000000..ecf4654305 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=V\u00E1ltoz\u00E1sok diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties new file mode 100644 index 0000000000..e92f2aad69 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Not\ yet\ determined=M\u00E9g nincs feldolgozva +startedAgo=Ind\u00EDtva {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties index e6883b60a9..869bd30d4b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_hu.properties @@ -23,6 +23,7 @@ Back\ to\ Project=Vissza a Projekthez Changes=V\u00E1ltoz\u00E1sok Console\ Output=Parancssor Kimenete -Previous\ Build=El\u0151z\u0151 \u00C9p\u00EDt\u00E9s +Next\ Build=K\u00F6vetkez\u0151 \u00C9p\u00EDt\u00E9s +Previous\ Build=El\u0151z\u0151 ford\u00EDt\u00E1s Status=\u00C1llapot raw=nyers diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties new file mode 100644 index 0000000000..c8c41a67cf --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_hu.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Vissza a projekthez +Changes=V\u00E1ltoz\u00E1sok +Console\ Output=Konzol kimenet +Edit\ Build\ Information=Ford\u00EDt\u00E1si inform\u00E1ci\u00F3k szerkeszt\u00E9se +Status=\u00C1llapot +View\ Build\ Information=\u00C9p\u00EDt\u00E9si Inform\u00E1ci\u00F3k Megtekint\u00E9se diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties index fb60f1fd72..50a8998a99 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_hu.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=Biztos benne, hogy t\u00F6r\u00F6lni szeretn\u00E9 a munk\u00E1t? Yes=Igen +blurb=Biztosan t\u00F6r\u00F6lni akarja a {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties new file mode 100644 index 0000000000..ecf4654305 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=V\u00E1ltoz\u00E1sok diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties index af723d517c..b37fecf22a 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_hu.properties @@ -20,9 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Vissza a M\u0171szerfalhoz +Back\ to\ Dashboard= Build\ scheduled=Id\u0151z\u00EDtett \u00E9p\u00EDt\u00E9s Changes=V\u00E1ltoz\u00E1sok Configure=Be\u00E1ll\u00EDt\u00E1sok Status=\u00C1llapot -Workspace=Munkahely +Wipe\ Out\ Workspace=Munkater\u00FClet t\u00F6rl\u00E9se +Workspace=Munkater\u00FClet +delete=T\u00F6rl\u00E9s {0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_hu.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_hu.properties new file mode 100644 index 0000000000..811124bf4d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Yes=Igen +title=Biztosan t\u00F6r\u00F6lni akarja a munkater\u00FCletet? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_hu.properties b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties new file mode 100644 index 0000000000..415fcd7335 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Welcome\ to\ Jenkins!=\u00DCdv\u00F6zli a Jenkins! diff --git a/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties new file mode 100644 index 0000000000..468fa52601 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/configure_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Preventive\ Node\ Monitoring=Megel\u0151z\u0151 Csom\u00F3pont Figyel\u00E9s diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/index_hu.properties new file mode 100644 index 0000000000..9cce717548 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_hu.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. + +Configure=Konfigur\u00E1l +Name=N\u00E9v +Refresh\ status=\u00C1llapot friss\u00EDt\u00E9se diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties new file mode 100644 index 0000000000..a0a3a14aca --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_hu.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=Vissza a Ir\u00E1ny\u00EDt\u00F3 pultra +Configure=Konfigur\u00E1l +Manage\ Jenkins=Jankins Kezel\u00E9s +New\ Node=\u00DAj Csom\u00F3pont diff --git a/core/src/main/resources/hudson/model/Job/index_hu.properties b/core/src/main/resources/hudson/model/Job/index_hu.properties new file mode 100644 index 0000000000..8af3b4e4d5 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_hu.properties @@ -0,0 +1,23 @@ +# 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=Projekt Letilt\u00E1sa diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties new file mode 100644 index 0000000000..c443025aa9 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_hu.properties @@ -0,0 +1,26 @@ +# 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. + +Add\ column=Oszlop hozz\u00E1ad\u00E1sa +Columns=Oszlopok +Regular\ expression=Regul\u00E1ris kifejez\u00E9s +Status\ Filter=\u00C1llapot sz\u0171r\u0151 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties new file mode 100644 index 0000000000..c137170651 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_hu.properties @@ -0,0 +1,23 @@ +# 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. + +format={0} ({1}), {2} ezel\u0151tt diff --git a/core/src/main/resources/hudson/model/Run/console_hu.properties b/core/src/main/resources/hudson/model/Run/console_hu.properties index 7956c85047..52758623f7 100644 --- a/core/src/main/resources/hudson/model/Run/console_hu.properties +++ b/core/src/main/resources/hudson/model/Run/console_hu.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Parancssor Kimenete +Console\ Output=Parancssor kimenete View\ as\ plain\ text=Egyszer\u0171 sz\u00F6vegk\u00E9nt skipSome=Kimaradt {0,number,integer} KB.. Teljes Napl\u00F3 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties new file mode 100644 index 0000000000..858d3ccad0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=El\u0151k\u00E9sz\u00EDt\u00E9s diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties new file mode 100644 index 0000000000..a4c494f9ca --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_hu.properties @@ -0,0 +1,23 @@ +# 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. + +NewVersionAvailable=A Jenkins \u00FAj verzi\u00F3ja ({0}) el\u00E9rhet\u0151 let\u00F6lt\u00E9sre (v\u00E1ltoz\u00E1sok). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties new file mode 100644 index 0000000000..aaec4b64e3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=V\u00E1rakozik diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_hu.properties new file mode 100644 index 0000000000..b275ec64c3 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Success=Sikeres diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties new file mode 100644 index 0000000000..335ec25e07 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_hu.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Ind\u00EDtsa \u00FAjra a Jenkinst, miut\u00E1n a telep\u00EDt\u00E9s sikeres volt \u00E9s nincs t\u00F6bb fut\u00F3 feladat diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties new file mode 100644 index 0000000000..87a0c1f974 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=Pluginok/Friss\u00EDt\u00E9sek telep\u00EDt\u00E9se diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties index 2e29cbd1bc..d7e44ec9c2 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_hu.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=Jenkins Kezel\u00E9se +Back\ to\ Dashboard=Vissza a kezel\u0151fel\u00FCletre +Manage\ Jenkins=Jenkins kezel\u00E9se +Manage\ Plugins=Pluginok kezel\u00E9se diff --git a/core/src/main/resources/hudson/model/User/index_hu.properties b/core/src/main/resources/hudson/model/User/index_hu.properties new file mode 100644 index 0000000000..413a8f2b61 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 diff --git a/core/src/main/resources/hudson/model/User/sidepanel_hu.properties b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties new file mode 100644 index 0000000000..cfe986007c --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_hu.properties @@ -0,0 +1,27 @@ +# 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. + +Builds=\u00C9p\u00EDt\u00E9sek +Configure=Konfigur\u00E1l +My\ Views=N\u00E9zeteim +People=Emberek +Status=\u00C1llapot diff --git a/core/src/main/resources/hudson/model/View/People/index_hu.properties b/core/src/main/resources/hudson/model/View/People/index_hu.properties new file mode 100644 index 0000000000..c71fa161a0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_hu.properties @@ -0,0 +1,28 @@ +# 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. + +All\ People=Minden Felhaszn\u00E1l\u00F3 +Last\ Active=Utols\u00F3 aktivit\u00E1s +Name=N\u00E9v +On=Ebben +People=Emberek +User\ Id=Felhaszn\u00E1l\u00F3 azonos\u00EDt\u00F3 diff --git a/core/src/main/resources/hudson/model/View/builds_hu.properties b/core/src/main/resources/hudson/model/View/builds_hu.properties new file mode 100644 index 0000000000..b1a9b5b99c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=XML-k\u00E9nt export\u00E1lni +buildHistory={0} \u00E9p\u00EDt\u00E9si t\u00F6rt\u00E9nete diff --git a/core/src/main/resources/hudson/model/View/configure_hu.properties b/core/src/main/resources/hudson/model/View/configure_hu.properties new file mode 100644 index 0000000000..6d6a8037b7 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Description=Le\u00EDr\u00E1s +Name=N\u00E9v diff --git a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties index 18a8515fc6..e3222fd844 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_hu.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_hu.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u00C9p\u00EDt\u00E9sek T\u00F6rt\u00E9nete -Check\ File\ Fingerprint=F\u00E1jl Ujjlenyomat Ellen\u0151rz\u00E9se -NewJob=\u00FAj {0} -Project\ Relationship=Projekt Kapcsolat +Build\ History=\u00C9p\u00EDt\u00E9sek t\u00F6rt\u00E9nete +Check\ File\ Fingerprint=F\u00E1jl ujjlenyomat ellen\u0151rz\u00E9se +Delete\ View=N\u00E9zet t\u00F6rl\u00E9se +Edit\ View=N\u00E9zet szerkeszt\u00E9se +NewJob=\u00DAj {0} +People=Felhaszn\u00E1l\u00F3k +Project\ Relationship=Projekt kapcsolat diff --git a/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties new file mode 100644 index 0000000000..ba12f5d2bd --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/AbstractDiskSpaceMonitor/config_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Free\ Space\ Threshold=Szabad T\u00E1rhely Hat\u00E1r\u00E9rt\u00E9k diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties new file mode 100644 index 0000000000..3052112809 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_hu.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=Nincs v\u00E1ltoztat\u00E1s. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties new file mode 100644 index 0000000000..4493799943 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_hu.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=regisztr\u00E1ci\u00F3 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties new file mode 100644 index 0000000000..2a60860fcf --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_hu.properties @@ -0,0 +1,23 @@ +# 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. + +login=bejelentkez\u00E9s diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties new file mode 100644 index 0000000000..bb6c50eb99 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_hu.properties @@ -0,0 +1,23 @@ +# 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. + +History=T\u00F6rt\u00E9net diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_hu.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_hu.properties new file mode 100644 index 0000000000..bd7d8d72f5 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_hu.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. + +Test\ Result\ Trend=Teszt eredm\u00E9nyek +enlarge=nagy\u00EDt +just\ show\ failures=csak a hib\u00E1k diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties new file mode 100644 index 0000000000..e578e0230e --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u00C9p\u00EDt\u00E9st be\u00FCtemezni diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hu.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hu.properties new file mode 100644 index 0000000000..1a74d08608 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_hu.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u00DAj N\u00E9zet diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hu.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hu.properties new file mode 100644 index 0000000000..74fa57b291 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_hu.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u00DAj n\u00E9zet diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties index a439128a5b..ad0815849e 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Utols\u00F3 Hossza +Last\ Duration=Utols\u00F3 hossza diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_hu.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_hu.properties new file mode 100644 index 0000000000..5972548e14 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_hu.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/A diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hu.properties index 337c8ed3c2..6d50ef4b06 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Utols\u00F3 Sikertelen +Last\ Failure=Utols\u00F3 sikertelen diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hu.properties index 42131b8eac..a3bab6dd03 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hu.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_hu.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Utols\u00F3 Sikeres +Last\ Success=Utols\u00F3 sikeres diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_hu.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_hu.properties new file mode 100644 index 0000000000..5972548e14 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_hu.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/A diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties new file mode 100644 index 0000000000..acc8f8c26c --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_hu.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Az utols\u00F3 \u00E9p\u00EDt\u00E9s \u00E1llapota diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties new file mode 100644 index 0000000000..50a84c6405 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Leg\u00FAjabb \u00E9p\u00EDt\u00E9sek \u00E1llapot\u00E1t jelz\u0151 id\u0151j\u00E1r\u00E1sjelent\u00E9s diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_hu.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_hu.properties new file mode 100644 index 0000000000..f125afe934 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konzol kimenet diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties index 4601ec2e8d..052e6c7f0e 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_hu.properties @@ -22,3 +22,4 @@ for\ all=mindegyikre for\ failures=hib\u00E1kra +trend=tendencia diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties index ba13d6e309..2a30ad62bb 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_hu.properties @@ -21,5 +21,6 @@ # THE SOFTWARE. #\ of\ executors=A v\u00E9grehajt\u00F3k sz\u00E1ma +LOADING=BET\u00D6LT\u00C9S Save=Ment\u00E9s System\ Message=Rendszer\u00FCzenet diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties new file mode 100644 index 0000000000..3f84ce8b2f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=A kor\u00E1bbi Jenkins verzi\u00F3 vissza\u00E1ll\u00EDt\u00E1sa +buttonText=Vissza\u00E1l\u00EDt\u00E1s {0}-ra diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties new file mode 100644 index 0000000000..167e70f83a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_hu.properties @@ -0,0 +1,27 @@ +# 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. + +Password=Jelsz\u00F3 +Remember\ me\ on\ this\ computer=Jegyezzen meg ezen a g\u00E9pen +User=Felhaszn\u00E1l\u00F3n\u00E9v +login=bel\u00E9p\u00E9s +signUp=Ha nincs m\u00E9g hozz\u00E1f\u00E9r\u00E9se, regisztr\u00E1ljon egyet! diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties new file mode 100644 index 0000000000..ac830b8ed8 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_hu.properties @@ -0,0 +1,39 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=A Jenkins tud\u00E1s\u00E1t n\u00F6vel\u0151 b\u0151v\u00EDtm\u00E9nyek hozz\u00E1ad\u00E1sa, elt\u00E1vol\u00EDt\u00E1sa, ki- vagy bekapcsol\u00E1sa. +Configure\ System=Rendszer Be\u00E1ll\u00EDt\u00E1sok +Configure\ global\ settings\ and\ paths.=Glob\u00E1lis be\u00E1ll\u00EDt\u00E1sok \u00E9s \u00FAtvonalak +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=A mem\u00F3ri\u00E1ban t\u00E1rolt adatok t\u00F6rl\u00E9se, \u00E9s minden adat \u00FAjra t\u00F6lt\u00E9se a file rendszerb\u0151l. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Hibakeres\u00E9shez seg\u00EDts\u00E9get ad\u00F3 k\u00FCl\u00F6nb\u00F6z\u0151 k\u00F6rnyezeti v\u00E1ltoz\u00F3kat jelen\u00EDt meg. +Jenkins\ CLI=Jenkins Parancssori Fel\u00FClet +Load\ Statistics=Kimutat\u00E1sok bet\u00F6lt\u00E9se +LoadStatisticsText=Ellen\u0151rizd az er\u0151forr\u00E1s kihaszn\u00E1lts\u00E1got, hogy sz\u00FCks\u00E9g van-e t\u00F6bb rendszerre az \u00E9p\u00EDt\u00E9sek sz\u00E1m\u00E1ra. +Manage\ Jenkins=Jenkins Be\u00E1ll\u00EDt\u00E1sok +Manage\ Nodes=Csom\u00F3pontok Kezel\u00E9se +Manage\ Plugins=Kieg\u00E9sz\u00EDt\u0151k Kezel\u00E9se +Prepare\ for\ Shutdown=Felk\u00E9sz\u00FCl\u00E9s Le\u00E1ll\u00EDt\u00E1sra +Reload\ Configuration\ from\ Disk=A diszken l\u00E9v\u0151 be\u00E1ll\u00EDt\u00E1sok \u00FAjrat\u00F6lt\u00E9se +Script\ Console=Szkript Konzol +System\ Information=Rendszer Inform\u00E1ci\u00F3k +System\ Log=Rendszer Napl\u00F3 +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Hasznos, mikor a lemezen t\u00E1rolt be\u00E1ll\u00EDt\u00E1sok k\u00F6zvetlen\u00FCl lettek m\u00F3dos\u00EDtva. diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties new file mode 100644 index 0000000000..997987441d --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_hu.properties @@ -0,0 +1,26 @@ +# 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. + +Compare=\u00D6sszehasonl\u00EDt +Project\ Relationship=Projekt Kapcsolatok +downstream\ project=r\u00E1k\u00F6vetkez\u0151 projekt +upstream\ project=megel\u0151z\u0151 projekt diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties new file mode 100644 index 0000000000..a029a6336b --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=T\u00F6rl\u00E9s diff --git a/core/src/main/resources/lib/hudson/buildCaption_hu.properties b/core/src/main/resources/lib/hudson/buildCaption_hu.properties index f266f104e7..7ffac07baf 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_hu.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_hu.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=Folyamat +Progress= cancel=m\u00E9gsem diff --git a/core/src/main/resources/lib/hudson/buildHealth_hu.properties b/core/src/main/resources/lib/hudson/buildHealth_hu.properties new file mode 100644 index 0000000000..4f1e782a9e --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Le\u00EDr\u00E1s diff --git a/core/src/main/resources/lib/hudson/buildListTable_hu.properties b/core/src/main/resources/lib/hudson/buildListTable_hu.properties new file mode 100644 index 0000000000..adf22b1c98 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_hu.properties @@ -0,0 +1,26 @@ +# 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=\u00C9p\u00EDt\u00E9s +Console\ output=Konzol kimenet +Status=\u00C1llapot +Time\ Since=Eltelt id\u0151 diff --git a/core/src/main/resources/lib/hudson/editableDescription_hu.properties b/core/src/main/resources/lib/hudson/editableDescription_hu.properties new file mode 100644 index 0000000000..ed35ceb848 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_hu.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=le\u00EDr\u00E1s hozz\u00E1ad\u00E1sa +edit\ description=le\u00EDr\u00E1s szerkeszt\u00E9se diff --git a/core/src/main/resources/lib/hudson/executors_hu.properties b/core/src/main/resources/lib/hudson/executors_hu.properties index 0bc729eb4b..2b1e6e312c 100644 --- a/core/src/main/resources/lib/hudson/executors_hu.properties +++ b/core/src/main/resources/lib/hudson/executors_hu.properties @@ -20,5 +20,10 @@ # 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 +Build\ Executor\ Status=\u00C9p\u00EDt\u00E9sfuttat\u00F3 \u00E1llapota +Building=\u00C9p\u00EDt\u00E9s +Idle=\u00DCresj\u00E1rat +Master=Mester Status=\u00C1llapot +offline=kapcsolat n\u00E9lk\u00FCl +terminate\ this\ build=Build megszak\u00EDt\u00E1sa diff --git a/core/src/main/resources/lib/hudson/iconSize_hu.properties b/core/src/main/resources/lib/hudson/iconSize_hu.properties new file mode 100644 index 0000000000..c4185df59a --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_hu.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikon diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties new file mode 100644 index 0000000000..6d0f1c9467 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Ut\u00E1na K\u00F6vetkez\u0151 Projektek +Upstream\ Projects=Megel\u0151z\u0151 Projektek diff --git a/core/src/main/resources/lib/hudson/queue_hu.properties b/core/src/main/resources/lib/hudson/queue_hu.properties index d3cbf80504..fcc8b12387 100644 --- a/core/src/main/resources/lib/hudson/queue_hu.properties +++ b/core/src/main/resources/lib/hudson/queue_hu.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u00C9p\u00E9t\u00E9si Sor +Build\ Queue=\u00C9p\u00EDt\u00E9si sor +No\ builds\ in\ the\ queue.=Nincs \u00FCtemezett \u00E9p\u00EDt\u00E9s a sorban diff --git a/core/src/main/resources/lib/hudson/rssBar_hu.properties b/core/src/main/resources/lib/hudson/rssBar_hu.properties index 089bfb6a8b..b653e3bffb 100644 --- a/core/src/main/resources/lib/hudson/rssBar_hu.properties +++ b/core/src/main/resources/lib/hudson/rssBar_hu.properties @@ -23,4 +23,4 @@ Legend=Jelmagyar\u00E1zat for\ all=mindegyikre for\ failures=sikertelenekre -for\ just\ latest\ builds=ut\u00F3bbi \u00E9p\u00EDt\u00E9sekre +for\ just\ latest\ builds=legutols\u00F3 Build-ekre diff --git a/core/src/main/resources/lib/layout/layout_hu.properties b/core/src/main/resources/lib/layout/layout_hu.properties index 1cd3702200..5c9b840295 100644 --- a/core/src/main/resources/lib/layout/layout_hu.properties +++ b/core/src/main/resources/lib/layout/layout_hu.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Page\ generated=Az oldal gener\u00E1l\u00F3dott +DISABLE\ AUTO\ REFRESH=Automatikus lap friss\u00EDt\u00E9s tilt\u00E1sa +ENABLE\ AUTO\ REFRESH=Automatikus lap friss\u00EDt\u00E9s enged\u00E9lyez\u00E9se +Page\ generated= logout=kijelentkez\u00E9s +search=keres\u00E9s +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_hu.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_hu.properties index 7c6eb0383d..84cb0080a9 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_hu.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_hu.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Delete\ All\ Disabled\ Modules=Minden Letiltott Modul T\u00F6rl\u00E9se Modules=B\u0151v\u00EDtm\u00E9nyek 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 eb01b50f5a..0fe4ab479c 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,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Workspace=Munkahely +Disable\ Project=Projekt letilt\u00E1sa +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/MavenModuleSetBuild/main_hu.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_hu.properties new file mode 100644 index 0000000000..26dab570e0 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_hu.properties @@ -0,0 +1,24 @@ +# 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. + +Module\ Builds=Modul \u00E9p\u00EDt\u00E9sek +noRun=nem indult el -- GitLab From 6f9b200a4fb1099ed715a5f1d69f706e43ad752c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 125/158] Community-contributed localization for Indonesian (id) --- .../AbstractProject/sidepanel_id.properties | 25 ++++++++++++++++++ .../hudson/model/View/sidepanel_id.properties | 25 ++++++++++++++++++ .../SecurityRealm/loginLink_id.properties | 23 ++++++++++++++++ .../DefaultViewsTabBar/viewTabs_id.properties | 23 ++++++++++++++++ .../columnHeader_id.properties | 23 ++++++++++++++++ .../LastDurationColumn/column_id.properties | 23 ++++++++++++++++ .../columnHeader_id.properties | 23 ++++++++++++++++ .../LastFailureColumn/column_id.properties | 23 ++++++++++++++++ .../columnHeader_id.properties | 23 ++++++++++++++++ .../LastSuccessColumn/column_id.properties | 23 ++++++++++++++++ .../StatusColumn/columnHeader_id.properties | 23 ++++++++++++++++ .../WeatherColumn/columnHeader_id.properties | 23 ++++++++++++++++ .../lib/hudson/buildHealth_id.properties | 23 ++++++++++++++++ .../hudson/editableDescription_id.properties | 24 +++++++++++++++++ .../lib/hudson/executors_id.properties | 25 ++++++++++++++++++ .../lib/hudson/iconSize_id.properties | 23 ++++++++++++++++ .../resources/lib/hudson/queue_id.properties | 24 +++++++++++++++++ .../resources/lib/hudson/rssBar_id.properties | 23 ++++++++++++++++ .../resources/lib/layout/layout_id.properties | 26 +++++++++++++++++++ 19 files changed, 448 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_id.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_id.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_id.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_id.properties create mode 100644 core/src/main/resources/lib/hudson/executors_id.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_id.properties create mode 100644 core/src/main/resources/lib/hudson/queue_id.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_id.properties create mode 100644 core/src/main/resources/lib/layout/layout_id.properties diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.properties new file mode 100644 index 0000000000..e06bfd1b61 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_id.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. + +Back\ to\ Dashboard=Kembali ke Dashboard +Changes=Perubahan +Status=Status diff --git a/core/src/main/resources/hudson/model/View/sidepanel_id.properties b/core/src/main/resources/hudson/model/View/sidepanel_id.properties new file mode 100644 index 0000000000..7f4d918aad --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_id.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. + +Build\ History=Riwayat Pembangunan +NewJob=Baru {0} +People=Orang diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties new file mode 100644 index 0000000000..fc7af17eeb --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_id.properties @@ -0,0 +1,23 @@ +# 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. + +login=masuk diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties new file mode 100644 index 0000000000..31adcab054 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_id.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Tampilan Baru diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties new file mode 100644 index 0000000000..34159ad354 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_id.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Durasi Terakhir diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties new file mode 100644 index 0000000000..5972548e14 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_id.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/A diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties new file mode 100644 index 0000000000..f2337c8148 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_id.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Kegagalan Terakhir diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_id.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_id.properties new file mode 100644 index 0000000000..5972548e14 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_id.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/A diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties new file mode 100644 index 0000000000..ee23e91f45 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_id.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Sukses Terakhir diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties new file mode 100644 index 0000000000..5972548e14 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_id.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/A diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties new file mode 100644 index 0000000000..530ff48156 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_id.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Status pembangunan terakhir diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties new file mode 100644 index 0000000000..c3ec4d9c90 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_id.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Laporan cuaca memperlihatkan status teragregasi dari pembangunan terakhir diff --git a/core/src/main/resources/lib/hudson/buildHealth_id.properties b/core/src/main/resources/lib/hudson/buildHealth_id.properties new file mode 100644 index 0000000000..33b4a217f9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_id.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Deskripsi diff --git a/core/src/main/resources/lib/hudson/editableDescription_id.properties b/core/src/main/resources/lib/hudson/editableDescription_id.properties new file mode 100644 index 0000000000..301ed27255 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_id.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=Tambah Deskripsi +edit\ description=ubah deskripsi diff --git a/core/src/main/resources/lib/hudson/executors_id.properties b/core/src/main/resources/lib/hudson/executors_id.properties new file mode 100644 index 0000000000..a139b3ea82 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_id.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. + +Build\ Executor\ Status=Status Eksekutor Pembangunan +Idle=Diam +Status=Status diff --git a/core/src/main/resources/lib/hudson/iconSize_id.properties b/core/src/main/resources/lib/hudson/iconSize_id.properties new file mode 100644 index 0000000000..c4185df59a --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_id.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikon diff --git a/core/src/main/resources/lib/hudson/queue_id.properties b/core/src/main/resources/lib/hudson/queue_id.properties new file mode 100644 index 0000000000..f6e50bac28 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_id.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Antrian Pembangunan +No\ builds\ in\ the\ queue.=Tidak ada Pembangunan di antrian diff --git a/core/src/main/resources/lib/hudson/rssBar_id.properties b/core/src/main/resources/lib/hudson/rssBar_id.properties new file mode 100644 index 0000000000..1ff6649144 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_id.properties @@ -0,0 +1,23 @@ +# 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. + +for\ all=untuk semua diff --git a/core/src/main/resources/lib/layout/layout_id.properties b/core/src/main/resources/lib/layout/layout_id.properties new file mode 100644 index 0000000000..b229e8093d --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_id.properties @@ -0,0 +1,26 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=AKTIVKAN PENYEGARAN OTOMATIS +logout=Keluar +search=Pencarian +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Kotak+Pencarian -- GitLab From 9327164ddebe01a55f5b999d58343382a4cd8fdb Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 126/158] Community-contributed localization for Icelandic (is) --- .../AbstractBuild/sidepanel_is.properties | 23 ++++++++++++++ .../model/AbstractBuild/tasks_is.properties | 27 +++++++++++++++++ .../model/AbstractProject/main_is.properties | 24 +++++++++++++++ .../AbstractProject/sidepanel_is.properties | 30 +++++++++++++++++++ .../hudson/model/Job/index_is.properties | 23 ++++++++++++++ .../Permalink/link_is.properties | 23 ++++++++++++++ .../hudson/model/Run/console_is.properties | 24 +++++++++++++++ .../hudson/model/View/sidepanel_is.properties | 25 ++++++++++++++++ .../BuildButtonColumn/column_is.properties | 23 ++++++++++++++ .../DefaultViewsTabBar/viewTabs_is.properties | 23 ++++++++++++++ .../columnHeader_is.properties | 23 ++++++++++++++ .../LastDurationColumn/column_is.properties | 23 ++++++++++++++ .../columnHeader_is.properties | 23 ++++++++++++++ .../LastFailureColumn/column_is.properties | 23 ++++++++++++++ .../columnHeader_is.properties | 23 ++++++++++++++ .../LastSuccessColumn/column_is.properties | 23 ++++++++++++++ .../StatusColumn/columnHeader_is.properties | 23 ++++++++++++++ .../WeatherColumn/columnHeader_is.properties | 23 ++++++++++++++ .../widgets/HistoryWidget/index_is.properties | 25 ++++++++++++++++ .../lib/hudson/buildCaption_is.properties | 23 ++++++++++++++ .../lib/hudson/buildHealth_is.properties | 23 ++++++++++++++ .../lib/hudson/buildProgressBar_is.properties | 23 ++++++++++++++ .../hudson/editableDescription_is.properties | 23 ++++++++++++++ .../lib/hudson/executors_is.properties | 23 ++++++++++++++ .../lib/hudson/iconSize_is.properties | 23 ++++++++++++++ .../resources/lib/hudson/queue_is.properties | 24 +++++++++++++++ .../resources/lib/hudson/rssBar_is.properties | 25 ++++++++++++++++ .../resources/lib/layout/layout_is.properties | 25 ++++++++++++++++ 28 files changed, 666 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_is.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_is.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_is.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_is.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_is.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_is.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_is.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_is.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_is.properties create mode 100644 core/src/main/resources/lib/hudson/executors_is.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_is.properties create mode 100644 core/src/main/resources/lib/hudson/queue_is.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_is.properties create mode 100644 core/src/main/resources/lib/layout/layout_is.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties new file mode 100644 index 0000000000..d3e0367e9f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_is.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=Fyrri keyrsla diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties new file mode 100644 index 0000000000..32c5f4563f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_is.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=Til baka \u00ED verkefni +Changes=Breytingar +Console\ Output=Raunt\u00EDma atbur\u00F0a skr\u00E1ning +Edit\ Build\ Information=Breyta keyrslu uppl\u00FDsingum +Status=Sta\u00F0a diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_is.properties b/core/src/main/resources/hudson/model/AbstractProject/main_is.properties new file mode 100644 index 0000000000..a351395a69 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_is.properties @@ -0,0 +1,24 @@ +# 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. + +Recent\ Changes=N\u00FDlegar breytingar +Workspace=Vinnusv\u00E6\u00F0i diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties new file mode 100644 index 0000000000..04db7a0b7f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_is.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Aftur \u00E1 m\u00E6labor\u00F0 +Build\ scheduled=\u00C1\u00E6tla\u00F0ar keyrslur +Changes=Breytingar +Configure=Breyta +Status=Sta\u00F0a +Wipe\ Out\ Workspace=Hreinsa vinnusv\u00E6\u00F0i +Workspace=Vinnusv\u00E6\u00F0i +delete=Ey\u00F0a {0} diff --git a/core/src/main/resources/hudson/model/Job/index_is.properties b/core/src/main/resources/hudson/model/Job/index_is.properties new file mode 100644 index 0000000000..ad9315ee68 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_is.properties @@ -0,0 +1,23 @@ +# 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=Gera verkefni \u00F3virkt diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_is.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_is.properties new file mode 100644 index 0000000000..876e21c125 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_is.properties @@ -0,0 +1,23 @@ +# 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. + +format=fyrir {0} ({1}). {2} s\u00ED\u00F0an diff --git a/core/src/main/resources/hudson/model/Run/console_is.properties b/core/src/main/resources/hudson/model/Run/console_is.properties new file mode 100644 index 0000000000..bad302b8df --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_is.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Raunt\u00EDma atbur\u00F0a skr\u00E1ning +View\ as\ plain\ text=Sko\u00F0a \u00E1 hr\u00E1u formi diff --git a/core/src/main/resources/hudson/model/View/sidepanel_is.properties b/core/src/main/resources/hudson/model/View/sidepanel_is.properties new file mode 100644 index 0000000000..3f0844fbbf --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_is.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. + +Build\ History=Keyrslu saga +NewJob=N\u00FDtt {0} +People=F\u00F3lk diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties new file mode 100644 index 0000000000..b8e8e21713 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_is.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Setja keyrslu \u00ED r\u00F6\u00F0 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties new file mode 100644 index 0000000000..c6e2f17dbf --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_is.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=N\u00FD s\u00FDn diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties new file mode 100644 index 0000000000..0fe198388f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_is.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=T\u00EDmi s\u00ED\u00F0ustu keyrslu diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties new file mode 100644 index 0000000000..a0d087bb22 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_is.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties new file mode 100644 index 0000000000..99df53b2d6 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_is.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=S\u00ED\u00F0ast mistekist diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties new file mode 100644 index 0000000000..a0d087bb22 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_is.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties new file mode 100644 index 0000000000..8585ec314e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_is.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=S\u00ED\u00F0ast heppna\u00F0 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties new file mode 100644 index 0000000000..a0d087bb22 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_is.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u00C1 ekki vi\u00F0 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties new file mode 100644 index 0000000000..31fb689712 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_is.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Sta\u00F0a s\u00ED\u00F0ustu keyrslu diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties new file mode 100644 index 0000000000..a0f894ec8e --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_is.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Ve\u00F0ursp\u00E1 sem s\u00FDnir sameina\u00F0a st\u00F6\u00F0u n\u00FDlegra keyrslna diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.properties new file mode 100644 index 0000000000..49bf018a7d --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_is.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. + +More\ ...=Meira ... +for\ all=fyrir allar keyrslur +for\ failures=fyrir misteknar keyrslur diff --git a/core/src/main/resources/lib/hudson/buildCaption_is.properties b/core/src/main/resources/lib/hudson/buildCaption_is.properties new file mode 100644 index 0000000000..4061754a93 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_is.properties @@ -0,0 +1,23 @@ +# 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. + +cancel=H\u00E6tta vi\u00F0 diff --git a/core/src/main/resources/lib/hudson/buildHealth_is.properties b/core/src/main/resources/lib/hudson/buildHealth_is.properties new file mode 100644 index 0000000000..1778ce2965 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_is.properties @@ -0,0 +1,23 @@ +# 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. + +Description=L\u00FDsing diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_is.properties b/core/src/main/resources/lib/hudson/buildProgressBar_is.properties new file mode 100644 index 0000000000..6ca9656198 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_is.properties @@ -0,0 +1,23 @@ +# 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. + +text=Byrja\u00F0i fyrir {0}
    \u00C1\u00E6tla\u00F0ur t\u00EDmi eftir {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_is.properties b/core/src/main/resources/lib/hudson/editableDescription_is.properties new file mode 100644 index 0000000000..d2051579de --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_is.properties @@ -0,0 +1,23 @@ +# 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. + +edit\ description=Breyta l\u00FDsingu diff --git a/core/src/main/resources/lib/hudson/executors_is.properties b/core/src/main/resources/lib/hudson/executors_is.properties new file mode 100644 index 0000000000..719795ebb3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_is.properties @@ -0,0 +1,23 @@ +# 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=Sta\u00F0a keyrslu v\u00E9lar diff --git a/core/src/main/resources/lib/hudson/iconSize_is.properties b/core/src/main/resources/lib/hudson/iconSize_is.properties new file mode 100644 index 0000000000..4d16bd7cf7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_is.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Merki diff --git a/core/src/main/resources/lib/hudson/queue_is.properties b/core/src/main/resources/lib/hudson/queue_is.properties new file mode 100644 index 0000000000..9fefaa5f76 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_is.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Keyrslu r\u00F6\u00F0 +No\ builds\ in\ the\ queue.=Engar keyrslur b\u00ED\u00F0andi diff --git a/core/src/main/resources/lib/hudson/rssBar_is.properties b/core/src/main/resources/lib/hudson/rssBar_is.properties new file mode 100644 index 0000000000..4535143a71 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_is.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. + +for\ all=Fyrir allar +for\ failures=Fyrir misteknar keyrslur +for\ just\ latest\ builds=Bara fyrir s\u00ED\u00F0ustu keyrslur diff --git a/core/src/main/resources/lib/layout/layout_is.properties b/core/src/main/resources/lib/layout/layout_is.properties new file mode 100644 index 0000000000..8387cf20a2 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_is.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. + +ENABLE\ AUTO\ REFRESH=VIRKJA SJ\u00C1LFVIRKA UPPF\u00C6RSLU +Page\ generated=S\u00ED\u00F0a b\u00FAin til +search=Leita -- GitLab From 47d780de0f950591ca41cd83817e89ada8e9d467 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 127/158] Community-contributed localization for Italian (it) --- .../hudson/PluginManager/index_it.properties | 3 ++ .../PluginManager/installed_it.properties | 6 ++++ .../OldDataMonitor/message_it.properties | 25 ++++++++++++++ .../message_it.properties | 25 ++++++++++++++ .../MatrixBuild/ajaxMatrix_it.properties | 23 +++++++++++++ .../MatrixProject/ajaxMatrix_it.properties | 23 +++++++++++++ .../matrix/MatrixProject/index_it.properties | 24 ++++++++++++++ .../model/AbstractBuild/changes_it.properties | 23 +++++++++++++ .../model/AbstractBuild/index_it.properties | 2 +- .../AbstractBuild/sidepanel_it.properties | 1 + .../model/AbstractBuild/tasks_it.properties | 3 +- .../configure-common_it.properties | 24 ++++++++++++++ .../AbstractItem/noWorkspace_it.properties | 25 ++++++++++++++ .../model/AbstractProject/main_it.properties | 24 ++++++++++++++ .../AbstractProject/sidepanel_it.properties | 4 +-- .../wipeOutWorkspace_it.properties | 24 ++++++++++++++ .../hudson/model/AllView/noJob_it.properties | 24 ++++++++++++++ .../UserIdCause/description_it.properties | 1 + .../DirectoryBrowserSupport/dir_it.properties | 24 ++++++++++++++ .../hudson/model/Job/index_it.properties | 23 +++++++++++++ .../ListView/configure-entries_it.properties | 33 +++++++++++++++++++ .../MyViewsProperty/config_it.properties | 24 ++++++++++++++ .../config_it.properties | 24 ++++++++++++++ .../index_it.properties | 23 +++++++++++++ .../hudson/model/Run/configure_it.properties | 25 ++++++++++++++ .../hudson/model/Run/delete_it.properties | 2 +- .../CoreUpdateMonitor/message_it.properties | 23 +++++++++++++ .../model/UpdateCenter/body_it.properties | 23 +++++++++++++ .../model/UpdateCenter/index_it.properties | 2 +- .../hudson/model/User/configure_it.properties | 25 ++++++++++++++ .../hudson/model/User/sidepanel_it.properties | 27 +++++++++++++++ .../model/View/People/index_it.properties | 1 + .../hudson/model/View/builds_it.properties | 1 + .../hudson/model/View/configure_it.properties | 26 +++++++++++++++ .../hudson/model/View/sidepanel_it.properties | 2 ++ .../Details/config_it.properties | 23 +++++++++++++ .../loginLink_it.properties | 23 +++++++++++++ .../SecurityRealm/loginLink_it.properties | 23 +++++++++++++ .../Mailer/UserProperty/config_it.properties | 24 ++++++++++++++ .../floatingBox_it.properties | 1 + .../BuildAction/index_it.properties | 24 ++++++++++++++ .../triggers/SCMTrigger/config_it.properties | 23 +++++++++++++ .../TimerTrigger/config_it.properties | 23 +++++++++++++ .../BuildButtonColumn/column_it.properties | 2 +- .../myViewTabs_it.properties | 23 +++++++++++++ .../DefaultViewsTabBar/viewTabs_it.properties | 23 +++++++++++++ .../LastDurationColumn/column_it.properties | 23 +++++++++++++ .../columnHeader_it.properties | 23 +++++++++++++ .../LastStableColumn/column_it.properties | 23 +++++++++++++ .../WeatherColumn/columnHeader_it.properties | 23 +++++++++++++ .../widgets/HistoryWidget/entry_it.properties | 23 +++++++++++++ .../widgets/HistoryWidget/index_it.properties | 1 + .../model/Jenkins/downgrade_it.properties | 24 ++++++++++++++ .../jenkins/model/Jenkins/login_it.properties | 27 +++++++++++++++ .../model/Jenkins/manage_it.properties | 1 + .../model/Jenkins/systemInfo_it.properties | 28 ++++++++++++++++ .../resources/lib/form/helpArea_it.properties | 2 +- .../form/repeatableDeleteButton_it.properties | 23 +++++++++++++ .../lib/form/repeatable_it.properties | 23 +++++++++++++ .../lib/hudson/executors_it.properties | 1 + ...-blockWhenDownstreamBuilding_it.properties | 23 +++++++++++++ ...ig-blockWhenUpstreamBuilding_it.properties | 23 +++++++++++++ .../project/config-builders_it.properties | 23 +++++++++++++ .../config-customWorkspace_it.properties | 24 ++++++++++++++ .../project/config-disableBuild_it.properties | 24 ++++++++++++++ .../project/config-publishers_it.properties | 23 +++++++++++++ .../project/config-quietPeriod_it.properties | 23 +++++++++++++ .../project/config-retryCount_it.properties | 24 ++++++++++++++ .../hudson/project/config-scm_it.properties | 23 +++++++++++++ ...nfig-upstream-pseudo-trigger_it.properties | 25 ++++++++++++++ .../lib/hudson/project/matrix_it.properties | 23 +++++++++++++ .../lib/hudson/propertyTable_it.properties | 24 ++++++++++++++ .../resources/lib/hudson/queue_it.properties | 2 +- .../resources/lib/layout/layout_it.properties | 2 ++ .../maven/MavenModuleSet/index_it.properties | 1 + 75 files changed, 1327 insertions(+), 9 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_it.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_it.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_it.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_it.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_it.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_it.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_it.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_it.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_it.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_it.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_it.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_it.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_it.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/config_it.properties create mode 100644 core/src/main/resources/hudson/triggers/TimerTrigger/config_it.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_it.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/columnHeader_it.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/column_it.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_it.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_it.properties create mode 100644 core/src/main/resources/lib/form/repeatable_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-builders_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-publishers_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_it.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_it.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_it.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_it.properties b/core/src/main/resources/hudson/PluginManager/index_it.properties index bf60e9c6a6..dcbe0777a5 100644 --- a/core/src/main/resources/hudson/PluginManager/index_it.properties +++ b/core/src/main/resources/hudson/PluginManager/index_it.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Tutto +None=Niente +Select=Seleziona UpdatePageDescription=Questa pagina elenca gli aggiornamenti dei plugin che usi attualmente. diff --git a/core/src/main/resources/hudson/PluginManager/installed_it.properties b/core/src/main/resources/hudson/PluginManager/installed_it.properties index a9bcc063a1..3f83b714b5 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_it.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_it.properties @@ -23,5 +23,11 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Le modifiche avranno effetto quando riavvierai Jenkins Enabled=Attivo Name=Nome +Pinned=Bloccato +Previously\ installed\ version=Versione precedente +Restart\ Once\ No\ Jobs\ Are\ Running=Riavvia Quando Non Ci Sono Jobs In Esecuzione Uncheck\ to\ disable\ the\ plugin=Deseleziona per disattivare il plugin +Unpin=Sblocca Version=Versione +downgradeTo=Retrocedi a +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.properties new file mode 100644 index 0000000000..219dc22daf --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_it.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. + +Dismiss=Chiudi +Manage=Gestisci +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Sono presenti dati salvati in un formato precedente o dati illeggibili. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.properties new file mode 100644 index 0000000000..ca1d74d196 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_it.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. + +Dismiss=Chiudi +More\ Info=Maggiori informazioni +blurb=Sembra che la configurazione del proxy inverso non sia funzionante. diff --git a/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_it.properties b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_it.properties new file mode 100644 index 0000000000..6e9c3ea6d9 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixBuild/ajaxMatrix_it.properties @@ -0,0 +1,23 @@ +# 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. + +Not\ run=Non eseguito diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_it.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_it.properties new file mode 100644 index 0000000000..68bbeb093f --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_it.properties @@ -0,0 +1,23 @@ +# 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. + +Not\ configured=Non configurato diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties new file mode 100644 index 0000000000..584522e9d9 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_it.properties @@ -0,0 +1,24 @@ +# 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=Disabilita Progetto +Project=Progetto diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties new file mode 100644 index 0000000000..ce8726d891 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_it.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Modifiche diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties index 5171d32cd3..9c9fb98b96 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_it.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Build=Build -Build\ Artifacts=Prodotti Build +Build\ Artifacts=Prodotti della Build Build\ number=Numero build Permalinks=Permalink Took=Impiegato diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties index 5a544d9ec2..d85c040fd5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_it.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Next\ Build=Build successivo Previous\ Build=Build precedente diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties index 43b75fa759..597639193c 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_it.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Back\ to\ Project=Torna al Progetto -Changes=Modifiche +Changes=Modifiche SCM Console\ Output=Output Console +Edit\ Build\ Information=Modifica informazioni sul build Status=Stato diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties new file mode 100644 index 0000000000..428aee7559 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_it.properties @@ -0,0 +1,24 @@ +# 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. + +Advanced\ Project\ Options\ configure-common=Opzioni avanzate del progetto +title.concurrentbuilds=Esegui build in concorrenza se necessario (beta) diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.properties new file mode 100644 index 0000000000..2c045c6644 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_it.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. + +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=Nessun workspace per questo progetto. Possibili ragioni: +li3=La cartella del workspace ({0}) \u00E8 stata eliminata esternamente a Jenkins. +text=Esegui una build per permettere a Jenkins di creare un workspace. diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_it.properties b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties new file mode 100644 index 0000000000..586db5e5e7 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_it.properties @@ -0,0 +1,24 @@ +# 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. + +Last\ Successful\ Artifacts=Ultimo Artifatto Completato con Successo +Recent\ Changes=Modifiche Recenti diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties index b8c1417512..37794d7f9c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_it.properties @@ -21,10 +21,10 @@ # THE SOFTWARE. Back\ to\ Dashboard=Ritorna alla Dashboard -Build\ scheduled=Pianifica build +Build\ scheduled=Build pianificato Changes=Modifiche Configure=Configura Status=Stato -Wipe\ Out\ Workspace=Pulisci Workspace +Wipe\ Out\ Workspace=Pulisci workspace Workspace=Workspace delete=Elimina {0} diff --git a/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_it.properties b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_it.properties new file mode 100644 index 0000000000..587bc59812 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/wipeOutWorkspace_it.properties @@ -0,0 +1,24 @@ +# 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. + +Yes=Si +title=Sei sicuro di voler pulire il workspace? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_it.properties b/core/src/main/resources/hudson/model/AllView/noJob_it.properties new file mode 100644 index 0000000000..8206b8f3bd --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_it.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=Benvenuto in Jenkins! +newJob=Per favore crea nuovi job per iniziare. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties index 61fe710d37..62021a7358 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_it.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Avviata da un utente anonimo started_by_user=Avviato da utente {1} diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties new file mode 100644 index 0000000000..a9f870d908 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_it.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=Scarica tutti in un unico file zip +view=Apri diff --git a/core/src/main/resources/hudson/model/Job/index_it.properties b/core/src/main/resources/hudson/model/Job/index_it.properties new file mode 100644 index 0000000000..2935886a82 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_it.properties @@ -0,0 +1,23 @@ +# 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=Disabilita Progetto diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties new file mode 100644 index 0000000000..8f4c29397e --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_it.properties @@ -0,0 +1,33 @@ +# 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. + +Add\ Job\ Filter=Aggiungi un filtro +Add\ column=Aggiungi colonna +All\ selected\ jobs=Tutti i progetti selezionati +Columns=Colonne +Disabled\ jobs\ only=Solo progetti disabilitati +Enabled\ jobs\ only=Solo progetti abilitati +Job\ Filters=Filtri sui progetti +Jobs=Progetti +Regular\ expression=Espressione regolare +Status\ Filter=Tipologia filtro +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Usa espressione regolare per includere progetti nella vista diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties new file mode 100644 index 0000000000..3818799e0f --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_it.properties @@ -0,0 +1,24 @@ +# 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. + +Default\ View=Vista predefinita +description=viste diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties new file mode 100644 index 0000000000..a7a9526588 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_it.properties @@ -0,0 +1,24 @@ +# 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. + +Add\ Parameter=Aggiungi parametro +This\ build\ is\ parameterized=Questa build \u00E8 parametrizzata diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties new file mode 100644 index 0000000000..5e6e72a056 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_it.properties @@ -0,0 +1,23 @@ +# 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. + +description=Questa build richiede dei parametri: diff --git a/core/src/main/resources/hudson/model/Run/configure_it.properties b/core/src/main/resources/hudson/model/Run/configure_it.properties new file mode 100644 index 0000000000..b0072c01d2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_it.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. + +Description=Descrizione +LOADING=CARICAMENTO +Save=Salva diff --git a/core/src/main/resources/hudson/model/Run/delete_it.properties b/core/src/main/resources/hudson/model/Run/delete_it.properties index 611bb9c8be..dd02c0945f 100644 --- a/core/src/main/resources/hudson/model/Run/delete_it.properties +++ b/core/src/main/resources/hudson/model/Run/delete_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ this\ build=Elimina questa build +Delete\ this\ build=Elimina questo build diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties new file mode 100644 index 0000000000..e466f448ea --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_it.properties @@ -0,0 +1,23 @@ +# 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. + +NewVersionAvailable=Una nuova versione di Jenkins ({0}) \u00E8 disponibile per il download (changelog). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties new file mode 100644 index 0000000000..b5112aac15 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_it.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Riavvia Jenkins quando l''installazione viene completata e non ci sono compiti in esecuzione diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties index f3adff7a4f..0febc20c3b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_it.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Installing\ Plugins/Upgrades=Installo Plugin/Aggiornamenti +Installing\ Plugins/Upgrades=Installazione Plugin/Aggiornamenti warning=Al termine dell''installazione \u00E8 necessario riavviare Jenkins per far s\u00EC che le modifiche abbiano effetto. diff --git a/core/src/main/resources/hudson/model/User/configure_it.properties b/core/src/main/resources/hudson/model/User/configure_it.properties new file mode 100644 index 0000000000..b100e4a9e5 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_it.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. + +Description=Descrizione +Save=Salva +Your\ name=Nome diff --git a/core/src/main/resources/hudson/model/User/sidepanel_it.properties b/core/src/main/resources/hudson/model/User/sidepanel_it.properties new file mode 100644 index 0000000000..4806ca1ece --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_it.properties @@ -0,0 +1,27 @@ +# 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. + +Configure=Configura +Delete=Elimina +My\ Views=Le mie viste +People=Persone +Status=Stato diff --git a/core/src/main/resources/hudson/model/View/People/index_it.properties b/core/src/main/resources/hudson/model/View/People/index_it.properties index 97dcfa6f54..75630aefb9 100644 --- a/core/src/main/resources/hudson/model/View/People/index_it.properties +++ b/core/src/main/resources/hudson/model/View/People/index_it.properties @@ -24,3 +24,4 @@ Last\ Active=Ultima attivit\u00E0 Name=Nome On=Su People=Persone +User\ Id=Id Utente diff --git a/core/src/main/resources/hudson/model/View/builds_it.properties b/core/src/main/resources/hudson/model/View/builds_it.properties index 9577c9ca83..0f48e2681c 100644 --- a/core/src/main/resources/hudson/model/View/builds_it.properties +++ b/core/src/main/resources/hudson/model/View/builds_it.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=Esporta come XML buildHistory=Cronologia build di {0} diff --git a/core/src/main/resources/hudson/model/View/configure_it.properties b/core/src/main/resources/hudson/model/View/configure_it.properties new file mode 100644 index 0000000000..927aec00b6 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_it.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Descrizione +Filter\ build\ executors=Filtra build in esecuzione +Filter\ build\ queue=Filtra coda di build +Name=Nome diff --git a/core/src/main/resources/hudson/model/View/sidepanel_it.properties b/core/src/main/resources/hudson/model/View/sidepanel_it.properties index ab92c0df7b..84da4db1fd 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_it.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_it.properties @@ -22,6 +22,8 @@ Build\ History=Cronologia build Check\ File\ Fingerprint=Controlla impronta file +Delete\ View=Elimina vista +Edit\ View=Modifica vista NewJob=Nuovo {0} People=Utenti Project\ Relationship=Relazioni fra progetti diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties new file mode 100644 index 0000000000..543df672b6 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_it.properties @@ -0,0 +1,23 @@ +# 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. + +Confirm\ Password=Conferma Password diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties new file mode 100644 index 0000000000..65e4bd50ad --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_it.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=registrati diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties new file mode 100644 index 0000000000..e02bb35c23 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_it.properties @@ -0,0 +1,23 @@ +# 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. + +login=accedi diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_it.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_it.properties new file mode 100644 index 0000000000..6fea41588f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_it.properties @@ -0,0 +1,24 @@ +# 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. + +E-mail\ address=Indirizzo e-mail +description=Il tuo indirizzo email, ad esempio joe.chin@sun.com diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties index da172ff238..fb7f28950b 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_it.properties @@ -23,3 +23,4 @@ Test\ Result\ Trend=Andamento risultati dei test enlarge=allarga just\ show\ failures=mostra solo fallimenti +show\ test\ #\ and\ failure\ #=mostra test # e fallimenti # diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_it.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_it.properties new file mode 100644 index 0000000000..c0642ea103 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_it.properties @@ -0,0 +1,24 @@ +# 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. + +View\ as\ plain\ text=Visualizza come testo semplice +blurb=Questa pagina mostra il log del polling che ha avviato il build diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/config_it.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/config_it.properties new file mode 100644 index 0000000000..dfc60f3288 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config_it.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule=Pianifica diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/config_it.properties b/core/src/main/resources/hudson/triggers/TimerTrigger/config_it.properties new file mode 100644 index 0000000000..dfc60f3288 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/config_it.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule=Pianifica diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties index eb6a0cee88..b51b9c2573 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Pianifica un build +Schedule\ a\ build=Pianifica una build diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties new file mode 100644 index 0000000000..df85169055 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_it.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nuova Vista diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties new file mode 100644 index 0000000000..df85169055 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_it.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nuova Vista diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_it.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_it.properties new file mode 100644 index 0000000000..3760d7743a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_it.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N.D. diff --git a/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_it.properties new file mode 100644 index 0000000000..eb88c26a04 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/columnHeader_it.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Stable=Ultima Stabile diff --git a/core/src/main/resources/hudson/views/LastStableColumn/column_it.properties b/core/src/main/resources/hudson/views/LastStableColumn/column_it.properties new file mode 100644 index 0000000000..7f59267d42 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/column_it.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/D diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties new file mode 100644 index 0000000000..0d7666b927 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_it.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Previsioni del tempo che mostrano lo status aggregato di build recenti diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties new file mode 100644 index 0000000000..2e9211d6f0 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_it.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Output Console diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties index 2507499608..096188a1ac 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_it.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=Altro... for\ all=per tutto for\ failures=per i fallimenti trend=andamento diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties new file mode 100644 index 0000000000..e1f354de06 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_it.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Ripristina la versione precedente di Jenkins +buttonText=Ripristina la versione {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_it.properties b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties new file mode 100644 index 0000000000..0352602f4a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_it.properties @@ -0,0 +1,27 @@ +# 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. + +Password=Password +Remember\ me\ on\ this\ computer=Ricordami su questo computer +User=Utente +login=accedi +signUp=Crea un account se non sei ancora membro. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties index b2da7a631e..29e699fee9 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_it.properties @@ -27,6 +27,7 @@ Configure\ global\ settings\ and\ paths.=Configura impostazioni globali e percor Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Ignora tutti i dati caricati in memoria e ricarica tutto dal file system. Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostra varie informazioni di ambiente per assistenza al trouble-shooting. Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Esegue script arbitrari per amministrazione/trouble-shooting/diagnostica. +Jenkins\ CLI=Lina di comando JenkinsCliText=Accedi e gestisci Jenkins dalla shell o dai tuoi script. Load\ Statistics=Statistiche di carico LoadStatisticsText=Controlla l''utilizzo delle risorse per vedere se sono necessari altri computer per le build. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties new file mode 100644 index 0000000000..0d7f60e777 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_it.properties @@ -0,0 +1,28 @@ +# 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. + +Enabled=Attivo +Environment\ Variables=Variabili d''ambiente +Name=Nome +Pinned=Fisso +Plugins=Plugin +Version=Versione diff --git a/core/src/main/resources/lib/form/helpArea_it.properties b/core/src/main/resources/lib/form/helpArea_it.properties index 1e626e3e72..da6fde5b73 100644 --- a/core/src/main/resources/lib/form/helpArea_it.properties +++ b/core/src/main/resources/lib/form/helpArea_it.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Loading...=Carico... +Loading...=Caricamento... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties new file mode 100644 index 0000000000..1485d467f3 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_it.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Elimina diff --git a/core/src/main/resources/lib/form/repeatable_it.properties b/core/src/main/resources/lib/form/repeatable_it.properties new file mode 100644 index 0000000000..fe2c9b8baf --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_it.properties @@ -0,0 +1,23 @@ +# 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. + +Add=Aggiungi diff --git a/core/src/main/resources/lib/hudson/executors_it.properties b/core/src/main/resources/lib/hudson/executors_it.properties index 9fe6881458..0fc0545142 100644 --- a/core/src/main/resources/lib/hudson/executors_it.properties +++ b/core/src/main/resources/lib/hudson/executors_it.properties @@ -22,5 +22,6 @@ Build\ Executor\ Status=Stato esecutore build Idle=Inattivo +Master=Nodo principale Status=Stato terminate\ this\ build=termina questa build diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties new file mode 100644 index 0000000000..196c16d95e --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_it.properties @@ -0,0 +1,23 @@ +# 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. + +Block\ build\ when\ downstream\ project\ is\ building=Blocca la build durante la build del progetto figlio diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties new file mode 100644 index 0000000000..dccc53f1b0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_it.properties @@ -0,0 +1,23 @@ +# 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. + +Block\ build\ when\ upstream\ project\ is\ building=Blocca la build durante la build del progetto padre diff --git a/core/src/main/resources/lib/hudson/project/config-builders_it.properties b/core/src/main/resources/lib/hudson/project/config-builders_it.properties new file mode 100644 index 0000000000..b07f1db558 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-builders_it.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ build\ step=Aggiungi passo nella build diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties new file mode 100644 index 0000000000..7c652d15b9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_it.properties @@ -0,0 +1,24 @@ +# 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. + +Directory=Cartella +Use\ custom\ workspace=Usa workspace personalizzato diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties new file mode 100644 index 0000000000..bf31be1a28 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_it.properties @@ -0,0 +1,24 @@ +# 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\ Build=Disabilita build +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Non saranno effettuate nuove build finch\u00E8 questo progetto non sar\u00E0 riattivato. diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_it.properties b/core/src/main/resources/lib/hudson/project/config-publishers_it.properties new file mode 100644 index 0000000000..c8463612e4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-publishers_it.properties @@ -0,0 +1,23 @@ +# 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. + +Post-build\ Actions=Azioni dopo la build diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties new file mode 100644 index 0000000000..e97dcf5785 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_it.properties @@ -0,0 +1,23 @@ +# 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. + +Number\ of\ seconds=Numero di secondi diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties new file mode 100644 index 0000000000..f9daed74cb --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_it.properties @@ -0,0 +1,24 @@ +# 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. + +Retry\ Count=Tentativi da rieffettuare +SCM\ checkout\ retry\ count=Tentativi da rieffettuare nel checkout SCM diff --git a/core/src/main/resources/lib/hudson/project/config-scm_it.properties b/core/src/main/resources/lib/hudson/project/config-scm_it.properties new file mode 100644 index 0000000000..a59a96a29f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_it.properties @@ -0,0 +1,23 @@ +# 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. + +Source\ Code\ Management=Gestione codice sorgente diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_it.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_it.properties new file mode 100644 index 0000000000..72f8d12718 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_it.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. + +Build\ after\ other\ projects\ are\ built=Effettua una build dopo la build di altri progetti +Multiple\ projects\ can\ be\ specified\ like\ ''abc,\ def''=Possono essere specificati pi\u00F9 progetti, per esempio ''abc, def'' +Projects\ names=Nomi dei progetti diff --git a/core/src/main/resources/lib/hudson/project/matrix_it.properties b/core/src/main/resources/lib/hudson/project/matrix_it.properties new file mode 100644 index 0000000000..94f696cd95 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_it.properties @@ -0,0 +1,23 @@ +# 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. + +Configurations=Configurazioni diff --git a/core/src/main/resources/lib/hudson/propertyTable_it.properties b/core/src/main/resources/lib/hudson/propertyTable_it.properties new file mode 100644 index 0000000000..fb95db38c7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_it.properties @@ -0,0 +1,24 @@ +# 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. + +Name=Nome +Value=Valore diff --git a/core/src/main/resources/lib/hudson/queue_it.properties b/core/src/main/resources/lib/hudson/queue_it.properties index e7809389b2..59ae8f41b8 100644 --- a/core/src/main/resources/lib/hudson/queue_it.properties +++ b/core/src/main/resources/lib/hudson/queue_it.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Build\ Queue=Coda di build -No\ builds\ in\ the\ queue.=Nessuna build in coda. +No\ builds\ in\ the\ queue.=Nessun build in coda. diff --git a/core/src/main/resources/lib/layout/layout_it.properties b/core/src/main/resources/lib/layout/layout_it.properties index d6e1965f3c..f6afa93f6f 100644 --- a/core/src/main/resources/lib/layout/layout_it.properties +++ b/core/src/main/resources/lib/layout/layout_it.properties @@ -24,3 +24,5 @@ DISABLE\ AUTO\ REFRESH=DISABILITA AGGIORNAMENTO AUTOMATICO ENABLE\ AUTO\ REFRESH=ABILITA AGGIORNAMENTO AUTOMATICO Page\ generated=Pagina generata il logout=esci +search=cerca +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box 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 15db7e606e..12cc1aee9a 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,6 +20,7 @@ # 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 -- GitLab From 1896f61a03057c27f7109d9aa2ebcbc149f05f7f Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 128/158] Community-contributed localization for Kannada (kn) --- .../model/AbstractBuild/tasks_kn.properties | 24 +++++++++++++++++++ .../resources/lib/layout/layout_kn.properties | 23 ++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties create mode 100644 core/src/main/resources/lib/layout/layout_kn.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties new file mode 100644 index 0000000000..4b8a75317d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_kn.properties @@ -0,0 +1,24 @@ +# 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. + +Changes=\u0CAC\u0CA6\u0CB2\u0CBE\u0CB5\u0CA3\u0CBF\u0C97\u0CB3\u0CC1 +Status=\u0CB8\u0CBF\u0CCD\u0CA4\u0CA4\u0CBF diff --git a/core/src/main/resources/lib/layout/layout_kn.properties b/core/src/main/resources/lib/layout/layout_kn.properties new file mode 100644 index 0000000000..c753ff03ae --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_kn.properties @@ -0,0 +1,23 @@ +# 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. + +search=\u0CB9\u0CC1\u0CA1\u0CC1\u0C95\u0CC1 -- GitLab From 4422f88944cef0e9401bd254762aa9f3d096e6f0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 129/158] Community-contributed localization for Korean (ko) --- .../PluginManager/advanced_ko.properties | 2 +- .../hudson/PluginManager/index_ko.properties | 3 ++ .../PluginManager/installed_ko.properties | 1 + .../hudson/PluginManager/tabBar_ko.properties | 6 ++-- .../hudson/PluginManager/table_ko.properties | 1 + .../message_ko.properties | 23 ++++++++++++++ .../model/AbstractBuild/index_ko.properties | 6 ++-- .../AbstractBuild/sidepanel_ko.properties | 1 + .../model/AbstractBuild/tasks_ko.properties | 3 +- .../configure-common_ko.properties | 23 ++++++++++++++ .../AbstractProject/changes_ko.properties | 23 ++++++++++++++ .../model/AbstractProject/main_ko.properties | 25 ++++++++++++++++ .../AbstractProject/sidepanel_ko.properties | 30 +++++++++++++++++++ .../UserIdCause/description_ko.properties | 1 + .../hudson/model/Computer/index_ko.properties | 26 ++++++++++++++++ .../model/Computer/sidepanel_ko.properties | 29 ++++++++++++++++++ .../model/Job/buildTimeTrend_ko.properties | 3 ++ .../hudson/model/Job/configure_ko.properties | 25 ++++++++++++++++ .../hudson/model/Job/index_ko.properties | 23 ++++++++++++++ .../hudson/model/Job/permalinks_ko.properties | 23 ++++++++++++++ .../index_ko.properties | 25 ++++++++++++++++ .../config_ko.properties | 24 +++++++++++++++ .../Permalink/link_ko.properties | 23 ++++++++++++++ .../hudson/model/Run/configure_ko.properties | 26 ++++++++++++++++ .../model/Run/confirmDelete_ko.properties | 24 +++++++++++++++ .../hudson/model/Run/console_ko.properties | 2 +- .../config_ko.properties | 24 +++++++++++++++ .../ConnectionCheckJob/row_ko.properties | 23 ++++++++++++++ .../DownloadJob/Pending/status_ko.properties | 23 ++++++++++++++ .../Pending/status_ko.properties | 23 ++++++++++++++ .../RestartJenkinsJob/row_ko.properties | 23 ++++++++++++++ .../model/UpdateCenter/body_ko.properties | 23 ++++++++++++++ .../model/UpdateCenter/index_ko.properties | 23 ++++++++++++++ .../UpdateCenter/sidepanel_ko.properties | 2 ++ .../model/View/People/index_ko.properties | 27 +++++++++++++++++ .../hudson/model/View/builds_ko.properties | 1 + .../hudson/model/View/newJob_ko.properties | 2 ++ .../hudson/model/View/sidepanel_ko.properties | 7 +++-- .../EmptyChangeLogSet/digest_ko.properties | 23 ++++++++++++++ .../LDAPSecurityRealm/config_ko.properties | 23 ++++++++++++++ .../slaves/JNLPLauncher/main_ko.properties | 23 ++++++++++++++ .../SlaveComputer/sidepanel2_ko.properties | 25 ++++++++++++++++ .../hudson/tasks/Mailer/global_ko.properties | 27 +++++++++++++++++ .../summary_ko.properties | 23 ++++++++++++++ .../myViewTabs_ko.properties | 23 ++++++++++++++ .../DefaultViewsTabBar/viewTabs_ko.properties | 23 ++++++++++++++ .../WeatherColumn/columnHeader_ko.properties | 2 +- .../widgets/HistoryWidget/entry_ko.properties | 23 ++++++++++++++ .../widgets/HistoryWidget/index_ko.properties | 26 ++++++++++++++++ .../model/Jenkins/configure_ko.properties | 24 +++++++++++++++ .../model/Jenkins/manage_ko.properties | 11 +++++++ .../resources/lib/form/advanced_ko.properties | 23 ++++++++++++++ .../resources/lib/form/helpArea_ko.properties | 23 ++++++++++++++ .../lib/hudson/buildCaption_ko.properties | 24 +++++++++++++++ .../lib/hudson/buildProgressBar_ko.properties | 23 ++++++++++++++ .../hudson/editableDescription_ko.properties | 2 +- .../lib/hudson/executors_ko.properties | 1 + .../lib/hudson/newFromList/form_ko.properties | 23 ++++++++++++++ .../config-customWorkspace_ko.properties | 24 +++++++++++++++ .../project/config-disableBuild_ko.properties | 24 +++++++++++++++ .../project/config-retryCount_ko.properties | 23 ++++++++++++++ .../hudson/project/config-scm_ko.properties | 23 ++++++++++++++ .../project/config-trigger_ko.properties | 23 ++++++++++++++ ...nfig-upstream-pseudo-trigger_ko.properties | 23 ++++++++++++++ .../project/upstream-downstream_ko.properties | 24 +++++++++++++++ .../resources/lib/hudson/rssBar_ko.properties | 6 ++-- .../resources/lib/layout/layout_ko.properties | 5 ++-- 67 files changed, 1155 insertions(+), 17 deletions(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_ko.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_ko.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_ko.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_ko.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties create mode 100644 core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ko.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties create mode 100644 core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ko.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/global_ko.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ko.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ko.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_ko.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties create mode 100644 core/src/main/resources/lib/form/advanced_ko.properties create mode 100644 core/src/main/resources/lib/form/helpArea_ko.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_ko.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_ko.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-trigger_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ko.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties index 38776dee74..5e6bc9f481 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ko.properties @@ -31,4 +31,4 @@ Upload=\uC62C\uB9AC\uAE30 Upload\ Plugin=\uD50C\uB7EC\uADF8\uC778 \uC62C\uB9AC\uAE30 User\ name=\uC0AC\uC6A9\uC790\uBA85 lastUpdated=\uBCC0\uACBD\uC815\uBCF4 \uD68D\uB4DD\uC2DC\uAE30 : {0} \uC804 -uploadtext=\uC911\uC559 \uD50C\uB7EC\uADF8\uC778 \uC800\uC7A5\uC18C \uC678\uC758 \uD50C\uB7EC\uADF8\uC778\uC744 \uC124\uCE58\uD558\uAE30\uC704\uD574\uC11C .hip\uD30C\uC77C\uC744 \uC62C\uB9B4 \uC218 \uC788\uC2B5\uB2C8\uB2E4. +uploadtext=\uC911\uC559 \uD50C\uB7EC\uADF8\uC778 \uC800\uC7A5\uC18C \uC678\uC758 \uD50C\uB7EC\uADF8\uC778\uC744 \uC124\uCE58\uD558\uAE30\uC704\uD574\uC11C .hpi \uD30C\uC77C\uC744 \uC62C\uB9B4 \uC218 \uC788\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/PluginManager/index_ko.properties b/core/src/main/resources/hudson/PluginManager/index_ko.properties index 6e8e9ee0d3..e079e1b00b 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ko.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=\uBAA8\uB450 \uC120\uD0DD +None=\uBAA8\uB450 \uC120\uD0DD \uC548\uD568 +Select=\uC120\uD0DD UpdatePageDescription=\uC774 \uD398\uC774\uC9C0 \uBAA9\uB85D\uC740 \uD604\uC7AC \uC0AC\uC6A9 \uC911\uC778 \uD50C\uB7EC\uADF8\uC778\uC5D0 \uB300\uD574\uC11C \uAC31\uC2E0\uD588\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/PluginManager/installed_ko.properties b/core/src/main/resources/hudson/PluginManager/installed_ko.properties index f4b479d9ea..a31db55fd0 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ko.properties @@ -23,6 +23,7 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Jenkins\uC744 \uC7AC\uC2DC\uC791\uD558\uBA74 \uBCC0\uACBD\uC0AC\uD56D\uC774 \uC801\uC6A9\uB429\uB2C8\uB2E4. Enabled=\uC0AC\uC6A9\uAC00\uB2A5 Name=\uC774\uB984 +Previously\ installed\ version=\uC774\uC804 \uC124\uCE58 \uBC84\uC804 Restart\ Once\ No\ Jobs\ Are\ Running=\uB3D9\uC791\uC911\uC778 \uC791\uC5C5\uC774 \uC5C6\uC73C\uBA74 \uD55C\uBC88 \uC7AC\uAE30\uB3D9\uD569\uB2C8\uB2E4. Uncheck\ to\ disable\ the\ plugin=\uC0AC\uC6A9\uBD88\uAC00 \uD50C\uB7EC\uADF8\uC778 \uCCB4\uD06C\uD574\uC81C Version=\uBC84\uC804 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties index ff0afdccbe..4f06458480 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ko.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=\uACE0\uAE09 -Available=\uC124\uCE58
    \uAC00\uB2A5 -Installed=\uC124\uCE58\uB428 -Updates=\uC5C5\uB370\uC774\uD2B8 +Available=\uC124\uCE58 \uAC00\uB2A5 +Installed=\uC124\uCE58\uB41C \uD50C\uB7EC\uADF8\uC778 \uBAA9\uB85D +Updates=\uC5C5\uB370\uC774\uD2B8\uB41C \uD50C\uB7EC\uADF8\uC778 \uBAA9\uB85D diff --git a/core/src/main/resources/hudson/PluginManager/table_ko.properties b/core/src/main/resources/hudson/PluginManager/table_ko.properties index 24d6a0603a..d06c45e856 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ko.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ko.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=\uD50C\uB7EC\uADF8\uC778 \uC124\uCE58 \uD655\uC778 +Click\ this\ heading\ to\ sort\ by\ category=\uC815\uB82C\uD558\uB824\uBA74 \uC5EC\uAE30\uB97C \uD074\uB9AD Install=\uC124\uCE58 Installed=\uC124\uCE58\uB428 Name=\uC774\uB984 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties new file mode 100644 index 0000000000..35c2cfb916 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ko.properties @@ -0,0 +1,23 @@ +# 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. + +More\ Info=\uCD94\uAC00 \uC815\uBCF4 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties index 1d0e97de38..8de75e1658 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ko.properties @@ -21,8 +21,10 @@ # THE SOFTWARE. Build=\uBE4C\uB4DC -Build\ Artifacts=\uC0B0\uCD9C\uBB3C \uC791\uC131 +Build\ Artifacts=\uBE4C\uB4DC \uC0B0\uCD9C\uBB3C Build\ number=\uBE4C\uB4DC \uBC88\uD638 +Not\ yet\ determined=\uC544\uC9C1 \uC815\uBCF4 \uC5C6\uC74C Permalinks=\uC601\uAD6C\uB9C1\uD06C -Took=\uC811\uADFC +Took=\uC18C\uC694 +on=on startedAgo={0} \uC804\uC5D0 \uC2DC\uC791\uB428 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties index e0bc35f753..28e8f6d194 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Next\ Build=\uB2E4\uC74C \uBE4C\uB4DC Previous\ Build=\uC774\uC804 \uBE4C\uB4DC diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties index b329c2412e..b4ded26da8 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ko.properties @@ -22,5 +22,6 @@ Back\ to\ Project=\uD504\uB85C\uC81D\uD2B8\uB85C \uB3CC\uC544\uAC00\uAE30 Changes=\uBCC0\uACBD\uC0AC\uD56D -Console\ Output=\uCF58\uC194 \uCD9C\uB825 +Console\ Output=\uCF58\uC194 \uCD9C\uB825\uACB0\uACFC +Edit\ Build\ Information=\uBE4C\uB4DC \uC815\uBCF4 \uC218\uC815 Status=\uC0C1\uD0DC diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties new file mode 100644 index 0000000000..ce95a992c0 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced\ Project\ Options\ configure-common=\uACE0\uAE09 \uD504\uB85C\uC81D\uD2B8 \uC635\uC158 diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties new file mode 100644 index 0000000000..84fd0c14e9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=\uBCC0\uACBD \uC0AC\uD56D diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ko.properties new file mode 100644 index 0000000000..6ac307cce4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ko.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. + +Last\ Successful\ Artifacts=\uCD5C\uADFC\uC131\uACF5\uD55C\uACB0\uACFC +Recent\ Changes=\uCD5C\uADFC\uBCC0\uACBD\uC0AC\uD56D\uB4E4 +Workspace=\uC791\uC5C5\uACF5\uAC04 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties new file mode 100644 index 0000000000..1f33be59bc --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ko.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C \uAC00\uAE30 +Build\ scheduled=\uACC4\uD68D\uB41C \uBE4C\uB4DC +Changes=\uBCC0\uACBD \uC0AC\uD56D +Configure=\uC124\uC815 +Status=\uC0C1\uD0DC +Wipe\ Out\ Workspace=\uC791\uC5C5 \uACF5\uAC04 \uB0A0\uB9AC\uAE30 +Workspace=\uC791\uC5C5 \uACF5\uAC04 +delete=\uC0AD\uC81C {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties index 5da68b9339..ab316fed1f 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=\uC775\uBA85 \uC0AC\uC6A9\uC790\uC5D0 \uC758\uD574 \uC2DC\uC791\uB428 started_by_user=\uc0ac\uc6a9\uc790 {1}\uc5d0 \uc758\ud574 \uc2dc\uc791\ub428 diff --git a/core/src/main/resources/hudson/model/Computer/index_ko.properties b/core/src/main/resources/hudson/model/Computer/index_ko.properties new file mode 100644 index 0000000000..603d74658e --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_ko.properties @@ -0,0 +1,26 @@ +# 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. + +Labels:=\uB808\uC774\uBE14 +None=\uC5C6\uC74C +submit.not.temporarilyOffline=\uC784\uC2DC\uB85C \uB178\uB4DC \uC624\uD504\uB77C\uC778\uC73C\uB85C \uBCC0\uACBD +title.projects_tied_on={0}\uC5D0 \uC5F0\uACB0\uB41C \uD504\uB85C\uC81D\uD2B8 diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties new file mode 100644 index 0000000000..23a3838f62 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_ko.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=\uBAA9\uB85D\uC73C\uB85C \uB3CC\uC544\uAC00\uAE30 +Build\ History=\uBE4C\uB4DC \uAE30\uB85D +Configure=\uC124\uC815 +Delete\ Slave=Slave \uC0AD\uC81C +Load\ Statistics=\uD1B5\uACC4\uBCF4\uAE30 +Script\ Console=\uC2A4\uD06C\uB9BD\uD2B8 \uCF58\uC194 +Status=\uC0C1\uD0DC diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties index 197ca1ed97..8a3ed187dc 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ko.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Build=\uBE4C\uB4DC +Build\ Time\ Trend=\uBE4C\uB4DC \uC18C\uC694 \uC2DC\uAC04 \uACBD\uD5A5 Duration=\uC9C0\uC18D\uC2DC\uAC04 More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\uACBD\uD5A5 \uBCF4\uACE0\uC11C\uB294 1\uAC1C \uC774\uC0C1\uC758 \uBE4C\uB4DC\uAC00 \uD544\uC694\uD569\uB2C8\uB2E4. +Slave=Slave +Timeline=\uD0C0\uC784\uB77C\uC778 diff --git a/core/src/main/resources/hudson/model/Job/configure_ko.properties b/core/src/main/resources/hudson/model/Job/configure_ko.properties new file mode 100644 index 0000000000..51fcf1363f --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_ko.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. + +Description=\uC124\uBA85 +Save=\uC800\uC7A5 +name=\uC774\uB984 diff --git a/core/src/main/resources/hudson/model/Job/index_ko.properties b/core/src/main/resources/hudson/model/Job/index_ko.properties new file mode 100644 index 0000000000..c4790b7aa0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ko.properties @@ -0,0 +1,23 @@ +# 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=\uD504\uB85C\uC81D\uD2B8 \uC911\uC9C0\uD558\uAE30 diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ko.properties b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties new file mode 100644 index 0000000000..eb3959a006 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=\uC8FC\uC694 \uB9C1\uD06C diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.properties new file mode 100644 index 0000000000..4cda614cc2 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_ko.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. + +Build=\uBE4C\uB4DC\uD558\uAE30 +LOADING=\uC5EC\uB294 \uC911 +description=\uB9E4\uAC1C\uBCC0\uC218\uAC00 \uD544\uC694\uD55C \uBE4C\uB4DC\uC785\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties new file mode 100644 index 0000000000..3e552bc6f5 --- /dev/null +++ b/core/src/main/resources/hudson/model/PasswordParameterDefinition/config_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Description=\uC0C1\uC138 +Name=\uB9E4\uAC1C\uBCC0\uC218 \uBA85 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties new file mode 100644 index 0000000000..7eb4bdf479 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ko.properties @@ -0,0 +1,23 @@ +# 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. + +format={0}, ({1}),{2} \uC804 diff --git a/core/src/main/resources/hudson/model/Run/configure_ko.properties b/core/src/main/resources/hudson/model/Run/configure_ko.properties new file mode 100644 index 0000000000..a19a9fedb1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_ko.properties @@ -0,0 +1,26 @@ +# 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. + +Description=\uC124\uBA85 +DisplayName=\uD45C\uC2DC \uC774\uB984 +LOADING=\uBD88\uB7EC\uC624\uB294 \uC911 +Save=\uC800\uC7A5 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties new file mode 100644 index 0000000000..2200cadf0d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=\uC815\uB9D0\uB85C \uC774 \uBE4C\uB4DC\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? +Yes=\uC608 diff --git a/core/src/main/resources/hudson/model/Run/console_ko.properties b/core/src/main/resources/hudson/model/Run/console_ko.properties index b52d52e9c3..70f7dac662 100644 --- a/core/src/main/resources/hudson/model/Run/console_ko.properties +++ b/core/src/main/resources/hudson/model/Run/console_ko.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Console\ Output=\uCF58\uC194 \uCD9C\uB825 -View\ as\ plain\ text=\uD3C9\uBB38\uC73C\uB85C \uC870\uD68C +View\ as\ plain\ text=\uC77C\uBC18 \uD14D\uC2A4\uD2B8\uB85C \uBCF4\uAE30 diff --git a/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties new file mode 100644 index 0000000000..35fc7105af --- /dev/null +++ b/core/src/main/resources/hudson/model/StringParameterDefinition/config_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Description=\uC124\uBA85 +Name=\uB9E4\uAC1C\uBCC0\uC218 \uBA85 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties new file mode 100644 index 0000000000..a4acde4973 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\uC900\uBE44 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties new file mode 100644 index 0000000000..83721cee0b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\uB300\uAE30\uC911 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties new file mode 100644 index 0000000000..83721cee0b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\uB300\uAE30\uC911 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties new file mode 100644 index 0000000000..d8c5bb246e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Jenkins \uC7AC\uC2DC\uC791 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties new file mode 100644 index 0000000000..5a2ea98f56 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ko.properties @@ -0,0 +1,23 @@ +# 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. + +warning=\uC124\uCE58\uAC00 \uB05D\uB098\uACE0 \uC2E4\uD589\uC911\uC778 \uC791\uC5C5\uC774 \uC5C6\uC73C\uBA74 Jenkins \uC7AC\uC2DC\uC791. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties new file mode 100644 index 0000000000..e9d4537db0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=\uD50C\uB7EC\uADF8\uC778 \uC124\uCE58/\uC5C5\uADF8\uB808\uC774\uB4DC \uC911 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties index f0199c5005..2493a460bb 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ko.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=\uB300\uC2DC\uBCF4\uB4DC\uB85C Manage\ Jenkins=Jenkins \uAD00\uB9AC +Manage\ Plugins=\uD50C\uB7EC\uADF8\uC778 \uAD00\uB9AC diff --git a/core/src/main/resources/hudson/model/View/People/index_ko.properties b/core/src/main/resources/hudson/model/View/People/index_ko.properties new file mode 100644 index 0000000000..f9a365890f --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ko.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=\uCD5C\uC885 \uC791\uC5C5 +Name=\uC774\uB984 +On=\uC811\uC18D \uC911 +People=\uAC1C\uBC1C\uC790 +User\ Id=ID diff --git a/core/src/main/resources/hudson/model/View/builds_ko.properties b/core/src/main/resources/hudson/model/View/builds_ko.properties index 91411e59d2..49269a32ad 100644 --- a/core/src/main/resources/hudson/model/View/builds_ko.properties +++ b/core/src/main/resources/hudson/model/View/builds_ko.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=XML \uBB38\uC11C\uB85C \uBCC0\uD658\uD558\uAE30 buildHistory={0}\uC758 \uBE4C\uB4DC \uAE30\uB85D diff --git a/core/src/main/resources/hudson/model/View/newJob_ko.properties b/core/src/main/resources/hudson/model/View/newJob_ko.properties index 3c50e826e4..2f50d54fb8 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ko.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ko.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. Copy\ from=\uBCF5\uC0AC \uC704\uCE58 +CopyExisting=\uAE30\uC874 {0} \uBCF5\uC0AC +JobName={0} \uC774\uB984 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties index 8892093430..8073aa93db 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ko.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ko.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\uC0C8 {0} +Edit\ View=\uBDF0 \uD3B8\uC9D1 +NewJob=\uC0C8\uB85C\uC6B4 {0} +Check\ File\ Fingerprint=\uD30C\uC77C \uD551\uAC70\uD504\uB9B0\uD2B8 \uCCB4\uD06C Delete\ View=\uBCF4\uAE30 \uC0AD\uC81C -People=\uAC1C\uBC1C\uC790 +People=\uC0AC\uC6A9\uC790 Build\ History=\uBE4C\uB4DC \uAE30\uB85D +Project\ Relationship=\uD504\uB85C\uC81D\uD2B8 \uC5F0\uAD00 \uAD00\uACC4 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties new file mode 100644 index 0000000000..c7d75be8d8 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_ko.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=\uBCC0\uACBD\uC0AC\uD56D \uC5C6\uC74C. diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ko.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ko.properties new file mode 100644 index 0000000000..bbddcb590d --- /dev/null +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Server=\uC11C\uBC84 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties new file mode 100644 index 0000000000..f2efec4ece --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Connected\ via\ JNLP\ agent.=JNLP Agent\uB85C \uC5F0\uACB0 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ko.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ko.properties new file mode 100644 index 0000000000..c30465f9b1 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ko.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. + +Disconnect=\uC5F0\uACB0\uB04A\uAE30 +Log=\uB85C\uADF8 +System\ Information=\uC2DC\uC2A4\uD15C \uC815\uBCF4 diff --git a/core/src/main/resources/hudson/tasks/Mailer/global_ko.properties b/core/src/main/resources/hudson/tasks/Mailer/global_ko.properties new file mode 100644 index 0000000000..f25ab82793 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/global_ko.properties @@ -0,0 +1,27 @@ +# 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. + +E-mail\ Notification=E-mail\uB85C \uC54C\uB824\uC90C +Password=\uBE44\uBC00\uBC88\uD638 +SMTP\ server=SMTP \uC11C\uBC84 +Use\ SSL=SSL \uC0AC\uC6A9 +User\ Name=\uC0AC\uC6A9\uC790\uBA85 diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ko.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ko.properties new file mode 100644 index 0000000000..5e12daaa9e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Show\ all\ failed\ tests=\uBAA8\uB4E0 \uC2E4\uD328\uD55C \uD14C\uC2A4\uD2B8 \uC5F4\uB78C diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ko.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ko.properties new file mode 100644 index 0000000000..2ccb0250bf --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ko.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\uC0C8 \uBDF0 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties new file mode 100644 index 0000000000..2ccb0250bf --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ko.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\uC0C8 \uBDF0 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties index 15f7f475b4..b305a7fc2b 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ko.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\uB0A0\uC528 \uBCF4\uACE0\uC11C\uB294 \uCD5C\uADFC \uBE4C\uB4DC\uC758 \uC885\uD569 \uC0C1\uD0DC\uB97C \uBCF4\uC5EC\uC90C +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\uB0A0\uC528 \uB9AC\uD3EC\uD2B8\uB294 \uCD5C\uADFC \uBE4C\uB4DC\uB4E4\uC758 \uC0C1\uD0DC\uB97C \uCDE8\uD569\uD558\uC5EC \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ko.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ko.properties new file mode 100644 index 0000000000..40e8fc0728 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\uCF58\uC194 \uCD9C\uB825 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties new file mode 100644 index 0000000000..c8bacc1a13 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ko.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=\uB354\uBCF4\uAE30... +for\ all=\uBAA8\uB4E0 \uAC83\uC5D0 \uB300\uD574 +for\ failures=\uC2E4\uD328\uC5D0 \uB300\uD574 +trend=\uD1B5\uACC4 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties new file mode 100644 index 0000000000..bc34866980 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Home\ directory=\uD648 \uB514\uB809\uD130\uB9AC +Save=\uC800\uC7A5 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties index bbca2ca91d..490dd9cf4c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ko.properties @@ -20,4 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Jenkins\uC758 \uAE30\uB2A5\uC744 \uD655\uC7A5\uD558\uAE30 \uC704\uD55C \uD50C\uB7EC\uADF8\uC778\uC744 \uCD94\uAC00, \uC81C\uAC70, \uC0AC\uC6A9, \uBBF8\uC0AC\uC6A9\uC73C\uB85C \uC124\uC815\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4. +Configure\ System=\uC2DC\uC2A4\uD15C \uC124\uC815 +Configure\ global\ settings\ and\ paths.=\uD658\uACBD\uBCC0\uC218 \uBC0F \uACBD\uB85C \uC815\uBCF4\uB4F1\uC744 \uC124\uC815\uD569\uB2C8\uB2E4. +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\uBB38\uC81C \uD574\uACB0\uC744 \uB3D5\uAE30\uC704\uD55C \uB2E4\uC591\uD55C \uD658\uACBD \uC815\uBCF4\uB97C \uBCF4\uC5EC\uC90D\uB2C8\uB2E4. +Jenkins\ CLI= +Load\ Statistics=\uBD80\uD558 \uD1B5\uACC4 +Manage\ Jenkins=Jenkins \uAD00\uB9AC +Manage\ Nodes=\uB178\uB4DC \uAD00\uB9AC +Manage\ Plugins=\uD50C\uB7EC\uADF8\uC778 \uAD00\uB9AC Prepare\ for\ Shutdown=\uB044\uAE30\uC804 \uC900\uBE44 +System\ Information=\uC2DC\uC2A4\uD15C \uC815\uBCF4 +System\ Log=\uC2DC\uC2A4\uD15C \uB85C\uADF8 diff --git a/core/src/main/resources/lib/form/advanced_ko.properties b/core/src/main/resources/lib/form/advanced_ko.properties new file mode 100644 index 0000000000..c0d604ea22 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=\uACE0\uAE09 diff --git a/core/src/main/resources/lib/form/helpArea_ko.properties b/core/src/main/resources/lib/form/helpArea_ko.properties new file mode 100644 index 0000000000..cadfc8a8c5 --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=\uBD88\uB7EC\uC624\uB294 \uC911... diff --git a/core/src/main/resources/lib/hudson/buildCaption_ko.properties b/core/src/main/resources/lib/hudson/buildCaption_ko.properties new file mode 100644 index 0000000000..314b110dee --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\uC9C4\uD589 \uD604\uD669 +cancel=\uCDE8\uC18C diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties new file mode 100644 index 0000000000..1f55ea1644 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ko.properties @@ -0,0 +1,23 @@ +# 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. + +text=\uC9C4\uD589 \uC2DC\uAC04: {0}
    \uB0A8\uC740 \uC2DC\uAC04: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ko.properties b/core/src/main/resources/lib/hudson/editableDescription_ko.properties index 9a8bebf531..1f082c0fba 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_ko.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_ko.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. add\ description=\uC18C\uAC1C \uB0B4\uC6A9 \uC785\uB825 -edit\ description=\uC18C\uAC1C \uB0B4\uC6A9 \uC218\uC815 +edit\ description=\uB0B4\uC6A9 \uC218\uC815 diff --git a/core/src/main/resources/lib/hudson/executors_ko.properties b/core/src/main/resources/lib/hudson/executors_ko.properties index 210ba26033..f20ae2e63c 100644 --- a/core/src/main/resources/lib/hudson/executors_ko.properties +++ b/core/src/main/resources/lib/hudson/executors_ko.properties @@ -23,6 +23,7 @@ Build\ Executor\ Status=\uBE4C\uB4DC \uC2E4\uD589 \uC0C1\uD0DC Status=\uC0C1\uD0DC Master=\uB9C8\uC2A4\uD130 +Unknown\ Task=\uC54C \uC218 \uC5C6\uB294 \uC791\uC5C5 offline=\uC624\uD504\uB77C\uC778 suspended=\uC77C\uC2DC \uC911\uC9C0 Dead=\uBE44\uC815\uC0C1 \uC885\uB8CC diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ko.properties b/core/src/main/resources/lib/hudson/newFromList/form_ko.properties new file mode 100644 index 0000000000..9b6c014a2c --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=\uBCF5\uC0AC\uD558\uB824\uB294 \uB300\uC0C1 diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties new file mode 100644 index 0000000000..d4d1ebf64a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Directory=\uB514\uB809\uD130\uB9AC +Use\ custom\ workspace=\uC0AC\uC6A9\uC790 \uBE4C\uB4DC \uACBD\uB85C \uC0AC\uC6A9 diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties new file mode 100644 index 0000000000..5f0373ef61 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_ko.properties @@ -0,0 +1,24 @@ +# 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\ Build=\uBE4C\uB4DC \uC548\uD568 +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\uD504\uB85C\uC81D\uD2B8\uAC00 \uB2E4\uC2DC \uBE4C\uB4DC\uB97C \uD560 \uB54C\uAE4C\uC9C0 \uC0C8\uB85C\uC6B4 \uBE4C\uB4DC\uAC00 \uC2E4\uD589\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4. diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties new file mode 100644 index 0000000000..22f3c3d192 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_ko.properties @@ -0,0 +1,23 @@ +# 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. + +SCM\ checkout\ retry\ count=\uC18C\uC2A4\uCF54\uB4DC \uD615\uC0C1\uAD00\uB9AC \uCCB4\uD06C\uC544\uC6C3 \uBC18\uBCF5 \uD68C\uC218 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_ko.properties b/core/src/main/resources/lib/hudson/project/config-scm_ko.properties new file mode 100644 index 0000000000..45540c0aee --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_ko.properties @@ -0,0 +1,23 @@ +# 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. + +Source\ Code\ Management=\uC18C\uC2A4 \uCF54\uB4DC \uAD00\uB9AC diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties new file mode 100644 index 0000000000..e1c03892ce --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-trigger_ko.properties @@ -0,0 +1,23 @@ +# 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\ Triggers=\uBE4C\uB4DC \uD2B8\uB9AC\uAC70 diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ko.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ko.properties new file mode 100644 index 0000000000..575ba16614 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_ko.properties @@ -0,0 +1,23 @@ +# 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\ after\ other\ projects\ are\ built=\uB2E4\uB978 \uD504\uB85C\uC81D\uD2B8\uAC00 \uBE4C\uB4DC\uB41C \uD6C4 \uBE4C\uB4DC\uD568 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties new file mode 100644 index 0000000000..9dc36b621d --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ko.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=\uD558\uC704 \uD504\uB85C\uC81D\uD2B8 +Upstream\ Projects=\uC0C1\uC704 \uD504\uB85C\uC81D\uD2B8 diff --git a/core/src/main/resources/lib/hudson/rssBar_ko.properties b/core/src/main/resources/lib/hudson/rssBar_ko.properties index 63a1ba8867..f89858214b 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ko.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ko.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=\uBC94\uB840 -for\ all=\uBAA8\uB4E0 \uAC83\uC5D0 \uB300\uD574 -for\ failures=\uC2E4\uD328\uC5D0 \uB300\uD574 -for\ just\ latest\ builds=\uB9C8\uC9C0\uB9C9 \uBE4C\uB4DC\uC5D0 \uB300\uD574 +for\ all= +for\ failures= +for\ just\ latest\ builds= diff --git a/core/src/main/resources/lib/layout/layout_ko.properties b/core/src/main/resources/lib/layout/layout_ko.properties index a829ba4077..6081df600b 100644 --- a/core/src/main/resources/lib/layout/layout_ko.properties +++ b/core/src/main/resources/lib/layout/layout_ko.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=\uAC80\uC0C9 searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=\uD398\uC774\uC9C0 \uC791\uC131 +Page\ generated=\uC791\uC131\uB41C \uD398\uC774\uC9C0 logout=\uB85C\uADF8\uC544\uC6C3 DISABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uC7AC\uC2E4\uD589 \uB044\uAE30 -ENABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uC7AC\uC2E4\uD589 \uCF1C\uAE30 +ENABLE\ AUTO\ REFRESH=\uC790\uB3D9 \uAC31\uC2E0 \uCF1C\uAE30 -- GitLab From b152cb1cc91cbe5ddee7ed36ca99825f607b072c Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:47 -0800 Subject: [PATCH 130/158] Community-contributed localization for Lithuanian (lt) --- .../model/AbstractBuild/index_lt.properties | 23 +++++++++++++++ .../AbstractBuild/sidepanel_lt.properties | 23 +++++++++++++++ .../model/AbstractBuild/tasks_lt.properties | 28 +++++++++++++++++++ .../AbstractProject/sidepanel_lt.properties | 27 ++++++++++++++++++ .../model/ComputerSet/sidepanel_lt.properties | 23 +++++++++++++++ .../hudson/model/Run/console_lt.properties | 25 +++++++++++++++++ .../model/View/People/index_lt.properties | 26 +++++++++++++++++ .../hudson/model/View/sidepanel_lt.properties | 2 ++ .../SecurityRealm/loginLink_lt.properties | 23 +++++++++++++++ .../BuildButtonColumn/column_lt.properties | 23 +++++++++++++++ .../DefaultViewsTabBar/viewTabs_lt.properties | 23 +++++++++++++++ .../LastFailureColumn/column_lt.properties | 23 +++++++++++++++ .../LastSuccessColumn/column_lt.properties | 23 +++++++++++++++ .../lib/hudson/buildCaption_lt.properties | 24 ++++++++++++++++ .../lib/hudson/buildProgressBar_lt.properties | 23 +++++++++++++++ .../hudson/editableDescription_lt.properties | 1 + .../lib/hudson/executors_lt.properties | 2 +- .../resources/lib/layout/layout_lt.properties | 4 ++- 18 files changed, 344 insertions(+), 2 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_lt.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_lt.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lt.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_lt.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_lt.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_lt.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_lt.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties new file mode 100644 index 0000000000..3f4b2096ed --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lt.properties @@ -0,0 +1,23 @@ +# 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. + +startedAgo=Prad\u0117ta prie\u0161 {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties new file mode 100644 index 0000000000..738953c7df --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lt.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=Praeitas bildas diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties new file mode 100644 index 0000000000..03203d6f5e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lt.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Gr\u012F\u017Eti prie projekto +Changes=Pakeitimai +Console\ Output=Konsol\u0117s i\u0161vestis +Edit\ Build\ Information=Redaguoti bildo informacij\u0105 +Status=B\u016Bkl\u0117 +raw=grynas diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties new file mode 100644 index 0000000000..27e4312dd4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lt.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Dashboard=Gr\u012F\u017Eti \u012F Prietais\u0173 skydel\u012F +Changes=Pasikeitimai +Status=Statusas +Wipe\ Out\ Workspace=I\u0161valyti vis\u0105 darbalauk\u012F +Workspace=Darbalaukis diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties new file mode 100644 index 0000000000..a8e8ba5cb1 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lt.properties @@ -0,0 +1,23 @@ +# 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. + +Configure=Nustatymai diff --git a/core/src/main/resources/hudson/model/Run/console_lt.properties b/core/src/main/resources/hudson/model/Run/console_lt.properties new file mode 100644 index 0000000000..6c39f38b23 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_lt.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. + +Console\ Output=Konsol\u0117s i\u0161vestis +View\ as\ plain\ text=\u017Di\u016Br\u0117ti kaip tekst\u0105 +skipSome=Praleid\u017Eiame {0,number,integer} KB.. Pilna istorija diff --git a/core/src/main/resources/hudson/model/View/People/index_lt.properties b/core/src/main/resources/hudson/model/View/People/index_lt.properties new file mode 100644 index 0000000000..60e0617cb8 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_lt.properties @@ -0,0 +1,26 @@ +# 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. + +All\ People=Visi vartotojai +Name=Vardas +People=Vartotojai +User\ Id=Slapyvardis diff --git a/core/src/main/resources/hudson/model/View/sidepanel_lt.properties b/core/src/main/resources/hudson/model/View/sidepanel_lt.properties index da2c0352e2..b8b562f01c 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_lt.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_lt.properties @@ -24,4 +24,6 @@ Build\ History=U\u017Eduo\u010Di\u0173 istorija Check\ File\ Fingerprint=Tikrinti Failo Antspaud\u0105 Delete\ View=\u0160alinti Vaizd\u0105 Edit\ View=Redaguoti skilt\u012F +NewJob=Naujas {0} +People=\u017Dmon\u0117s Project\ Relationship=Projekto S\u0105ry\u0161iai diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties new file mode 100644 index 0000000000..441a3bf7e1 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_lt.properties @@ -0,0 +1,23 @@ +# 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. + +login=Prisijungti diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties new file mode 100644 index 0000000000..0369427795 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lt.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Planuoti u\u017Eduot\u012F diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lt.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lt.properties new file mode 100644 index 0000000000..86547263fa --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lt.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Naujas vaizdas diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_lt.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_lt.properties new file mode 100644 index 0000000000..e5b9cd6957 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_lt.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N\u0117ra diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_lt.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_lt.properties new file mode 100644 index 0000000000..e5b9cd6957 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_lt.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N\u0117ra diff --git a/core/src/main/resources/lib/hudson/buildCaption_lt.properties b/core/src/main/resources/lib/hudson/buildCaption_lt.properties new file mode 100644 index 0000000000..4ba54cb257 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_lt.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Progresas +cancel=at\u0161aukti diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties new file mode 100644 index 0000000000..61668920eb --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_lt.properties @@ -0,0 +1,23 @@ +# 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. + +text=Prad\u0117ta prie\u0161 {0}
    Lik\u0119s sp\u0117jamas laikas: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_lt.properties b/core/src/main/resources/lib/hudson/editableDescription_lt.properties index 530640006c..725ae79ef4 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_lt.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_lt.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +add\ description=prid\u0117ti apra\u0161ym\u0105 edit\ description=keisti apra\u0161ym\u0105 diff --git a/core/src/main/resources/lib/hudson/executors_lt.properties b/core/src/main/resources/lib/hudson/executors_lt.properties index 02eb5d961a..b6b9ffa8fd 100644 --- a/core/src/main/resources/lib/hudson/executors_lt.properties +++ b/core/src/main/resources/lib/hudson/executors_lt.properties @@ -22,7 +22,7 @@ Build\ Executor\ Status=U\u017Eduoties vykdytojo b\u016Bsena Idle=Nenaudojamas -Master=Master +Master=Pagrindinis Offline=Nepasiekiamas Status=B\u016Bsena offline=nepasiekiamas diff --git a/core/src/main/resources/lib/layout/layout_lt.properties b/core/src/main/resources/lib/layout/layout_lt.properties index dab1ba27ca..eecffdab0c 100644 --- a/core/src/main/resources/lib/layout/layout_lt.properties +++ b/core/src/main/resources/lib/layout/layout_lt.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=Prisijungti +ENABLE\ AUTO\ REFRESH= Page\ generated=Puslapis sugeneruotas logout=atsijungti +search=paie\u0161ka +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 52b9b5a621b3d825c69f3cf1bf0ac22fcef888d9 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 131/158] Community-contributed localization for Latvian (lv) --- .../hudson/AboutJenkins/index_lv.properties | 24 +++++++++++++ .../PluginManager/checkUpdates_lv.properties | 25 +++++++++++++ .../hudson/PluginManager/index_lv.properties | 26 ++++++++++++++ .../hudson/PluginManager/tabBar_lv.properties | 26 ++++++++++++++ .../hudson/PluginManager/table_lv.properties | 28 +++++++++++++++ .../message_lv.properties | 25 +++++++++++++ .../LogRecorderManager/index_lv.properties | 26 ++++++++++++++ .../sidepanel_lv.properties | 28 +++++++++++++++ .../model/AbstractBuild/changes_lv.properties | 23 ++++++++++++ .../model/AbstractBuild/index_lv.properties | 29 +++++++++++++++ .../AbstractBuild/sidepanel_lv.properties | 24 +++++++++++++ .../model/AbstractBuild/tasks_lv.properties | 29 +++++++++++++++ .../model/AbstractItem/delete_lv.properties | 23 ++++++++++++ .../AbstractItem/noWorkspace_lv.properties | 24 +++++++++++++ .../AbstractProject/changes_lv.properties | 23 ++++++++++++ .../model/AbstractProject/main_lv.properties | 24 +++++++++++++ .../AbstractProject/sidepanel_lv.properties | 30 ++++++++++++++++ .../UserIdCause/description_lv.properties | 24 +++++++++++++ .../hudson/model/Computer/index_lv.properties | 25 +++++++++++++ .../model/Computer/sidepanel_lv.properties | 29 +++++++++++++++ .../model/ComputerSet/index_lv.properties | 25 +++++++++++++ .../model/ComputerSet/sidepanel_lv.properties | 26 ++++++++++++++ .../DirectoryBrowserSupport/dir_lv.properties | 24 +++++++++++++ .../model/Executor/causeOfDeath_lv.properties | 26 ++++++++++++++ .../model/Fingerprint/index_lv.properties | 26 ++++++++++++++ .../model/Job/buildTimeTrend_lv.properties | 27 ++++++++++++++ .../hudson/model/Job/configure_lv.properties | 25 +++++++++++++ .../hudson/model/Job/index_lv.properties | 25 +++++++++++++ .../hudson/model/Job/permalinks_lv.properties | 23 ++++++++++++ .../hudson/model/Label/index_lv.properties | 24 +++++++++++++ .../model/Label/sidepanel_lv.properties | 25 +++++++++++++ .../ListView/configure-entries_lv.properties | 32 +++++++++++++++++ .../ListView/newViewDetail_lv.properties | 23 ++++++++++++ .../model/LoadStatistics/main_lv.properties | 28 +++++++++++++++ .../model/MyView/newViewDetail_lv.properties | 23 ++++++++++++ .../MyViewsProperty/config_lv.properties | 23 ++++++++++++ .../MyViewsProperty/newView_lv.properties | 23 ++++++++++++ .../ParametersAction/index_lv.properties | 24 +++++++++++++ .../index_lv.properties | 25 +++++++++++++ .../Permalink/link_lv.properties | 23 ++++++++++++ .../ProxyView/newViewDetail_lv.properties | 23 ++++++++++++ .../Run/KeepLogBuildBadge/badge_lv.properties | 23 ++++++++++++ .../hudson/model/Run/configure_lv.properties | 26 ++++++++++++++ .../model/Run/confirmDelete_lv.properties | 24 +++++++++++++ .../hudson/model/Run/console_lv.properties | 24 +++++++++++++ .../hudson/model/Run/delete_lv.properties | 23 ++++++++++++ .../hudson/model/Run/logKeep_lv.properties | 23 ++++++++++++ .../ConnectionCheckJob/row_lv.properties | 23 ++++++++++++ .../CoreUpdateMonitor/message_lv.properties | 25 +++++++++++++ .../Installing/status_lv.properties | 23 ++++++++++++ .../DownloadJob/Pending/status_lv.properties | 23 ++++++++++++ .../DownloadJob/Success/status_lv.properties | 23 ++++++++++++ .../Pending/status_lv.properties | 23 ++++++++++++ .../Running/status_lv.properties | 23 ++++++++++++ .../RestartJenkinsJob/row_lv.properties | 23 ++++++++++++ .../model/UpdateCenter/body_lv.properties | 23 ++++++++++++ .../model/UpdateCenter/index_lv.properties | 23 ++++++++++++ .../UpdateCenter/sidepanel_lv.properties | 25 +++++++++++++ .../hudson/model/User/builds_lv.properties | 23 ++++++++++++ .../hudson/model/User/configure_lv.properties | 25 +++++++++++++ .../hudson/model/User/index_lv.properties | 23 ++++++++++++ .../hudson/model/User/sidepanel_lv.properties | 27 ++++++++++++++ .../model/View/People/index_lv.properties | 28 +++++++++++++++ .../hudson/model/View/builds_lv.properties | 24 +++++++++++++ .../hudson/model/View/configure_lv.properties | 26 ++++++++++++++ .../hudson/model/View/newJob_lv.properties | 24 +++++++++++++ .../hudson/model/View/sidepanel_lv.properties | 29 +++++++++++++++ .../EmptyChangeLogSet/digest_lv.properties | 23 ++++++++++++ .../scm/SCM/project-changes_lv.properties | 24 +++++++++++++ .../ComputerLauncher/main_lv.properties | 23 ++++++++++++ .../slaves/JNLPLauncher/main_lv.properties | 24 +++++++++++++ .../ChannelTermination/cause_lv.properties | 23 ++++++++++++ .../LaunchFailed/cause_lv.properties | 23 ++++++++++++ .../SlaveComputer/sidepanel2_lv.properties | 25 +++++++++++++ .../FingerprintAction/index_lv.properties | 28 +++++++++++++++ .../Mailer/UserProperty/config_lv.properties | 23 ++++++++++++ .../tasks/junit/History/index_lv.properties | 23 ++++++++++++ .../MetaTabulatedResult/body_lv.properties | 28 +++++++++++++++ .../MetaTabulatedResult/list_lv.properties | 28 +++++++++++++++ .../test/TestObject/sidepanel_lv.properties | 25 +++++++++++++ .../tasks/test/TestResult/index_lv.properties | 23 ++++++++++++ .../floatingBox_lv.properties | 25 +++++++++++++ .../BuildAction/index_lv.properties | 25 +++++++++++++ .../SCMTrigger/SCMAction/index_lv.properties | 23 ++++++++++++ .../BuildButtonColumn/column_lv.properties | 23 ++++++++++++ .../myViewTabs_lv.properties | 23 ++++++++++++ .../DefaultViewsTabBar/viewTabs_lv.properties | 23 ++++++++++++ .../columnHeader_lv.properties | 23 ++++++++++++ .../LastDurationColumn/column_lv.properties | 23 ++++++++++++ .../columnHeader_lv.properties | 23 ++++++++++++ .../LastFailureColumn/column_lv.properties | 23 ++++++++++++ .../columnHeader_lv.properties | 23 ++++++++++++ .../LastSuccessColumn/column_lv.properties | 23 ++++++++++++ .../StatusColumn/columnHeader_lv.properties | 23 ++++++++++++ .../WeatherColumn/columnHeader_lv.properties | 23 ++++++++++++ .../BuildHistoryWidget/entries_lv.properties | 24 +++++++++++++ .../widgets/HistoryWidget/entry_lv.properties | 23 ++++++++++++ .../widgets/HistoryWidget/index_lv.properties | 26 ++++++++++++++ .../jenkins/model/Jenkins/_cli_lv.properties | 23 ++++++++++++ .../model/Jenkins/_safeRestart_lv.properties | 24 +++++++++++++ .../model/Jenkins/configure_lv.properties | 25 +++++++++++++ .../model/Jenkins/downgrade_lv.properties | 23 ++++++++++++ .../Jenkins/fingerprintCheck_lv.properties | 28 +++++++++++++++ .../jenkins/model/Jenkins/login_lv.properties | 26 ++++++++++++++ .../model/Jenkins/manage_lv.properties | 35 +++++++++++++++++++ .../model/Jenkins/newView_lv.properties | 23 ++++++++++++ .../Jenkins/projectRelationship_lv.properties | 26 ++++++++++++++ .../resources/lib/form/advanced_lv.properties | 23 ++++++++++++ .../resources/lib/form/helpArea_lv.properties | 23 ++++++++++++ .../form/repeatableDeleteButton_lv.properties | 23 ++++++++++++ .../lib/hudson/artifactList_lv.properties | 23 ++++++++++++ .../lib/hudson/buildCaption_lv.properties | 24 +++++++++++++ .../lib/hudson/buildHealth_lv.properties | 23 ++++++++++++ .../lib/hudson/buildListTable_lv.properties | 26 ++++++++++++++ .../lib/hudson/buildProgressBar_lv.properties | 23 ++++++++++++ .../hudson/editableDescription_lv.properties | 24 +++++++++++++ .../lib/hudson/executors_lv.properties | 29 +++++++++++++++ .../lib/hudson/iconSize_lv.properties | 23 ++++++++++++ .../lib/hudson/newFromList/form_lv.properties | 23 ++++++++++++ .../resources/lib/hudson/node_lv.properties | 23 ++++++++++++ .../project/upstream-downstream_lv.properties | 24 +++++++++++++ .../resources/lib/hudson/queue_lv.properties | 26 ++++++++++++++ .../resources/lib/hudson/rssBar_lv.properties | 26 ++++++++++++++ .../lib/hudson/scriptConsole_lv.properties | 24 +++++++++++++ .../lib/hudson/test-result_lv.properties | 23 ++++++++++++ .../hudson/thirdPartyLicenses_lv.properties | 25 +++++++++++++ .../resources/lib/layout/layout_lv.properties | 28 +++++++++++++++ .../lib/layout/main-panel_lv.properties | 23 ++++++++++++ .../main/resources/lib/test/bar_lv.properties | 24 +++++++++++++ .../MavenModuleSet/actions_lv.properties | 23 ++++++++++++ .../maven/MavenModuleSet/index_lv.properties | 27 ++++++++++++++ .../MavenModuleSet/newJobDetail_lv.properties | 23 ++++++++++++ 132 files changed, 3248 insertions(+) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_lv.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_lv.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_lv.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_lv.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_lv.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_lv.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties create mode 100644 core/src/main/resources/hudson/model/Executor/causeOfDeath_lv.properties create mode 100644 core/src/main/resources/hudson/model/Fingerprint/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_lv.properties create mode 100644 core/src/main/resources/hudson/model/Label/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/Label/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties create mode 100644 core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_lv.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lv.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_lv.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_lv.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/User/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_lv.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_lv.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lv.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_lv.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_lv.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lv.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lv.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_lv.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_lv.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_lv.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_lv.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_lv.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties create mode 100644 core/src/main/resources/lib/form/advanced_lv.properties create mode 100644 core/src/main/resources/lib/form/helpArea_lv.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties create mode 100644 core/src/main/resources/lib/hudson/artifactList_lv.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_lv.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_lv.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_lv.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_lv.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_lv.properties create mode 100644 core/src/main/resources/lib/hudson/executors_lv.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_lv.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_lv.properties create mode 100644 core/src/main/resources/lib/hudson/node_lv.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties create mode 100644 core/src/main/resources/lib/hudson/queue_lv.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_lv.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_lv.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_lv.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_lv.properties create mode 100644 core/src/main/resources/lib/layout/layout_lv.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_lv.properties create mode 100644 core/src/main/resources/lib/test/bar_lv.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_lv.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_lv.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_lv.properties b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties new file mode 100644 index 0000000000..c07a01fe91 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_lv.properties @@ -0,0 +1,24 @@ +# 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. + +about=Par Jenkins {0} +dependencies=Jenkins ir atkar\u012Bgs no tre\u0161\u0101s puses bibliot\u0113k\u0101m. diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_lv.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_lv.properties new file mode 100644 index 0000000000..77dc0089ea --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_lv.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. + +Checking\ Updates...=P\u0101rbauda atjaunin\u0101jumus +Done=Izpild\u012Bts +Go\ back\ to\ update\ center=Atgriezties Atjaunin\u0101jumu Centr\u0101 diff --git a/core/src/main/resources/hudson/PluginManager/index_lv.properties b/core/src/main/resources/hudson/PluginManager/index_lv.properties new file mode 100644 index 0000000000..d530c17f88 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_lv.properties @@ -0,0 +1,26 @@ +# 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. + +All=Visus +None=Nevienu +Select=Iez\u012Bm\u0113t +UpdatePageDescription=\u0160\u012B lapa uzr\u0101da sarakstu ar pa\u0161laik lietotajiem spraud\u0146iem diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties b/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties new file mode 100644 index 0000000000..5e3704446b --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=Papildus +Available=Pieejamie +Installed=Uzst\u0101d\u012Btie +Updates=Atjaunin\u0101jumi diff --git a/core/src/main/resources/hudson/PluginManager/table_lv.properties b/core/src/main/resources/hudson/PluginManager/table_lv.properties new file mode 100644 index 0000000000..d19e31b1fe --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_lv.properties @@ -0,0 +1,28 @@ +# 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. + +Check\ to\ install\ the\ plugin=Ie\u0137es\u0113 lai uzst\u0101d\u012Btu spraud\u0146us +Click\ this\ heading\ to\ sort\ by\ category=Noklik\u0161\u0137ini \u0161o virsrakstu, lai k\u0101rtotu p\u0113c kategorijas +Install=Uzst\u0101d\u012Bt +Installed=Uzinst\u0101d\u012Btie +Name=Nosaukums +Version=Versija diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.properties new file mode 100644 index 0000000000..ee0cafeb8e --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_lv.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. + +Dismiss=Izlaist +More\ Info=Vair\u0101k inform\u0101cijas +blurb=Izskat\u0101s, ka atpaka\u013Cejo\u0161\u0101 starpniekservera uzst\u0101d\u012Bjums ir salauzts. diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties new file mode 100644 index 0000000000..0171527417 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Add\ new\ log\ recorder=Pievienot jaunu \u017Eurn\u0101la ieraskst\u012Bt\u0101ju +All\ Jenkins\ Logs=Visi Jenkins \u017Eurn\u0101li +Log\ Recorders=\u017Eurn\u0101la ierakstit\u0101ji +Name=V\u0101rds diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties new file mode 100644 index 0000000000..4ca046f2c3 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_lv.properties @@ -0,0 +1,28 @@ +# 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. + +All\ Logs=Visi \u017Eurn\u0101li +Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li +Log\ Levels=\u017Durn\u0101la l\u012Bme\u0146i +Logger\ List=Ie\u017Eurnal\u0113t\u0101ja saraksts +Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins +New\ Log\ Recorder=Jauns \u017Eurn\u0101la ieraksts diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties new file mode 100644 index 0000000000..8be382bdc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Izmai\u0146as diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties new file mode 100644 index 0000000000..305f72cbff --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_lv.properties @@ -0,0 +1,29 @@ +# 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=B\u016Bv\u0113jums +Changes\ in\ dependency=Atkar\u012Bbu izmai\u0146as +Not\ yet\ determined=V\u0113l nav noteikts +Took=Pras\u012Bja +detail=s\u012Bk\u0101k +on=uz +startedAgo=S\u0101kts pirms {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties new file mode 100644 index 0000000000..138e4e3638 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Next\ Build=N\u0101kamais b\u016Bv\u0113jums +Previous\ Build=Iepriek\u0161\u0113jais b\u016Bv\u0113jums diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties new file mode 100644 index 0000000000..cc31f27ad6 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_lv.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ Project=Atpaka\u013C uz projektu +Changes=Izmai\u0146as +Console\ Output=Konsoles izvaddati +Edit\ Build\ Information=Redi\u0123\u0113t b\u016Bv\u0113juma inform\u0101ciju +Status=St\u0101voklis +View\ Build\ Information=Att\u0113lot b\u016Bv\u0113juma inform\u0101ciju +raw=pamatforma diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties new file mode 100644 index 0000000000..ae17484ffc --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Yes=J\u0101 diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties new file mode 100644 index 0000000000..94e3bac297 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_lv.properties @@ -0,0 +1,24 @@ +# 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. + +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=Nav darbavietas \u0161im projektam. Iesp\u0113jamie iemesli: +text=Palaist b\u016Bv\u0113jumi lai izveidotu darbavietu priek\u0161 Jenkins. diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties new file mode 100644 index 0000000000..8be382bdc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Izmai\u0146as diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties new file mode 100644 index 0000000000..5dc832d8f8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Recent\ Changes=Nesen\u0101k\u0101s izmai\u0146as +Workspace=Darbavieta diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties new file mode 100644 index 0000000000..fdf43d783b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_lv.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Atpaka\u013C uz paneli +Build\ scheduled=B\u016Bv\u0113jums iepl\u0101nots +Changes=Izmai\u0146as +Configure=Konfigur\u0113t +Status=Statuss +Wipe\ Out\ Workspace=Izt\u012Br\u012Bt darbavietu +Workspace=Darbavieta +delete=Dz\u0113st {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties new file mode 100644 index 0000000000..f97a32a36f --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_lv.properties @@ -0,0 +1,24 @@ +# 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. + +started_by_anonymous=S\u0101kts ar anon\u012Bmu lietot\u0101ju +started_by_user=Ticis uzs\u0101kts p\u0113c {1} izsaukuma diff --git a/core/src/main/resources/hudson/model/Computer/index_lv.properties b/core/src/main/resources/hudson/model/Computer/index_lv.properties new file mode 100644 index 0000000000..194fe12aa9 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_lv.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. + +Labels:=Birkas: +None=Neveins +title.projects_tied_on=Projekti, kuri piesaist\u012Bti pie {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties new file mode 100644 index 0000000000..20b6a83a3e --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_lv.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=Atpaka\u013C pie saraksta +Build\ History=B\u016Bv\u0113jumu v\u0113sture +Configure=Konfigur\u0113t +Delete\ Slave=D\u017E\u0113st pak\u0101rtoto izpild\u012Btaju +Load\ Statistics=Noslodzes statistika +Script\ Console=Skriptu konsole +Status=St\u0101voklis diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/index_lv.properties new file mode 100644 index 0000000000..6d224780f5 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_lv.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. + +Configure=Konfigur\u0113t +Name=Nosaukums +Refresh\ status=Atsvaidzin\u0101t st\u0101vokli diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties new file mode 100644 index 0000000000..0556d4b035 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li +Configure=Konfigur\u0113t +Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins +New\ Node=Jauna Node diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties new file mode 100644 index 0000000000..ecabae0b7a --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_lv.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=visi faili arh\u012Bv\u0101 +view=skat\u012Bt diff --git a/core/src/main/resources/hudson/model/Executor/causeOfDeath_lv.properties b/core/src/main/resources/hudson/model/Executor/causeOfDeath_lv.properties new file mode 100644 index 0000000000..67d8bbe8bd --- /dev/null +++ b/core/src/main/resources/hudson/model/Executor/causeOfDeath_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Back=Atpaka\u013C +Restart\ this\ thread=P\u0101rstart\u0113t \u0161o pavedienu +Thread\ has\ died=Pavediens ir miris +more\ info=vair\u0101k inform\u0101cijas diff --git a/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties b/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties new file mode 100644 index 0000000000..d8190f6736 --- /dev/null +++ b/core/src/main/resources/hudson/model/Fingerprint/index_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=Atpaka\u013C uz Uzdevumd\u0113li +This\ file\ has\ been\ used\ in\ the\ following\ places=\u0160is fails ticis izmantots sekojo\u0161\u0101s viet\u0101s +Usage=Pielietojums +introduced=Uzr\u0101d\u012Bts pirms {0} diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties new file mode 100644 index 0000000000..91f25b9b8e --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_lv.properties @@ -0,0 +1,27 @@ +# 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=B\u016Bv\u0113jums +Build\ Time\ Trend=B\u016Bv\u0113jumu laika tendence +Duration=Ilgums +Slave=Slave +Timeline=Laika nogrieznis diff --git a/core/src/main/resources/hudson/model/Job/configure_lv.properties b/core/src/main/resources/hudson/model/Job/configure_lv.properties new file mode 100644 index 0000000000..e616217fad --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_lv.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. + +Description=Apraksts +LOADING=IEL\u0100D\u0112 +name={0} nosaukums diff --git a/core/src/main/resources/hudson/model/Job/index_lv.properties b/core/src/main/resources/hudson/model/Job/index_lv.properties new file mode 100644 index 0000000000..f4d9190628 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_lv.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. + +Disable\ Project=Atsp\u0113jot projektu +Enable=Iesp\u0113jot +This\ project\ is\ currently\ disabled=\u0160is projekts pa\u0161reiz ir atsp\u0113jots diff --git a/core/src/main/resources/hudson/model/Job/permalinks_lv.properties b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties new file mode 100644 index 0000000000..42e5f1c075 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=Permasaites diff --git a/core/src/main/resources/hudson/model/Label/index_lv.properties b/core/src/main/resources/hudson/model/Label/index_lv.properties new file mode 100644 index 0000000000..879065f010 --- /dev/null +++ b/core/src/main/resources/hudson/model/Label/index_lv.properties @@ -0,0 +1,24 @@ +# 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. + +None=Neviens +Projects=Projekti diff --git a/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties b/core/src/main/resources/hudson/model/Label/sidepanel_lv.properties new file mode 100644 index 0000000000..1590255d70 --- /dev/null +++ b/core/src/main/resources/hudson/model/Label/sidepanel_lv.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. + +Back\ to\ Dashboard=Atpaka\u013C uz uzdevumd\u0113li +Load\ Statistics=Noslodzes statistika +Overview=P\u0101rskats diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties new file mode 100644 index 0000000000..efa3977c0b --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_lv.properties @@ -0,0 +1,32 @@ +# 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. + +Add\ column=Pievienot kolonnu +All\ selected\ jobs=Visi atlas\u012Btie darbi +Columns=Kolonna +Disabled\ jobs\ only=Tikai atsl\u0113gtie darbi +Enabled\ jobs\ only=Tikai iesl\u0113gtie darbi +Job\ Filters=Darbu filtri +Jobs=Darbi +Regular\ expression=Regul\u0101r\u0101 izteiksme +Status\ Filter=Statusa filtrs +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Lietot regul\u0101r\u0101s izteiksmes, lai iek\u013Cautu darbus \u0161aj\u0101 skat\u0101 diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties new file mode 100644 index 0000000000..8c943b6060 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_lv.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=Att\u0113lo lietas k\u0101 vienk\u0101r\u0161u sarakstu. J\u016Bs varat izbv\u0113l\u0113ties, kurus darbus atr\u0101d\u012Bt attiec\u012Bgaj\u0101 skat\u0101. diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties new file mode 100644 index 0000000000..75b81b0ca2 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_lv.properties @@ -0,0 +1,28 @@ +# 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. + +Load\ statistics\ graph=Iel\u0101d\u0113t statistikas grafiku +Long=Gar\u0161 +Medium=Vid\u0113js +Short=\u012Ass +Timespan=Laika griezums +title=Noslodzes statistika: {0} diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties new file mode 100644 index 0000000000..91b58e87a0 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_lv.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=\u0160is skats autom\u0101tiski atr\u0101da visus darbus, kuriem ir pa\u0161reiz\u0113j\u0101 lietot\u0101ja piek\u013Cuve. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties new file mode 100644 index 0000000000..37cf9d8a99 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Default\ View=Noklus\u0113tais skats diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_lv.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_lv.properties new file mode 100644 index 0000000000..c76f20e860 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_lv.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=Skata nosaukums diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties b/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties new file mode 100644 index 0000000000..016a683a45 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_lv.properties @@ -0,0 +1,24 @@ +# 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=B\u016Bv\u0113jums +Parameters=Parametri diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.properties new file mode 100644 index 0000000000..7ce84a94c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_lv.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. + +Build=B\u016Bv\u0113t +LOADING=IEL\u0100D\u0112JU +description=\u0160is b\u016Bv\u0113jums pieprasa parametrus: diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lv.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lv.properties new file mode 100644 index 0000000000..e1209c52d3 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_lv.properties @@ -0,0 +1,23 @@ +# 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. + +format="{0} ({1}), pirms {2}" diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties new file mode 100644 index 0000000000..bbdc7b54bb --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Shows\ the\ content\ of\ a\ global\ view.=Att\u0113lo visp\u0101r\u0113j\u0101 skata saturu diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties new file mode 100644 index 0000000000..7cd99b98bb --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=Patur\u0113t \u0161o b\u016Bv\u0113jumu m\u016B\u017E\u012Bgi diff --git a/core/src/main/resources/hudson/model/Run/configure_lv.properties b/core/src/main/resources/hudson/model/Run/configure_lv.properties new file mode 100644 index 0000000000..0e5de8f8da --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Apraksts +DisplayName=Atr\u0101d\u012B\u0161anas v\u0101rds +LOADING=IEL\u0100D\u0112JU +Save=Saglab\u0101t diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties new file mode 100644 index 0000000000..bf3beaf21e --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=Vai j\u016Bs esat dro\u0161s par \u0161i b\u016Bv\u0113juma dz\u0113\u0161anu? +Yes=J\u0101 diff --git a/core/src/main/resources/hudson/model/Run/console_lv.properties b/core/src/main/resources/hudson/model/Run/console_lv.properties new file mode 100644 index 0000000000..071eaedf25 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Konsoles izvaddati +View\ as\ plain\ text=Rad\u012Bt k\u0101 neformat\u0113tu tekstu diff --git a/core/src/main/resources/hudson/model/Run/delete_lv.properties b/core/src/main/resources/hudson/model/Run/delete_lv.properties new file mode 100644 index 0000000000..55904103a7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=Dz\u0113st \u0161o b\u016Bv\u0113jumu diff --git a/core/src/main/resources/hudson/model/Run/logKeep_lv.properties b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties new file mode 100644 index 0000000000..209cd839dd --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=Glab\u0101t \u0161o b\u016Bv\u0113jumu visu laiku diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties new file mode 100644 index 0000000000..78a0a87434 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=Sagatavo\u0161an\u0101s diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.properties new file mode 100644 index 0000000000..1622b720c2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_lv.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. + +NewVersionAvailable=Jauna Jenkins ({0}) versija ir pieejama lejupl\u0101dei (izmai\u0146as). +Or\ Upgrade\ Automatically=Vai atjaunin\u0101t autom\u0101tiski +UpgradeComplete=Atjaunin\u0101s\u0101na uz Jenkins {0} ir pabeigta; gaidu p\u0101rstart\u0113\u0161anos. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties new file mode 100644 index 0000000000..d0d8409b66 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=Uzst\u0101da diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties new file mode 100644 index 0000000000..b5823b2ee4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=Gatavoj\u0101s diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties new file mode 100644 index 0000000000..544f89a7c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Success=Veiksm\u012Bgi diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties new file mode 100644 index 0000000000..b5823b2ee4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=Gatavoj\u0101s diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties new file mode 100644 index 0000000000..99fb8ffd47 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Running=Str\u0101d\u0101 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties new file mode 100644 index 0000000000..5bfd40d25d --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=P\u0101rstart\u0113t Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties new file mode 100644 index 0000000000..5cf25f14f4 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_lv.properties @@ -0,0 +1,23 @@ +# 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. + +warning=P\u0101rstart\u0113t Jenkins kad instal\u0101cija ir pabeigta un nav neviens str\u0101d\u0101jo\u0161s darbs diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties new file mode 100644 index 0000000000..5bb47a4109 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=Instal\u0113ju Spraud\u0146us/Atjaunon\u0101jumus diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.properties new file mode 100644 index 0000000000..a47c3c82a1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_lv.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. + +Back\ to\ Dashboard=Atpaka\u013C uz Darbvirsmu +Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins +Manage\ Plugins=P\u0101rvald\u012Bt Spraud\u0146us diff --git a/core/src/main/resources/hudson/model/User/builds_lv.properties b/core/src/main/resources/hudson/model/User/builds_lv.properties new file mode 100644 index 0000000000..249d8dc1c1 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_lv.properties @@ -0,0 +1,23 @@ +# 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. + +title=B\u016Bv\u0113jumi priek\u0161 {0} diff --git a/core/src/main/resources/hudson/model/User/configure_lv.properties b/core/src/main/resources/hudson/model/User/configure_lv.properties new file mode 100644 index 0000000000..9ff81d2aa3 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_lv.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. + +Description=Apraksts +Save=Saglab\u0101t +Your\ name=Tavs v\u0101rds diff --git a/core/src/main/resources/hudson/model/User/index_lv.properties b/core/src/main/resources/hudson/model/User/index_lv.properties new file mode 100644 index 0000000000..d51e6e3b1f --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins lietot\u0101ja identifikators diff --git a/core/src/main/resources/hudson/model/User/sidepanel_lv.properties b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties new file mode 100644 index 0000000000..a20e21004d --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_lv.properties @@ -0,0 +1,27 @@ +# 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. + +Builds=B\u016Bv\u0113jumi +Configure=Konfigur\u0113t +My\ Views=Mani Skati +People=Cilv\u0113ki +Status=St\u0101voklis diff --git a/core/src/main/resources/hudson/model/View/People/index_lv.properties b/core/src/main/resources/hudson/model/View/People/index_lv.properties new file mode 100644 index 0000000000..927d020d3c --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_lv.properties @@ -0,0 +1,28 @@ +# 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. + +All\ People=Visi cilv\u0113ki +Last\ Active=Ped\u0113j\u0101 aktivit\u0101te +Name=V\u0101rds +On=Uz +People=Cilv\u0113ki +User\ Id=Lietot\u0101ja identifikators diff --git a/core/src/main/resources/hudson/model/View/builds_lv.properties b/core/src/main/resources/hudson/model/View/builds_lv.properties new file mode 100644 index 0000000000..ff6757c57d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=Eksport\u0113t k\u0101 neformat\u0113tu XML +buildHistory={0} B\u016Bv\u0113jumu v\u0113sture diff --git a/core/src/main/resources/hudson/model/View/configure_lv.properties b/core/src/main/resources/hudson/model/View/configure_lv.properties new file mode 100644 index 0000000000..075796012a --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Apraksts +Filter\ build\ executors=Filtr\u0113t b\u016Bv\u0113t\u0101jus +Filter\ build\ queue=Filtr\u0113t b\u016Bv\u0113jumu rindu +Name=V\u0101rds diff --git a/core/src/main/resources/hudson/model/View/newJob_lv.properties b/core/src/main/resources/hudson/model/View/newJob_lv.properties new file mode 100644 index 0000000000..fff114e378 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_lv.properties @@ -0,0 +1,24 @@ +# 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. + +CopyExisting=Kop\u0113t eksist\u0113jo\u0161u {0} +JobName={0} v\u0101rds diff --git a/core/src/main/resources/hudson/model/View/sidepanel_lv.properties b/core/src/main/resources/hudson/model/View/sidepanel_lv.properties new file mode 100644 index 0000000000..37e2abe25e --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_lv.properties @@ -0,0 +1,29 @@ +# 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\ History=B\u016Bv\u0113jumu v\u0113sture +Check\ File\ Fingerprint=P\u0101rbaud\u012Bt faila "pirkstu nospiedumu" +Delete\ View=Dz\u0113st skatu +Edit\ View=Labot skatu +NewJob=Jauns {0} +People=Cilv\u0113ki +Project\ Relationship=Projektu atkar\u012Bbas diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties new file mode 100644 index 0000000000..073017d128 --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_lv.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=Izmai\u0146u nav. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties new file mode 100644 index 0000000000..2663e7ea10 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_lv.properties @@ -0,0 +1,24 @@ +# 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. + +No\ changes\ in\ any\ of\ the\ builds.=Nevien\u0101 no b\u016Bv\u0113jumiem izmai\u0146u nav. +detail=detaliz\u0113ti diff --git a/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties new file mode 100644 index 0000000000..7b0399c351 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/ComputerLauncher/main_lv.properties @@ -0,0 +1,23 @@ +# 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. + +See\ log\ for\ more\ details=Skat\u012Bt \u017Eurn\u0101lu pla\u0161\u0101kai inform\u0101cijai diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties new file mode 100644 index 0000000000..d267186db9 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Connected\ via\ JNLP\ agent.=Savienots ar JLNP a\u0123entu. +launch\ agent=palaist a\u0123entu diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties new file mode 100644 index 0000000000..f7105ff219 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/ChannelTermination/cause_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Connection\ was\ broken=Savienojums tika p\u0101rtraukts diff --git a/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties new file mode 100644 index 0000000000..ff254e8a2f --- /dev/null +++ b/core/src/main/resources/hudson/slaves/OfflineCause/LaunchFailed/cause_lv.properties @@ -0,0 +1,23 @@ +# 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. + +See\ log\ for\ more\ details=Skat\u012Bt \u017Eurn\u0101lu detaliz\u0113tai inform\u0101cijai diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lv.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lv.properties new file mode 100644 index 0000000000..a5f7fdc17f --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_lv.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. + +Disconnect=Atvienoties +Log=\u017Durn\u0101ls +System\ Information=Sist\u0113mas Inform\u0101cija diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_lv.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_lv.properties new file mode 100644 index 0000000000..11ab6e748b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_lv.properties @@ -0,0 +1,28 @@ +# 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. + +Age=Vecums +File=Fails +Original\ owner=S\u0101kotn\u0113jas \u012Bpa\u0161nieks +Recorded\ Fingerprints=Ierakst\u012Btie pirkstunospiedumi +more\ details=vair\u0101k inform\u0101cijas +this\ build=\u0161is b\u016Bv\u0113jums diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_lv.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_lv.properties new file mode 100644 index 0000000000..a82c45481d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_lv.properties @@ -0,0 +1,23 @@ +# 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. + +E-mail\ address=E-pasta adrese diff --git a/core/src/main/resources/hudson/tasks/junit/History/index_lv.properties b/core/src/main/resources/hudson/tasks/junit/History/index_lv.properties new file mode 100644 index 0000000000..53e4f39a97 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/History/index_lv.properties @@ -0,0 +1,23 @@ +# 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. + +title={0} v\u0113sture diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_lv.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_lv.properties new file mode 100644 index 0000000000..0beee97a0c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_lv.properties @@ -0,0 +1,28 @@ +# 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. + +All\ Tests=Visi Testi +Duration=Ilgums +Fail=Izg\u0101z\u0161an\u0101s +Skip=Izlaists +Total=Kop\u0101 +diff=diff diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_lv.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_lv.properties new file mode 100644 index 0000000000..0ad7abedfd --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/list_lv.properties @@ -0,0 +1,28 @@ +# 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=B\u016Bv\u0113jums +Description=Apraksts +Duration=Ilgums +Fail=Izg\u0101z\u0161an\u0101s +Skip=Izlaists +Total=Kop\u0101 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lv.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lv.properties new file mode 100644 index 0000000000..09c1ff7ccf --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_lv.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. + +History=V\u0113sture +Next\ Build=N\u0101kamais b\u016Bv\u0113jums +Previous\ Build=Iepriek\u0161\u0113jais b\u016Bv\u0113jums diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_lv.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_lv.properties new file mode 100644 index 0000000000..1a65f9b78b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_lv.properties @@ -0,0 +1,23 @@ +# 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. + +took=Ilga {0} diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lv.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lv.properties new file mode 100644 index 0000000000..155be2e618 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_lv.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. + +Test\ Result\ Trend=Testa rezult\u0101tu tendence +enlarge=palielin\u0101t +just\ show\ failures=r\u0101d\u012Bt tikai neveiksmes diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_lv.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_lv.properties new file mode 100644 index 0000000000..4c9ee03c26 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_lv.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. + +Polling\ Log=Apvieno\u0161anas \u017Durn\u0101ls +View\ as\ plain\ text=R\u0101d\u012Bt k\u0101 neformat\u0113tu tekstu +blurb=\u0160\u012B lapa ietver apvieno\u0161anas \u017Eurn\u0101lu, kur\u0161 iesl\u0113dz \u0161o b\u016Bv\u0113jumu. diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_lv.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_lv.properties new file mode 100644 index 0000000000..4d42091ce9 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_lv.properties @@ -0,0 +1,23 @@ +# 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. + +title="{0}" diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties new file mode 100644 index 0000000000..29a2058202 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Iepl\u0101not b\u016Bv\u0113jumu diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lv.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lv.properties new file mode 100644 index 0000000000..5e2171d97c --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_lv.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Jauns skats diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lv.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lv.properties new file mode 100644 index 0000000000..5e2171d97c --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_lv.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Jauns skats diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lv.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lv.properties new file mode 100644 index 0000000000..3d32b2bafa --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Ilgums diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_lv.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_lv.properties new file mode 100644 index 0000000000..9de1abd64d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_lv.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Nav pieejams diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lv.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lv.properties new file mode 100644 index 0000000000..c4850eb0b6 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=P\u0113d\u0113j\u0101 k\u013C\u016Bda diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_lv.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_lv.properties new file mode 100644 index 0000000000..7f59267d42 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_lv.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lv.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lv.properties new file mode 100644 index 0000000000..df3b54f281 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=P\u0113d\u0113j\u0101 veiksme diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_lv.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_lv.properties new file mode 100644 index 0000000000..9de1abd64d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_lv.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Nav pieejams diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_lv.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_lv.properties new file mode 100644 index 0000000000..72bdf7fcc0 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_lv.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=P\u0113d\u0113j\u0101 b\u016Bv\u0113juma statuss diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_lv.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_lv.properties new file mode 100644 index 0000000000..ba64aab61e --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Vai r\u0101d\u012Bt p\u0113d\u0113jo b\u016Bv\u0113jumu agreg\u0113to statusu diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties new file mode 100644 index 0000000000..4d2e4035b2 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_lv.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=atcelt \u0161o b\u016Bv\u0113jumu +pending=gaida diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lv.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lv.properties new file mode 100644 index 0000000000..d8248b0160 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsoles izvaddati diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_lv.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_lv.properties new file mode 100644 index 0000000000..67815f695b --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_lv.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=Vair\u0101k ... +for\ all=visam +for\ failures=izg\u0101z\u0161\u0101n\u0101m +trend=tendence diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties new file mode 100644 index 0000000000..b18604f5df --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Available\ Commands=Pieejam\u0101s komandas diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties new file mode 100644 index 0000000000..9ce5e1ac3c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=Vai J\u016Bs esat dro\u0161s par Jenkins p\u0101rstart\u0113\u0161anos? Jenkins p\u0101rstart\u0113sies tikl\u012Bdz visi darbojo\u0161ies darbi b\u016Bs pabeigu\u0161i darbu. +Yes=J\u0101 diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_lv.properties new file mode 100644 index 0000000000..56c007f531 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_lv.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. + +Home\ directory=M\u0101jas direktorija +LOADING=IEL\u0100D\u0112 +Workspace\ Root\ Directory=Darbavietas saknes direktorija diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties new file mode 100644 index 0000000000..3732e949a7 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Atgriezties uz iepriek\u0161\u0113jo Jenkins versiju diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties new file mode 100644 index 0000000000..975749fb63 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_lv.properties @@ -0,0 +1,28 @@ +# 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. + +Check=P\u0101rbaud\u012Bt +Check\ File\ Fingerprint=P\u0101rbaude Faila Nospiedumam +File\ to\ check=Fails, kuru p\u0101baud\u012Bt +description=Ir *.jar fails, kuram nezini versiju?
    Uzzini to, p\u0101rbaudot pirkstu nospiedumu pret Jenkins datub\u0101zi. +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +more\ details=vair\u0101k inform\u0101cijas diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties new file mode 100644 index 0000000000..f07f44ae11 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Parole +Remember\ me\ on\ this\ computer=Atcer\u0113ties manu uz \u0161\u012B datora +User=Lietot\u0101js +login=Ielogoties diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties new file mode 100644 index 0000000000..8e822aab3c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_lv.properties @@ -0,0 +1,35 @@ +# 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. + +Cancel\ Shutdown=Atcelt Izsl\u0113g\u0161anu +Configure\ System=Konfigur\u0113t sist\u0113mu +Configure\ global\ settings\ and\ paths.=Konfigur\u0113t glob\u0101los iestat\u012Bjumus un ce\u013Cus +Jenkins\ CLI=Jenkins CLI (Komandrindas saskarne) +Load\ Statistics=Noslodzes Statistika +Manage\ Jenkins=P\u0101rvald\u012Bt Jenkins +Manage\ Nodes=P\u0101rvald\u012Bt nodes +Manage\ Plugins=P\u0101rvald\u012Bt spraud\u0146us +Prepare\ for\ Shutdown=Sagatavoties Izsl\u0113g\u0161\u0101nai +Reload\ Configuration\ from\ Disk=P\u0101rl\u0101d\u0113 konfigur\u0101ciju no diska +Script\ Console=Skriptu Konsole +System\ Information=Sist\u0113mas Inform\u0101cija +System\ Log=Sist\u0113mas \u017Durn\u0101li diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_lv.properties new file mode 100644 index 0000000000..c76f20e860 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_lv.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=Skata nosaukums diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties new file mode 100644 index 0000000000..eb163917eb --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Compare=Sal\u012Bdzin\u0101t +Project\ Relationship=Projektu saknes +downstream\ project=lejteces projekts +upstream\ project=aug\u0161teces projekts diff --git a/core/src/main/resources/lib/form/advanced_lv.properties b/core/src/main/resources/lib/form/advanced_lv.properties new file mode 100644 index 0000000000..037cabf9f9 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=Papildus diff --git a/core/src/main/resources/lib/form/helpArea_lv.properties b/core/src/main/resources/lib/form/helpArea_lv.properties new file mode 100644 index 0000000000..bfb601f8df --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=Iel\u0101d\u0113... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties new file mode 100644 index 0000000000..b3662101df --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Dz\u0113st diff --git a/core/src/main/resources/lib/hudson/artifactList_lv.properties b/core/src/main/resources/lib/hudson/artifactList_lv.properties new file mode 100644 index 0000000000..2142097e41 --- /dev/null +++ b/core/src/main/resources/lib/hudson/artifactList_lv.properties @@ -0,0 +1,23 @@ +# 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. + +View=Skats diff --git a/core/src/main/resources/lib/hudson/buildCaption_lv.properties b/core/src/main/resources/lib/hudson/buildCaption_lv.properties new file mode 100644 index 0000000000..4b00cb6040 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Att\u012Bst\u012Bba +cancel=atcelt diff --git a/core/src/main/resources/lib/hudson/buildHealth_lv.properties b/core/src/main/resources/lib/hudson/buildHealth_lv.properties new file mode 100644 index 0000000000..b3ddb452a4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Apraksts diff --git a/core/src/main/resources/lib/hudson/buildListTable_lv.properties b/core/src/main/resources/lib/hudson/buildListTable_lv.properties new file mode 100644 index 0000000000..bb37948468 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_lv.properties @@ -0,0 +1,26 @@ +# 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=B\u016Bv\u0113jums +Console\ output=Konsoles izvaddati +Status=St\u0101voklis +Time\ Since=Laiks kop\u0161 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties b/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties new file mode 100644 index 0000000000..11fa4f2b33 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_lv.properties @@ -0,0 +1,23 @@ +# 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. + +text=Uzs\u0101kts pirms {0}
    Aptuvenais atliku\u0161ais laiks: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_lv.properties b/core/src/main/resources/lib/hudson/editableDescription_lv.properties new file mode 100644 index 0000000000..dba232a389 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_lv.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=pievienot aprakstu +edit\ description=redi\u0123\u0113t aprakstu diff --git a/core/src/main/resources/lib/hudson/executors_lv.properties b/core/src/main/resources/lib/hudson/executors_lv.properties new file mode 100644 index 0000000000..22112e96e7 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_lv.properties @@ -0,0 +1,29 @@ +# 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=B\u016Bv\u0113jumu izpild\u012Bt\u0101ja statuss. +Building=B\u016Bv\u0113ju +Idle=D\u012Bkst\u0101v\u0113 +Master=Galvenais +Status=Statu +offline=bezsait\u0113 +terminate\ this\ build=p\u0101rtraukt \u0161o b\u016Bv\u0113jumu diff --git a/core/src/main/resources/lib/hudson/iconSize_lv.properties b/core/src/main/resources/lib/hudson/iconSize_lv.properties new file mode 100644 index 0000000000..5917729e15 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikona diff --git a/core/src/main/resources/lib/hudson/newFromList/form_lv.properties b/core/src/main/resources/lib/hudson/newFromList/form_lv.properties new file mode 100644 index 0000000000..77938ed5ac --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=Kop\u0113 no diff --git a/core/src/main/resources/lib/hudson/node_lv.properties b/core/src/main/resources/lib/hudson/node_lv.properties new file mode 100644 index 0000000000..f17c6857dc --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_lv.properties @@ -0,0 +1,23 @@ +# 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. + +master=master diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties new file mode 100644 index 0000000000..96d5165806 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Lejupstruames projekti +Upstream\ Projects=Aug\u0161upstraumes projekti diff --git a/core/src/main/resources/lib/hudson/queue_lv.properties b/core/src/main/resources/lib/hudson/queue_lv.properties new file mode 100644 index 0000000000..95ecc1c0d0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_lv.properties @@ -0,0 +1,26 @@ +# 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\ Queue=B\u016Bv\u0113jumu rinda +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins tiks izsl\u0113gts. Turpm\u0101ki b\u016Bv\u0113jumi netiks izpild\u012Bti. +No\ builds\ in\ the\ queue.=Rind\u0101 nav b\u016Bv\u0113jumu. +cancel=Atsaukt diff --git a/core/src/main/resources/lib/hudson/rssBar_lv.properties b/core/src/main/resources/lib/hudson/rssBar_lv.properties new file mode 100644 index 0000000000..a450fccaee --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_lv.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Le\u0123enda +for\ all=visiem +for\ failures=neveiksm\u0113m +for\ just\ latest\ builds=tikai jaun\u0101kajiem b\u016Bv\u0113jumiem diff --git a/core/src/main/resources/lib/hudson/scriptConsole_lv.properties b/core/src/main/resources/lib/hudson/scriptConsole_lv.properties new file mode 100644 index 0000000000..f6d29efd8a --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_lv.properties @@ -0,0 +1,24 @@ +# 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. + +Run=Palaist +Script\ Console=Skriptu Konsole diff --git a/core/src/main/resources/lib/hudson/test-result_lv.properties b/core/src/main/resources/lib/hudson/test-result_lv.properties new file mode 100644 index 0000000000..b882ccfa7e --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_lv.properties @@ -0,0 +1,23 @@ +# 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. + +no\ failures=nav k\u013C\u016Bdu diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_lv.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_lv.properties new file mode 100644 index 0000000000..ae36b77551 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_lv.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. + +License=Licence +Maven\ ID=Maven ID +Name=Nosaukums diff --git a/core/src/main/resources/lib/layout/layout_lv.properties b/core/src/main/resources/lib/layout/layout_lv.properties new file mode 100644 index 0000000000..6afafd2663 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_lv.properties @@ -0,0 +1,28 @@ +# 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\ AUTO\ REFRESH=ATSP\u0112JOT AUTOM\u0100TISKO +ENABLE\ AUTO\ REFRESH=Iesp\u0113jot autom\u0101tisko atsvaidzin\u0101\u0161anu +Page\ generated=Lappuse izveidota +logout=Izlogoties +search=Mek\u0113t +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_lv.properties b/core/src/main/resources/lib/layout/main-panel_lv.properties new file mode 100644 index 0000000000..dc90f26ebf --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkins tiks izsl\u0113gts diff --git a/core/src/main/resources/lib/test/bar_lv.properties b/core/src/main/resources/lib/test/bar_lv.properties new file mode 100644 index 0000000000..8df1f39ea4 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_lv.properties @@ -0,0 +1,24 @@ +# 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. + +failures={0} izg\u0101z\u0161an\u0101s reizes +tests={0} testi diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_lv.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_lv.properties new file mode 100644 index 0000000000..cb2ee9d76d --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_lv.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Modu\u013Ci 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 new file mode 100644 index 0000000000..c2f58276fa --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_lv.properties @@ -0,0 +1,27 @@ +# 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=Atsl\u0113gt projektu +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/newJobDetail_lv.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_lv.properties new file mode 100644 index 0000000000..507eff7ea2 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_lv.properties @@ -0,0 +1,23 @@ +# 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. + +body=B\u016Bv\u0113t maven2 projekti. Jenkins izmanto POM failus un iev\u0113rojami samazina konfigur\u0101ciju. -- GitLab From 3e21e92d0305155cf36d8d4c43c9f3538b94e51a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 132/158] Community-contributed localization for Marathi (mr) --- .../hudson/model/View/sidepanel_mr.properties | 27 +++++++++++++++++++ .../BuildButtonColumn/column_mr.properties | 23 ++++++++++++++++ .../DefaultViewsTabBar/viewTabs_mr.properties | 23 ++++++++++++++++ .../columnHeader_mr.properties | 23 ++++++++++++++++ .../columnHeader_mr.properties | 23 ++++++++++++++++ .../columnHeader_mr.properties | 23 ++++++++++++++++ .../StatusColumn/columnHeader_mr.properties | 23 ++++++++++++++++ .../WeatherColumn/columnHeader_mr.properties | 23 ++++++++++++++++ .../lib/hudson/buildHealth_mr.properties | 23 ++++++++++++++++ .../hudson/editableDescription_mr.properties | 23 ++++++++++++++++ .../lib/hudson/executors_mr.properties | 25 +++++++++++++++++ .../lib/hudson/iconSize_mr.properties | 23 ++++++++++++++++ .../resources/lib/hudson/queue_mr.properties | 24 +++++++++++++++++ .../resources/lib/hudson/rssBar_mr.properties | 26 ++++++++++++++++++ .../resources/lib/layout/layout_mr.properties | 25 +++++++++++++++++ 15 files changed, 357 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_mr.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_mr.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_mr.properties create mode 100644 core/src/main/resources/lib/hudson/executors_mr.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_mr.properties create mode 100644 core/src/main/resources/lib/hudson/queue_mr.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_mr.properties create mode 100644 core/src/main/resources/lib/layout/layout_mr.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_mr.properties b/core/src/main/resources/hudson/model/View/sidepanel_mr.properties new file mode 100644 index 0000000000..3f89d058a9 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_mr.properties @@ -0,0 +1,27 @@ +# 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\ History=\u092C\u093E\u0902\u0927\u0915\u093E\u092E \u0907\u0924\u093F\u0939\u093E\u0938 +Check\ File\ Fingerprint=\u092B\u093E\u0908\u0932 \u0920\u0938\u093E \u0924\u092A\u093E\u0938\u093E +NewJob=\u0928\u0935\u0940\u0928 {0} +People=\u0932\u094B\u0915 +Project\ Relationship=\u092A\u094D\u0930\u0915\u0932\u094D\u092A \u0928\u093E\u0924\u0947 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties new file mode 100644 index 0000000000..bda448f08f --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u092A\u0941\u0922\u0940\u0932 \u092C\u093E\u0902\u0927\u094D\u0915\u093E\u092E\u091A\u0940 \u0935\u0947\u0933 \u0920\u0930\u0935\u093E diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties new file mode 100644 index 0000000000..9c7039b531 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_mr.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u0928\u0935\u0940\u0928 \u0926\u0947\u0916\u093E\u0935\u093E diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties new file mode 100644 index 0000000000..70df627c4a --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=\u0936\u0947\u0935\u091F\u091A\u0947 \u0915\u093E\u0933\u093E\u0935\u093F\u0927\u0940 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties new file mode 100644 index 0000000000..71dcc99eba --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=\u0936\u0947\u0935\u091F\u091A\u0947 \u0905\u092A\u092F\u0936 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties new file mode 100644 index 0000000000..dc2601e05b --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=\u0936\u0947\u0935\u091F\u091A\u0947 \u092F\u0936 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties new file mode 100644 index 0000000000..3bacf4109b --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_mr.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=\u092E\u093E\u0917\u0940\u0932 \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0947 \u0938\u094D\u091F\u0947\u091F\u0938 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties new file mode 100644 index 0000000000..320f7ec647 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u092E\u093E\u0917\u0940\u0932 \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0947 \u0938\u0902\u092F\u0941\u0915\u094D\u0924 \u0938\u094D\u091F\u0947\u091F\u0938 \u0926\u0930\u094D\u0936\u093F\u0935\u094D\u0923\u093E\u0930\u0947 \u0939\u0935\u093E\u092E\u093E\u0928 diff --git a/core/src/main/resources/lib/hudson/buildHealth_mr.properties b/core/src/main/resources/lib/hudson/buildHealth_mr.properties new file mode 100644 index 0000000000..8fa7fa63ed --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Description=\u0935\u0930\u094D\u0923\u0928 diff --git a/core/src/main/resources/lib/hudson/editableDescription_mr.properties b/core/src/main/resources/lib/hudson/editableDescription_mr.properties new file mode 100644 index 0000000000..d705e16c9b --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_mr.properties @@ -0,0 +1,23 @@ +# 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. + +add\ description=\u0935\u0930\u094D\u0923\u0928 \u091C\u094B\u0921\u093E diff --git a/core/src/main/resources/lib/hudson/executors_mr.properties b/core/src/main/resources/lib/hudson/executors_mr.properties new file mode 100644 index 0000000000..f5db650bf6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_mr.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. + +Build\ Executor\ Status=\u092C\u093E\u0902\u0927\u0915\u093E\u092E \u0915\u093E\u092E\u0917\u093E\u0930\u093E\u091A\u0947 \u0938\u0927\u094D\u092F\u093E\u091A\u0947 \u0938\u094D\u091F\u0947\u091F\u0938 +Idle=\u092E\u094B\u0915\u0933\u093E +Status= \u0938\u094D\u091F\u0947\u091F\u0938 diff --git a/core/src/main/resources/lib/hudson/iconSize_mr.properties b/core/src/main/resources/lib/hudson/iconSize_mr.properties new file mode 100644 index 0000000000..62d67fe365 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_mr.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=\u091A\u093F\u0924\u094D\u0930 diff --git a/core/src/main/resources/lib/hudson/queue_mr.properties b/core/src/main/resources/lib/hudson/queue_mr.properties new file mode 100644 index 0000000000..77c4d6dd02 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_mr.properties @@ -0,0 +1,24 @@ +# 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\ Queue=\u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0940 \u0930\u093E\u0902\u0917 +No\ builds\ in\ the\ queue.=\u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u091A\u0940 \u0930\u093E\u0902\u0917 \u092E\u094B\u0915\u0933\u0940 diff --git a/core/src/main/resources/lib/hudson/rssBar_mr.properties b/core/src/main/resources/lib/hudson/rssBar_mr.properties new file mode 100644 index 0000000000..f15bd85985 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_mr.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=\u0910\u0924\u093F\u0939\u093E\u0938\u093F\u0915 \u092E\u093E\u0939\u093F\u0924\u0940 +for\ all=\u0938\u0917\u0933\u094D\u092F\u093E\u0902\u0938\u093E\u0920\u0940 +for\ failures=\u0905\u092A\u092F\u0936\u093E\u0938 +for\ just\ latest\ builds=\u0928\u0941\u0915\u0924\u092F\u093E \u092C\u093E\u0902\u0927\u0915\u093E\u092E\u093E\u0938\u093E\u0920\u0940 diff --git a/core/src/main/resources/lib/layout/layout_mr.properties b/core/src/main/resources/lib/layout/layout_mr.properties new file mode 100644 index 0000000000..845f6186f8 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_mr.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. + +ENABLE\ AUTO\ REFRESH=\u0906\u092A\u094B\u0906\u092A \u092A\u093E\u0928 \u0924\u093E\u091C\u0947 \u0915\u0930\u093E +Page\ generated=\u0928\u093F\u0930\u094D\u092E\u093E\u0923 \u0915\u0947\u0932\u0947\u0932\u0947 \u092A\u093E\u0928 +search=\u0936\u094B\u0927\u093E -- GitLab From ac82e290590407d9f062c8cf5c80b107d6865e30 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 133/158] Community-contributed localization for nb_NO (nb_NO) --- .../AboutJenkins/index_nb_NO.properties | 25 +++++++++++++++ .../PluginManager/index_nb_NO.properties | 3 ++ .../PluginManager/table_nb_NO.properties | 3 +- .../message_nb_NO.properties | 25 +++++++++++++++ .../config_nb_NO.properties | 24 ++++++++++++++ .../AbstractBuild/changes_nb_NO.properties | 23 +++++++++++++ .../AbstractBuild/index_nb_NO.properties | 5 ++- .../AbstractBuild/sidepanel_nb_NO.properties | 1 + .../AbstractBuild/tasks_nb_NO.properties | 29 +++++++++++++++++ .../AbstractProject/changes_nb_NO.properties | 23 +++++++++++++ .../AbstractProject/main_nb_NO.properties | 26 +++++++++++++++ .../sidepanel_nb_NO.properties | 8 +++-- .../model/AllView/noJob_nb_NO.properties | 24 ++++++++++++++ .../UserIdCause/description_nb_NO.properties | 23 +++++++++++++ .../model/Computer/builds_nb_NO.properties | 23 +++++++++++++ .../model/Computer/index_nb_NO.properties | 25 +++++++++++++++ .../model/Computer/sidepanel_nb_NO.properties | 29 +++++++++++++++++ .../model/ComputerSet/index_nb_NO.properties | 25 +++++++++++++++ .../ComputerSet/sidepanel_nb_NO.properties | 26 +++++++++++++++ .../dir_nb_NO.properties | 24 ++++++++++++++ .../model/Job/configure_nb_NO.properties | 26 +++++++++++++++ .../hudson/model/Job/index_nb_NO.properties | 23 +++++++++++++ .../LoadStatistics/main_nb_NO.properties | 28 ++++++++++++++++ .../MyViewsProperty/config_nb_NO.properties | 24 ++++++++++++++ .../config_nb_NO.properties | 23 +++++++++++++ .../hudson/model/Run/console_nb_NO.properties | 1 + .../hudson/model/Run/delete_nb_NO.properties | 23 +++++++++++++ .../message_nb_NO.properties | 23 +++++++++++++ .../Success/status_nb_NO.properties | 23 +++++++++++++ .../RestartJenkinsJob/row_nb_NO.properties | 23 +++++++++++++ .../model/UpdateCenter/body_nb_NO.properties | 23 +++++++++++++ .../model/User/configure_nb_NO.properties | 25 +++++++++++++++ .../hudson/model/User/index_nb_NO.properties | 23 +++++++++++++ .../model/User/sidepanel_nb_NO.properties | 27 ++++++++++++++++ .../model/View/People/index_nb_NO.properties | 27 ++++++++++++++++ .../hudson/model/View/builds_nb_NO.properties | 1 + .../model/View/configure_nb_NO.properties | 26 +++++++++++++++ .../model/View/sidepanel_nb_NO.properties | 2 +- .../scm/SCM/project-changes_nb_NO.properties | 23 +++++++++++++ .../config_nb_NO.properties | 26 +++++++++++++++ .../Details/config_nb_NO.properties | 24 ++++++++++++++ .../config_nb_NO.properties | 23 +++++++++++++ .../index_nb_NO.properties | 26 +++++++++++++++ .../loginLink_nb_NO.properties | 23 +++++++++++++ .../sidepanel_nb_NO.properties | 25 +++++++++++++++ .../LDAPSecurityRealm/config_nb_NO.properties | 30 +++++++++++++++++ .../config_nb_NO.properties | 23 +++++++++++++ .../config_nb_NO.properties | 25 +++++++++++++++ .../tasks/LogRotator/config_nb_NO.properties | 23 +++++++++++++ .../UserProperty/config_nb_NO.properties | 24 ++++++++++++++ .../MetaTabulatedResult/body_nb_NO.properties | 32 +++++++++++++++++++ .../TestObject/sidepanel_nb_NO.properties | 24 ++++++++++++++ .../test/TestResult/index_nb_NO.properties | 23 +++++++++++++ .../floatingBox_nb_NO.properties | 1 + .../config_nb_NO.properties | 25 +++++++++++++++ .../BuildButtonColumn/column_nb_NO.properties | 2 +- .../myViewTabs_nb_NO.properties | 23 +++++++++++++ .../viewTabs_nb_NO.properties | 23 +++++++++++++ .../column_nb_NO.properties | 23 +++++++++++++ .../columnHeader_nb_NO.properties | 2 +- .../columnHeader_nb_NO.properties | 2 +- .../LastSuccessColumn/column_nb_NO.properties | 23 +++++++++++++ .../HistoryWidget/entry_nb_NO.properties | 23 +++++++++++++ .../model/Jenkins/configure_nb_NO.properties | 27 ++++++++++++++++ .../model/Jenkins/downgrade_nb_NO.properties | 24 ++++++++++++++ .../model/Jenkins/manage_nb_NO.properties | 18 +++++------ .../model/Jenkins/systemInfo_nb_NO.properties | 23 +++++++++++++ .../lib/form/advanced_nb_NO.properties | 23 +++++++++++++ .../repeatableDeleteButton_nb_NO.properties | 23 +++++++++++++ .../lib/form/repeatable_nb_NO.properties | 23 +++++++++++++ .../hudson/buildListTable_nb_NO.properties | 4 +-- .../hudson/buildProgressBar_nb_NO.properties | 23 +++++++++++++ .../editableDescription_nb_NO.properties | 3 +- .../lib/hudson/executors_nb_NO.properties | 5 +-- .../lib/hudson/iconSize_nb_NO.properties | 2 +- .../lib/hudson/node_nb_NO.properties | 23 +++++++++++++ .../config-customWorkspace_nb_NO.properties | 23 +++++++++++++ .../config-disableBuild_nb_NO.properties | 23 +++++++++++++ .../config-quietPeriod_nb_NO.properties | 24 ++++++++++++++ .../project/config-scm_nb_NO.properties | 23 +++++++++++++ .../upstream-downstream_nb_NO.properties | 24 ++++++++++++++ .../lib/hudson/propertyTable_nb_NO.properties | 23 +++++++++++++ .../lib/hudson/queue_nb_NO.properties | 5 +-- .../lib/hudson/rssBar_nb_NO.properties | 8 ++--- .../lib/hudson/scriptConsole_nb_NO.properties | 28 ++++++++++++++++ .../lib/hudson/test-result_nb_NO.properties | 24 ++++++++++++++ .../thirdPartyLicenses_nb_NO.properties | 25 +++++++++++++++ .../lib/layout/layout_nb_NO.properties | 8 +++-- .../resources/lib/test/bar_nb_NO.properties | 24 ++++++++++++++ .../MavenModuleSet/index_nb_NO.properties | 5 ++- 90 files changed, 1741 insertions(+), 33 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nb_NO.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/User/configure_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/User/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_nb_NO.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/LDAPSecurityRealm/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_nb_NO.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nb_NO.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_nb_NO.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_nb_NO.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_nb_NO.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/systemInfo_nb_NO.properties create mode 100644 core/src/main/resources/lib/form/advanced_nb_NO.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_nb_NO.properties create mode 100644 core/src/main/resources/lib/form/repeatable_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/node_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/propertyTable_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_nb_NO.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_nb_NO.properties create mode 100644 core/src/main/resources/lib/test/bar_nb_NO.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties b/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.properties new file mode 100644 index 0000000000..1cd9084adc --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_nb_NO.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. + +about=Om Jenkins +blurb=Jenkins er en fellesskaps-utviklet, \u00E5pen kildekode kontinuerlig integrasjonsserver. +dependencies=Jenkins benytter f\u00F8lgende tredjeparts-biblioteker. diff --git a/core/src/main/resources/hudson/PluginManager/index_nb_NO.properties b/core/src/main/resources/hudson/PluginManager/index_nb_NO.properties index a64bf5460f..ab497f6345 100644 --- a/core/src/main/resources/hudson/PluginManager/index_nb_NO.properties +++ b/core/src/main/resources/hudson/PluginManager/index_nb_NO.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Alle +None=Ingen +Select=Velg UpdatePageDescription=Denne siden lister oppdateringer til tilleggsmoduler du bruker. diff --git a/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties b/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties index 689ec6bad1..1f9bf514c1 100644 --- a/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties +++ b/core/src/main/resources/hudson/PluginManager/table_nb_NO.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ to\ install\ the\ plugin=Huk av for \u00E5 installere tilleggsmodul +Check\ to\ install\ the\ plugin=Huk av for \u00E5 installere tilleggsmodulen +Click\ this\ heading\ to\ sort\ by\ category=Klikk denne overskriften for \u00E5 sortere p\u00E5 kategori Install=Installer Installed=Installert Name=Navn diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nb_NO.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nb_NO.properties new file mode 100644 index 0000000000..c2771aeb4f --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nb_NO.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. + +Dismiss=Avvis +More\ Info=Mer informasjon +blurb=Det ser ut til at reverse proxytjeneren er satt opp feil. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nb_NO.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nb_NO.properties new file mode 100644 index 0000000000..c3bd7a35b4 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=Behandle teksten som HTML og bruk den uten oversettelse +disableSyntaxHighlighting=Skru av syntaksmarkering diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_nb_NO.properties new file mode 100644 index 0000000000..dc80b9b3a4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Endringer diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties index 31075defa2..e782dfed75 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_nb_NO.properties @@ -24,4 +24,7 @@ Build=Bygg Build\ Artifacts=Bygge Artifakter Build\ number=Bygg nummer Permalinks=Permanente lenker -startedAgo=Startet {0} +Took=Tok +log=logg +on=p\u00E5 +startedAgo=Startet for {0} siden diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties index 1f517dfbf1..8bdc21c5bf 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_nb_NO.properties @@ -23,5 +23,6 @@ Back\ to\ Project=Tilbake til prosjekt Changes=Endringer Console\ Output=Skjerm logg +Next\ Build=Neste bygg Previous\ Build=Forrige bygg Status=Status diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties new file mode 100644 index 0000000000..005b4387df --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nb_NO.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ Project=Tilbake til prosjektet +Changes=Endringer +Console\ Output=Konsollutskrift +Edit\ Build\ Information=Endre bygginformasjon +Status=Status +View\ Build\ Information=Vis byggeinformasjon +raw=r\u00E5tekst diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_nb_NO.properties new file mode 100644 index 0000000000..dc80b9b3a4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Endringer diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties new file mode 100644 index 0000000000..f0702e4b11 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Last\ Successful\ Artifacts=Siste vellykkede artifakter +Latest\ Test\ Result=Siste testresultater +Recent\ Changes=Siste endringer +Workspace=arbeidskatalog diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties index d782936e07..000fb4e134 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nb_NO.properties @@ -20,8 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=Tilbake til Oversikt -Changes=Forandringer +Back\ to\ Dashboard=Tilbake til oversikt +Build\ scheduled=Bygging lagt i k\u00F8 +Changes=Endringer Configure=Konfigurer Status=Status +View\ Configuration=Vis konfigurasjon +Wipe\ Out\ Workspace=Slett arbeidsomr\u00E5de +Workspace=Arbeidsomr\u00E5de delete=Slett {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_nb_NO.properties b/core/src/main/resources/hudson/model/AllView/noJob_nb_NO.properties new file mode 100644 index 0000000000..fe403ccbbb --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=Velkommen til Jenkins! +newJob=Lag nye jobber for \u00E5 starte opp. diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nb_NO.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nb_NO.properties new file mode 100644 index 0000000000..143b680415 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_user=Startet av bruker {1} diff --git a/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties new file mode 100644 index 0000000000..b2863548de --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +title=Bygghistorikk p\u00E5 {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/index_nb_NO.properties new file mode 100644 index 0000000000..9a963d8d1f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_nb_NO.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. + +None=Ingen +submit.not.temporarilyOffline=Sett denne noden midlertidig offline +title.projects_tied_on=Prosjekter bundet til {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties new file mode 100644 index 0000000000..49f6258d3b --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_nb_NO.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ List=Tilbake til lista +Build\ History=Bygghistorikk +Configure=Konfigur\u00E9r +Delete\ Slave=Slett slave +Load\ Statistics=Laststatistikk +Script\ Console=Skriptekonsoll +Status=Status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties b/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.properties new file mode 100644 index 0000000000..050550cd50 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_nb_NO.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. + +Configure=Konfigurer +Name=Navn +Refresh\ status=Oppdat\u00E9r status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nb_NO.properties new file mode 100644 index 0000000000..ac987c5034 --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=tilbake til kontrollpanelet +Configure=Konfigurer +Manage\ Jenkins=Sett opp Jenkins +New\ Node=Ny node diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nb_NO.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nb_NO.properties new file mode 100644 index 0000000000..4a84f6254d --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=Alle filer pakket med zip +view=vis diff --git a/core/src/main/resources/hudson/model/Job/configure_nb_NO.properties b/core/src/main/resources/hudson/model/Job/configure_nb_NO.properties new file mode 100644 index 0000000000..06330e0c48 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Beskrivelse +Discard\ Old\ Builds=Slett gamle bygg +LOADING=LASTER +name={0} navn diff --git a/core/src/main/resources/hudson/model/Job/index_nb_NO.properties b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties new file mode 100644 index 0000000000..10c6c34712 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_nb_NO.properties @@ -0,0 +1,23 @@ +# 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=Deaktiver prosjekt diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_nb_NO.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_nb_NO.properties new file mode 100644 index 0000000000..cee5e4d009 --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_nb_NO.properties @@ -0,0 +1,28 @@ +# 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. + +Load\ statistics\ graph=Laststatistikkgraf +Long=Langt +Medium=Middel +Short=Kort +Timespan=Tidsrom +title=Laststatistikk: {0} diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties new file mode 100644 index 0000000000..56ef90b32a --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Default\ View=Standardvisning +description=Standardvisningen n\u00E5r du g\u00E5r til brukerens private visninger diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties new file mode 100644 index 0000000000..0e081ccb9f --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ Parameter=Legg til parameter diff --git a/core/src/main/resources/hudson/model/Run/console_nb_NO.properties b/core/src/main/resources/hudson/model/Run/console_nb_NO.properties index 7b5bdd0587..3a3ffd2bcd 100644 --- a/core/src/main/resources/hudson/model/Run/console_nb_NO.properties +++ b/core/src/main/resources/hudson/model/Run/console_nb_NO.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Console\ Output=Konsoll utdata View\ as\ plain\ text=Se som vanlig tekst diff --git a/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties b/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties new file mode 100644 index 0000000000..03ce744016 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=Slett denne byggeloggen diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties new file mode 100644 index 0000000000..d86c6788e0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +NewVersionAvailable=En ny versjon av Jenkins ({0}) er n\u00E5 tilgjengelig (Endringer). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nb_NO.properties new file mode 100644 index 0000000000..b8fead7c5a --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Success=Suksess diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties new file mode 100644 index 0000000000..3cae088ee1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Starter Jenkins p\u00E5 nytt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties new file mode 100644 index 0000000000..868c6356a7 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Start Jenkins p\u00E5 nytt n\u00E5r installasjonen er ferdig og det ikke er noen kj\u00F8rende jobber diff --git a/core/src/main/resources/hudson/model/User/configure_nb_NO.properties b/core/src/main/resources/hudson/model/User/configure_nb_NO.properties new file mode 100644 index 0000000000..c6dbc80d90 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/configure_nb_NO.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. + +Description=Beskrivelse +Save=Lagre +Your\ name=Ditt navn diff --git a/core/src/main/resources/hudson/model/User/index_nb_NO.properties b/core/src/main/resources/hudson/model/User/index_nb_NO.properties new file mode 100644 index 0000000000..3ffcf4b27c --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins bruker-id diff --git a/core/src/main/resources/hudson/model/User/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/User/sidepanel_nb_NO.properties new file mode 100644 index 0000000000..1975e315ef --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_nb_NO.properties @@ -0,0 +1,27 @@ +# 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. + +Builds=Bygg +Configure=Konfigurer +My\ Views=Mine visninger +People=Brukere +Status=Status diff --git a/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties b/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties new file mode 100644 index 0000000000..6aa6c2e850 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_nb_NO.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=Sist aktiv +Name=Navn +On=P\u00E5 +People=Folk +User\ Id=Bruker Id diff --git a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties index 0c85b948c0..b6f0724981 100644 --- a/core/src/main/resources/hudson/model/View/builds_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/builds_nb_NO.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=Eksporter som ren XML buildHistory=Bygghistorie for {0} diff --git a/core/src/main/resources/hudson/model/View/configure_nb_NO.properties b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties new file mode 100644 index 0000000000..d43593ccca --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Beskrivelse +Filter\ build\ executors=Filtr\u00E9r byggutf\u00F8rer +Filter\ build\ queue=Filtr\u00E9r byggk\u00F8 +Name=Navn diff --git a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties index 3fe432152a..97fb5c053e 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_nb_NO.properties @@ -25,5 +25,5 @@ Check\ File\ Fingerprint=Unders\u00F8k fingeravtrykk for filer Delete\ View=Slett visning Edit\ View=Rediger visning NewJob=Ny {0} -People=Folk +People=Personer Project\ Relationship=Forhold mellom prosjekter diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_nb_NO.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_nb_NO.properties new file mode 100644 index 0000000000..6068a3852c --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +detail=detaljer diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nb_NO.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nb_NO.properties new file mode 100644 index 0000000000..06f66ca6f9 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Add=Legg til +Anonymous=Anonym +User/group=Bruker/gruppe +User/group\ to\ add=Bruker/gruppe \u00E5 legge til diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nb_NO.properties new file mode 100644 index 0000000000..71ed3e60d0 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Confirm\ Password=Bekreft passord +Password=Passord diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nb_NO.properties new file mode 100644 index 0000000000..7b857898a2 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Allow\ users\ to\ sign\ up=La brukere registrere seg diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties new file mode 100644 index 0000000000..6f891e7eba --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Name=Navn +User\ Id=Bruker-id +Users=Brukere +blurb=Disse brukerne kan logge inn p\u00E5 Jenkins. De er et subsett av dene listen, som ogs\u00E5 inneholder autogenererte brukere som egentlig bare har sjekket inn p\u00E5 noen prosjekter og ikke har direkte jenkins-tilgang. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties new file mode 100644 index 0000000000..b267b68677 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=registr\u00E9r deg diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nb_NO.properties new file mode 100644 index 0000000000..2df2f1f8b4 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_nb_NO.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. + +Back\ to\ Dashboard=Tilbake til dashbordet +Create\ User=Opprett bruker +Manage\ Jenkins=Administrer Jenkins diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_nb_NO.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_nb_NO.properties new file mode 100644 index 0000000000..7693f5c138 --- /dev/null +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_nb_NO.properties @@ -0,0 +1,30 @@ +# 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. + +Allow\ blank\ rootDN=Tillat tomt rotdomenenavn +Group\ search\ base=Gruppes\u00F8k base +Manager\ DN=Manager DN +Manager\ Password=Manager Passord +Server=Tjener +User\ search\ base=Brukers\u00F8k base +User\ search\ filter=Bruker s\u00F8kefilter +root\ DN=Rotdomenenavn diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties new file mode 100644 index 0000000000..9b2cc8cad3 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=Skru p\u00E5 proxykompatibilitet diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.properties new file mode 100644 index 0000000000..934d2f3a66 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_nb_NO.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. + +List\ of\ key-value\ pairs=Liste over n\u00F8kkel-verdi par +name=N\u00F8kkel +value=Verdi diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties new file mode 100644 index 0000000000..41189f2f4e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Days\ to\ keep\ builds=Dager bygg skal lagres diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_nb_NO.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_nb_NO.properties new file mode 100644 index 0000000000..617ccbe3e8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +E-mail\ address=Epostadresse +description=Din epostadresse, p\u00E5 formen joe.chin@sun.com diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_nb_NO.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_nb_NO.properties new file mode 100644 index 0000000000..ce428af74b --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_nb_NO.properties @@ -0,0 +1,32 @@ +# 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. + +Age=Alder +All\ Failed\ Tests=Alle feilede tester +All\ Tests=Alle testene +Duration=Varighet +Fail=Feilet +Loading...=Laster.. +Skip=Ignorer +Test\ Name=Testnavn +Total=Total +diff=Differanse diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_nb_NO.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_nb_NO.properties new file mode 100644 index 0000000000..2791eb18af --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +History=Historie +Previous\ Build=Forrige bygg diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_nb_NO.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_nb_NO.properties new file mode 100644 index 0000000000..c5b769312c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +took=Tok {0}. diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties index c592571e52..e8d5742c42 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_nb_NO.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Test\ Result\ Trend=Test Result trend +enlarge=st\u00F8rre just\ show\ failures=bare vis feil diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nb_NO.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nb_NO.properties new file mode 100644 index 0000000000..c6d340714b --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nb_NO.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. + +Home=Hjem +List\ of\ tool\ locations=Liste over verkt\u00F8yposisjoner +Name=Navn diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties index 1b20b9a001..7795473bf3 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Planlegg en bygg +Schedule\ a\ build=Planlegg et bygg diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nb_NO.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nb_NO.properties new file mode 100644 index 0000000000..b079a08059 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Ny visning diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties new file mode 100644 index 0000000000..b079a08059 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Ny visning diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_nb_NO.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_nb_NO.properties new file mode 100644 index 0000000000..1d44665c97 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Ikke tilgjengelig diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nb_NO.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nb_NO.properties index fc7e6bd4df..a0f891e70a 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nb_NO.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Siste feil +Last\ Failure=Siste mislykkede diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nb_NO.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nb_NO.properties index 50459a51a5..bfce927ca3 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nb_NO.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Siste suksess +Last\ Success=Siste vellykkede diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_nb_NO.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nb_NO.properties new file mode 100644 index 0000000000..1d44665c97 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Ikke tilgjengelig diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties new file mode 100644 index 0000000000..e631fbf761 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsollutskrift diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties new file mode 100644 index 0000000000..036bf07b27 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_nb_NO.properties @@ -0,0 +1,27 @@ +# 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\ Record\ Root\ Directory=Byggepostinger rotmappe +Home\ directory=Hjemmemappe +LOADING=LASTER +System\ Message=Systembeskjed +Workspace\ Root\ Directory=Arbeidsomr\u00E5de rotmappe diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_nb_NO.properties new file mode 100644 index 0000000000..7e2245dc98 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Tilbakestill til forrige versjon av Jenkins +buttonText=Nedgrader til {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties index ff38f1ae61..a9502d336f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_nb_NO.properties @@ -20,24 +20,24 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Legg til, fjern, kontroller og overv\u00E5k forskjellige noder som Jenkins kj\u00F8rer jobber p\u00E5 +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Legg til, fjern, kontroller og overv\u00E5k de forskjellige nodene Jenkins kj\u00F8rer jobber p\u00E5 Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Legg til, fjern, deaktivere eller aktivere programtillegg som kan utvide funksjonaliteten til Jenkins. Configure\ System=Konfigurere systemet Configure\ global\ settings\ and\ paths.=Konfigurere globale verdier og stier -Jenkins\ CLI= +Jenkins\ CLI=Jenkins kommandolinje Jenkins CLI (Command Line Interface - Kommandolinjegrensesnitt) Jenkins CLI (Command Line Interface - Kommandolinjegrensesnitt) -JenkinsCliText=Aksesser/behandle Jenkins from shell eller fra skript. -Load\ Statistics=Laststatistikk -LoadStatisticsText=Sjekk din ressursutnyttelse og se om du trenger flere datamaskiner for din bygger. +JenkinsCliText=F\u00E5 tilgang til/styr Jenkins fra et shell eller skript. +Load\ Statistics=Serverlast-statistikk +LoadStatisticsText=Kontroller ressursutnyttelsen og se om du trenger flere datamaskiner for dine bygg. Manage\ Jenkins=Behandle Jenkins Manage\ Nodes=Behandle noder Manage\ Plugins=Behandle programtillegg -Prepare\ for\ Shutdown=Forbered avslutting av system. -Reload\ Configuration\ from\ Disk=Last opp konfigurasjon fra disk p\u00E5 nytt +Prepare\ for\ Shutdown=Forbered stans av systemet. +Reload\ Configuration\ from\ Disk=Les konfigurasjon fra disk p\u00E5 nytt Script\ Console=Skriptkonsoll -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Stopper eksekvering av nye bygg, slik at systemet kan avsluttes p\u00E5 en sikker m\u00E5te. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Stopper eksekvering av nye bygg slik at systemet kan avsluttes p\u00E5 en sikker m\u00E5te. System\ Information=Systeminformasjon System\ Log=Systemlogg SystemLogText=Systemloggen fanger output fra java.util.loggingoutput relatert til Jenkins. -Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Nyttig n\u00E5r du har endret konfigurasjonsfiler direkte p\u00E5 disk. +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Nyttig n\u00E5r du har endret konfigurasjonsfiler direkte i filsystemet. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nb_NO.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nb_NO.properties new file mode 100644 index 0000000000..d826f1db9e --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=Systemegenskaper diff --git a/core/src/main/resources/lib/form/advanced_nb_NO.properties b/core/src/main/resources/lib/form/advanced_nb_NO.properties new file mode 100644 index 0000000000..60cc55eff5 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=Avansert diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_nb_NO.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_nb_NO.properties new file mode 100644 index 0000000000..1aae449a65 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Slett diff --git a/core/src/main/resources/lib/form/repeatable_nb_NO.properties b/core/src/main/resources/lib/form/repeatable_nb_NO.properties new file mode 100644 index 0000000000..887678dd36 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Add=Legg til diff --git a/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties b/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties index 3a8553c29b..69a4ab0abb 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_nb_NO.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build=Bygg -Console\ output=Konsoll output -Time\ Since=Dato +Console\ output=Konsolltekst +Time\ Since=Tid siden bygg Status=Status diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties new file mode 100644 index 0000000000..fb705033e3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +text=Startet for {0} siden
    Estimert tid igjen: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties b/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties index 259166d6ca..67fdec369c 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_nb_NO.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Legg til beskrivelse +add\ description=legg til beskrivelse +edit\ description=Endre beskrivelse diff --git a/core/src/main/resources/lib/hudson/executors_nb_NO.properties b/core/src/main/resources/lib/hudson/executors_nb_NO.properties index 9843298b72..29fb2cc8a6 100644 --- a/core/src/main/resources/lib/hudson/executors_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/executors_nb_NO.properties @@ -20,9 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Byggutf\u00F8rer status +Build\ Executor\ Status=Status p\u00E5 byggutf\u00F8rer Building=Bygger -Idle=Hviler +Idle=Ledig +Master=Master Offline=Ikke tilgjengelig Status=Status offline=ikke tilgjengelig diff --git a/core/src/main/resources/lib/hudson/iconSize_nb_NO.properties b/core/src/main/resources/lib/hudson/iconSize_nb_NO.properties index 01ff6cb0b4..c4185df59a 100644 --- a/core/src/main/resources/lib/hudson/iconSize_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/iconSize_nb_NO.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Bilde +Icon=Ikon diff --git a/core/src/main/resources/lib/hudson/node_nb_NO.properties b/core/src/main/resources/lib/hudson/node_nb_NO.properties new file mode 100644 index 0000000000..f17c6857dc --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +master=master diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_nb_NO.properties new file mode 100644 index 0000000000..7bc1373bb9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Directory=Mappe diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties new file mode 100644 index 0000000000..6ace8ab761 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_nb_NO.properties @@ -0,0 +1,23 @@ +# 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\ Build=Deaktiver bygg diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_nb_NO.properties new file mode 100644 index 0000000000..648c20e28c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Number\ of\ seconds=Antall sekunder +Quiet\ period=Stilleperiode diff --git a/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties b/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties new file mode 100644 index 0000000000..56243c0109 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Source\ Code\ Management=Kildekodeh\u00E5ndtering diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties new file mode 100644 index 0000000000..bf76568b89 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Barneprosjekter +Upstream\ Projects=Foreldreprosjekter diff --git a/core/src/main/resources/lib/hudson/propertyTable_nb_NO.properties b/core/src/main/resources/lib/hudson/propertyTable_nb_NO.properties new file mode 100644 index 0000000000..c1b86204dd --- /dev/null +++ b/core/src/main/resources/lib/hudson/propertyTable_nb_NO.properties @@ -0,0 +1,23 @@ +# 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. + +Name=Navn diff --git a/core/src/main/resources/lib/hudson/queue_nb_NO.properties b/core/src/main/resources/lib/hudson/queue_nb_NO.properties index a479e2a122..f6989d4202 100644 --- a/core/src/main/resources/lib/hudson/queue_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/queue_nb_NO.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Byggk\u00F8 -No\ builds\ in\ the\ queue.=Ingen bygger er i k\u00F8en. +Build\ Queue=Byggek\u00F8 +No\ builds\ in\ the\ queue.=Ingen bygg er i k\u00F8en. +cancel=avbryt diff --git a/core/src/main/resources/lib/hudson/rssBar_nb_NO.properties b/core/src/main/resources/lib/hudson/rssBar_nb_NO.properties index 011269ae45..f8784f2dad 100644 --- a/core/src/main/resources/lib/hudson/rssBar_nb_NO.properties +++ b/core/src/main/resources/lib/hudson/rssBar_nb_NO.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Legend=Beskrivelse -for\ all=for alle -for\ failures=for feil -for\ just\ latest\ builds=bare for de siste byggene +Legend=Tegnforklaring +for\ all=for alle bygg +for\ failures=for feilede bygg +for\ just\ latest\ builds=for kun de siste byggene diff --git a/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties b/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties new file mode 100644 index 0000000000..524bfd281b --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_nb_NO.properties @@ -0,0 +1,28 @@ +# 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. + +Run=Kj\u00F8r +Script\ Console=Skript-konsoll +description=Skriv inn et vilk\u00E5rlig Groovy script og kj\u00F8r det p\u00E5 serveren. Nyttig i forbindelse med feils\u00F8king og diagnostisering. Bruke "println"-kommandoen for \u00E5 se utdataene. (Hvis du bruker System.out havner det i serverens STDOUT, som er vanskeligere \u00E5 se. +Eksempel: +println(hudson.model.Hudson.instance.pluginManager.plugins) + diff --git a/core/src/main/resources/lib/hudson/test-result_nb_NO.properties b/core/src/main/resources/lib/hudson/test-result_nb_NO.properties new file mode 100644 index 0000000000..acb2065c6a --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +multifailures="{0} feil {1}" +no\ failures=ingen feil diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_nb_NO.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_nb_NO.properties new file mode 100644 index 0000000000..b852596eed --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_nb_NO.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. + +License=Lisens +Maven\ ID=Maven ID +Name=Navn diff --git a/core/src/main/resources/lib/layout/layout_nb_NO.properties b/core/src/main/resources/lib/layout/layout_nb_NO.properties index 188479c38c..1415d3b777 100644 --- a/core/src/main/resources/lib/layout/layout_nb_NO.properties +++ b/core/src/main/resources/lib/layout/layout_nb_NO.properties @@ -20,7 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=Aktiver automatisk oppfrisking -Page\ generated=Sider generert +DISABLE\ AUTO\ REFRESH=Deaktiver automatisk oppfrisking +ENABLE\ AUTO\ REFRESH=Aktiv\u00E9r automatisk oppfrisking +Page\ generated=Side generert logout=logg ut -searchBox.url=s\u00F8k +search=s\u00F8k +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/test/bar_nb_NO.properties b/core/src/main/resources/lib/test/bar_nb_NO.properties new file mode 100644 index 0000000000..c54b7c7a7e --- /dev/null +++ b/core/src/main/resources/lib/test/bar_nb_NO.properties @@ -0,0 +1,24 @@ +# 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. + +failures={0} feilet +tests={0} tester 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 218798c2d5..99962416bb 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,5 +20,8 @@ # 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 -Recent\ Changes=Siste Forandinger +Latest\ Test\ Result=Siste testresultater +Recent\ Changes=Siste Forandringer +Workspace=Arbeidsomr\u00E5de -- GitLab From 1207006ea66a6f7762af5d0ed17dcadba29d2dd5 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 134/158] Community-contributed localization for Dutch; Flemish (nl) --- .../hudson/AboutJenkins/index_nl.properties | 23 ++++++++++++++++ .../PluginManager/advanced_nl.properties | 1 + .../hudson/PluginManager/index_nl.properties | 3 +++ .../PluginManager/installed_nl.properties | 1 + .../hudson/PluginManager/table_nl.properties | 2 ++ .../message_nl.properties | 25 +++++++++++++++++ .../config_nl.properties | 23 ++++++++++++++++ .../model/AbstractBuild/index_nl.properties | 2 +- .../model/AbstractBuild/tasks_nl.properties | 3 ++- .../AbstractProject/sidepanel_nl.properties | 2 +- .../hudson/model/AllView/noJob_nl.properties | 2 +- .../UserIdCause/description_nl.properties | 1 + .../model/Computer/configure_nl.properties | 24 +++++++++++++++++ .../hudson/model/Computer/index_nl.properties | 27 +++++++++++++++++++ .../model/Computer/sidepanel_nl.properties | 4 +++ .../DirectoryBrowserSupport/dir_nl.properties | 1 + .../model/Job/buildTimeTrend_nl.properties | 1 + .../hudson/model/Job/index_nl.properties | 3 +++ .../ListView/configure-entries_nl.properties | 5 ++++ .../hudson/model/Run/configure_nl.properties | 26 ++++++++++++++++++ .../hudson/model/Run/console_nl.properties | 5 ++-- .../CoreUpdateMonitor/message_nl.properties | 1 + .../DownloadJob/Success/status_nl.properties | 23 ++++++++++++++++ .../model/UpdateCenter/body_nl.properties | 23 ++++++++++++++++ .../hudson/model/User/index_nl.properties | 23 ++++++++++++++++ .../hudson/model/User/sidepanel_nl.properties | 1 + .../model/View/People/index_nl.properties | 1 + .../hudson/model/View/newJob_nl.properties | 2 +- .../hudson/model/View/sidepanel_nl.properties | 10 +++---- .../DiskSpace/cause_nl.properties | 23 ++++++++++++++++ .../config_nl.properties | 24 +++++++++++++++++ .../scm/SCM/project-changes_nl.properties | 1 + .../config_nl.properties | 1 + .../Details/config_nl.properties | 4 +-- .../DumbSlave/configure-entries_nl.properties | 27 +++++++++++++++++++ .../slaves/JNLPLauncher/config_nl.properties | 23 ++++++++++++++++ .../SlaveComputer/sidepanel2_nl.properties | 25 +++++++++++++++++ .../SlaveComputer/systemInfo_nl.properties | 24 +++++++++++++++++ .../config_nl.properties | 23 ++++++++++++++++ .../BuildAction/index_nl.properties | 25 +++++++++++++++++ .../DefaultViewsTabBar/viewTabs_nl.properties | 23 ++++++++++++++++ .../columnHeader_nl.properties | 2 +- .../LastFailureColumn/column_nl.properties | 2 +- .../LastStableColumn/column_nl.properties | 23 ++++++++++++++++ .../columnHeader_nl.properties | 2 +- .../LastSuccessColumn/column_nl.properties | 2 +- .../StatusColumn/columnHeader_nl.properties | 2 +- .../WeatherColumn/columnHeader_nl.properties | 2 +- .../widgets/HistoryWidget/entry_nl.properties | 23 ++++++++++++++++ .../jenkins/model/Jenkins/_cli_nl.properties | 24 +++++++++++++++++ .../model/Jenkins/configure_nl.properties | 1 + .../model/Jenkins/downgrade_nl.properties | 24 +++++++++++++++++ .../jenkins/model/Jenkins/login_nl.properties | 2 +- .../model/Jenkins/systemInfo_nl.properties | 6 ++++- .../hudson/editableDescription_nl.properties | 2 +- .../lib/hudson/executors_nl.properties | 4 +-- .../lib/hudson/iconSize_nl.properties | 2 +- .../resources/lib/hudson/queue_nl.properties | 4 +-- .../resources/lib/hudson/rssBar_nl.properties | 4 +-- .../hudson/thirdPartyLicenses_nl.properties | 24 +++++++++++++++++ .../resources/lib/layout/layout_nl.properties | 7 ++--- .../MavenModuleSet/disabled_nl.properties | 2 +- .../maven/MavenModuleSet/index_nl.properties | 1 + .../MavenModuleSet/modules_nl.properties | 4 ++- .../MavenModuleSet/newJobDetail_nl.properties | 6 +---- 65 files changed, 626 insertions(+), 40 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_nl.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/configure_nl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_nl.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_nl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties create mode 100644 core/src/main/resources/hudson/model/User/index_nl.properties create mode 100644 core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_nl.properties create mode 100644 core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_nl.properties create mode 100644 core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/config_nl.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_nl.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nl.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties create mode 100644 core/src/main/resources/hudson/views/LastStableColumn/column_nl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/editableDescription_nl.properties mode change 100755 => 100644 core/src/main/resources/lib/hudson/executors_nl.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_nl.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_nl.properties b/core/src/main/resources/hudson/AboutJenkins/index_nl.properties new file mode 100644 index 0000000000..a33e630c20 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_nl.properties @@ -0,0 +1,23 @@ +# 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. + +about=Over Jenkins {0} diff --git a/core/src/main/resources/hudson/PluginManager/advanced_nl.properties b/core/src/main/resources/hudson/PluginManager/advanced_nl.properties index 0a392e1914..2ac1e6f751 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_nl.properties @@ -27,6 +27,7 @@ Server=Server Port=Poortnummer User\ name=Gebruikersnaam Check\ now=Actualizeer nu +URL=URL Upload=Uploaden HTTP\ Proxy\ Configuration=HTTP-proxyconfiguratie Submit=Doorsturen diff --git a/core/src/main/resources/hudson/PluginManager/index_nl.properties b/core/src/main/resources/hudson/PluginManager/index_nl.properties index de47bddee7..7f25e24234 100644 --- a/core/src/main/resources/hudson/PluginManager/index_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/index_nl.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Alle +None=Geen +Select=Selecteer UpdatePageDescription=Deze pagina geeft een overzicht van de gebruikte plugins waarvoor een actuelere versie beschikbaar is. diff --git a/core/src/main/resources/hudson/PluginManager/installed_nl.properties b/core/src/main/resources/hudson/PluginManager/installed_nl.properties index b273f93273..48e88a8633 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_nl.properties @@ -27,4 +27,5 @@ Uncheck\ to\ disable\ the\ plugin=Vink aan om de plugin te desactiveren. Enabled=Actief Name=Naam Version=Versie +Previously\ installed\ version=Vorige ge\u00EFnstalleerde versie Restart\ Now=Nu herstarten diff --git a/core/src/main/resources/hudson/PluginManager/table_nl.properties b/core/src/main/resources/hudson/PluginManager/table_nl.properties index fdba458972..fd09f1654b 100644 --- a/core/src/main/resources/hudson/PluginManager/table_nl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_nl.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. Check\ to\ install\ the\ plugin=Vink aan om te installeren +Click\ this\ heading\ to\ sort\ by\ category=Klik op deze titel om te sorteren op categorie +Inactive=Inactief Install=Installeren Installed=Ge\u00EFnstalleerd Name=Naam diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.properties new file mode 100644 index 0000000000..6439c6d0ef --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_nl.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. + +Dismiss=OK +More\ Info=Meer informatie +blurb=Het lijkt erop dat uw reverse proxy instellingen incorrect zijn. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties new file mode 100644 index 0000000000..594b659025 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_nl.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=Gebruik deze tekst als HTML zonder vertaling diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties index 8bb0f70ad0..3c67fc7ac2 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_nl.properties @@ -30,7 +30,7 @@ detail=detail Not\ yet\ determined=Nog niet bepaald Failed\ to\ determine=Kon niet bepaald worden log=log -Upstream\ Builds= +Upstream\ Builds=Stroomopwaartse bouwpogingen Downstream\ Builds= none=geen enkel Permalinks=Permanente referenties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties index 93095459e9..bfbd4b0c4b 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_nl.properties @@ -22,6 +22,7 @@ Back\ to\ Project=Terug naar Project Changes=Wijzigingen -Console\ Output=Uitvoer van de Console +Console\ Output=Console +Edit\ Build\ Information=Wijzig Build gegevens Status=Status raw=ruw diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties index fbd5f2a626..1162a7e8de 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_nl.properties @@ -24,7 +24,7 @@ Back\ to\ Dashboard=Terug naar Dashboard Status=Status Build\ scheduled=Bouwpoging gepland Changes=Wijzigingen -Wipe\ Out\ Workspace=Verwijder Werkplaats +Wipe\ Out\ Workspace=Maak werkplaats leeg Workspace=Werkplaats delete=Verwijder {0} Configure=Configureer diff --git a/core/src/main/resources/hudson/model/AllView/noJob_nl.properties b/core/src/main/resources/hudson/model/AllView/noJob_nl.properties index 522d1cb1f2..11ca903821 100644 --- a/core/src/main/resources/hudson/model/AllView/noJob_nl.properties +++ b/core/src/main/resources/hudson/model/AllView/noJob_nl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Welcome\ to\ Jenkins\!=Welkom bij Jenkins -newJob=Ga van start met het cre\u00EBren van een nieuwe job. +newJob=Cre\u00EBer nieuwe taken om te beginnen. login=U dient zich aan te melden\ om nieuwe jobs te cre\u00EBren. signup=\ diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nl.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nl.properties index fabd8663c7..aefc9f746b 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nl.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_nl.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=Gestart door een anonieme gebruiker started_by_user=Gestart door {1} diff --git a/core/src/main/resources/hudson/model/Computer/configure_nl.properties b/core/src/main/resources/hudson/model/Computer/configure_nl.properties new file mode 100644 index 0000000000..84f2da83a7 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/configure_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Name=Naam +Save=Opslaan diff --git a/core/src/main/resources/hudson/model/Computer/index_nl.properties b/core/src/main/resources/hudson/model/Computer/index_nl.properties new file mode 100644 index 0000000000..efbab951cb --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_nl.properties @@ -0,0 +1,27 @@ +# 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. + +Labels:=Labels: +None=Geen +submit.not.temporarilyOffline=Markeer deze machine als tijdelijk niet beschikbaar +submit.temporarilyOffline=Deze node is opnieuw online +title.projects_tied_on=Projecten verbonden aan {0}: diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties index 5629fbffc4..4600ef3983 100644 --- a/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_nl.properties @@ -22,3 +22,7 @@ Back\ to\ List=Terug naar de lijst Build\ History=Bouwhistoriek +Configure=Configureer +Delete\ Slave=Slave verwijderen +Script\ Console=Script Console +Status=Status diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties index 0e8a878d26..de7e5cfd4f 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_nl.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. all\ files\ in\ zip=alle bestanden in een zip-archief +view=bekijk diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties index 3987c6b550..549c200fca 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_nl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Timeline=Tijdslijn title={0} Duurtrend van een bouwpoging Build=Bouwpoging Duration=Duur diff --git a/core/src/main/resources/hudson/model/Job/index_nl.properties b/core/src/main/resources/hudson/model/Job/index_nl.properties index eafbfdf086..ed250faf2f 100644 --- a/core/src/main/resources/hudson/model/Job/index_nl.properties +++ b/core/src/main/resources/hudson/model/Job/index_nl.properties @@ -21,7 +21,10 @@ # 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/ListView/configure-entries_nl.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_nl.properties index 406cc3bcf7..32ca1bc849 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_nl.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_nl.properties @@ -21,7 +21,12 @@ # THE SOFTWARE. Add\ column=Voeg kolom toe +All\ selected\ jobs=Alle geselecteerde bouwpogingen Columns=Kolommen +Disabled\ jobs\ only=Alleen Geblokkeerde Bouwpogingen +Enabled\ jobs\ only=Alleen Beschikbare Bouwpogingen +Job\ Filters=Bouwpoging Filters Jobs=Jobs +Status\ Filter=Status Filter Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Gebruik een reguliere uitdrukking om jobs te selecteren voor het overzichtsscherm Regular\ expression=Reguliere uitdrukking diff --git a/core/src/main/resources/hudson/model/Run/configure_nl.properties b/core/src/main/resources/hudson/model/Run/configure_nl.properties new file mode 100644 index 0000000000..f3abece272 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_nl.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Beschrijving +DisplayName=Weergave naam +LOADING=OPHALEN +Save=Opslaan diff --git a/core/src/main/resources/hudson/model/Run/console_nl.properties b/core/src/main/resources/hudson/model/Run/console_nl.properties index 125e318e62..6c5a289cf3 100644 --- a/core/src/main/resources/hudson/model/Run/console_nl.properties +++ b/core/src/main/resources/hudson/model/Run/console_nl.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=Uitvoer op de console -View\ as\ plain\ text=Bekijken in simpele tekstmodus +Console\ Output=Console +View\ as\ plain\ text=Bekijken als eenvoudige tekst +skipSome={0,number,integer} KB overgeslagen..Volledige Log diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties index 040ddcbfa0..425d6dfc7d 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_nl.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +NewVersionAvailable=Er is een nieuwe versie van Jenkins ({0}) beschikbaar (changelog). UpgradeComplete=Upgrade naar Jenkins {0} is volledig; aan het wachten op herstart. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nl.properties new file mode 100644 index 0000000000..e50a2405a2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Success=Gelukt diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties new file mode 100644 index 0000000000..372c67c235 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_nl.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Herstart Jenkins zodra de installatie voltooid is en er geen taken draaien diff --git a/core/src/main/resources/hudson/model/User/index_nl.properties b/core/src/main/resources/hudson/model/User/index_nl.properties new file mode 100644 index 0000000000..59aeb6e4d5 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins gebruikersnaam diff --git a/core/src/main/resources/hudson/model/User/sidepanel_nl.properties b/core/src/main/resources/hudson/model/User/sidepanel_nl.properties index ce91e14aa6..df755f4009 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_nl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Delete=Verwijder People=Gebruikers Status=Status Builds=Bouwpogingen diff --git a/core/src/main/resources/hudson/model/View/People/index_nl.properties b/core/src/main/resources/hudson/model/View/People/index_nl.properties index 875ad7b6cf..64c1251676 100644 --- a/core/src/main/resources/hudson/model/View/People/index_nl.properties +++ b/core/src/main/resources/hudson/model/View/People/index_nl.properties @@ -24,3 +24,4 @@ Name=Naam Last\ Active=Laatste activiteit On=Job People=Gebruikers +User\ Id=Gebruiker id diff --git a/core/src/main/resources/hudson/model/View/newJob_nl.properties b/core/src/main/resources/hudson/model/View/newJob_nl.properties index 5c7fa71790..b80344bed7 100644 --- a/core/src/main/resources/hudson/model/View/newJob_nl.properties +++ b/core/src/main/resources/hudson/model/View/newJob_nl.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JobName={0}naam +JobName={0} naam CopyExisting=Kopi\u00EBer bestaande {0} Copy\ from=Kopi\u00EBer van diff --git a/core/src/main/resources/hudson/model/View/sidepanel_nl.properties b/core/src/main/resources/hudson/model/View/sidepanel_nl.properties index e6d2d83e81..a60c2cad03 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_nl.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_nl.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Nieuwe {0} -People=Gebruikers -Build\ History=Overzicht bouwpogingen -Edit\ View=Overzichtsscherm bewerken +NewJob=Nieuw {0} +People=Mensen +Build\ History=Build historie +Edit\ View=View bewerken Delete\ View=Overzichtsscherm verwijderen Project\ Relationship=Relaties tussen projecten -Check\ File\ Fingerprint=Controleer vingerafdrukken +Check\ File\ Fingerprint=Controleer checkums diff --git a/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_nl.properties b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_nl.properties new file mode 100644 index 0000000000..85e0a89671 --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_nl.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=Er is te weinig vrije schijfruimte, nog maar {0} GB over. diff --git a/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_nl.properties b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_nl.properties new file mode 100644 index 0000000000..0b495aed95 --- /dev/null +++ b/core/src/main/resources/hudson/os/windows/ManagedWindowsServiceLauncher/config_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Administrator\ user\ name=Gebruikersnaam beheerder +Password=Wachtwoord diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_nl.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_nl.properties index b7076d96c0..d1d382c846 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_nl.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_nl.properties @@ -22,3 +22,4 @@ No\ builds.=Geen bouwpogingen. No\ changes\ in\ any\ of\ the\ builds.=Geen wijzigingen in de bouwpogingen. +detail=details diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nl.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nl.properties index 8d0fa48277..c9769d698a 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nl.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_nl.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Remove\ user/group=Verwijder gebruiker/groep User/group=Gebruiker/groep Anonymous=Anoniem User/group\ to\ add=Toe te voegen gebruiker/groep diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nl.properties index 7db17ecb9a..ecdb7847ea 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nl.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/Details/config_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Password=Paswoord -Confirm\ Password=Bevestig paswoord +Password=Wachtwoord +Confirm\ Password=Bevestig wachtwoord diff --git a/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties new file mode 100644 index 0000000000..cc8b624723 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/DumbSlave/configure-entries_nl.properties @@ -0,0 +1,27 @@ +# 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. + +#\ of\ executors=Aantal uitvoerders +Availability=Beschikbaarheid +Description=Omschrijving +Labels=Labels +Launch\ method=Start methode diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/config_nl.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_nl.properties new file mode 100644 index 0000000000..b9a3427e40 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/config_nl.properties @@ -0,0 +1,23 @@ +# 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. + +JVM\ options=JVM opties diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.properties new file mode 100644 index 0000000000..a3f05aa4dd --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_nl.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. + +Disconnect=Verbinding verbreken +Log=Log +System\ Information=Systeem Informatie diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_nl.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_nl.properties new file mode 100644 index 0000000000..ab617e0494 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Environment\ Variables=Omgevings variabelen +System\ Properties=Systeem eigenschappen diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nl.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nl.properties new file mode 100644 index 0000000000..d15409d6cf --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Name=Naam diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.properties new file mode 100644 index 0000000000..2b2e9ce1a2 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_nl.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. + +Polling\ Log=Polling Log +View\ as\ plain\ text=Toon als platte tekst +blurb=Deze pagina laat het polling log zien dat deze build heeft getriggerd diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties new file mode 100644 index 0000000000..7856d0a9a4 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_nl.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nieuwe beeldconfiguratie diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties index 3075233b33..a168189f78 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Laatste gefaalde bouwpoging +Last\ Failure=Laatste gefaald diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties index 819cac5d55..23e9565c98 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N.B. +N/A=N.v.t. diff --git a/core/src/main/resources/hudson/views/LastStableColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastStableColumn/column_nl.properties new file mode 100644 index 0000000000..7d2e7e1a52 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastStableColumn/column_nl.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Niet van toepassing diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nl.properties index 2a49b73c6c..f54ce6b001 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Laatste succesvolle bouwpoging +Last\ Success=Laatste geslaagd diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties index 819cac5d55..23e9565c98 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N.B. +N/A=N.v.t. diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties index 983861312b..73756041de 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Status van de laatste bouwpoging +Status\ of\ the\ last\ build=Status van de laatste build diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties index b5e71f6bda..ade86f03cb 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Weerbericht dat de verzamelde status van de laatste bouwpogingen toont +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Weerbericht dat de verzamelde status van de laatste builds toont diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties new file mode 100644 index 0000000000..46d1b2771f --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_nl.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Uitvoer van de console diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties new file mode 100644 index 0000000000..ee556037d3 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Available\ Commands=Beschikbare commando''s +blurb=Je kan gebruik maken van verschillende mogelijkheden in Jenkins via een opdracht op de commandoregel. Zie de Wiki voor verder details hierover. Om te beginnen, download jenkins-cli.jar, en voer het uit als volgt: diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties index 4423ce4be0..d6bb5d74b4 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_nl.properties @@ -52,6 +52,7 @@ usage=Gebruik labels=Merktekens JDKs=JDKs JDK\ installations=Installatie JDKs +LOADING=LADEN List\ of\ JDK\ installations\ on\ this\ system=Lijst van de ge\u00EFnstalleerde JDKs op dit systeem no.such.JDK=JDK bestaat niet op dit system SCM\ checkout\ retry\ count=SCM checkout pogingen diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_nl.properties new file mode 100644 index 0000000000..c5c603cfa4 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_nl.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Keer terug naar de vorige versie van Jenkins +buttonText=Downgrade naar {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties index 6a1082ae14..bec69638b3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_nl.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. User=Gebruiker -Password=Paswoord +Password=Wachtwoord Remember\ me\ on\ this\ computer=Aanmeldgegevens op deze computer bijhouden. login=Aanmelden signUp=Als nieuwe gebruiker registreren. diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties index 211a4b7ee9..cc78f16ec8 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_nl.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=Naam +Plugins=Invoegtoepassingen System\ Properties=Systeeminstellingen -Environment\ Variables=Omgevingsinstellingen \ No newline at end of file +Enabled=Ingeschakeld +Environment\ Variables=Omgevingsinstellingen +Version=Versie diff --git a/core/src/main/resources/lib/hudson/editableDescription_nl.properties b/core/src/main/resources/lib/hudson/editableDescription_nl.properties old mode 100755 new mode 100644 index b59a75cf33..f87b229b29 --- a/core/src/main/resources/lib/hudson/editableDescription_nl.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_nl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -add\ description=Voeg een omschrijving toe +add\ description=voeg omschrijving toe edit\ description=Wijzig omschrijving diff --git a/core/src/main/resources/lib/hudson/executors_nl.properties b/core/src/main/resources/lib/hudson/executors_nl.properties old mode 100755 new mode 100644 index 00b001cd34..670e66c53f --- a/core/src/main/resources/lib/hudson/executors_nl.properties +++ b/core/src/main/resources/lib/hudson/executors_nl.properties @@ -26,6 +26,6 @@ Status=Status Master=Hoofdnode offline=Niet verbonden Dead=Niet actief -Idle=Wachtend -Building=Er wordt gebouwd +Idle=Nietsdoend +Building=Bouwt terminate\ this\ build=Stop bouwpoging diff --git a/core/src/main/resources/lib/hudson/iconSize_nl.properties b/core/src/main/resources/lib/hudson/iconSize_nl.properties index b1a72f7dc5..6e8f59ef85 100644 --- a/core/src/main/resources/lib/hudson/iconSize_nl.properties +++ b/core/src/main/resources/lib/hudson/iconSize_nl.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=Symbool +Icon=Pictogram diff --git a/core/src/main/resources/lib/hudson/queue_nl.properties b/core/src/main/resources/lib/hudson/queue_nl.properties index 6d2ed2c032..c044dc620f 100644 --- a/core/src/main/resources/lib/hudson/queue_nl.properties +++ b/core/src/main/resources/lib/hudson/queue_nl.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Geplande bouwpogingen -No\ builds\ in\ the\ queue.=Er zijn geen geplande bouwpogingen. +Build\ Queue=Build wachtrij +No\ builds\ in\ the\ queue.=Er staan geen builds in de wachtrij. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Er werd Jenkins gevraagd zichzelf te be\u00EBindigen. Er zullen geen nieuwe bouwpogingen meer ondernomen worden. cancel=Annuleer diff --git a/core/src/main/resources/lib/hudson/rssBar_nl.properties b/core/src/main/resources/lib/hudson/rssBar_nl.properties index 8bbf14a271..0673b8c7d6 100644 --- a/core/src/main/resources/lib/hudson/rssBar_nl.properties +++ b/core/src/main/resources/lib/hudson/rssBar_nl.properties @@ -22,5 +22,5 @@ Legend=Legenda for\ all=alle -for\ failures=enkel gefaalde -for\ just\ latest\ builds=enkel voor de laatste bouwpogingen +for\ failures=van mislukte pogingen +for\ just\ latest\ builds=enkel de laatste bouwpogingen diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_nl.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_nl.properties new file mode 100644 index 0000000000..ff985f13fc --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_nl.properties @@ -0,0 +1,24 @@ +# 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. + +License=Licentie +Name=Naam diff --git a/core/src/main/resources/lib/layout/layout_nl.properties b/core/src/main/resources/lib/layout/layout_nl.properties index c76ca22a7a..e5b239ba39 100644 --- a/core/src/main/resources/lib/layout/layout_nl.properties +++ b/core/src/main/resources/lib/layout/layout_nl.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=zoeken searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -Page\ generated=Pagina gegenereerd +Page\ generated=Pagina aangemaakt logout=Afmelden -DISABLE\ AUTO\ REFRESH=ANNULEER AUTOMATISCH HERLADEN -ENABLE\ AUTO\ REFRESH=ACTIVEER AUTOMATISCH HERLADEN +DISABLE\ AUTO\ REFRESH=Niet automatisch herladen +ENABLE\ AUTO\ REFRESH=Automatisch herladen diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/disabled_nl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/disabled_nl.properties index 6bd692b5aa..d8e35ff6d2 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/disabled_nl.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/disabled_nl.properties @@ -26,4 +26,4 @@ description=\ voor historische redenen. Indien je wenst kun je deze permanent verwijderen door \ links op "Verwijder alle gedesactiveerde modules" te klikken. Modules=Module -Disabled=Gedesactiveerd \ No newline at end of file +Disabled=Gedeactiveerd 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 0538e47bcc..4e69fe967c 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,5 +27,6 @@ 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/modules_nl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_nl.properties index 5034e566c1..0d9c30ca5d 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_nl.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_nl.properties @@ -23,4 +23,6 @@ text=\ Gelieve een bouwpoging te starten zodat Jenkins \ de lijst van modules via de POM kan opbouwen. -Overview={0} Overzicht \ No newline at end of file +Disabled=Gedeactiveerd +Modules=Modules +Overview={0} Overzicht diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_nl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_nl.properties index 05d26011bb..203044b21d 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_nl.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_nl.properties @@ -20,8 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Bouw een maven2/3 project. Jenkins maakt gebruikt van uw POM bestand wat \ - uw nood aan configuratie drastisch reduceert. Merk op dat deze functionaliteit \ - nog steeds in ontwikkeling is, maar al reeds beschikbaar gesteld wordt om \ - terugkoppeling te krijgen van gebruikers. +body=Bouw een maven2/3-project. Jenkins maakt gebruikt van uw POM-bestand wat uw nood aan configuratie drastisch reduceert. Merk op dat deze functionaliteit nog steeds in ontwikkeling is, maar al reeds beschikbaar gesteld wordt om terugkoppeling te krijgen van gebruikers. -- GitLab From 3ec0afc77a62305100bb30e8ff01f4bac44d9db9 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 135/158] Community-contributed localization for Polish (pl) --- .../PluginManager/advanced_pl.properties | 35 +++++++++++++++++++ .../hudson/PluginManager/index_pl.properties | 4 +++ .../PluginManager/installed_pl.properties | 32 +++++++++++++++++ .../hudson/PluginManager/table_pl.properties | 3 ++ .../message_pl.properties | 25 +++++++++++++ .../MatrixProject/ajaxMatrix_pl.properties | 23 ++++++++++++ .../matrix/MatrixProject/index_pl.properties | 26 ++++++++++++++ .../MatrixProject/newJobDetail_pl.properties | 23 ++++++++++++ .../model/AbstractBuild/changes_pl.properties | 23 ++++++++++++ .../model/AbstractBuild/index_pl.properties | 30 ++++++++++++++++ .../AbstractBuild/sidepanel_pl.properties | 24 +++++++++++++ .../model/AbstractBuild/tasks_pl.properties | 29 +++++++++++++++ .../model/AbstractItem/delete_pl.properties | 24 +++++++++++++ .../AbstractItem/noWorkspace_pl.properties | 23 ++++++++++++ .../AbstractProject/changes_pl.properties | 23 ++++++++++++ .../model/AbstractProject/main_pl.properties | 26 ++++++++++++++ .../AbstractProject/sidepanel_pl.properties | 30 ++++++++++++++++ .../hudson/model/AllView/noJob_pl.properties | 25 +++++++++++++ .../UserIdCause/description_pl.properties | 24 +++++++++++++ .../model/Computer/builds_pl.properties | 23 ++++++++++++ .../hudson/model/Computer/index_pl.properties | 24 +++++++++++++ .../model/Computer/sidepanel_pl.properties | 28 +++++++++++++++ .../model/ComputerSet/index_pl.properties | 25 +++++++++++++ .../model/ComputerSet/sidepanel_pl.properties | 25 +++++++++++++ .../DirectoryBrowserSupport/dir_pl.properties | 24 +++++++++++++ .../ExternalJob/newJobDetail_pl.properties | 23 ++++++++++++ .../newJobDetail_pl.properties | 23 ++++++++++++ .../model/Job/buildTimeTrend_pl.properties | 25 +++++++++++++ .../hudson/model/Job/configure_pl.properties | 25 +++++++++++++ .../hudson/model/Job/index_pl.properties | 23 ++++++++++++ .../hudson/model/Job/permalinks_pl.properties | 23 ++++++++++++ .../ListView/newViewDetail_pl.properties | 23 ++++++++++++ .../config_pl.properties | 23 ++++++++++++ .../index_pl.properties | 25 +++++++++++++ .../Permalink/link_pl.properties | 23 ++++++++++++ .../hudson/model/Run/configure_pl.properties | 26 ++++++++++++++ .../model/Run/confirmDelete_pl.properties | 24 +++++++++++++ .../hudson/model/Run/console_pl.properties | 24 +++++++++++++ .../hudson/model/Run/delete_pl.properties | 23 ++++++++++++ .../hudson/model/Run/logKeep_pl.properties | 23 ++++++++++++ .../ConnectionCheckJob/row_pl.properties | 23 ++++++++++++ .../Installing/status_pl.properties | 23 ++++++++++++ .../DownloadJob/Pending/status_pl.properties | 23 ++++++++++++ .../DownloadJob/Success/status_pl.properties | 23 ++++++++++++ .../Pending/status_pl.properties | 23 ++++++++++++ .../Running/status_pl.properties | 23 ++++++++++++ .../RestartJenkinsJob/row_pl.properties | 23 ++++++++++++ .../model/UpdateCenter/body_pl.properties | 23 ++++++++++++ .../model/UpdateCenter/index_pl.properties | 23 ++++++++++++ .../UpdateCenter/sidepanel_pl.properties | 25 +++++++++++++ .../model/View/People/index_pl.properties | 26 ++++++++++++++ .../hudson/model/View/builds_pl.properties | 24 +++++++++++++ .../hudson/model/View/newJob_pl.properties | 2 +- .../hudson/model/View/sidepanel_pl.properties | 31 ++++++++++++++++ .../EmptyChangeLogSet/digest_pl.properties | 23 ++++++++++++ .../scm/SCM/project-changes_pl.properties | 24 +++++++++++++ .../loginLink_pl.properties | 23 ++++++++++++ .../SecurityRealm/loginLink_pl.properties | 23 ++++++++++++ .../tasks/Fingerprinter/config_pl.properties | 24 +++++++++++++ .../hudson/tasks/Mailer/config_pl.properties | 25 +++++++++++++ .../summary_pl.properties | 23 ++++++++++++ .../MetaTabulatedResult/body_pl.properties | 32 +++++++++++++++++ .../test/TestObject/sidepanel_pl.properties | 23 ++++++++++++ .../tasks/test/TestResult/index_pl.properties | 23 ++++++++++++ .../floatingBox_pl.properties | 24 +++++++++++++ .../SCMTrigger/SCMAction/index_pl.properties | 23 ++++++++++++ .../BuildButtonColumn/column_pl.properties | 23 ++++++++++++ .../myViewTabs_pl.properties | 23 ++++++++++++ .../DefaultViewsTabBar/viewTabs_pl.properties | 23 ++++++++++++ .../JobColumn/columnHeader_pl.properties | 23 ++++++++++++ .../columnHeader_pl.properties | 23 ++++++++++++ .../LastDurationColumn/column_pl.properties | 23 ++++++++++++ .../columnHeader_pl.properties | 23 ++++++++++++ .../LastFailureColumn/column_pl.properties | 23 ++++++++++++ .../columnHeader_pl.properties | 23 ++++++++++++ .../LastSuccessColumn/column_pl.properties | 23 ++++++++++++ .../StatusColumn/columnHeader_pl.properties | 23 ++++++++++++ .../WeatherColumn/columnHeader_pl.properties | 23 ++++++++++++ .../BuildHistoryWidget/entries_pl.properties | 24 +++++++++++++ .../widgets/HistoryWidget/entry_pl.properties | 23 ++++++++++++ .../widgets/HistoryWidget/index_pl.properties | 26 ++++++++++++++ .../model/Jenkins/accessDenied_pl.properties | 23 ++++++++++++ .../model/Jenkins/downgrade_pl.properties | 24 +++++++++++++ .../Jenkins/fingerprintCheck_pl.properties | 28 +++++++++++++++ .../model/Jenkins/manage_pl.properties | 35 +++++++++++++++++++ .../model/Jenkins/newView_pl.properties | 23 ++++++++++++ .../resources/lib/form/advanced_pl.properties | 23 ++++++++++++ .../resources/lib/form/helpArea_pl.properties | 23 ++++++++++++ .../form/repeatableDeleteButton_pl.properties | 23 ++++++++++++ .../lib/form/repeatable_pl.properties | 23 ++++++++++++ .../lib/hudson/buildCaption_pl.properties | 24 +++++++++++++ .../lib/hudson/buildHealth_pl.properties | 23 ++++++++++++ .../lib/hudson/buildListTable_pl.properties | 26 ++++++++++++++ .../lib/hudson/buildProgressBar_pl.properties | 23 ++++++++++++ .../hudson/editableDescription_pl.properties | 24 +++++++++++++ .../lib/hudson/executors_pl.properties | 29 +++++++++++++++ .../lib/hudson/iconSize_pl.properties | 23 ++++++++++++ .../lib/hudson/listScmBrowsers_pl.properties | 23 ++++++++++++ .../lib/hudson/newFromList/form_pl.properties | 23 ++++++++++++ .../resources/lib/hudson/node_pl.properties | 23 ++++++++++++ .../lib/hudson/project/matrix_pl.properties | 23 ++++++++++++ .../project/upstream-downstream_pl.properties | 24 +++++++++++++ .../resources/lib/hudson/queue_pl.properties | 25 +++++++++++++ .../resources/lib/hudson/rssBar_pl.properties | 26 ++++++++++++++ .../lib/hudson/test-result_pl.properties | 24 +++++++++++++ .../resources/lib/layout/layout_pl.properties | 28 +++++++++++++++ .../lib/layout/main-panel_pl.properties | 23 ++++++++++++ .../main/resources/lib/test/bar_pl.properties | 24 +++++++++++++ .../MavenModuleSet/actions_pl.properties | 23 ++++++++++++ .../maven/MavenModuleSet/index_pl.properties | 27 ++++++++++++++ .../MavenModuleSet/modules_pl.properties | 23 ++++++++++++ .../MavenModuleSet/newJobDetail_pl.properties | 23 ++++++++++++ .../MavenModuleSetBuild/main_pl.properties | 23 ++++++++++++ 113 files changed, 2692 insertions(+), 1 deletion(-) create mode 100644 core/src/main/resources/hudson/PluginManager/advanced_pl.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_pl.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_pl.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_pl.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_pl.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/builds_pl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties create mode 100644 core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_pl.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_pl.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_pl.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_pl.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties create mode 100644 core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/config_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/config_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_pl.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_pl.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pl.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pl.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pl.properties create mode 100644 core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties create mode 100644 core/src/main/resources/lib/form/advanced_pl.properties create mode 100644 core/src/main/resources/lib/form/helpArea_pl.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties create mode 100644 core/src/main/resources/lib/form/repeatable_pl.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_pl.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_pl.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_pl.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_pl.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_pl.properties create mode 100644 core/src/main/resources/lib/hudson/executors_pl.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_pl.properties create mode 100644 core/src/main/resources/lib/hudson/listScmBrowsers_pl.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_pl.properties create mode 100644 core/src/main/resources/lib/hudson/node_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_pl.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties create mode 100644 core/src/main/resources/lib/hudson/queue_pl.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_pl.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_pl.properties create mode 100644 core/src/main/resources/lib/layout/layout_pl.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_pl.properties create mode 100644 core/src/main/resources/lib/test/bar_pl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_pl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_pl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_pl.properties diff --git a/core/src/main/resources/hudson/PluginManager/advanced_pl.properties b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties new file mode 100644 index 0000000000..ed2794c752 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/advanced_pl.properties @@ -0,0 +1,35 @@ +# 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. + +Check\ now=Sprawd\u017A teraz +File=Plik +HTTP\ Proxy\ Configuration=Konfiguracja HTTP Proxy +Password=Has\u0142o +Port=Port +Server=Serwer +URL=Adres URL +Update\ Site=Strona z aktualizacjami +Upload=Wgraj +Upload\ Plugin=Wgraj wtyczk\u0119 +User\ name=Nazwa u\u017Cytkownika +lastUpdated=Informacje o aktualizacjach pobrane: {0} temu +uploadtext=Mo\u017Cesz wgra\u0107 plik .hpi \u017Ceby zainstalowa\u0107 wtyczk\u0119 z poza centralnego repozytorium wtyczek diff --git a/core/src/main/resources/hudson/PluginManager/index_pl.properties b/core/src/main/resources/hudson/PluginManager/index_pl.properties index 89648711f0..28218ebbaf 100644 --- a/core/src/main/resources/hudson/PluginManager/index_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/index_pl.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Wszystkie +None=\u017Badnej +Select=Zaznacz UpdatePageDescription=Ta strona zawiera aktualizacje wtyczek, kt\u00F3rych aktualnie u\u017Cywasz +UpdatePageLegend=Nieaktywne wiersze oznaczaj\u0105 ju\u017C wykonane aktualizacje, czekaj\u0105ce na restart. Zacieniowane ale aktywne wiersze s\u0105 w trakcie aktualizacji lub zako\u0144czy\u0142y si\u0119 b\u0142\u0119dnie. diff --git a/core/src/main/resources/hudson/PluginManager/installed_pl.properties b/core/src/main/resources/hudson/PluginManager/installed_pl.properties new file mode 100644 index 0000000000..b04bff6e71 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_pl.properties @@ -0,0 +1,32 @@ +# 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. + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=Zmiany zostan\u0105 wprowadzone po ponownym uruchomieniu Jenkinsa +Enabled=W\u0142\u0105czone wtyczki +Name=Nazwa +Pinned=Przypi\u0119ta +Previously\ installed\ version=Poprzednia zainstalowana wersja +Restart\ Once\ No\ Jobs\ Are\ Running=Zrestartuj gdy \u017Cadne zadania nie s\u0105 wykonywane +Uncheck\ to\ disable\ the\ plugin=Odznacz aby wy\u0142\u0105czy\u0107 wtyczk\u0119 +Unpin=Odepnij +Version=Wersja +downgradeTo=Powr\u00F3\u0107 do starszej wersji {0} diff --git a/core/src/main/resources/hudson/PluginManager/table_pl.properties b/core/src/main/resources/hudson/PluginManager/table_pl.properties index 228bcafee3..4ae8010902 100644 --- a/core/src/main/resources/hudson/PluginManager/table_pl.properties +++ b/core/src/main/resources/hudson/PluginManager/table_pl.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Check\ to\ install\ the\ plugin=Zaznacz aby zainstalowa\u0107 wtyczk\u0119 +Click\ this\ heading\ to\ sort\ by\ category=Kliknij w nag\u0142\u00F3wek by posortowa\u0107 po kategorii Install=Instaluj +Installed=Wersja zainstalowana Name=Nazwa No\ updates=Brak dost\u0119pnych aktualizacji Version=Wersja diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.properties new file mode 100644 index 0000000000..bdbfe96493 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pl.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. + +Dismiss=Ignoruj +More\ Info=Wi\u0119cej informacji +blurb=Wygl\u0105da na to, \u017Ce twoje ustawienia reverse proxy s\u0105 nieprawid\u0142owe. diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_pl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_pl.properties new file mode 100644 index 0000000000..bf6ce23fbc --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Not\ configured=Nie skonfigurowane diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties new file mode 100644 index 0000000000..34a071fceb --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_pl.properties @@ -0,0 +1,26 @@ +# 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=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/newJobDetail_pl.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pl.properties new file mode 100644 index 0000000000..805f1cc328 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pl.properties @@ -0,0 +1,23 @@ +# 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. + +body=Przeznaczone dla projekt\u00F3w, kt\u00F3re potrzebuj\u0105 du\u017Cej liczby r\u00F3\u017Cnych konfiguracji, np. testuj\u0105cych na wielu \u015Brodowiskach, buduj\u0105cych oprogramowanie dla wybranych platform, itp. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_pl.properties new file mode 100644 index 0000000000..339b5fab61 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Zmiany diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties new file mode 100644 index 0000000000..47322da604 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pl.properties @@ -0,0 +1,30 @@ +# 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=Build +Build\ Artifacts=Artefakty +Downstream\ Builds=Buildy zst\u0119puj\u0105ce +Not\ yet\ determined=Jeszcze nie ustalono +Took=Zaj\u0119\u0142o +none=brak +on=na +startedAgo=Wystartowano {0} temu diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties new file mode 100644 index 0000000000..58f385ecc3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Next\ Build=Nast\u0119pny build +Previous\ Build=Poprzedni build diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties new file mode 100644 index 0000000000..4397414d52 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pl.properties @@ -0,0 +1,29 @@ +# 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. + +Back\ to\ Project=Powr\u00F3t do Projektu +Changes=Zmiany +Console\ Output=Podgl\u0105d konsoli +Edit\ Build\ Information=Edycja informacji o budowaniu +Status=Status +View\ Build\ Information=Poka\u017C Informacje o build''zie +raw=czyste diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties new file mode 100644 index 0000000000..e37de58541 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Yes=Tak +blurb=Czy na pewno chcesz usun\u0105\u0107 {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties new file mode 100644 index 0000000000..bd515a74b8 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Error:\ no\ workspace=B\u0142\u0105d: brak przestrzeni roboczej diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties new file mode 100644 index 0000000000..339b5fab61 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Zmiany diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties new file mode 100644 index 0000000000..b94d2a0b5f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_pl.properties @@ -0,0 +1,26 @@ +# 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. + +Last\ Successful\ Artifacts=Ostatnie Udane Artefakty +Latest\ Test\ Result=Ostatni wynik test\u00F3w +Recent\ Changes=Ostatnie Zmiany +Workspace=Przestrze\u0144 robocza diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties new file mode 100644 index 0000000000..ff4159d42b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pl.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Powr\u00F3t do Pulpitu +Build\ scheduled=Build zaplanowany +Changes=Zmiany +Configure=Konfiguracja +Status=Status +Wipe\ Out\ Workspace=Wyczy\u015B\u0107 przestrze\u0144 robocz\u0105 +Workspace=Przestrze\u0144 robocza +delete=Usu\u0144 {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_pl.properties b/core/src/main/resources/hudson/model/AllView/noJob_pl.properties new file mode 100644 index 0000000000..89041db538 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_pl.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. + +Welcome\ to\ Jenkins!=Witamy w Jenkins! +newJob=Prosz\u0119 utworzy\u0107 nowe zadanie by rozpocz\u0105\u0107 prac\u0119. + diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties new file mode 100644 index 0000000000..327eb1e410 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pl.properties @@ -0,0 +1,24 @@ +# 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. + +started_by_anonymous=Uruchomiono przez anonimowego u\u017Cytkownika +started_by_user=Wystartowane przez u\u017Cytkownika diff --git a/core/src/main/resources/hudson/model/Computer/builds_pl.properties b/core/src/main/resources/hudson/model/Computer/builds_pl.properties new file mode 100644 index 0000000000..c3ba0c8c6f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/builds_pl.properties @@ -0,0 +1,23 @@ +# 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. + +title=Historia build\u00F3w z {0} diff --git a/core/src/main/resources/hudson/model/Computer/index_pl.properties b/core/src/main/resources/hudson/model/Computer/index_pl.properties new file mode 100644 index 0000000000..a8afbdeb21 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/index_pl.properties @@ -0,0 +1,24 @@ +# 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. + +None=\u017Baden +title.projects_tied_on=Projekty powi\u0105zane z {0} diff --git a/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties new file mode 100644 index 0000000000..a58119ec68 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/sidepanel_pl.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ List=Powr\u00F3t do listy +Build\ History=Historia build\u00F3w +Configure=Konfiguruj +Load\ Statistics=Wczytaj statystyki +Script\ Console=Konsola skrypt\u00F3w +Status=Status diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/index_pl.properties new file mode 100644 index 0000000000..d23bf6890b --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/index_pl.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. + +Configure=Konfiguruj +Name=Nazwa +Refresh\ status=Od\u015Bwie\u017C status diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.properties new file mode 100644 index 0000000000..1f2b029f7e --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_pl.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. + +Back\ to\ Dashboard=Powr\u00F3t do Dashboard +Configure=Konfiguruj +Manage\ Jenkins=Zarz\u0105dzaj Jenkins''em diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties new file mode 100644 index 0000000000..a528b105f5 --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pl.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=wszystkie pliki w zipie +view=zajrzyj diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pl.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pl.properties new file mode 100644 index 0000000000..ba78ae430c --- /dev/null +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pl.properties @@ -0,0 +1,23 @@ +# 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. + +body=Ten rodzaj zadania pozwala na monitorowanie proces\u00F3w uruchamianych poza Jenkinsem, nawet na urz\u0105dzeniu zdalnym. Zosta\u0142o to stworzone by m\u00F3c u\u017Cywa\u0107 Jenkinsa jako tablicy kontrolnej istniej\u0105cego automatycznego systemu. Sprawd\u017A w dokumentacji by zapozna\u0107 si\u0119 ze szczeg\u00F3\u0142ami. diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties new file mode 100644 index 0000000000..8c188cffc9 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pl.properties @@ -0,0 +1,23 @@ +# 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. + +body=To jest podstawowa funkcjonalno\u015B\u0107 Jenkinsa. Jenkins stworzy projekt \u0142\u0105cz\u0105cy dowolny SCM z dowolnym systemem buduj\u0105cym, mo\u017Ce to by\u0107 r\u00F3wnie\u017C wykorzystane do czego\u015B innego ni\u017C budowanie oprogramowania. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.properties new file mode 100644 index 0000000000..3a3dc86fc1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_pl.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. + +Build\ Time\ Trend=Trendy czasu budowania +More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=Potrzeba wi\u0119cej ni\u017C 1 builda by przygotowa\u0107 raport trendu +Timeline=Linia czasu diff --git a/core/src/main/resources/hudson/model/Job/configure_pl.properties b/core/src/main/resources/hudson/model/Job/configure_pl.properties new file mode 100644 index 0000000000..9adb9e6d36 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_pl.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. + +Description=Opis +LOADING=\u0141ADOWANIE +Save=Zapisz diff --git a/core/src/main/resources/hudson/model/Job/index_pl.properties b/core/src/main/resources/hudson/model/Job/index_pl.properties new file mode 100644 index 0000000000..5ea1ab5912 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_pl.properties @@ -0,0 +1,23 @@ +# 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=Wy\u0142\u0105cz projekt diff --git a/core/src/main/resources/hudson/model/Job/permalinks_pl.properties b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties new file mode 100644 index 0000000000..408bf0706e --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=Link bezpo\u015Bredni diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties new file mode 100644 index 0000000000..e636ae3cd6 --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_pl.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=Prezentuje elementy w formacie prostej listy. Mo\u017Cesz wybra\u0107 jakie zadania maj\u0105 by\u0107 wy\u015Bwietlane w widoku. diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties new file mode 100644 index 0000000000..e929a96a2c --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ Parameter=Dodaj parametr diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.properties new file mode 100644 index 0000000000..0df95d4606 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_pl.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. + +Build=Buduj +LOADING=\u0141ADOWANIE +description=To budowanie wymaga parametr\u00F3w: diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pl.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pl.properties new file mode 100644 index 0000000000..d769f824b4 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_pl.properties @@ -0,0 +1,23 @@ +# 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. + +format=0} ({1}), {2} temu diff --git a/core/src/main/resources/hudson/model/Run/configure_pl.properties b/core/src/main/resources/hudson/model/Run/configure_pl.properties new file mode 100644 index 0000000000..215f2e845d --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_pl.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Opis +DisplayName=Wy\u015Bwietlana nazwa +LOADING=\u0141ADOWANIE +Save=Zapisz diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties new file mode 100644 index 0000000000..5db2738ec0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=Czy na pewno chcesz usun\u0105\u0107 ten build? +Yes=Tak diff --git a/core/src/main/resources/hudson/model/Run/console_pl.properties b/core/src/main/resources/hudson/model/Run/console_pl.properties new file mode 100644 index 0000000000..aafc8ad862 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Wyj\u015Bcie konsoli +View\ as\ plain\ text=Otw\u00F3rz jako zwyk\u0142y tekst diff --git a/core/src/main/resources/hudson/model/Run/delete_pl.properties b/core/src/main/resources/hudson/model/Run/delete_pl.properties new file mode 100644 index 0000000000..3c9d963574 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=Usu\u0144 ten build diff --git a/core/src/main/resources/hudson/model/Run/logKeep_pl.properties b/core/src/main/resources/hudson/model/Run/logKeep_pl.properties new file mode 100644 index 0000000000..6638583ef8 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=Zatrzymaj t\u0105 budowe na zawsze diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties new file mode 100644 index 0000000000..5097d8d94f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=Przygotowanie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pl.properties new file mode 100644 index 0000000000..774dfad813 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=Instalacja diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties new file mode 100644 index 0000000000..0a3ee2cf44 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=Pracuj\u0119 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_pl.properties new file mode 100644 index 0000000000..570bdfafa2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Success=Sukces diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties new file mode 100644 index 0000000000..5cf6d31d01 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=W oczekiwaniu diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pl.properties new file mode 100644 index 0000000000..eb76167430 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Running=Wykonywane diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties new file mode 100644 index 0000000000..9842e696cf --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Uruchom ponownie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties new file mode 100644 index 0000000000..e679617df1 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pl.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Zrestartuj Jenkinsa gdy instalacja si\u0119 zako\u0144czy i \u017Caden job nie b\u0119dzie wykonywany diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties new file mode 100644 index 0000000000..45da1067cc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=Instaluj\u0119 wtyczki/aktualizacje diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.properties new file mode 100644 index 0000000000..9e61f826fc --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pl.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. + +Back\ to\ Dashboard=Powr\u00F3t do Dashboard +Manage\ Jenkins=Konfiguruj +Manage\ Plugins=Zarz\u0105dzaj wtyczkami diff --git a/core/src/main/resources/hudson/model/View/People/index_pl.properties b/core/src/main/resources/hudson/model/View/People/index_pl.properties new file mode 100644 index 0000000000..8240ed2f08 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_pl.properties @@ -0,0 +1,26 @@ +# 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. + +Last\ Active=Ostatnio aktywny +Name=Nazwa +People=Ludzie +User\ Id=Id u\u017Cytkownika diff --git a/core/src/main/resources/hudson/model/View/builds_pl.properties b/core/src/main/resources/hudson/model/View/builds_pl.properties new file mode 100644 index 0000000000..8974db5fab --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=Eksportuj jako XML +buildHistory=Histora budowania {0} diff --git a/core/src/main/resources/hudson/model/View/newJob_pl.properties b/core/src/main/resources/hudson/model/View/newJob_pl.properties index 356f15a5ab..98540a13e6 100644 --- a/core/src/main/resources/hudson/model/View/newJob_pl.properties +++ b/core/src/main/resources/hudson/model/View/newJob_pl.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -CopyExisting=Kopiuj istniej\u0105ce {0} +CopyExisting=Kopiuj z istniej\u0105cego {0} JobName=Nazwa {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pl.properties b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties new file mode 100644 index 0000000000..57c97ea20b --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_pl.properties @@ -0,0 +1,31 @@ +# 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\ History=Historia Zada\u0144 +Check\ File\ Fingerprint=Sprawd\u017A "odcisk" (Fingerprint) pliku +Delete\ View=Usu\u0144 Widok +Edit\ View=Edytuj Widok +Manage\ Jenkins= +New\ Job= +NewJob=Nowe +People=Ludzie +Project\ Relationship=Zale\u017Cno\u015Bci projektu diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties new file mode 100644 index 0000000000..18cc2fbc7a --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_pl.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=Brak Zmian diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties new file mode 100644 index 0000000000..b90724b296 --- /dev/null +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_pl.properties @@ -0,0 +1,24 @@ +# 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. + +No\ changes\ in\ any\ of\ the\ builds.=Brak zmian w trakcie procesu budowania. +detail=detale diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties new file mode 100644 index 0000000000..72d26aa862 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_pl.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=Za\u0142\u00F3\u017C konto diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties new file mode 100644 index 0000000000..9a40e354d2 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pl.properties @@ -0,0 +1,23 @@ +# 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. + +login=zaloguj diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/config_pl.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/config_pl.properties new file mode 100644 index 0000000000..3ab630d935 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/config_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Fingerprint\ all\ archived\ artifacts=Odcisk palca wszystkich zarchiwizowanych artefakt\u00F3w +Keep\ the\ build\ logs\ of\ dependencies=Trzymaj logi projekt\u00F3w zale\u017Cnych diff --git a/core/src/main/resources/hudson/tasks/Mailer/config_pl.properties b/core/src/main/resources/hudson/tasks/Mailer/config_pl.properties new file mode 100644 index 0000000000..b950c4cc78 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/config_pl.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. + +Recipients=Odbiorcy +Send\ e-mail\ for\ every\ unstable\ build=Wy\u015Blij e-mail dla ka\u017Cdego niestabilnego buildu +Send\ separate\ e-mails\ to\ individuals\ who\ broke\ the\ build=Wy\u015Blij osobne e-maile do os\u00F3b, kt\u00F3re wprowadzi\u0142y b\u0142\u0105d diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_pl.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_pl.properties new file mode 100644 index 0000000000..717c937c1a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Show\ all\ failed\ tests=Poka\u017C wszystkie testy zako\u0144czone b\u0142\u0119dem diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pl.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pl.properties new file mode 100644 index 0000000000..876a8afa1a --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_pl.properties @@ -0,0 +1,32 @@ +# 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. + +Age=Wiek +All\ Failed\ Tests=Wszystkie testy zako\u0144czone niepowodzeniem +All\ Tests=Wszystkie testy +Duration=Czas trwania +Fail=B\u0142\u0105d +Loading...=\u0141adowanie... +Skip=Pomi\u0144 +Test\ Name=Nazwa testu +Total=Wszystkich +diff=r\u00F3\u017Cnice diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pl.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pl.properties new file mode 100644 index 0000000000..da839daa0c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_pl.properties @@ -0,0 +1,23 @@ +# 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. + +History=Historia diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_pl.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_pl.properties new file mode 100644 index 0000000000..612a90684c --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_pl.properties @@ -0,0 +1,23 @@ +# 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. + +took=Zaj\u0119\u0142o {0} diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_pl.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_pl.properties new file mode 100644 index 0000000000..24a226de4f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_pl.properties @@ -0,0 +1,24 @@ +# 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. + +enlarge=powi\u0119ksz +just\ show\ failures=poka\u017C tylko pora\u017Cki diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pl.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pl.properties new file mode 100644 index 0000000000..4d42091ce9 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_pl.properties @@ -0,0 +1,23 @@ +# 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. + +title="{0}" diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties new file mode 100644 index 0000000000..59e942d70c --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Dodaj budowanie do kolejki diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pl.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pl.properties new file mode 100644 index 0000000000..8bd54634f6 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pl.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nowy widok diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pl.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pl.properties new file mode 100644 index 0000000000..8bd54634f6 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pl.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nowy widok diff --git a/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..77f02c61ea --- /dev/null +++ b/core/src/main/resources/hudson/views/JobColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Job=Zadanie diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..557ca8bec3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Ostatnio zaj\u0119\u0142o diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_pl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_pl.properties new file mode 100644 index 0000000000..a0e84c8342 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_pl.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=B.D. diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..37b1ca45e7 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Ostatni b\u0142\u0105d diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_pl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_pl.properties new file mode 100644 index 0000000000..97e56177d3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_pl.properties @@ -0,0 +1,23 @@ +# 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. + +N/A= diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..d188be71e2 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Ostatni sukces diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties new file mode 100644 index 0000000000..97e56177d3 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pl.properties @@ -0,0 +1,23 @@ +# 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. + +N/A= diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..34341b5987 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Status ostatniego build''a diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties new file mode 100644 index 0000000000..5387db7caa --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Raport pokazuj\u0105cy agregowany status ostatnich wykona\u0144 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties new file mode 100644 index 0000000000..79bcda36e5 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_pl.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=anuluj build +pending=wykonywany diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties new file mode 100644 index 0000000000..f487703b2b --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties new file mode 100644 index 0000000000..8e6ab98320 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pl.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=Wi\u0119cej ... +for\ all=dla wszystkich +for\ failures=dla pora\u017Cek +trend=zmiany diff --git a/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties new file mode 100644 index 0000000000..ac7552b95a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/accessDenied_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Access\ Denied=Brak dost\u0119pu diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties new file mode 100644 index 0000000000..a7ca7cdb6a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Przywr\u00F3\u0107 poprzedni\u0105 wersj\u0119 Jenkins''a +buttonText=Obni\u017C do diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties new file mode 100644 index 0000000000..dec44d3b57 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_pl.properties @@ -0,0 +1,28 @@ +# 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. + +Check=Sprawd\u017A +Check\ File\ Fingerprint=Sprawd\u017A odcisk pliku +File\ to\ check=Plik do sprawdzenia +description=Masz plik typu .jar ale nie wiesz do kt\u00F3rej wersji nale\u017Cy?
    Dowiedz si\u0119 przez sprawdzenie odcisku w bazie danych Jenkinsa. +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +more\ details=wi\u0119cej detali diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties new file mode 100644 index 0000000000..73bf5d5171 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pl.properties @@ -0,0 +1,35 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Dodaj, usu\u0144, wy\u0142\u0105cz lub w\u0142\u0105cz wtyczki kt\u00F3re mog\u0105 rozszerzy\u0107 funkcjonalno\u015B\u0107 Jenkinsa. +Configure\ System=Skonfiguruj system +Configure\ global\ settings\ and\ paths.=Konfiguruj ustawienia globalne i \u015Bcie\u017Cki. +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Porzu\u0107 wszystkie dane za\u0142adowane w pami\u0119ci i za\u0142aduj wszystko z systemu plik\u00F3w. +Load\ Statistics=Statystyki Obci\u0105\u017Cenia +Manage\ Jenkins=Zarz\u0105dzaj Jenkinsem +Manage\ Plugins=Zarz\u0105dzaj dodatkami +Prepare\ for\ Shutdown=Przygotuj do wy\u0142\u0105czenia +Reload\ Configuration\ from\ Disk=Odczytaj ponownie konfiguracj\u0119 z dysku +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Zatrzyma wykonanie nowych build\u00F3w, tak by system m\u00F3g\u0142by\u0107 bezpiecznie wy\u0142\u0105czony. +System\ Information=Informacje o systemie +System\ Log=Dziennik Systemowy +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Opcja u\u017Cyteczna gdy zmodyfikowano pliki konfiguracyjne bezpo\u015Brednio z dysku. diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties new file mode 100644 index 0000000000..db2578a753 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_pl.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=Nazwa widoku diff --git a/core/src/main/resources/lib/form/advanced_pl.properties b/core/src/main/resources/lib/form/advanced_pl.properties new file mode 100644 index 0000000000..9984dcd778 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=Zaawansowane diff --git a/core/src/main/resources/lib/form/helpArea_pl.properties b/core/src/main/resources/lib/form/helpArea_pl.properties new file mode 100644 index 0000000000..71e73f208e --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=Wczytywanie... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties new file mode 100644 index 0000000000..8ca3b71b5a --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Usu\u0144 diff --git a/core/src/main/resources/lib/form/repeatable_pl.properties b/core/src/main/resources/lib/form/repeatable_pl.properties new file mode 100644 index 0000000000..87ade7eebf --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Add=Dodaj diff --git a/core/src/main/resources/lib/hudson/buildCaption_pl.properties b/core/src/main/resources/lib/hudson/buildCaption_pl.properties new file mode 100644 index 0000000000..057d639a7b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Post\u0119p +cancel=Anuluj diff --git a/core/src/main/resources/lib/hudson/buildHealth_pl.properties b/core/src/main/resources/lib/hudson/buildHealth_pl.properties new file mode 100644 index 0000000000..00c09df395 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Opis diff --git a/core/src/main/resources/lib/hudson/buildListTable_pl.properties b/core/src/main/resources/lib/hudson/buildListTable_pl.properties new file mode 100644 index 0000000000..1fef005f1d --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_pl.properties @@ -0,0 +1,26 @@ +# 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=Budowanie +Console\ output=Wyj\u015Bcie konsoli +Status=Status +Time\ Since=Czas od diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties new file mode 100644 index 0000000000..5e3369da0e --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pl.properties @@ -0,0 +1,23 @@ +# 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. + +text=Rozpocz\u0119to {0} temu
    Orientacyjny pozosta\u0142y czas: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_pl.properties b/core/src/main/resources/lib/hudson/editableDescription_pl.properties new file mode 100644 index 0000000000..7c8a980d8f --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_pl.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=dodaj opis +edit\ description=zmie\u0144 opis diff --git a/core/src/main/resources/lib/hudson/executors_pl.properties b/core/src/main/resources/lib/hudson/executors_pl.properties new file mode 100644 index 0000000000..8c244d15b3 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_pl.properties @@ -0,0 +1,29 @@ +# 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 zarz\u0105dcy zada\u0144 +Building=Buduje +Idle=Bezczynny +Master=Kierownik +Status=Status +offline=Nieaktywny +terminate\ this\ build=Annuluj budowe. diff --git a/core/src/main/resources/lib/hudson/iconSize_pl.properties b/core/src/main/resources/lib/hudson/iconSize_pl.properties new file mode 100644 index 0000000000..5917729e15 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikona diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_pl.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_pl.properties new file mode 100644 index 0000000000..843c00aa2a --- /dev/null +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Auto=Automatyczny diff --git a/core/src/main/resources/lib/hudson/newFromList/form_pl.properties b/core/src/main/resources/lib/hudson/newFromList/form_pl.properties new file mode 100644 index 0000000000..df4463a6e0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=Kopiuj z diff --git a/core/src/main/resources/lib/hudson/node_pl.properties b/core/src/main/resources/lib/hudson/node_pl.properties new file mode 100644 index 0000000000..2bccc54d7a --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_pl.properties @@ -0,0 +1,23 @@ +# 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. + +master=mistrz diff --git a/core/src/main/resources/lib/hudson/project/matrix_pl.properties b/core/src/main/resources/lib/hudson/project/matrix_pl.properties new file mode 100644 index 0000000000..5bdd9a5938 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Configurations=Konfiguracje diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties new file mode 100644 index 0000000000..e182f1ff34 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_pl.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Projekty podrz\u0119dne +Upstream\ Projects=Projekty nadrz\u0119dne diff --git a/core/src/main/resources/lib/hudson/queue_pl.properties b/core/src/main/resources/lib/hudson/queue_pl.properties new file mode 100644 index 0000000000..9c7cda62cd --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_pl.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. + +Build\ Queue=Kolejka budowania +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins zaraz si\u0119 wy\u0142\u0105czy. Nie ma zaplanowanych bud\u00F3w do wykonania. +No\ builds\ in\ the\ queue.=Brak zada\u0144 w kolejce. diff --git a/core/src/main/resources/lib/hudson/rssBar_pl.properties b/core/src/main/resources/lib/hudson/rssBar_pl.properties new file mode 100644 index 0000000000..97304ae034 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_pl.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Legenda +for\ all=dla wszystkich +for\ failures=tylko niepowodzenia +for\ just\ latest\ builds=tylko dla najnowszych diff --git a/core/src/main/resources/lib/hudson/test-result_pl.properties b/core/src/main/resources/lib/hudson/test-result_pl.properties new file mode 100644 index 0000000000..897f526750 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_pl.properties @@ -0,0 +1,24 @@ +# 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. + +multifailures="{0} b\u0142\u0119dy/\u00F3w {1}" +no\ failures=bez b\u0142\u0119d\u00F3w diff --git a/core/src/main/resources/lib/layout/layout_pl.properties b/core/src/main/resources/lib/layout/layout_pl.properties new file mode 100644 index 0000000000..f1f66c05a0 --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_pl.properties @@ -0,0 +1,28 @@ +# 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\ AUTO\ REFRESH=Wy\u0142\u0105cz auto od\u015Bwie\u017Canie +ENABLE\ AUTO\ REFRESH=W\u0142\u0105cz automatyczne od\u015Bwie\u017Canie strony +Page\ generated=Strona wygenerowana +logout=Zako\u0144cz +search=szukaj +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_pl.properties b/core/src/main/resources/lib/layout/main-panel_pl.properties new file mode 100644 index 0000000000..1a1d17e73e --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkins przygotowuje si\u0119 do wy\u0142\u0105czenia diff --git a/core/src/main/resources/lib/test/bar_pl.properties b/core/src/main/resources/lib/test/bar_pl.properties new file mode 100644 index 0000000000..c5acaf1891 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_pl.properties @@ -0,0 +1,24 @@ +# 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. + +failures={0} b\u0142\u0119d\u00F3w +tests={0} test\u00F3w diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_pl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_pl.properties new file mode 100644 index 0000000000..268c6562c8 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Modu\u0142y 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 new file mode 100644 index 0000000000..66af405842 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_pl.properties @@ -0,0 +1,27 @@ +# 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=Wy\u0142\u0105cz projekt +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/modules_pl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_pl.properties new file mode 100644 index 0000000000..268c6562c8 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Modu\u0142y diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pl.properties new file mode 100644 index 0000000000..d89f7076c0 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pl.properties @@ -0,0 +1,23 @@ +# 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. + +body=Stw\u00F3rz projekt maven2. Jenkins wykorzysta twoje pliki POM by znacznie zredukowa\u0107 konfiguracj\u0119. diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_pl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_pl.properties new file mode 100644 index 0000000000..618e50d3ad --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_pl.properties @@ -0,0 +1,23 @@ +# 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. + +Module\ Builds=Bodu\u0142y build''a -- GitLab From 593402bbdc7b7153f523c9952460b70682507929 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:48 -0800 Subject: [PATCH 136/158] Community-contributed localization for pt_BR (pt_BR) --- .../AboutJenkins/index_pt_BR.properties | 25 ++++++++++++++++++ .../PluginManager/installed_pt_BR.properties | 1 + .../OldDataMonitor/manage_pt_BR.properties | 6 ++--- .../message_pt_BR.properties | 4 +-- .../config_pt_BR.properties | 24 +++++++++++++++++ .../newJobDetail_pt_BR.properties | 4 +-- .../AbstractBuild/index_pt_BR.properties | 6 ++--- .../AbstractBuild/sidepanel_pt_BR.properties | 2 +- .../AbstractBuild/tasks_pt_BR.properties | 4 ++- .../sidepanel_pt_BR.properties | 4 +-- .../description_pt_BR.properties | 2 +- .../UserIdCause/description_pt_BR.properties | 1 + .../dir_pt_BR.properties | 2 +- .../ExternalJob/newJobDetail_pt_BR.properties | 6 +---- .../newJobDetail_pt_BR.properties | 5 +--- .../hudson/model/Job/index_pt_BR.properties | 1 + .../model/Run/configure_pt_BR.properties | 26 +++++++++++++++++++ .../hudson/model/Run/console_pt_BR.properties | 2 +- .../ConnectionCheckJob/row_pt_BR.properties | 2 +- .../Canceled/status_pt_BR.properties | 23 ++++++++++++++++ .../RestartJenkinsJob/row_pt_BR.properties | 23 ++++++++++++++++ .../model/UpdateCenter/body_pt_BR.properties | 23 ++++++++++++++++ .../model/View/People/index_pt_BR.properties | 5 ++-- .../hudson/model/View/newJob_pt_BR.properties | 2 +- .../model/View/sidepanel_pt_BR.properties | 8 +++--- .../config_pt_BR.properties | 2 +- .../index_pt_BR.properties | 6 +++-- .../sidepanel_pt_BR.properties | 2 +- .../LDAPSecurityRealm/config_pt_BR.properties | 9 ++++--- .../SecurityRealm/loginLink_pt_BR.properties | 2 +- .../config_pt_BR.properties | 23 ++++++++++++++++ .../config_pt_BR.properties | 4 +-- .../ToolInstallation/global_pt_BR.properties | 4 +-- .../BuildAction/index_pt_BR.properties | 25 ++++++++++++++++++ .../myViewTabs_pt_BR.properties | 23 ++++++++++++++++ .../viewTabs_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../LastFailureColumn/column_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../LastSuccessColumn/column_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../columnHeader_pt_BR.properties | 2 +- .../HistoryWidget/entry_pt_BR.properties | 23 ++++++++++++++++ .../HistoryWidget/index_pt_BR.properties | 4 +-- .../model/Jenkins/configure_pt_BR.properties | 4 ++- .../model/Jenkins/downgrade_pt_BR.properties | 24 +++++++++++++++++ .../model/Jenkins/manage_pt_BR.properties | 23 ++++++++-------- .../model/Jenkins/systemInfo_pt_BR.properties | 5 ++++ .../form/expandableTextbox_pt_BR.properties | 2 +- .../repeatableDeleteButton_pt_BR.properties | 2 +- .../hudson/buildProgressBar_pt_BR.properties | 2 +- .../lib/hudson/executors_pt_BR.properties | 4 +-- .../lib/hudson/queue_pt_BR.properties | 4 +-- .../lib/hudson/rssBar_pt_BR.properties | 2 +- .../lib/hudson/scriptConsole_pt_BR.properties | 4 +-- .../thirdPartyLicenses_pt_BR.properties | 25 ++++++++++++++++++ .../lib/layout/layout_pt_BR.properties | 5 +++- .../MavenModuleSet/index_pt_BR.properties | 1 + .../newJobDetail_pt_BR.properties | 5 +--- 59 files changed, 378 insertions(+), 86 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_BR.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_pt_BR.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_pt_BR.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_BR.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties b/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.properties new file mode 100644 index 0000000000..bc0e785b60 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_pt_BR.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. + +about=Sobre o Jenkins {0} +blurb=Jenkins \u00E9 um servidor de aplica\u00E7\u00E3o cont\u00EDnua desenvolvido em modo open-source pela comunidade. +dependencies=Jenkins depende das seguintes depend\u00EAncias de terceiros: diff --git a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties index 09eb9086cc..048a7d62b1 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_pt_BR.properties @@ -25,6 +25,7 @@ New\ plugins\ will\ take\ effect\ once\ you\ restart\ Jenkins=O novos plugins s\ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=A mudan\u00e7as ter\u00e3o efeito quando voc\u00ea reiniciar o Jenkins Uncheck\ to\ disable\ the\ plugin=Desmarque para desativar o Plugin Enabled=Habilitar +Previously\ installed\ version=Vers\u00E3o anterior instalada Restart\ Once\ No\ Jobs\ Are\ Running=Reiniciar assim que nenhuma tarefa estiver rodando Version=Vers\u00e3o Name=Nome diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties index b3df065764..e4e8d5d33e 100644 --- a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_pt_BR.properties @@ -80,11 +80,11 @@ blurb.6=\ os dados ileg\ufffdveis usando o bot\ufffdo abaixo. Type=Tipo -Discard\ Unreadable\ Data=Discartar Dados Ileg\ufffdveis -Version=Vers\ufffdo +Discard\ Unreadable\ Data=Descartar Dados Ileg\u00EDveis +Version=Vers\u00E3o Upgrade=Atualizar Error=Erro -Unreadable\ Data=Dado Ileg\ufffdvel +Unreadable\ Data=Dado Ileg\u00EDvel Resave\ data\ files\ with\ structure\ changes\ no\ newer\ than\ Jenkins=Salvar arquivos de dados com mudan\ufffdas de estruturas que n\ufffdo sejam mais novas que o Jenkins No\ old\ data\ was\ found.=Nenhum dado antigo foi encontrado. Name=Nome diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties index 1e814c2695..d0057d2bf0 100644 --- a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Dismiss=Descartar -More\ Info=Mais Informa\ufffd\ufffdo +More\ Info=Mais Informa\u00E7\u00F5es # It appears that your reverse proxy set up is broken. -blurb=Parece que a configura\ufffd\ufffdo de proxy reverso est\ufffd com problemas. +blurb=Parece que a configura\u00E7\u00E3o do proxy reverso est\u00E1 com problemas. diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_BR.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_BR.properties new file mode 100644 index 0000000000..ce55662f01 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_pt_BR.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=Tratar o texto como HTML e us\u00E1-lo como \u00E9, sem qualquer tradu\u00E7\u00E3o +disableSyntaxHighlighting=Desabilitar destaque de sintaxe diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pt_BR.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pt_BR.properties index 1da201ccee..94ee875518 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_pt_BR.properties @@ -20,6 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Apropriado para projetos que necessitam de grande n\u00famero de direfentes configura\u00e7\u00f5es, \ - como teste em m\u00faltiplos ambientes, constru\u00e7\u00e3o para plataformas espec\u00edficas, etc. +body=Apropriado para projetos que necessitam de grande n\u00FAmero de diferentes configura\u00E7\u00F5es, como teste em m\u00FAltiplos ambientes, constru\u00E7\u00E3o para plataformas espec\u00EDficas, etc. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties index e52c7f016c..47ecf0b884 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_BR.properties @@ -22,13 +22,13 @@ startedAgo=Iniciado {0} atr\u00e1s Build=Constru\u00e7\u00e3o -Build\ Artifacts=Artefatos de Constru\u00e7\u00e3o -Changes\ in\ dependency=Mudancas na depend\u00eancia +Build\ Artifacts=Artefatos da Constru\u00E7\u00E3o +Changes\ in\ dependency=Mudan\u00E7as na depend\u00EAncia detail=detalhe Not\ yet\ determined=Ainda n\u00e3o determinado Failed\ to\ determine=Falhou ao determinar log=log -Upstream\ Builds=Constru\u00e7\u00e3o Pai +Upstream\ Builds=Constru\u00E7\u00F5es Pai Downstream\ Builds=Contru\u00e7\u00f5es Filho none=nenhum Took=Levou diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties index 1a13e87a64..f3bf13fb34 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_BR.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Previous\ Build=Constru\u00e7\u00e3o Anterior +Previous\ Build=Build Anterior Next\ Build=Pr\u00f3xima Constru\u00e7\u00e3o diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties index 46bc72f1b3..b152b91554 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_BR.properties @@ -22,6 +22,8 @@ Back\ to\ Project=Voltar ao Projeto Changes=Mudan\u00e7as -Console\ Output=Sa\u00edda do Console +Console\ Output=Resultados no Console +Edit\ Build\ Information=Editar Dados da Build Status=Estado +View\ Build\ Information=Visualizar Informa\u00E7\u00F5es de Constru\u00E7\u00E3o raw=sem formata\u00e7\u00e3o diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties index 861fc19b41..6a4b193a19 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_pt_BR.properties @@ -21,8 +21,8 @@ # THE SOFTWARE. Back\ to\ Dashboard=Voltar para Painel Principal -Status=Estado -Build\ scheduled=Constru\u00e7\u00e3 agendada +Status=Status +Build\ scheduled=Constru\u00E7\u00E3o agendada Changes=Mudan\u00e7as Wipe\ Out\ Workspace=Limpar Workspace Workspace=\u00c1rea de Trabalho diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties index edbbc2c98d..704cb2723f 100644 --- a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_pt_BR.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # Started by upstream project {0} build number {1} -started_by_project=Iniciado pelo projeto PAI {0} a constru\u00e7\u00e3o n\u00famero {1} +started_by_project=Iniciado pela constru\u00E7\u00E3o {1} do projeto {0} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties index 648dafa46e..5ddfd1fd87 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_pt_BR.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. # Started by user {1} +started_by_anonymous=Iniciado por usu\u00E1rio an\u00F4nimo started_by_user=Iniciado pelo usu\u00e1rio {1} diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties index f25bf8d771..2da2d3e571 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -all\ files\ in\ zip=Todos os arquivos estao compactados +all\ files\ in\ zip=Todos os arquivos est\u00E3o compactados view=ver No\ files\ in\ directory=Nenhum arquivo no diret\u00f3rio diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pt_BR.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pt_BR.properties index e893082102..de7f2df266 100644 --- a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_pt_BR.properties @@ -20,10 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Este tipo de trabalho permite que voc\u00ea grave a execu\u00e7\u00e3o de um processo rodando fora do Jenkins\ - (talvez at\u00e9 de uma m\u00e1quina remota.) Isto foi projetado para que voc\u1ebd possa usar Jenkins\ - como um painel principal de seus sistemas de automa\u00e7\u00e3o. Veja a documentacao \ - para mais detalhes. +body=Este tipo de trabalho permite que voc\u00EA grave a execu\u00E7\u00E3o de um processo rodando fora do Jenkins (talvez at\u00E9 de uma m\u00E1quina remota.) Isto foi projetado para que voc\u00EA possa usar Jenkins como um painel principal de seus sistemas de automa\u00E7\u00E3o. Veja a documenta\u00E7\u00E3o para mais detalhes. diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties index b314a97913..6384945df2 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_pt_BR.properties @@ -20,8 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - Esta \u00e9 a central de funcionalidades do Jenkins. Jenkins construir\u00e1 seu projeto,\ - Voce pode combinar qualquer SCM com qualquer sistema de constru\u00e7\u00e3o, e at\u00e9 mesmo ser usado\ - para outras tarefas diferentes de constru\u00e7\u00e3o de software. +body=Esta \u00E9 a central de funcionalidades do Jenkins. Jenkins construir\u00E1 seu projeto, voc\u00EA pode combinar qualquer SCM com qualquer sistema de constru\u00E7\u00E3o, e at\u00E9 mesmo ser usadopara outras tarefas diferentes de constru\u00E7\u00E3o de software. diff --git a/core/src/main/resources/hudson/model/Job/index_pt_BR.properties b/core/src/main/resources/hudson/model/Job/index_pt_BR.properties index 9a3bebb6ae..4f20ae8f03 100644 --- a/core/src/main/resources/hudson/model/Job/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Job/index_pt_BR.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Disable\ Project=Desabilitar Projeto Enable=Habilitado This\ project\ is\ currently\ disabled=Este projeto est\u00e1 atualmente desabilitado. diff --git a/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties b/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties new file mode 100644 index 0000000000..b360c7fad2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_pt_BR.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Descri\u00E7\u00E3o +DisplayName=Nome +LOADING=CARREGANDO +Save=Salvar diff --git a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties index baff4ccee2..79e6d8fca2 100644 --- a/core/src/main/resources/hudson/model/Run/console_pt_BR.properties +++ b/core/src/main/resources/hudson/model/Run/console_pt_BR.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Console\ Output=Sa\u00edda do Console -View\ as\ plain\ text=Visualizar como somente texto +View\ as\ plain\ text=Visualizar como texto # Skipping {0,number,integer} KB.. Full Log skipSome= Ignorando {0,number,integer} KB.. Log cheio diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties index 110f1d9296..b7c871197e 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Preparation=Prepara\u00e7\u00e3o +Preparation=Preparando diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pt_BR.properties new file mode 100644 index 0000000000..cc46f2e701 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Canceled/status_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Canceled=Cancelado diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_BR.properties new file mode 100644 index 0000000000..98aa69d365 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Reiniciando Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties new file mode 100644 index 0000000000..bdb2600c82 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Reinicie Jenkins quando a instala\u00E7\u00E3o estiver completa e nenhum Job rodando diff --git a/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties b/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties index 9fa1bd68be..038f94d231 100644 --- a/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/People/index_pt_BR.properties @@ -21,7 +21,8 @@ # THE SOFTWARE. Name=Nome -Last\ Active=\u00daltimo Ativo -On=Ligado +Last\ Active=\u00DAltima execu\u00E7\u00E3o +On=Em People=Pessoas All\ People=Todas as pessoas +User\ Id=Identifica\u00E7\u00E3o do Usu\u00E1rio diff --git a/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties b/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties index 5507436540..fa526c1f52 100644 --- a/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/newJob_pt_BR.properties @@ -20,6 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JobName=Nome da {0} +JobName=Nome do {0} CopyExisting=Copiar {0} existente NewJob=Nova {0} diff --git a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties index dead05bbd9..6c793911a7 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_pt_BR.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=Nova {0} +NewJob=Novo(a) {0} People=Pessoas -Build\ History=Hist\u00f3rico de Constru\u00e7\u00e3o -Edit\ View=Editar View -Delete\ View=Excluir View +Build\ History=Hist\u00F3rico de Constru\u00E7\u00F5es +Edit\ View=Editar Visualiza\u00E7\u00E3o +Delete\ View=Deletar Visualiza\u00E7\u00E3o Project\ Relationship=Relacionamento entre Projetos Check\ File\ Fingerprint=Checar Fingerprint de Arquivo diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_pt_BR.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_pt_BR.properties index dc8dd6787e..d68585ad00 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -User/group=Usu\u00e1ios/Grupo +User/group=Usu\u00E1rios/Grupo Anonymous=An\u00f4nimo User/group\ to\ add=Usu\u00e1rio/grupo para adicionar Add=Adicionar diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties index adb642f26f..8f4c1b965c 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_pt_BR.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\ -Usu\u00e1rios podem logar no Jenkins. Esta \u00e9 um sub-conjunto dethis list +Name=Nome +User\ Id=Identifica\u00E7\u00E3o do Usu\u00E1rio +Users=Usu\u00E1rios +blurb=Esses usu\u00E1rios podem entrar no Jenkins. Este \u00E9 um sub-conjunto desta lista, que tamb\u00E9m cont\u00E9m os usu\u00E1rios criados de forma autom\u00E1tica ao executarem algum commit nos projetos que o Jenkins tem acesso. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties index e69191e2fe..7ab59da13f 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_pt_BR.properties @@ -21,5 +21,5 @@ # THE SOFTWARE. Back\ to\ Dashboard=Voltar ao Painel Principal -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins +Manage\ Jenkins=Gerenciar o Jenkins Create\ User=Criar Usu\u00e1rio diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_pt_BR.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_pt_BR.properties index f0163cdc09..a1d4e73167 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_pt_BR.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_pt_BR.properties @@ -22,8 +22,9 @@ Server=Servidor root\ DN=DN ra\u00edz -User\ search\ base=Base de busca de usu\u00e1rio -User\ search\ filter=Filtro de busca de usu\u00e1rio -Group\ search\ base=Base de busca de grupos -Manager\ Password=Gerenciar senha +User\ search\ base=Base para busca de usu\u00E1rios +User\ search\ filter=Filtro para busca de usu\u00E1rios +Allow\ blank\ rootDN=Permitir rootDN branco +Group\ search\ base=Base para busca de grupos +Manager\ Password=Gerenciar Senha Manager\ DN=Gerenciar DN diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties index 80a39b0155..c79fbd4446 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=Entrar +login=Logar diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_pt_BR.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_pt_BR.properties new file mode 100644 index 0000000000..ebe4ec9497 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=Habilitar compatibilidade de proxy diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_BR.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_BR.properties index 4a282c5e9a..9b48f4147c 100644 --- a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_BR.properties +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete\ Installer=Apagar instalador -Add\ Installer=Adicionar instalador +Delete\ Installer=Excluir Instalador +Add\ Installer=Adicionar Instalador teste de acentua\u00e7\u00e3o diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_BR.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_BR.properties index e6a5684785..d921293772 100644 --- a/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_BR.properties +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_pt_BR.properties @@ -21,9 +21,9 @@ # THE SOFTWARE. # List of {0} installations on this system -description=descri\u00e7\u00e3o +description=Lista de {0} instala\u00E7\u00F5es nesse sistema # Delete {0} -label.delete=Deletar {0} +label.delete=Excluir {0} # {0} installations title={0} instala\u00e7\u00f5es # Add {0} diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_pt_BR.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_pt_BR.properties new file mode 100644 index 0000000000..0c5852c26e --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_pt_BR.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. + +Polling\ Log=Log de Pesquisa +View\ as\ plain\ text=Visualizar em texto simples +blurb=Esta p\u00E1gina captura o log de pesquisa que disparou essa constru\u00E7\u00E3o. diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_BR.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_BR.properties new file mode 100644 index 0000000000..b74e64993c --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nova View diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties index 648e82c0c5..5b71b83271 100644 --- a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -New\ View= +New\ View=Nova Vis\u00E3o diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_BR.properties index b958d7940f..de299dc479 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u00daltima com Falha +Last\ Failure=\u00DAltima Falha diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_BR.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_BR.properties index 01ebf99faf..42d54ad0fd 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N\u00e3o dispon\u00edvel +N/A=N/D diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_BR.properties index b022a117e5..4421c30f7c 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u00daltima de Sucesso +Last\ Success=\u00DAltimo Sucesso diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_BR.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_BR.properties index 2750d1da1d..42d54ad0fd 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_BR.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -N/A=N/A +N/A=N/D diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties index 8fb743111d..23a86a8097 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=Estado da \u00daltima constru\u00e7\u00e3o +Status\ of\ the\ last\ build=Estado da \u00FAltima compila\u00E7\u00E3o diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties index 5d45477ce5..c00ee92697 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Relat\u00f3rio de tempo consolidado mostrando o status das constru\u00e7\u00f5es recentes +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Relat\u00F3rio de clima mostrando o status consolidado das constru\u00E7\u00F5es recentes diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties new file mode 100644 index 0000000000..dbd062b5d8 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_pt_BR.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Sa\u00EDda Padr\u00E3o diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties index 6fe0237a48..4171fac052 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_pt_BR.properties @@ -22,5 +22,5 @@ trend=tend\u00eancia More\ ...=Mais ... -for\ all=Para todas -for\ failures=Para falhas +for\ all=para todas +for\ failures=para falhas diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties index 2a07a48b78..3b2c773195 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_pt_BR.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Home\ directory=Diret\u00f3rio Home +Home\ directory=Diret\u00F3rio principal System\ Message=Mensagem do Sistema \#\ of\ executors=N\u00famero de executores Quiet\ period=Per\u00edodo de sil\u00eancio @@ -42,9 +42,11 @@ Crumbs=Fra\u00e7\u00e3o SCM\ checkout\ retry\ count= Repetir contagem do checkout LOADING=Carregando Global\ properties=Propriedades Globais +Build\ Record\ Root\ Directory=Diret\u00F3rio raiz de armazenamento dos builds Cloud=Nuvem # \ # Help make Jenkins better by sending anonymous usage statistics and crash reports to the Jenkins project. +Workspace\ Root\ Directory=Diret\u00F3rio raiz da Workspace statsBlurb=Ajude o Jenkins a melhorar enviando relat\u00f3rios an\u00f5nimos de erro Crumb\ Algorithm=Algoritimo CRUMB Add\ a\ new\ cloud=Adicionar uma nova nuvem diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties new file mode 100644 index 0000000000..c1ee3e1d89 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_pt_BR.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Restaurar vers\u00E3o anterior do Jenkins +buttonText=Reverter para {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties index f098d69d9f..02949e41ed 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_BR.properties @@ -20,28 +20,27 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -JenkinsCliText=Acesse/mantenha o Jenkins pelo shell, ou pelo seu script. +JenkinsCliText=Acesse e gerencie o Jenkins pelo shell, ou pelo seu script. Load\ Statistics=Carregar Estat\u00edsticas LoadStatisticsText=Verifica a utiliza\u00e7\u00e3o de recursos e se voc\u00ea precisa de mais computadores para suas constru\u00e7\u00f5es -Manage\ Jenkins=Gerenciar Jenkins -Reload\ Configuration\ from\ Disk=Recarregar Configurac\u00e3o do Disco -Configure\ System=Configurar sistema +Manage\ Jenkins=Gerenciar o Jenkins +Reload\ Configuration\ from\ Disk=Recarregar Configura\u00E7\u00E3o do Disco +Configure\ System=Configurar o sistema Configure\ global\ settings\ and\ paths.=Configurar op\u00e7\u00f5es globais e caminhos Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Descartar todos os dados carregados na mem\u00f3ria e recarregar tudo do sistema de arquivos. Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u00datil quando voc\u00ea modificou diretamente no disco seus arquivos de configura\u00e7\u00e3o. Manage\ Plugins=Gerenciar Plugins -System\ Information=Informa\u00e7\u00e3o de Sistema -Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostrar v\u00e1rias informa\u00e7\u00f5es de ambiente para auxiliar no trouble-shooting. +System\ Information=Informa\u00E7\u00F5es do Sistema +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Mostrar v\u00E1rias informa\u00E7\u00F5es do ambiente para auxiliar na resolu\u00E7\u00E3o de problemas. System\ Log=Log do Sistema -SystemLogText=\ -O log do sistema captura a saida de java.util.logging relacionada ao Jenkins. +SystemLogText=O log do sistema captura a sa\u00EDda de java.util.logging relacionada ao Jenkins. Script\ Console=Console de Script -Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa script arbitr\u00e1rio para administra\u00e7\u00e3o/trouble-shooting/diagn\u00f3sticos. -Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adiciona, remove, desabilita e habilita plugins que podem incrementar as funcionalidades do Jenkins +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=Executa script arbitr\u00E1rio para administrar, diagn\u00F3sticar provlemas ou corrigir problemas. +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adiciona, remove, desabilita e habilita plugins que podem incrementar as funcionalidades do Jenkins. Cancel\ Shutdown=Cancelar Desligamento Prepare\ for\ Shutdown=Preparar para Desligar Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Interrompe a execu\u00e7\u00e3o de novas constru\u00e7\u00f5es, para que o sistema possa ser eventualmente desligado com seguran\u00e7a. updates\ available=Atualiza\u00e7\u00f5es dispon\u00edveis -Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adiciona, remove controla e monitora os v\u00e1rios N\u00f3s -Jenkins\ CLI= JENKINS CLI +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=Adiciona, remove, controla e monitora o v\u00E1rios N\u00F3s +Jenkins\ CLI=Jenkins CLI Manage\ Nodes= Gerenciar N\u00f3s diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties index 30a037341f..29430b9a80 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_pt_BR.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=Nome +Pinned=Preso +Plugins=Plugins System\ Properties=Propriedades do Sistema +Enabled=Habilitado Environment\ Variables=Vari\u00e1veis de Ambiente +Version=Vers\u00E3o diff --git a/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties b/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties index fe166b4c33..5cf246c45b 100644 --- a/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties +++ b/core/src/main/resources/lib/form/expandableTextbox_pt_BR.properties @@ -23,5 +23,5 @@ # \ # Click to expand to multiple lineswhere you can use new lines instead of space # To revert back to single line, write everything in one line then submit. -tooltip=Clique para expandir em m\u00faltiplas linhas
    onde voc\u00ea pode usar novas linhas em vez de espa\u00e7o.
    \ +tooltip=Clique para expandir para v\u00E1rias linhas
    onde voc\u00EA pode usar novas linhas em vez de espa\u00E7os.
    Para reverter em uma \u00FAnica linha, escrever tudo em uma \u00FAnica linha, em seguida, submeta. Para reverter de volta em uma linha, escreva tudo em uma linha ent\u00e3o envie. diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_pt_BR.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_pt_BR.properties index 108472d841..064a14ae43 100644 --- a/core/src/main/resources/lib/form/repeatableDeleteButton_pt_BR.properties +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Delete=Apagar +Delete=Excluir diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties index 8484d6a992..0119d2018e 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_BR.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=Iniciou {0} atr\u00e1s
    Tempo estimado restante: {1} +text=Iniciado {0} atr\u00E1s
    Tempo estimado restante: {1} diff --git a/core/src/main/resources/lib/hudson/executors_pt_BR.properties b/core/src/main/resources/lib/hudson/executors_pt_BR.properties index 07c59ec08b..b00e3ca7c9 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_BR.properties @@ -20,12 +20,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=Estado do Lan\u00e7ador de Constru\u00e7\u00e3o +Build\ Executor\ Status=Estado do Executador de Compila\u00E7\u00E3o Status=Estado Master=Mestre offline=desconectado Dead=Morto -Idle=Dispon\u00edvel +Idle=Ocioso Building=Construindo terminate\ this\ build=terminar esta constru\u00e7\u00e3o Unknown\ Task=Tarefa n\u00e3o localizada diff --git a/core/src/main/resources/lib/hudson/queue_pt_BR.properties b/core/src/main/resources/lib/hudson/queue_pt_BR.properties index 89205fee46..e690252436 100644 --- a/core/src/main/resources/lib/hudson/queue_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/queue_pt_BR.properties @@ -20,8 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=Fila de Constru\u00e7\u00e3o -No\ builds\ in\ the\ queue.=Nenhuma constru\u00e7\u00e3o na fila. +Build\ Queue=Fila de Compila\u00E7\u00E3o +No\ builds\ in\ the\ queue.=Nenhuma compila\u00E7\u00E3o na fila. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins est\u00e1 sendo desligado. Nenhuma constru\u00e7\u00e3o futura ser\u00e1 executada. cancel=cancelar Unknown\ Task=Tarefa n\u00e3o localizada diff --git a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties index e1293bddf1..21e1b68390 100644 --- a/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/rssBar_pt_BR.properties @@ -23,4 +23,4 @@ Legend=Legenda for\ all=para todos for\ failures=para falhas -for\ just\ latest\ builds=apenas as \u00faltimas constru\u00e7\u00f5es +for\ just\ latest\ builds=apenas para as \u00FAltimas constru\u00E7\u00F5es diff --git a/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties b/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties index 1b45386dcb..8487fe654b 100644 --- a/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties +++ b/core/src/main/resources/lib/hudson/scriptConsole_pt_BR.properties @@ -28,6 +28,4 @@ Result=Resultado # execute it on the server. Useful for trouble-shooting and diagnostics. \ # Use the ''println'' command to see the output (if you use System.out, \ # it will go to the server''s stdout, which is harder to see.) Example: -description=Digite um comando Groovy script qualquer e execute-o no servidor. \ -Normalmente usado solu\u00e7\u00e3o de problemas e diagn\u00f3sticos, digite o comando ''println''. \ - +description=Digite um comando Groovy script qualquer e execute-o no servidor. \u00DAtil para resolu\u00E7\u00E3o de problemas e diagn\u00F3sticos. Use o comando "println" para ver a sa\u00EDda (se voc\u00EA usa System.out, ele ir\u00E1 para o log do servidor, que \u00E9 mais dif\u00EDcil de ver). Exemplo: diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.properties new file mode 100644 index 0000000000..bf499bad77 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_pt_BR.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. + +License=Licen\u00E7a +Maven\ ID=Identifica\u00E7\u00E3o no Maven +Name=Nome diff --git a/core/src/main/resources/lib/layout/layout_pt_BR.properties b/core/src/main/resources/lib/layout/layout_pt_BR.properties index ed555614f0..a661407d43 100644 --- a/core/src/main/resources/lib/layout/layout_pt_BR.properties +++ b/core/src/main/resources/lib/layout/layout_pt_BR.properties @@ -20,8 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=buscar + + searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box Page\ generated=P\u00e1gina gerada em logout=Sair DISABLE\ AUTO\ REFRESH=DESABILITAR ATUALIZA\u00c7\u00c3O AUTOM\u00c1TICA -ENABLE\ AUTO\ REFRESH=HABILITAR ATUALIZA\u00c7\u00c2O AUTOM\u00c1TICA +ENABLE\ AUTO\ REFRESH=HABILITAR ATUALIZA\u00C7\u00C3O AUTOM\u00C1TICA 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 bf0b551a95..456b577a50 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,4 +23,5 @@ 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/newJobDetail_pt_BR.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties index cd187b60c1..d2d4106b0e 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_pt_BR.properties @@ -21,7 +21,4 @@ # THE SOFTWARE. # OUTDATED -body=\ - Construir um projeto maven2/3. Jenkins tira vantagem de seus arquivos POM e \ - reduz drasticamente a configura\u00e7\u00e3o. Ainda \u00e9 um trabalho em progresso, mas \ - diposto a aceitar feedback. +body=Construir um projeto maven2/3. Jenkins tira vantagem de seus arquivos POM e reduz drasticamente a configura\u00E7\u00E3o. Ainda \u00E9 um trabalho em progresso, mas disposto a aceitar feedback. -- GitLab From 33ede9a76df1e5cf5c563fe51b0714ebee5ae012 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 137/158] Community-contributed localization for pt_PT (pt_PT) --- .../message_pt_PT.properties | 24 ++++++++++++++ .../AbstractBuild/changes_pt_PT.properties | 23 ++++++++++++++ .../AbstractBuild/index_pt_PT.properties | 23 ++++++++++++++ .../AbstractBuild/sidepanel_pt_PT.properties | 1 + .../AbstractBuild/tasks_pt_PT.properties | 28 +++++++++++++++++ .../model/AllView/noJob_pt_PT.properties | 24 ++++++++++++++ .../hudson/model/Run/console_pt_PT.properties | 24 ++++++++++++++ .../Pending/status_pt_PT.properties | 23 ++++++++++++++ .../model/UpdateCenter/body_pt_PT.properties | 23 ++++++++++++++ .../model/UpdateCenter/index_pt_PT.properties | 23 ++++++++++++++ .../UpdateCenter/sidepanel_pt_PT.properties | 2 ++ .../SecurityRealm/loginLink_pt_PT.properties | 23 ++++++++++++++ .../viewTabs_pt_PT.properties | 23 ++++++++++++++ .../LastSuccessColumn/column_pt_PT.properties | 23 ++++++++++++++ .../model/Jenkins/manage_pt_PT.properties | 31 +++++++++++++++++++ .../lib/hudson/buildCaption_pt_PT.properties | 24 ++++++++++++++ .../hudson/buildProgressBar_pt_PT.properties | 23 ++++++++++++++ .../editableDescription_pt_PT.properties | 1 + .../lib/hudson/executors_pt_PT.properties | 3 ++ .../lib/layout/layout_pt_PT.properties | 3 +- 20 files changed, 371 insertions(+), 1 deletion(-) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_PT.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_PT.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties new file mode 100644 index 0000000000..aba825ec70 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_pt_PT.properties @@ -0,0 +1,24 @@ +# 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. + +More\ Info=Mais Informa\u00E7\u00E3o +blurb=A configura\u00E7\u00E3o do seu reserve proxy aparenta estar quebrado diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties new file mode 100644 index 0000000000..3888583258 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Altera\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties new file mode 100644 index 0000000000..8ec3aec734 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +startedAgo=Iniciado {0} h\u00E1 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties index acf789fac7..d08749e1fc 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_pt_PT.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Next\ Build=Pr\u00F3xima Build +Previous\ Build=Compila\u00E7\u00E3o anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties new file mode 100644 index 0000000000..06e6ffc789 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_pt_PT.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Voltar ao Projecto +Changes=Altera\u00E7\u00F5es +Console\ Output=Output da Consola +Edit\ Build\ Information=Editar informa\u00E7\u00F5es da compila\u00E7\u00E3o +Status=Estado +View\ Build\ Information=Ver Informa\u00E7\u00E3o da Build diff --git a/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties b/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties new file mode 100644 index 0000000000..fe371f8f8f --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_pt_PT.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=Bem vindo ao Jenkins! +newJob=Para iniciar crie um novo Job. diff --git a/core/src/main/resources/hudson/model/Run/console_pt_PT.properties b/core/src/main/resources/hudson/model/Run/console_pt_PT.properties new file mode 100644 index 0000000000..993db08358 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_pt_PT.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Output da Consola +View\ as\ plain\ text=Ver como texto diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pt_PT.properties new file mode 100644 index 0000000000..143506687e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=Pendente diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties new file mode 100644 index 0000000000..d1558df100 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Reiniciar o Jenkins assim que a instala\u00E7\u00E3o acabar e n\u00E3o houver execu\u00E7\u00F5es em curso diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties new file mode 100644 index 0000000000..1fad32df71 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=Instalar Extens\u00E3o/Actualiza\u00E7\u00F5es diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties index 6df96b2da7..e52388d4cf 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_pt_PT.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Voltar \u00E0 P\u00E1gina Inicial Manage\ Jenkins=Gerir o Jenkins +Manage\ Plugins=Gerir Extens\u00F5es diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties new file mode 100644 index 0000000000..3e5952023f --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +login=Entrar diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_PT.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_PT.properties new file mode 100644 index 0000000000..f0e984f6e2 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nova Vista diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_PT.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_PT.properties new file mode 100644 index 0000000000..7f59267d42 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=N/D diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties new file mode 100644 index 0000000000..c6e2415adb --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_pt_PT.properties @@ -0,0 +1,31 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Adicionar, remover, desactivar ou activar plugins que extendem as funcionalidades do Jenkins +Configure\ System=Configurar Sistema +Configure\ global\ settings\ and\ paths.=Configura\u00E7\u00F5es gerais e pastas +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Descarta toda a informa\u00E7\u00E3o carregada em mem\u00F3ria e recarrega tudo do sistema de ficheiros. +Manage\ Jenkins=Gerir o Jenkins +Manage\ Plugins=Gerir Plugins +Reload\ Configuration\ from\ Disk=Carregar configura\u00E7\u00E3o do disco +System\ Information=Informa\u00E7\u00E3o do Sistema +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Adequado para quando se modificam ficheiros de configura\u00E7\u00E3o diretamente no disco. diff --git a/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties b/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties new file mode 100644 index 0000000000..1fc4e380b6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_pt_PT.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Progresso +cancel=ancelar diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties new file mode 100644 index 0000000000..bd55c7fac0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_pt_PT.properties @@ -0,0 +1,23 @@ +# 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. + +text=Come\u00E7ado \u00E0 {0}
    Tempo estimado para terminar: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties b/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties index 6537d0a1a6..cbd4644572 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_pt_PT.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +add\ description=acrescentar descri\u00E7\u00E3o edit\ description=editar a descri\u00E7\u00E3o diff --git a/core/src/main/resources/lib/hudson/executors_pt_PT.properties b/core/src/main/resources/lib/hudson/executors_pt_PT.properties index 43ee4ee1a3..7f01711c32 100644 --- a/core/src/main/resources/lib/hudson/executors_pt_PT.properties +++ b/core/src/main/resources/lib/hudson/executors_pt_PT.properties @@ -21,5 +21,8 @@ # THE SOFTWARE. Build\ Executor\ Status=Estado de execu\u00E7\u00E3o de compila\u00E7\u00F5es +Building=Compilando Idle=Parado Status=Estado +offline=desligado +terminate\ this\ build=Parar esta compila\u00E7\u00E3o diff --git a/core/src/main/resources/lib/layout/layout_pt_PT.properties b/core/src/main/resources/lib/layout/layout_pt_PT.properties index 340a3d139f..e8e2d1fec1 100644 --- a/core/src/main/resources/lib/layout/layout_pt_PT.properties +++ b/core/src/main/resources/lib/layout/layout_pt_PT.properties @@ -20,7 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ENABLE\ AUTO\ REFRESH=LIGAR AUTO REFRESH +ENABLE\ AUTO\ REFRESH=LIGAR ACTUALIZA\u00C7\u00D5ES AUTOM\u00C1TICAS Page\ generated=P\u00E1gina gerada logout=sair +search=Pesquisa searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Procurar+Box -- GitLab From c57e5284bb6e9fe83f4f55d1bfbc72829dd3b455 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 138/158] Community-contributed localization for Romanian; Moldavian; Moldovan (ro) --- .../hudson/PluginManager/index_ro.properties | 23 +++++++++++++ .../hudson/PluginManager/tabBar_ro.properties | 26 +++++++++++++++ .../hudson/PluginManager/table_ro.properties | 26 +++++++++++++++ .../message_ro.properties | 23 +++++++++++++ .../model/AbstractBuild/changes_ro.properties | 23 +++++++++++++ .../AbstractBuild/sidepanel_ro.properties | 23 +++++++++++++ .../model/AbstractBuild/tasks_ro.properties | 28 ++++++++++++++++ .../model/AbstractProject/main_ro.properties | 26 +++++++++++++++ .../AbstractProject/sidepanel_ro.properties | 30 +++++++++++++++++ .../hudson/model/Job/index_ro.properties | 23 +++++++++++++ .../hudson/model/Job/permalinks_ro.properties | 23 +++++++++++++ .../Permalink/link_ro.properties | 23 +++++++++++++ .../hudson/model/Run/console_ro.properties | 24 ++++++++++++++ .../model/View/People/index_ro.properties | 27 ++++++++++++++++ .../hudson/model/View/sidepanel_ro.properties | 25 +++++++++++++++ .../loginLink_ro.properties | 23 +++++++++++++ .../SecurityRealm/loginLink_ro.properties | 23 +++++++++++++ .../floatingBox_ro.properties | 25 +++++++++++++++ .../BuildButtonColumn/column_ro.properties | 23 +++++++++++++ .../DefaultViewsTabBar/viewTabs_ro.properties | 23 +++++++++++++ .../columnHeader_ro.properties | 23 +++++++++++++ .../columnHeader_ro.properties | 23 +++++++++++++ .../columnHeader_ro.properties | 23 +++++++++++++ .../StatusColumn/columnHeader_ro.properties | 23 +++++++++++++ .../widgets/HistoryWidget/entry_ro.properties | 23 +++++++++++++ .../widgets/HistoryWidget/index_ro.properties | 25 +++++++++++++++ .../model/Jenkins/downgrade_ro.properties | 24 ++++++++++++++ .../model/Jenkins/manage_ro.properties | 32 +++++++++++++++++++ .../lib/hudson/buildCaption_ro.properties | 24 ++++++++++++++ .../lib/hudson/buildHealth_ro.properties | 23 +++++++++++++ .../lib/hudson/buildProgressBar_ro.properties | 23 +++++++++++++ .../hudson/editableDescription_ro.properties | 23 +++++++++++++ .../lib/hudson/executors_ro.properties | 25 +++++++++++++++ .../lib/hudson/iconSize_ro.properties | 23 +++++++++++++ .../project/upstream-downstream_ro.properties | 24 ++++++++++++++ .../resources/lib/hudson/queue_ro.properties | 24 ++++++++++++++ .../resources/lib/hudson/rssBar_ro.properties | 26 +++++++++++++++ .../lib/hudson/test-result_ro.properties | 23 +++++++++++++ .../resources/lib/layout/layout_ro.properties | 27 ++++++++++++++++ 39 files changed, 951 insertions(+) create mode 100644 core/src/main/resources/hudson/PluginManager/index_ro.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_ro.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_ro.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/main_ro.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_ro.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_ro.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_ro.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_ro.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ro.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_ro.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_ro.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_ro.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_ro.properties create mode 100644 core/src/main/resources/lib/hudson/executors_ro.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_ro.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_ro.properties create mode 100644 core/src/main/resources/lib/hudson/queue_ro.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_ro.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_ro.properties create mode 100644 core/src/main/resources/lib/layout/layout_ro.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_ro.properties b/core/src/main/resources/hudson/PluginManager/index_ro.properties new file mode 100644 index 0000000000..d6c3d53dc1 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_ro.properties @@ -0,0 +1,23 @@ +# 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. + +UpdatePageDescription=Aceast\u0103 pagin\u0103 prezinta actualiz\u0103ri pt plugin-urile folosite momentan. diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties new file mode 100644 index 0000000000..eab4c2bf21 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ro.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=Avansat +Available=Disponibil +Installed=Instalat +Updates=Actualiz\u0103ri diff --git a/core/src/main/resources/hudson/PluginManager/table_ro.properties b/core/src/main/resources/hudson/PluginManager/table_ro.properties new file mode 100644 index 0000000000..abd259a5cb --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_ro.properties @@ -0,0 +1,26 @@ +# 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. + +Install=Instalare +Installed=Instalat +Name=Nume +Version=Versiune diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties new file mode 100644 index 0000000000..2401c9d676 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ro.properties @@ -0,0 +1,23 @@ +# 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. + +More\ Info=Mai multe informa\u0163ii diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties new file mode 100644 index 0000000000..8a5906df5b --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=Schimb\u0103ri diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties new file mode 100644 index 0000000000..fc4d85acb9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Previous\ Build=Build-ul anterior diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties new file mode 100644 index 0000000000..b1de6b5a6e --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ro.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Inapoi la proiect +Changes=Schimbari +Console\ Output=Afisaj consola +Edit\ Build\ Information=Modifica informatiile build-ului +Status=Stare +View\ Build\ Information=Vezi informa\u0163iile despre build diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_ro.properties b/core/src/main/resources/hudson/model/AbstractProject/main_ro.properties new file mode 100644 index 0000000000..cf59991146 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/main_ro.properties @@ -0,0 +1,26 @@ +# 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. + +Last\ Successful\ Artifacts=Ultimele rezultate corecte +Latest\ Test\ Result=Ultimele rezultate +Recent\ Changes=Schimbari recente +Workspace=Spatiu de lucru diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties new file mode 100644 index 0000000000..c67dbfb081 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ro.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Inapoi la pagina principala +Build\ scheduled=Rularea proiectului a fost programata +Changes=Schimbari +Configure=Configureaza +Status=Stare +Wipe\ Out\ Workspace=Sterge spatiul de lucru +Workspace=Spatiu de lucru +delete=Sterge {0} diff --git a/core/src/main/resources/hudson/model/Job/index_ro.properties b/core/src/main/resources/hudson/model/Job/index_ro.properties new file mode 100644 index 0000000000..f764baa31d --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_ro.properties @@ -0,0 +1,23 @@ +# 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=Dezactiveaza proiectul diff --git a/core/src/main/resources/hudson/model/Job/permalinks_ro.properties b/core/src/main/resources/hudson/model/Job/permalinks_ro.properties new file mode 100644 index 0000000000..9d0ff3bd81 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=Linkuri permanente diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties new file mode 100644 index 0000000000..b4c0d3cdfe --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_ro.properties @@ -0,0 +1,23 @@ +# 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. + +format=\u00CEn urm\u0103 cu {0} ({1}), {2} diff --git a/core/src/main/resources/hudson/model/Run/console_ro.properties b/core/src/main/resources/hudson/model/Run/console_ro.properties new file mode 100644 index 0000000000..1f78b24f82 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_ro.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Afisaj consola +View\ as\ plain\ text=Vizualizati ca text diff --git a/core/src/main/resources/hudson/model/View/People/index_ro.properties b/core/src/main/resources/hudson/model/View/People/index_ro.properties new file mode 100644 index 0000000000..36f88fb853 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_ro.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=Activ ultima oar\u0103 +Name=Nume +On=Pe +People=Contribuitori +User\ Id=Id utilizator diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ro.properties b/core/src/main/resources/hudson/model/View/sidepanel_ro.properties new file mode 100644 index 0000000000..547eaf8b3a --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_ro.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. + +Build\ History=Istorie build-uri +NewJob={0} Noi +People=Persoane diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties new file mode 100644 index 0000000000..4a99dc196f --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_ro.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=\u00CEnregistrare diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties new file mode 100644 index 0000000000..66b8baedbc --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ro.properties @@ -0,0 +1,23 @@ +# 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. + +login=Logare diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ro.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ro.properties new file mode 100644 index 0000000000..29852b2c3f --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_ro.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. + +Test\ Result\ Trend=Evolutia rezultatelor +enlarge=mareste +just\ show\ failures=arata esecurile diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties new file mode 100644 index 0000000000..9e3a8db775 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Programeaz\u0103 un buil diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties new file mode 100644 index 0000000000..743e078552 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ro.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Vedere nou\u0103 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties new file mode 100644 index 0000000000..30d316b26c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Ultima durat\u0103 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties new file mode 100644 index 0000000000..035597851d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Ultima ratare diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties new file mode 100644 index 0000000000..9b41ef3fc9 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Ultimul succes diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties new file mode 100644 index 0000000000..06816844a0 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_ro.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=Statusul ultimului build diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties new file mode 100644 index 0000000000..775253764a --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Rezultate afisate in consola diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.properties new file mode 100644 index 0000000000..6ecc4882ed --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_ro.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. + +for\ all=pentru toate rezultatele +for\ failures=esecuri +trend=evolutie diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties new file mode 100644 index 0000000000..75f4506ec9 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ro.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=Revenire la versiunea anterioar\u0103 de Jnkins +buttonText=Downgrade la {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties new file mode 100644 index 0000000000..8620d5eff3 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ro.properties @@ -0,0 +1,32 @@ +# 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. + +Configure\ System=Configureaz\u0103 sistemul +Configure\ global\ settings\ and\ paths.=Configureaz\u0103 set\u0103rile globale \u015Fi c\u0103ile +Load\ Statistics=Statistici de \u00EEnc\u0103rcare +Manage\ Jenkins=Administrare Jenkins +Manage\ Plugins=Administrare plugin-uri +Prepare\ for\ Shutdown=Preg\u0103te\u015Fte pentru oprire +Reload\ Configuration\ from\ Disk=Re\u00EEncarc\u0103 configura\u0163ia de pe disc +System\ Information=Informa\u0163ii sistem +System\ Log=Log sistem +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=Util dac\u0103 au fost modificate fi\u015Fiere de configurare direct pe disc. diff --git a/core/src/main/resources/lib/hudson/buildCaption_ro.properties b/core/src/main/resources/lib/hudson/buildCaption_ro.properties new file mode 100644 index 0000000000..5c94997070 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_ro.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Progres +cancel=anulare diff --git a/core/src/main/resources/lib/hudson/buildHealth_ro.properties b/core/src/main/resources/lib/hudson/buildHealth_ro.properties new file mode 100644 index 0000000000..d8a9265459 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Descriere diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties new file mode 100644 index 0000000000..1a3d60184d --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ro.properties @@ -0,0 +1,23 @@ +# 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. + +text=Inceput {0} in urma
    Timp ramas estimat: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_ro.properties b/core/src/main/resources/lib/hudson/editableDescription_ro.properties new file mode 100644 index 0000000000..41a2500f12 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_ro.properties @@ -0,0 +1,23 @@ +# 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. + +add\ description=adauga descriere diff --git a/core/src/main/resources/lib/hudson/executors_ro.properties b/core/src/main/resources/lib/hudson/executors_ro.properties new file mode 100644 index 0000000000..1fb8ce0a17 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_ro.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. + +Build\ Executor\ Status=Starea +Idle=\u00CEn a\u015Fteptare +Status=stare diff --git a/core/src/main/resources/lib/hudson/iconSize_ro.properties b/core/src/main/resources/lib/hudson/iconSize_ro.properties new file mode 100644 index 0000000000..dc18a1d56f --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_ro.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Poz\u0103 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_ro.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_ro.properties new file mode 100644 index 0000000000..e9e3eaad6f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_ro.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=Proiecte downstream +Upstream\ Projects=Proiecte upstream diff --git a/core/src/main/resources/lib/hudson/queue_ro.properties b/core/src/main/resources/lib/hudson/queue_ro.properties new file mode 100644 index 0000000000..f210304c50 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_ro.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Stiv\u0103 build-uri +No\ builds\ in\ the\ queue.=Nu sunt bild-uri in stiv\u0103 diff --git a/core/src/main/resources/lib/hudson/rssBar_ro.properties b/core/src/main/resources/lib/hudson/rssBar_ro.properties new file mode 100644 index 0000000000..90665e465c --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_ro.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Legend\u0103 +for\ all=pentru toate +for\ failures=pentru e\u015Fecuri +for\ just\ latest\ builds=doar pentru ultimele build-uri diff --git a/core/src/main/resources/lib/hudson/test-result_ro.properties b/core/src/main/resources/lib/hudson/test-result_ro.properties new file mode 100644 index 0000000000..c20ae2cef4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_ro.properties @@ -0,0 +1,23 @@ +# 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. + +no\ tests=nici un test diff --git a/core/src/main/resources/lib/layout/layout_ro.properties b/core/src/main/resources/lib/layout/layout_ro.properties new file mode 100644 index 0000000000..3bb773020b --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_ro.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=Activeaz\u0103 auto refresh +Page\ generated=Pagina generata +logout=iesire +search=cautare +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box -- GitLab From 084b351ca7ab600c6d639b4a854a53276c04c3aa Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 139/158] Community-contributed localization for Russian (ru) --- .../hudson/AboutJenkins/index_ru.properties | 25 +++++++++++++ .../PluginManager/advanced_ru.properties | 4 ++- .../PluginManager/checkUpdates_ru.properties | 25 +++++++++++++ .../hudson/PluginManager/index_ru.properties | 4 +++ .../PluginManager/installed_ru.properties | 13 ++++--- .../hudson/PluginManager/tabBar_ru.properties | 6 ++-- .../hudson/PluginManager/table_ru.properties | 6 +++- .../message_ru.properties | 25 +++++++++++++ .../message_ru.properties | 23 ++++++++++++ .../LogRecorder/configure_ru.properties | 28 +++++++++++++++ .../logging/LogRecorder/delete_ru.properties | 24 +++++++++++++ .../LogRecorder/sidepanel_ru.properties | 26 ++++++++++++++ .../LogRecorderManager/all_ru.properties | 2 +- .../LogRecorderManager/index_ru.properties | 2 +- .../LogRecorderManager/levels_ru.properties | 10 +++--- .../sidepanel_ru.properties | 8 ++--- .../config_ru.properties | 24 +++++++++++++ .../matrix/MatrixProject/index_ru.properties | 3 ++ .../model/AbstractBuild/index_ru.properties | 2 +- .../model/AbstractBuild/tasks_ru.properties | 5 ++- .../model/AbstractItem/delete_ru.properties | 1 + .../editDescription_ru.properties | 23 ++++++++++++ .../AbstractProject/sidepanel_ru.properties | 4 +-- .../UserIdCause/description_ru.properties | 1 + .../model/Computer/configure_ru.properties | 23 ++++++++++++ .../model/Computer/delete_ru.properties | 24 +++++++++++++ .../ExternalJob/newJobDetail_ru.properties | 8 +---- .../newJobDetail_ru.properties | 5 +-- .../model/Job/buildTimeTrend_ru.properties | 2 ++ .../hudson/model/Job/index_ru.properties | 4 ++- .../ListView/configure-entries_ru.properties | 8 +++++ .../model/LoadStatistics/main_ru.properties | 6 ++-- .../model/MyView/newViewDetail_ru.properties | 2 +- .../MyViewsProperty/config_ru.properties | 24 +++++++++++++ .../MyViewsProperty/newView_ru.properties | 23 ++++++++++++ .../ParametersAction/index_ru.properties | 24 +++++++++++++ .../ProxyView/newViewDetail_ru.properties | 23 ++++++++++++ .../Run/KeepLogBuildBadge/badge_ru.properties | 23 ++++++++++++ .../hudson/model/Run/configure_ru.properties | 26 ++++++++++++++ .../hudson/model/Run/console_ru.properties | 5 +-- .../ConnectionCheckJob/row_ru.properties | 23 ++++++++++++ .../CoreUpdateMonitor/message_ru.properties | 4 ++- .../Installing/status_ru.properties | 23 ++++++++++++ .../DownloadJob/Pending/status_ru.properties | 23 ++++++++++++ .../DownloadJob/Success/status_ru.properties | 23 ++++++++++++ .../Pending/status_ru.properties | 23 ++++++++++++ .../Running/status_ru.properties | 23 ++++++++++++ .../RestartJenkinsJob/row_ru.properties | 23 ++++++++++++ .../model/UpdateCenter/body_ru.properties | 23 ++++++++++++ .../model/UpdateCenter/index_ru.properties | 23 ++++++++++++ .../UpdateCenter/sidepanel_ru.properties | 4 ++- .../hudson/model/User/builds_ru.properties | 23 ++++++++++++ .../hudson/model/User/index_ru.properties | 23 ++++++++++++ .../hudson/model/User/sidepanel_ru.properties | 2 ++ .../model/View/People/index_ru.properties | 4 ++- .../hudson/model/View/configure_ru.properties | 4 ++- .../hudson/model/View/newJob_ru.properties | 2 ++ .../hudson/model/View/noJob_ru.properties | 23 ++++++++++++ .../hudson/model/View/sidepanel_ru.properties | 4 +-- .../search/Search/search-failed_ru.properties | 24 +++++++++++++ .../config_ru.properties | 2 ++ .../index_ru.properties | 2 ++ .../LDAPSecurityRealm/config_ru.properties | 1 + .../SecurityRealm/loginLink_ru.properties | 2 +- .../DefaultCrumbIssuer/config_ru.properties | 23 ++++++++++++ .../slaves/JNLPLauncher/main_ru.properties | 2 +- .../SlaveComputer/sidepanel2_ru.properties | 2 +- .../SlaveComputer/systemInfo_ru.properties | 25 +++++++++++++ .../Mailer/UserProperty/config_ru.properties | 2 +- .../junit/CaseResult/index_ru.properties | 1 + .../MetaTabulatedResult/body_ru.properties | 1 + .../test/TestObject/sidepanel_ru.properties | 25 +++++++++++++ .../tasks/test/TestResult/index_ru.properties | 23 ++++++++++++ .../config_ru.properties | 25 +++++++++++++ .../BuildAction/index_ru.properties | 25 +++++++++++++ .../myViewTabs_ru.properties | 23 ++++++++++++ .../DefaultViewsTabBar/viewTabs_ru.properties | 23 ++++++++++++ .../columnHeader_ru.properties | 2 +- .../columnHeader_ru.properties | 2 +- .../columnHeader_ru.properties | 2 +- .../WeatherColumn/columnHeader_ru.properties | 2 +- .../BuildHistoryWidget/entries_ru.properties | 24 +++++++++++++ .../widgets/HistoryWidget/entry_ru.properties | 23 ++++++++++++ .../jenkins/model/Jenkins/_cli_ru.properties | 23 ++++++++++++ .../model/Jenkins/configure_ru.properties | 3 ++ .../model/Jenkins/downgrade_ru.properties | 24 +++++++++++++ .../model/Jenkins/legend_ru.properties | 35 +++++++++++++++++++ .../model/Jenkins/manage_ru.properties | 4 +-- .../model/Jenkins/systemInfo_ru.properties | 5 +++ .../lib/form/expandableTextbox_ru.properties | 23 ++++++++++++ .../resources/lib/form/textarea_ru.properties | 24 +++++++++++++ .../lib/hudson/buildCaption_ru.properties | 2 +- .../lib/hudson/buildProgressBar_ru.properties | 2 +- .../lib/hudson/executors_ru.properties | 2 +- .../lib/hudson/iconSize_ru.properties | 2 +- .../lib/hudson/newFromList/form_ru.properties | 2 +- .../resources/lib/hudson/queue_ru.properties | 2 +- .../resources/lib/hudson/rssBar_ru.properties | 6 ++-- .../hudson/thirdPartyLicenses_ru.properties | 25 +++++++++++++ .../resources/lib/layout/layout_ru.properties | 7 ++-- .../lib/layout/main-panel_ru.properties | 23 ++++++++++++ .../maven/MavenModuleSet/index_ru.properties | 3 ++ .../MavenModuleSet/newJobDetail_ru.properties | 2 +- .../MavenModuleSetBuild/main_ru.properties | 24 +++++++++++++ 104 files changed, 1282 insertions(+), 71 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_ru.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_ru.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties create mode 100644 core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ru.properties create mode 100644 core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties create mode 100644 core/src/main/resources/hudson/model/Computer/configure_ru.properties create mode 100644 core/src/main/resources/hudson/model/Computer/delete_ru.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_ru.properties create mode 100644 core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_ru.properties create mode 100644 core/src/main/resources/hudson/model/User/index_ru.properties create mode 100644 core/src/main/resources/hudson/model/View/noJob_ru.properties create mode 100644 core/src/main/resources/hudson/search/Search/search-failed_ru.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ru.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties create mode 100644 core/src/main/resources/lib/form/expandableTextbox_ru.properties create mode 100644 core/src/main/resources/lib/form/textarea_ru.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_ru.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_ru.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_ru.properties b/core/src/main/resources/hudson/AboutJenkins/index_ru.properties new file mode 100644 index 0000000000..3eb889b6f2 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_ru.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. + +about=\u041E Jenkins {0} +blurb=Jenkins \u0441\u0435\u0440\u0432\u0435\u0440 \u043D\u0435\u043F\u0440\u0435\u0440\u044B\u0432\u043D\u043E\u0439 \u0438\u043D\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0441 \u043E\u0442\u043A\u0440\u044B\u0442\u044B\u043C \u0438\u0441\u0445\u043E\u0434\u043D\u044B\u043C \u043A\u043E\u0434\u043E\u043C. +dependencies=Jenkins \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043E\u0442 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u0431\u0438\u0431\u043B\u0438\u043E\u0442\u0435\u043A \u0442\u0440\u0435\u0442\u044C\u0438\u0445 \u0441\u0442\u043E\u0440\u043E\u043D. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_ru.properties b/core/src/main/resources/hudson/PluginManager/advanced_ru.properties index 522c37fba9..f8f4874ee4 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_ru.properties @@ -20,13 +20,15 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Check\ now=\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0441\u0435\u0439\u0447\u0430\u0441 +Check\ now=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u0441\u0435\u0439\u0447\u0430\u0441 File=\u0424\u0430\u0439\u043B HTTP\ Proxy\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F HTTP Proxy Password=\u041F\u0430\u0440\u043E\u043B\u044C Port=\u041F\u043E\u0440\u0442 Server=\u0421\u0435\u0440\u0432\u0435\u0440 Submit=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C +URL=\u0410\u0434\u0440\u0435\u0441 URL +Update\ Site=\u0421\u0430\u0439\u0442 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 Upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C Upload\ Plugin=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D User\ name=\u0418\u043C\u044F \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_ru.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_ru.properties new file mode 100644 index 0000000000..6cee8c2dea --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_ru.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. + +Checking\ Updates...=\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439... +Done=\u041E\u043A\u043E\u043D\u0447\u0435\u043D\u0430 +Go\ back\ to\ update\ center=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u0432 \u0446\u0435\u043D\u0442\u0440 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 diff --git a/core/src/main/resources/hudson/PluginManager/index_ru.properties b/core/src/main/resources/hudson/PluginManager/index_ru.properties index 4c98162f7a..859da8d8c1 100644 --- a/core/src/main/resources/hudson/PluginManager/index_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/index_ru.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=\u0412\u0441\u0435 +None=\u041D\u0438\u0447\u0435\u0433\u043E +Select=\u0412\u044B\u0431\u0440\u0430\u0442\u044C UpdatePageDescription=\u041D\u0430 \u0434\u0430\u043D\u043D\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044B \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0445 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432. +UpdatePageLegend=\u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u0438 \u043E\u0436\u0438\u0434\u0430\u044E\u0442 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0430. \u0417\u0430\u0442\u0435\u043D\u0435\u043D\u043D\u044B\u0435 \u043D\u043E \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u0434\u043B\u044F \u0432\u044B\u0431\u043E\u0440\u0430 \u0443\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0438\u043B\u0438 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u043B\u0438\u0441\u044C \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u043E. diff --git a/core/src/main/resources/hudson/PluginManager/installed_ru.properties b/core/src/main/resources/hudson/PluginManager/installed_ru.properties index 693df7cb84..4e018280af 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_ru.properties @@ -21,8 +21,13 @@ # THE SOFTWARE. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432\u0441\u0442\u0443\u043F\u044F\u0442 \u0432 \u0441\u0438\u043B\u0443 \u043F\u043E\u0441\u043B\u0435 \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Jenkins -Enabled=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B -Name=\u0418\u043C\u044F -Restart\ Once\ No\ Jobs\ Are\ Running=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C, \u043A\u0430\u043A \u0442\u043E\u043B\u044C\u043A\u043E \u0432\u0441\u0435 \u0417\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043A\u043E\u043D\u0447\u0430\u0442 \u0441\u0432\u043E\u044E \u0440\u0430\u0431\u043E\u0442\u0443 -Uncheck\ to\ disable\ the\ plugin=\u0421\u043D\u0438\u043C\u0438\u0442\u0435 \u0444\u043B\u0430\u0436\u043E\u043A, \u0447\u0442\u043E\u0431\u044B \u0434\u0435\u0430\u043A\u0442\u0438\u0432\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D +Enabled=\u0410\u043A\u0442\u0438\u0432\u043D\u044B\u0439 +Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 +Pinned=\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u043B\u0451\u043D\u043D\u044B\u0435 +Previously\ installed\ version=\u0420\u0430\u043D\u0435\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 +Restart\ Once\ No\ Jobs\ Are\ Running=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0438 \u0432\u0441\u0435\u0445 \u0437\u0430\u0434\u0430\u0447 +Uncheck\ to\ disable\ the\ plugin=\u0421\u043D\u0438\u043C\u0438\u0442\u0435 \u0444\u043B\u0430\u0436\u043E\u043A, \u0447\u0442\u043E\u0431\u044B \u0432\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D +Unpin=\u041E\u0442\u043A\u0440\u0435\u043F\u0438\u0442\u044C Version=\u0412\u0435\u0440\u0441\u0438\u044F +downgradeTo=\u0412\u0435\u0440\u043D\u0443\u0442\u044C \u043A \u0432\u0435\u0440\u0441\u0438\u0438 {0} +wiki.url=http://wiki.jenkins-ci.org/display/JENKINS/Pinned+Plugins diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties index 1f2f07ab78..0e34abaf92 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E -Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F -Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E -Updates=\u0421\u0432\u043E\u0434\u043A\u0430 +Available=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043F\u043B\u0430\u0433\u0438\u043D\u044B +Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044B\u0435 +Updates=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F diff --git a/core/src/main/resources/hudson/PluginManager/table_ru.properties b/core/src/main/resources/hudson/PluginManager/table_ru.properties index 0373742b51..dca8d8f50b 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ru.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ru.properties @@ -21,7 +21,11 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 +Click\ this\ heading\ to\ sort\ by\ category=\u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u043D\u0430 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0434\u043B\u044F \u0441\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u043A\u0438 \u043F\u043E \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044F\u043C +Inactive=\u041D\u0435\u0430\u043A\u0442\u0438\u0432\u043D\u044B\u0435 Install=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C Installed=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E -Name=\u0418\u043C\u044F +Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 +No\ updates=\u041D\u0435\u0442 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 Version=\u0412\u0435\u0440\u0441\u0438\u044F +coreWarning=\u041F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0436\u0434\u0435\u043D\u0438\u0435: \u041F\u043B\u0430\u0433\u0438\u043D \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C \u0441 Jenkins \u0432\u0435\u0440\u0441\u0438\u0438 {0} \u0438\u043B\u0438 \u043D\u043E\u0432\u0435\u0435. \u0412\u043E\u0437\u043C\u043E\u0436\u043D\u0430 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u0430\u044F \u0440\u0430\u0431\u043E\u0442\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0441 \u0432\u0430\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0435\u0439 Jenkins. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.properties new file mode 100644 index 0000000000..827b428042 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_ru.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. + +Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C +More\ Info=\u0411\u043E\u043B\u044C\u0448\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438 +blurb=\u0415\u0441\u0442\u044C \u043F\u043E\u0434\u043E\u0437\u0440\u0435\u043D\u0438\u0435 \u0447\u0442\u043E \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0432\u0430\u0448\u0435\u0433\u043E \u0440\u0435\u0432\u0435\u0440\u0441\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0438 \u043D\u0435\u043A\u043E\u0440\u0440\u0435\u043A\u0442\u043D\u044B diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties new file mode 100644 index 0000000000..b57cca4232 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Dismiss=\u0423\u0431\u0440\u0430\u0442\u044C diff --git a/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties new file mode 100644 index 0000000000..cc4ec0b687 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/configure_ru.properties @@ -0,0 +1,28 @@ +# 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. + +List\ of\ loggers\ and\ the\ log\ levels\ to\ record=\u0421\u043F\u0438\u0441\u043E\u043A \u0444\u0438\u043B\u044C\u0442\u0440\u043E\u0432 \u0438 \u0442\u0438\u043F\u044B \u0441\u043E\u0445\u0440\u0430\u043D\u044F\u0435\u043C\u044B\u0445 \u0441\u043E\u0431\u044B\u0442\u0438\u044F +Log\ level=\u0423\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Logger=\u0424\u0438\u043B\u044C\u0442\u0440 +Loggers=\u0424\u0438\u043B\u044C\u0442\u0440\u044B +Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 +Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties new file mode 100644 index 0000000000..f1dc68389d --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/delete_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ this\ log\ recorder?=\u0412\u044B \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u044C\u043D\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0436\u0443\u0440\u043D\u0430\u043B? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties new file mode 100644 index 0000000000..a92d62e151 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorder/sidepanel_ru.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Loggers=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A \u0436\u0443\u0440\u043D\u0430\u043B\u0430\u043C +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C +Delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C +Log\ records=\u0417\u0430\u043F\u0438\u0441\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0430 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties index d35b4de6e2..b1793e1422 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Jenkins\ Log=\u041B\u043E\u0433 Jenkins +Jenkins\ Log=\u0416\u0443\u0440\u043D\u0430\u043B Jenkins diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties index 2dce265db7..34c3fb2438 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_ru.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Log\ Recorders=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u044B \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Log\ Recorders=\u0416\u0443\u0440\u043D\u0430\u043B\u044B Logger\ Configuration=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0436\u0443\u0440\u043d\u0430\u043b\u0430 Name=\u0418\u043c\u044f Level=\u0423\u0440\u043e\u0432\u0435\u043d\u044c diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties index 0600fca7bb..1e6b31ab33 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_ru.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Adjust\ Levels=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0443\u0440\u043E\u0432\u043D\u0435\u0439 \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Level=\u0423\u0440\u043E\u0432\u0435\u043D\u044C \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Logger\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430 \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F -Name=\u0418\u043C\u044F +Adjust\ Levels=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 \u0443\u0440\u043E\u0432\u043D\u0435\u0439 \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Level=\u0422\u0438\u043F\u044B \u0441\u043E\u0431\u044B\u0442\u0438\u0439 +Logger\ Configuration=\u041A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0430 +Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 Submit=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C -defaultLoggerMsg=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440 \u0431\u0435\u0437 \u0438\u043C\u0435\u043D\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E. \u0423\u0440\u043E\u0432\u0435\u043D\u044C \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0437\u0430\u0434\u0430\u043D\u043D\u044B\u0439 \u0434\u043B\u044F \u043D\u0435\u0433\u043E \u043D\u0430\u0441\u043B\u0435\u0434\u0443\u0435\u0442\u0441\u044F \u0432\u0441\u0435\u043C\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430\u043C\u0438, \u0434\u043B\u044F \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u043B\u043E\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u043D\u0435 \u0437\u0430\u0434\u0430\u043D. +defaultLoggerMsg=\u0416\u0443\u0440\u043D\u0430\u043B \u0431\u0435\u0437 \u0438\u043C\u0435\u043D\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E. \u0423\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0437\u0430\u0434\u0430\u043D\u043D\u044B\u0439 \u0434\u043B\u044F \u043D\u0435\u0433\u043E \u043D\u0430\u0441\u043B\u0435\u0434\u0443\u0435\u0442\u0441\u044F \u0432\u0441\u0435\u043C\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0430\u043C\u0438, \u0434\u043B\u044F \u043A\u043E\u0442\u043E\u0440\u044B\u0445 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u043D\u0435 \u0437\u0430\u0434\u0430\u043D. url=http://wiki.jenkins-ci.org/display/JENKINS/Logger+Configuration diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties index 0579bc7df4..7615d49e66 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_ru.properties @@ -20,9 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -All\ Logs=\u0412\u0441\u0435 \u043b\u043e\u0433\u0438 +All\ Logs=\u0412\u0441\u0435 \u0436\u0443\u0440\u043D\u0430\u043B\u044B Back\ to\ Dashboard=\u0414\u043e\u043c\u043e\u0439 Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins -Log\ Levels=\u0423\u0440\u043e\u0432\u043d\u0438 \u043b\u043e\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f -Logger\ List=\u0421\u043f\u0438\u0441\u043e\u043a \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u0432 -New\ Log\ Recorder=\u041d\u043e\u0432\u044b\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u043b\u043e\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f +Log\ Levels=\u0423\u0440\u043E\u0432\u043D\u0438 \u0436\u0443\u0440\u043D\u0430\u043B\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Logger\ List=\u0421\u043F\u0438\u0441\u043E\u043A \u0436\u0443\u0440\u043D\u0430\u043B\u043E\u0432 +New\ Log\ Recorder=\u041D\u043E\u0432\u044B\u0439 \u0436\u0443\u0440\u043D\u0430\u043B diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ru.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ru.properties new file mode 100644 index 0000000000..05a3e9d1fc --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_ru.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=\u0422\u0440\u0430\u043A\u0442\u043E\u0432\u0430\u0442\u044C \u0442\u0435\u043A\u0441\u0442 \u043A\u0430\u043A HTML \u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0435\u0433\u043E "\u043A\u0430\u043A \u0435\u0441\u0442\u044C", \u0431\u0435\u0437 \u043A\u0430\u043A\u043E\u0439-\u043B\u0438\u0431\u043E \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0438 +disableSyntaxHighlighting=\u0412\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u043E\u0434\u0441\u0432\u0435\u0442\u043A\u0443 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0441\u0430 diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties b/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties index 72936cca4f..ef11e7fdc6 100644 --- a/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_ru.properties @@ -20,4 +20,7 @@ # 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/model/AbstractBuild/index_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties index a3cf9eed07..bdfebcb0a4 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_ru.properties @@ -24,7 +24,7 @@ on=\u043D\u0430 startedAgo=\u0417\u0430\u043f\u0443\u0449\u0435\u043d {0} \u043d\u0430\u0437\u0430\u0434 Build=\u0421\u0431\u043e\u0440\u043a\u0430 Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043a\u0442\u044b -Changes\ in\ dependency=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0442\u0441\u044f\u0445 +Changes\ in\ dependency=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u044F\u0445 detail=\u0414\u0435\u0442\u0430\u043b\u0438 Not\ yet\ determined=\u0415\u0449\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e Failed\ to\ determine=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties index 431295a0f7..6fe6f209ee 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_ru.properties @@ -23,4 +23,7 @@ Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u043A \u041F\u0440\u043E\u0435\u043A\u0442\u0443 Changes=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 -Status=\u0421\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 +Edit\ Build\ Information=\u0418\u0437\u043C\u0435\u043D\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u043E \u0441\u0431\u043E\u0440\u043A\u0435 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +View\ Build\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0441\u0431\u043E\u0440\u043A\u0435 +raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u044B\u0439 \u0432\u044B\u0432\u043E\u0434 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties index 222654e474..0dbe863a88 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_ru.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0443\u0432\u0435\u0440\u0435\u043d\u044b \u0432 \u0442\u043e\u043c \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443? Yes=\u0414\u0430 +blurb=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u043D\u044B \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C {0} ''''{1}'''' diff --git a/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties new file mode 100644 index 0000000000..6b97dd6821 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractModelObject/editDescription_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Submit=\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties index 8ee852c426..de353a7d1c 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Back\ to\ Dashboard=\u0414\u043E\u043C\u043E\u0439 +Back\ to\ Dashboard=\u041D\u0430 \u0433\u043B\u0430\u0432\u043D\u0443\u044E Status=\u0421\u0442\u0430\u0442\u0443\u0441 Changes=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f Wipe\ Out\ Workspace=\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0440\u0430\u0431\u043E\u0447\u0435\u0435 \u043F\u0440\u043E\u0441\u0442\u0440\u0430\u043D\u0441\u0442\u0432\u043E Workspace=\u0421\u0431\u043E\u0440\u043E\u0447\u043D\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C {0} -Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u041F\u0440\u043E\u0435\u043A\u0442 +Configure=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 Build\ scheduled=\u0421\u0431\u043e\u0440\u043a\u0430 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties index d6ec8508d5..91ebf272f8 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_ru.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u0430 \u0430\u043D\u043E\u043D\u0438\u043C\u043D\u044B\u043C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C started_by_user=\u0417\u0430\u043f\u0443\u0449\u0435\u043d\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c {1} diff --git a/core/src/main/resources/hudson/model/Computer/configure_ru.properties b/core/src/main/resources/hudson/model/Computer/configure_ru.properties new file mode 100644 index 0000000000..e08ee3b50f --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/configure_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Name=\u0418\u043C\u044F diff --git a/core/src/main/resources/hudson/model/Computer/delete_ru.properties b/core/src/main/resources/hudson/model/Computer/delete_ru.properties new file mode 100644 index 0000000000..7259f6d977 --- /dev/null +++ b/core/src/main/resources/hudson/model/Computer/delete_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ slave?=\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u044B\u0439 \u0443\u0437\u0435\u043B? +Yes=\u0414\u0430 diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_ru.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_ru.properties index c837cf41f8..5bc285eac3 100644 --- a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_ru.properties +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_ru.properties @@ -20,10 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - \u042d\u0442\u043e\u0442 \u0442\u0438\u043f \u0437\u0430\u0434\u0430\u0447\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0432\u0430\u043c \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432, \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u044e\u0449\u0438\u0445\u0441\u044f \ - \u0432\u043d\u0435 Jenkins (\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u0434\u0430\u0436\u0435 \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u0430\u0445). \u041e\u043d \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043d \u0442\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c, \u0447\u0442\u043e \ - \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Jenkins \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 (dashboard) \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0439 \ - \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u0437\u0433\u043b\u044f\u043d\u0438\u0442\u0435 \u0432 \ - \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \ - \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438. +body=\u042D\u0442\u043E\u0442 \u0442\u0438\u043F \u0437\u0430\u0434\u0430\u0447\u0438 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u0432\u0430\u043C \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u044F \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0432, \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u044E\u0449\u0438\u0445\u0441\u044F \u0432\u043D\u0435 Jenkins (\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E, \u0434\u0430\u0436\u0435 \u043D\u0430 \u0443\u0434\u0430\u043B\u0435\u043D\u043D\u044B\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u0430\u0445). \u041E\u043D \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0430\u043D \u0442\u0430\u043A\u0438\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C, \u0447\u0442\u043E\u0431\u044B \u0432\u044B \u043C\u043E\u0433\u043B\u0438 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C Jenkins \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u043D\u043E \u0441 \u0432\u0430\u0448\u0435\u0439 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0435\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u0439 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438. \u0421\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430\u0446\u0438\u044E \u0434\u043B\u044F \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u044F \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties index 70583559d7..97eb19f0f3 100644 --- a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_ru.properties @@ -20,7 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -body=\ - \u042d\u0442\u043e \u043e\u0441\u043d\u043e\u0432\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f Jenkins. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0432\u0430\u0448 \u043f\u0440\u043e\u0435\u043a\u0442, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \ - \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043b\u044e\u0431\u044b\u0435 SCM \u0441 \u043b\u044e\u0431\u044b\u043c\u0438 \u0441\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u043c\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c\u0438, \u0438 \u0434\u0430\u0436\u0435 \u0434\u043b\u044f \ - \u0447\u0435\u0433\u043e-\u043d\u0438\u0431\u0443\u0434\u044c \u0438\u043d\u043e\u0433\u043e, \u043d\u0435 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e \u0441\u0431\u043e\u0440\u043a\u043e\u0439 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432. +body=\u042D\u0442\u043E \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F Jenkins. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0441\u043E\u0431\u0438\u0440\u0430\u0442\u044C \u0432\u0430\u0448 \u043F\u0440\u043E\u0435\u043A\u0442, \u043A\u043E\u043C\u0431\u0438\u043D\u0438\u0440\u0443\u044F \u043B\u044E\u0431\u0443\u044E SCM \u0441 \u043B\u044E\u0431\u043E\u0439 \u0441\u0431\u043E\u0440\u043E\u0447\u043D\u043E\u0439 \u0441\u0438\u0441\u0442\u0435\u043C\u043E\u0439. \u0422\u0430\u043A\u0436\u0435 \u0441\u0432\u043E\u0431\u043E\u0434\u043D\u0430\u044F \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0437\u0430\u0434\u0430\u0447, \u043D\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0445 \u0441\u043E \u0441\u0431\u043E\u0440\u043A\u043E\u0439 \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u0432. diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties index 2e77acbea4..de705d62d7 100644 --- a/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_ru.properties @@ -20,8 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Timeline=\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u0430\u044F \u0448\u043A\u0430\u043B\u0430 title={0} \u0413\u0440\u0430\u0444\u0438\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 Build=\u0421\u0431\u043e\u0440\u043a\u0430 +Build\ Time\ Trend=\u0422\u0435\u043D\u0434\u0435\u043D\u0446\u0438\u044F \u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c Slave=\u041f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 More\ than\ 1\ builds\ are\ needed\ for\ the\ trend\ report.=\u0414\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c \u043e\u0434\u043d\u043e\u0439 \u0441\u0431\u043e\u0440\u043a\u0435. diff --git a/core/src/main/resources/hudson/model/Job/index_ru.properties b/core/src/main/resources/hudson/model/Job/index_ru.properties index 49e8d73403..b3b6db8c3c 100644 --- a/core/src/main/resources/hudson/model/Job/index_ru.properties +++ b/core/src/main/resources/hudson/model/Job/index_ru.properties @@ -21,8 +21,10 @@ # 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 \ No newline at end of file +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/ListView/configure-entries_ru.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties index d9c24a374c..ef3f67cf74 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_ru.properties @@ -20,6 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Add\ Job\ Filter=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0444\u0438\u043B\u044C\u0442\u0440 \u0437\u0430\u0434\u0430\u0447\u0438 +Add\ column=\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 +All\ selected\ jobs=\u0412\u0441\u0435 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F +Columns=\u0421\u0442\u043E\u043B\u0431\u0446\u044B +Disabled\ jobs\ only=\u0422\u043E\u043B\u044C\u043A\u043E \u043E\u0442\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F +Enabled\ jobs\ only=\u0422\u043E\u043B\u044C\u043A\u043E \u0432\u043A\u043B\u044E\u0447\u0451\u043D\u043D\u044B\u0435 \u0437\u0430\u0434\u0430\u043D\u0438\u044F +Job\ Filters=\u0424\u0438\u043B\u044C\u0442\u0440\u044B \u0437\u0430\u0434\u0430\u043D\u0438\u0439 Jobs=\u0417\u0430\u0434\u0430\u0447\u0438 +Status\ Filter=\u0424\u0438\u043B\u044C\u0442\u0440 \u043F\u043E \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u044E Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u0434\u0430\u0447 \u0432 \u0441\u043f\u0438\u0441\u043e\u043a Regular\ expression=\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties index 844394b6bd..af6cb5e3ea 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_ru.properties @@ -20,11 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Load\ statistics\ graph=\u0413\u0440\u0430\u0444 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 +Load\ statistics\ graph=\u0413\u0440\u0430\u0444\u0438\u043A \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 Long=\u0414\u043B\u0438\u043D\u043D\u044B\u0439 Medium=\u0421\u0440\u0435\u0434\u043D\u0438\u0439 -Short=\u041A\u0440\u0430\u0442\u043A\u0438\u0439 -Timespan=\u041F\u0440\u043E\u043C\u0435\u0436\u0443\u0442\u043E\u043A +Short=\u041A\u043E\u0440\u043E\u0442\u043A\u0438\u0439 +Timespan=\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0439 \u0434\u0438\u0430\u043F\u0430\u0437\u043E\u043D blurb=\u0412 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0446\u0438\u0438 \u0437\u0430\u043F\u0438\u0441\u044B\u0432\u0430\u0435\u0442\u0441\u044F \u0438\u0441\u0442\u043E\u0440\u0438\u044F \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0438 \u0442\u0440\u0435\u0445 \u043A\u043B\u044E\u0447\u0435\u0432\u044B\u0445 \u043C\u0435\u0442\u0440\u0438\u043A \u0440\u0435\u0441\u0443\u0440\u0441\u043D\u043E\u0439 \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0446\u0438\u0438:
    \u0418\u0442\u043E\u0433\u043E\u0432\u043E\u0435 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432
    \u0414\u043B\u044F \u043A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0430 \u044D\u0442\u043E \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u044E\u0442\u0441\u044F \u043D\u0430 \u0434\u0430\u043D\u043D\u043E\u043C \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0435. \u0414\u043B\u044F \u043C\u0435\u0442\u043A\u0438 (\u0433\u0440\u0443\u043F\u043F\u044B), \u044D\u0442\u043E \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 \u043D\u0430 \u043A\u043E\u043C\u043F\u044C\u044E\u0442\u0435\u0440\u0430\u0445 \u0432 \u044D\u0442\u043E\u0439 \u0433\u0440\u0443\u043F\u043F\u0435. \u0414\u043B\u044F \u0441\u0430\u043C\u043E\u0433\u043E Jenkins, \u044D\u0442\u043E \u0441\u0443\u043C\u043C\u0430\u0440\u043D\u043E\u0435 \u0447\u0438\u0441\u043B\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u044E\u0449\u0438\u0445\u0441\u044F \u0432 \u0434\u0430\u043D\u043D\u043E\u0439 \u0438\u043D\u0441\u0442\u0430\u043B\u044F\u0446\u0438\u0438 Jenkins. \u0414\u0430\u043D\u043D\u044B\u0435 \u0447\u0438\u0441\u043B\u0430 \u043C\u043E\u0433\u0443\u0442 \u043C\u0435\u043D\u044F\u0442\u044C\u0441\u044F \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043C\u043E\u0441\u0442\u0438 \u043E\u0442 \u0442\u043E\u0433\u043E, \u0430\u043A\u0442\u0438\u0432\u043D\u044B \u0438\u043B\u0438 \u043D\u0435\u0442 \u0443\u0437\u043B\u044B \u0441\u0431\u043E\u0440\u043A\u0438.
    \u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0437\u0430\u043D\u044F\u0442\u044B\u0445 \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432
    This line tracks the number of executors (among the executors counted above) that are carrying out builds. The ratio of this to the total number of executors gives you the resource utilization. If all your executors are busy for a prolonged period of time, consider adding more computers to your Jenkins cluster.
    Queue length
    This is the number of jobs that are in the build queue, waiting for an available executor (of this computer, of this label, or in this Jenkins, respectively.) This doesn''t include jobs that are in the quiet period, nor does it include jobs that are in the queue because earlier builds are still in progress. If this line ever goes above 0, that means your Jenkins will run more builds by adding more computers.
    The graph is exponential moving average of periodically collected data values. 3 timespans are updated every 10 seconds, 1 minute, and 1 hour respectively. title=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438: {0} diff --git a/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties index 223ada73c2..2923b8b35b 100644 --- a/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties +++ b/core/src/main/resources/hudson/model/MyView/newViewDetail_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=\u0414\u0430\u043D\u043D\u043E\u0435 \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u043A\u043E\u0442\u043E\u0440\u044B\u043C \u0438\u043C\u0435\u0435\u0442 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u043C. +blurb=\u0414\u0430\u043D\u043D\u043E\u0435 \u043F\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u0434\u043E\u0441\u0442\u0443\u043F \u043A \u043A\u043E\u0442\u043E\u0440\u044B\u043C \u0438\u043C\u0435\u0435\u0442 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties new file mode 100644 index 0000000000..af4b59527d --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Default\ View=\u0412\u0438\u0434 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E +description=\u0412\u0438\u0434, \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u043C\u044B\u0439 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E \u043F\u0440\u0438 \u043F\u0435\u0440\u0435\u0445\u043E\u0434\u0435 \u0432 \u0432\u0438\u0434\u044B \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties new file mode 100644 index 0000000000..240ca31d34 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_ru.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0432\u0438\u0434\u0430 diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties new file mode 100644 index 0000000000..bc61e440c5 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_ru.properties @@ -0,0 +1,24 @@ +# 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=\u0421\u0431\u043E\u0440\u043A\u0430 +Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0441\u0431\u043E\u0440\u043A\u0438 diff --git a/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties new file mode 100644 index 0000000000..7a76ffd0d9 --- /dev/null +++ b/core/src/main/resources/hudson/model/ProxyView/newViewDetail_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Shows\ the\ content\ of\ a\ global\ view.=\u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u043C\u043E\u0435 \u0433\u043B\u0430\u0432\u043D\u043E\u0433\u043E \u0432\u0438\u0434\u0430 diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties new file mode 100644 index 0000000000..2481e51878 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=\u0425\u0440\u0430\u043D\u0438\u0442\u044C \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443 \u0432\u0435\u0447\u043D\u043E diff --git a/core/src/main/resources/hudson/model/Run/configure_ru.properties b/core/src/main/resources/hudson/model/Run/configure_ru.properties new file mode 100644 index 0000000000..51b670bbf0 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_ru.properties @@ -0,0 +1,26 @@ +# 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. + +Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 +DisplayName=\u0418\u043C\u044F +LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 +Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/hudson/model/Run/console_ru.properties b/core/src/main/resources/hudson/model/Run/console_ru.properties index eed20fed6c..139af90e88 100644 --- a/core/src/main/resources/hudson/model/Run/console_ru.properties +++ b/core/src/main/resources/hudson/model/Run/console_ru.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C -View\ as\ plain\ text=\u041F\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u0431\u0435\u0437 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 +View\ as\ plain\ text=\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u0431\u0435\u0437 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F +skipSome=\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u043E {0,number,integer} KB.. \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432\u0441\u0451 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties new file mode 100644 index 0000000000..b4bf19504e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\u041F\u043E\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties index 48c3287eaf..50dd17ccc9 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_ru.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewVersionAvailable=\u041D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Jenkins ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 (\u0441\u043F\u0438\u0441\u043E\u043A \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439). +NewVersionAvailable=\u041D\u043E\u0432\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F Jenkins ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438 (\u0441\u043F\u0438\u0441\u043E\u043A \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0439). +Or\ Upgrade\ Automatically=\u0418\u043B\u0438 \u043E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 +UpgradeProgress=\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 Jenkins {0} \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F \u0438\u043B\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043B\u043E\u0441\u044C \u043D\u0435\u0443\u0434\u0430\u0447\u0435\u0439. diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties new file mode 100644 index 0000000000..a093953499 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=\u0423\u0441\u0442\u0430\u043D\u0430\u0432\u043B\u0438\u0432\u0430\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties new file mode 100644 index 0000000000..d8a0acfd44 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties new file mode 100644 index 0000000000..abdc68ec4f --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Success=\u0423\u0441\u043F\u0435\u0445 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties new file mode 100644 index 0000000000..d8a0acfd44 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties new file mode 100644 index 0000000000..cd5707cf87 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Running/status_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Running=\u0412\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties new file mode 100644 index 0000000000..74d23e9b5b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=Jenkins \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0435\u0442\u0441\u044F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties new file mode 100644 index 0000000000..a91814440b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ru.properties @@ -0,0 +1,23 @@ +# 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. + +warning=\u041F\u0435\u0440\u0435\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C Jenkins \u043F\u043E\u0441\u043B\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 \u0438 \u043E\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044F \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u0441\u0442\u0438 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties new file mode 100644 index 0000000000..511ca15e59 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0430 \u043F\u043B\u0430\u0433\u0438\u043D\u043E\u0432/\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties index 2e5e5e49d2..8c0b2260b5 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_ru.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Manage\ Jenkins=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c Jenkins +Back\ to\ Dashboard=\u0412\u0435\u0440\u043D\u0443\u0442\u044C\u0441\u044F \u043A Dashboard +Manage\ Jenkins=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C Jenkins +Manage\ Plugins=\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043F\u043B\u0430\u0433\u0438\u043D\u044B diff --git a/core/src/main/resources/hudson/model/User/builds_ru.properties b/core/src/main/resources/hudson/model/User/builds_ru.properties new file mode 100644 index 0000000000..a354c8874d --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_ru.properties @@ -0,0 +1,23 @@ +# 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. + +title=\u0421\u0431\u043E\u0440\u043A\u0438 \u0434\u043B\u044F {0} diff --git a/core/src/main/resources/hudson/model/User/index_ru.properties b/core/src/main/resources/hudson/model/User/index_ru.properties new file mode 100644 index 0000000000..a48a55a569 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Id \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F diff --git a/core/src/main/resources/hudson/model/User/sidepanel_ru.properties b/core/src/main/resources/hudson/model/User/sidepanel_ru.properties index addfcac880..2107116a14 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_ru.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Delete=\u0423\u0434\u0430\u043B\u0438\u0442\u044C +My\ Views=\u041C\u043E\u0438 \u0432\u0438\u0434\u044B People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 Status=\u0421\u0442\u0430\u0442\u0443\u0441 Builds=\u0421\u0431\u043e\u0440\u043a\u0438 diff --git a/core/src/main/resources/hudson/model/View/People/index_ru.properties b/core/src/main/resources/hudson/model/View/People/index_ru.properties index 136a57fe78..910151d597 100644 --- a/core/src/main/resources/hudson/model/View/People/index_ru.properties +++ b/core/src/main/resources/hudson/model/View/People/index_ru.properties @@ -21,6 +21,8 @@ # THE SOFTWARE. Name=\u0418\u043c\u044f +All\ People=\u0412\u0441\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 Last\ Active=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c -On=\u0412 \u043f\u0440\u043e\u0435\u043a\u0442\u0435 +On=\u041F\u0440\u043E\u0435\u043A\u0442 People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 +User\ Id=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C diff --git a/core/src/main/resources/hudson/model/View/configure_ru.properties b/core/src/main/resources/hudson/model/View/configure_ru.properties index 911b3510db..dc84047bd4 100644 --- a/core/src/main/resources/hudson/model/View/configure_ru.properties +++ b/core/src/main/resources/hudson/model/View/configure_ru.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Filter\ build\ executors=\u0424\u0438\u043B\u044C\u0442\u0440 \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 +Filter\ build\ queue=\u0424\u0438\u043B\u044C\u0442\u0440 \u0441\u0431\u043E\u0440\u043E\u043A Name=\u0418\u043c\u044f -Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \ No newline at end of file +Description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 diff --git a/core/src/main/resources/hudson/model/View/newJob_ru.properties b/core/src/main/resources/hudson/model/View/newJob_ru.properties index 28899d1655..7b525f3fb1 100644 --- a/core/src/main/resources/hudson/model/View/newJob_ru.properties +++ b/core/src/main/resources/hudson/model/View/newJob_ru.properties @@ -20,3 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +CopyExisting=\u041A\u043E\u043F\u0438\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 {0} +JobName={0} \u0438\u043C\u044F diff --git a/core/src/main/resources/hudson/model/View/noJob_ru.properties b/core/src/main/resources/hudson/model/View/noJob_ru.properties new file mode 100644 index 0000000000..93d172e1e2 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/noJob_ru.properties @@ -0,0 +1,23 @@ +# 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. + +description_1=\u0421 \u044D\u0442\u0438\u043C \u0432\u0438\u0434\u043E\u043C \u043D\u0435 \u0441\u0432\u044F\u0437\u0430\u043D\u043E \u043D\u0438 \u043E\u0434\u043D\u043E\u0439 \u0437\u0430\u0434\u0430\u0447\u0438, \u043B\u0438\u0431\u043E \u0443 \u0432\u0430\u0441 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0442\u043E\u0447\u043D\u043E \u043F\u0440\u0430\u0432 \u0434\u043B\u044F \u0438\u0445 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0430. diff --git a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties index f0cddef278..8f8c559eed 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_ru.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_ru.properties @@ -20,10 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -NewJob=\u041d\u043e\u0432\u0430\u044f {0} +NewJob=\u041D\u043E\u0432\u0430\u044F \u0437\u0430\u0434\u0430\u0447\u0430 People=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 Build\ History=\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0441\u0431\u043e\u0440\u043e\u043a Edit\ View=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434 Delete\ View=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0438\u0434 -Project\ Relationship=\u041e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432 +Project\ Relationship= Check\ File\ Fingerprint=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u043e\u043a \u0444\u0430\u0439\u043b\u0430 diff --git a/core/src/main/resources/hudson/search/Search/search-failed_ru.properties b/core/src/main/resources/hudson/search/Search/search-failed_ru.properties new file mode 100644 index 0000000000..fb8fdfab73 --- /dev/null +++ b/core/src/main/resources/hudson/search/Search/search-failed_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Nothing\ seems\ to\ match.=\u041D\u0438\u0447\u0435\u0433\u043E \u043F\u043E\u0445\u043E\u0436\u0435\u0433\u043E \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E +Search\ for=\u041F\u043E\u0438\u0441\u043A diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_ru.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_ru.properties index c77d374056..acd0573b2d 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_ru.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_ru.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Remove\ user/group=\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F/\u0433\u0440\u0443\u043F\u043F\u0443 +Toggle\ all=\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0432\u0441\u0451 User/group=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c/\u0433\u0440\u0443\u043f\u043f\u0430 Anonymous=\u0410\u043d\u043e\u043d\u0438\u043c User/group\ to\ add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f/\u0433\u0440\u0443\u043f\u043f\u0443 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties index 24ae8cbd65..496d8d8578 100644 --- a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_ru.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Name=\u0418\u043C\u044F +User\ Id=ID \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F +Users=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 blurb=\u041F\u0435\u0440\u0435\u0447\u0438\u0441\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0438 \u043C\u043E\u0433\u0443\u0442 \u0432\u0445\u043E\u0434\u0438\u0442\u044C \u0432 Jenkins. \u0423\u043A\u0430\u0437\u0430\u043D\u043D\u044B\u0439 \u0441\u043F\u0438\u0441\u043E\u043A \u044F\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u043F\u043E\u0434\u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E\u043C \u043F\u043E\u043B\u043D\u043E\u0433\u043E \u0441\u043F\u0438\u0441\u043A\u0430 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0432 \u0434\u043E\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u0442 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u0435\u0439, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0432\u043D\u043E\u0441\u0438\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0432 \u043F\u0440\u043E\u0435\u043A\u0442\u044B (\u0434\u0435\u043B\u0430\u043B\u0438 commit \u0432 SCM), \u0438 \u043C\u043E\u0433\u0443\u0442 \u043D\u0435 \u0438\u043C\u0435\u0442\u044C \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u043A \u0434\u0430\u043D\u043D\u043E\u043C\u0443 \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0443 Jenkins. diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ru.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ru.properties index b26a6a863d..6071af3636 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ru.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_ru.properties @@ -24,6 +24,7 @@ Server=\u0421\u0435\u0440\u0432\u0435\u0440 root\ DN=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 DN User\ search\ base=\u0411\u0430\u0437\u0430 \u043f\u043e\u0438\u0441\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 User\ search\ filter=\u0424\u0438\u043b\u044c\u0442\u0440 \u043f\u043e\u0438\u0441\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 +Allow\ blank\ rootDN=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044C \u043F\u0443\u0441\u0442\u043E\u0435 \u0438\u043C\u044F \u043A\u043E\u0440\u043D\u0435\u0432\u043E\u0433\u043E DNS Group\ search\ base=\u0411\u0430\u0437\u0430 \u043F\u043E\u0438\u0441\u043A\u0430 \u0433\u0440\u0443\u043F\u043F Manager\ DN=\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 DN Manager\ Password=\u041f\u0430\u0440\u043e\u043b\u044c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties index e10679582a..935faed9ee 100644 --- a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -login=\u0432\u043E\u0439\u0442\u0438 +login=\u0412\u043E\u0439\u0442\u0438 diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties new file mode 100644 index 0000000000..967f856300 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u0438\u043C\u043E\u0441\u0442\u044C \u0441 \u043F\u0440\u043E\u043A\u0441\u0438 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties index 849651fe98..ce15ab9cf4 100644 --- a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_ru.properties @@ -23,5 +23,5 @@ Connect\ slave\ to\ Jenkins\ one\ of\ these\ ways:=\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0438\u0442\u044C slave \u043A Jenkins \u043E\u0434\u043D\u0438\u043C \u0438\u0437 \u0441\u043F\u043E\u0441\u043E\u0431\u043E\u0432: Connected\ via\ JNLP\ agent.=\u041F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D \u0447\u0435\u0440\u0435\u0437 JNLP \u0430\u0433\u0435\u043D\u0442\u0430. Launch\ agent\ from\ browser\ on\ slave=\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0430\u0433\u0435\u043D\u0442\u0430 \u0438\u0437 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 \u043D\u0430 slave -Run\ from\ slave\ command\ line:=\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0438\u0437 \u043A\u043E\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u0441\u0442\u0440\u043E\u043A \u043D\u0430 slave +Run\ from\ slave\ command\ line:=\u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432 \u043A\u043E\u043C\u043C\u0430\u043D\u0434\u043D\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u0435 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u043D\u043E\u0433\u043E \u0443\u0437\u043B\u0430 launch\ agent=\u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0430\u0433\u0435\u043D\u0442\u0430 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ru.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ru.properties index 7dcc769d78..212a1a1b9c 100644 --- a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ru.properties +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_ru.properties @@ -22,4 +22,4 @@ Disconnect=\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C Log=\u041B\u043E\u0433\u0438 -System\ Information=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0435 +System\ Information=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ru.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ru.properties new file mode 100644 index 0000000000..e595a6492f --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/systemInfo_ru.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. + +Environment\ Variables=\u041F\u0435\u0440\u0435\u043C\u0435\u043D\u043D\u044B\u0435 \u0441\u0440\u0435\u0434\u044B +System\ Properties=\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043C\u044B +Thread\ Dump=\u0414\u0430\u043C\u043F \u043F\u043E\u0442\u043E\u043A\u0430 diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_ru.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_ru.properties index 3f314fae8c..de097169f2 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_ru.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_ru.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -E-mail\ address=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043f\u043e\u0447\u0442\u044b +E-mail\ address=E-mail \u0430\u0434\u0440\u0435\u0441 description=\u0412\u0430\u0448 \u0430\u0434\u0440\u0435\u0441, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 joe.chin@sun.com diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties index 851a35d958..63286e7a47 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_ru.properties @@ -26,4 +26,5 @@ took=\u0417\u0430\u043d\u044f\u043b\u043e {0}. since.before=\u0421' ' since.after=' ' Standard\ Output=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0432\u044b\u0432\u043e\u0434 (STDOUT) +Error\ Message=\u0421\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0435 \u043E\u0431 \u043E\u0448\u0438\u0431\u043A\u0435 Standard\ Error=\u0412\u044b\u0432\u043e\u0434 \u043e\u0448\u0438\u0431\u043e\u043a (STDERR) diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties index c01a8ef81b..a45d0ffa59 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_ru.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. All\ Failed\ Tests=\u0412\u0441\u0435 \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u0432\u0448\u0438\u0435\u0441\u044f \u0442\u0435\u0441\u0442\u044b +Skip=\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C Test\ Name=\u0418\u043c\u044f \u0442\u0435\u0441\u0442\u0430 Duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c Age=\u0412\u043e\u0437\u0440\u0430\u0441\u0442 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.properties new file mode 100644 index 0000000000..bc6cb15b2e --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_ru.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. + +History=\u0418\u0441\u0442\u043E\u0440\u0438\u044F +Next\ Build=\u0421\u043B\u0435\u0434\u0443\u044E\u0449\u0430\u044F \u0421\u0431\u043E\u0440\u043A\u0430 +Previous\ Build=\u041F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0430\u044F \u0421\u0431\u043E\u0440\u043A\u0430 diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties new file mode 100644 index 0000000000..124d828723 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_ru.properties @@ -0,0 +1,23 @@ +# 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. + +took=\u0417\u0430\u043D\u044F\u043B\u043E {0} diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.properties new file mode 100644 index 0000000000..ea566faecb --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_ru.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. + +Home=\u0414\u043E\u043C +List\ of\ tool\ locations=\u0421\u043F\u0438\u0441\u043E\u043A \u0440\u0430\u0441\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0439 +Name=\u0418\u043C\u044F diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.properties new file mode 100644 index 0000000000..6ab1d16411 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_ru.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. + +Polling\ Log=\u0416\u0443\u0440\u043D\u0430\u043B \u043E\u043F\u0440\u043E\u0441\u0430 +View\ as\ plain\ text=\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C \u043A\u0430\u043A \u043F\u0440\u043E\u0441\u0442\u043E\u0439 \u0442\u0435\u043A\u0441\u0442 +blurb=\u042D\u0442\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043E\u0431\u044B\u0442\u0438\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0430 \u043E\u043F\u0440\u043E\u0441\u0430, \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0432\u044B\u0437\u0432\u0430\u043B\u0438 \u044D\u0442\u0443 \u0441\u0431\u043E\u0440\u043A\u0443. diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ru.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ru.properties new file mode 100644 index 0000000000..056b4aab29 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_ru.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u041D\u043E\u0432\u044B\u0439 \u0432\u0438\u0434 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties new file mode 100644 index 0000000000..056b4aab29 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_ru.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u041D\u043E\u0432\u044B\u0439 \u0432\u0438\u0434 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties index 6f4502f3d0..21a529539b 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c +Last\ Duration=\u041A\u0440\u0430\u0439\u043D\u044F\u044F \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0441\u0442\u044C diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties index b706f4c054..d22c79c9b7 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u043d\u0435\u0443\u0434\u0430\u0447\u0430 +Last\ Failure=\u041A\u0440\u0430\u0439\u043D\u044F\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u0430 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties index 8b675a73d9..07419dd9dd 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0443\u0441\u043f\u0435\u0445 \ No newline at end of file +Last\ Success=\u041A\u0440\u0430\u0439\u043D\u0438\u0439 \u0443\u0441\u043F\u0435\u0445 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties index 37a8640470..bd4d5ece96 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u041E\u0442\u0447\u0435\u0442 "\u041F\u043E\u0433\u043E\u0434\u0430" \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u041E\u0442\u0447\u0435\u0442 \u043F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0430\u0433\u0440\u0435\u0433\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties new file mode 100644 index 0000000000..0c6637083d --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_ru.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0431\u043E\u0440\u043A\u0443 +pending=\u041E\u0436\u0438\u0434\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties new file mode 100644 index 0000000000..2f6269849d --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u0412\u044B\u0432\u043E\u0434 \u0432 \u043A\u043E\u043D\u0441\u043E\u043B\u044C diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties new file mode 100644 index 0000000000..75ae3d9a00 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Available\ Commands=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties index 89592e3022..2504b3f6b7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_ru.properties @@ -28,6 +28,7 @@ Enable\ security=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0430\u TCP\ port\ for\ JNLP\ slave\ agents=TCP \u043f\u043e\u0440\u0442 \u0434\u043b\u044f JNLP \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0430\u0433\u0435\u043d\u0442\u043e\u0432 Fixed=\u0421\u0442\u0430\u0442\u0438\u0447\u043d\u044b\u0439 Random=\u0421\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0439 +Build\ Record\ Root\ Directory=\u041A\u043E\u0440\u043D\u0435\u0432\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 Default\ view=\u0412\u0438\u0434 \u043F\u043E-\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E Disable=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d #\ of\ executors=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u0441\u0431\u043E\u0440\u0449\u0438\u043A\u043E\u0432 @@ -36,9 +37,11 @@ SCM\ checkout\ retry\ count=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u04 Save=\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C Security\ Realm=\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u0437\u0430\u0449\u0438\u0442\u044b (realm) Authorization=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f +Workspace\ Root\ Directory=\u041A\u043E\u0440\u043D\u0435\u0432\u0430\u044F \u0434\u0438\u0440\u0435\u043A\u0442\u043E\u0440\u0438\u044F \u0440\u0430\u0431\u043E\u0447\u0435\u0439 \u043E\u0431\u043B\u0430\u0441\u0442\u0438 description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 JDKs=JDK JDK\ installations=\u0418\u043d\u0441\u0442\u0430\u043b\u043b\u044f\u0446\u0438\u0438 JDK +LOADING=\u0417\u0410\u0413\u0420\u0423\u0417\u041A\u0410 Labels=\u041C\u0435\u0442\u043A\u0438 List\ of\ JDK\ installations\ on\ this\ system=\u0421\u043f\u0438\u0441\u043e\u043a JDK \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 no.such.JDK=\u0422\u0430\u043a\u043e\u0433\u043e JDK \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties new file mode 100644 index 0000000000..6e224bdcd6 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043F\u0440\u0435\u0434\u044B\u0434\u0443\u0449\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E Jenkins +buttonText=\u041E\u0442\u043A\u0430\u0442\u0438\u0442\u044C\u0441\u044F \u043D\u0430 {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties new file mode 100644 index 0000000000..a719015a10 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_ru.properties @@ -0,0 +1,35 @@ +# 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. + +blue=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439 +blue_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u043E\u0439. \u041D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435. +grey=\u041F\u0440\u043E\u0435\u043A\u0442 \u0435\u0449\u0451 \u043D\u0435 \u0440\u0430\u0437\u0443 \u043D\u0435 \u0441\u043E\u0431\u0438\u0440\u0430\u043B\u0441\u044F, \u0438\u043B\u0438 \u043E\u0442\u043A\u043B\u044E\u0447\u0435\u043D +grey_anime=\u041F\u0435\u0440\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0432 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 +health-00to20=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 20% \u0438\u043B\u0438 \u043C\u0435\u043D\u044C\u0448\u0435. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F +health-21to40=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u043E\u0441\u044C \u0441 20% \u043D\u0430 40%. \u0412\u044B \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0432\u0435\u0441\u0442\u0438 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. +health-41to60=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u044B\u043B\u043E 40% \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u043B\u043E\u0441\u044C \u0434\u043E 60%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. +health-61to80=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0431\u044B\u043B\u043E 60% \u0438 \u043F\u043E\u0432\u044B\u0441\u0438\u043B\u043E\u0441\u044C \u0434\u043E 80%.\u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. +health-81plus=\u0417\u0434\u043E\u0440\u043E\u0432\u044C\u0435 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 80%. \u041D\u0430\u0432\u0435\u0434\u0438\u0442\u0435 \u043A\u0443\u0440\u0441\u043E\u0440 \u043C\u044B\u0448\u0438 \u043D\u0430 \u0438\u043A\u043E\u043D\u043A\u0443 \u043F\u0440\u043E\u0435\u043A\u0442\u0430 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0434\u0435\u0442\u0430\u043B\u044C\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438. +red=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0438\u043B\u0430\u0441\u044C. +red_anime=\u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0430. +yellow=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u0430. \u042D\u0442\u043E \u0432 \u043F\u0435\u0440\u0432\u0443\u044E \u043E\u0447\u0435\u0440\u0435\u0434\u044C \u0443\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F \u0434\u043B\u044F \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u043E\u0431 \u0443\u043F\u0430\u0432\u0448\u0438\u0445 \u0442\u0435\u0441\u0442\u0430\u0445. +yellow_anime=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u044F\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u0431\u044B\u043B\u0430 \u0443\u0441\u043F\u0435\u0448\u043D\u0430, \u043D\u043E \u043D\u0435 \u0441\u0442\u0430\u0431\u0438\u043B\u044C\u043D\u0430. \u041F\u0440\u043E\u0438\u0437\u0432\u043E\u0434\u0438\u0442\u0441\u044F \u043D\u043E\u0432\u0430\u044F \u0441\u0431\u043E\u0440\u043A\u0430 \u043F\u0440\u043E\u0435\u043A\u0442\u0430. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties index 97a4afdc90..7699ff705a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_ru.properties @@ -31,7 +31,7 @@ Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u041F\u043E\u043B\u0435\u0437\u043D\u043E \u0432 \u0441\u043B\u0443\u0447\u0430\u0435, \u0435\u0441\u043B\u0438 \u0432\u044B \u043C\u043E\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043B\u0438 \u0444\u0430\u0439\u043B\u044B \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A \u0432\u0440\u0443\u0447\u043D\u0443\u044E. Manage\ Nodes=\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0421\u0440\u0435\u0434\u0430\u043C\u0438 \u0441\u0431\u043E\u0440\u043A\u0438 Manage\ Plugins=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438 -System\ Information=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0441\u0438\u0441\u0442\u0435\u043c\u0435 +System\ Information=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0432\u0441\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0441\u0440\u0435\u0434\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u043e\u043c\u043e\u0449\u0438 \u0432 \u0440\u0435\u0448\u0435\u043d\u0438\u0438 \u043f\u0440\u043e\u0431\u043b\u0435\u043c. System\ Log=\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0436\u0443\u0440\u043d\u0430\u043b Script\ Console=\u041A\u043E\u043D\u0441\u043E\u043B\u044C \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u0435\u0432 @@ -40,7 +40,7 @@ Manage\ Slaves=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u04 Check\ the\ health\ of\ slaves\ and\ controls\ them.=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438. Cancel\ Shutdown=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0440\u0430\u0431\u043e\u0442\u044b Prepare\ for\ Shutdown=\u041f\u0440\u0438\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c\u0441\u044f \u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e \u0440\u0430\u0431\u043e\u0442\u044b -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.= \u041f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0441\u0431\u043e\u0440\u043e\u043a, \u0442\u0430\u043a \u0447\u0442\u043e \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u041F\u0440\u0435\u043A\u0440\u0430\u0449\u0430\u0435\u0442 \u0432\u044B\u043F\u043E\u043B\u043D\u0435\u043D\u0438\u0435 \u043D\u043E\u0432\u044B\u0445 \u0441\u0431\u043E\u0440\u043E\u043A, \u0442\u0430\u043A \u0447\u0442\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0431\u0435\u0437\u043E\u043F\u0430\u0441\u043D\u043E \u0432\u044B\u043A\u043B\u044E\u0447\u0435\u043D\u0430. Configure\ System=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b Configure\ global\ settings\ and\ paths.=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438 \u043f\u0443\u0442\u0438. Configure\ Executors=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u0431\u043e\u0440\u0449\u0438\u043a\u043e\u0432 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties index 9ebf629649..956ab7fc7b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_ru.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Name=\u041D\u0430\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u043D\u0438\u0435 +Pinned=\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u043B\u0435\u043D +Plugins=\u041F\u043B\u0430\u0433\u0438\u043D\u044B System\ Properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b +Enabled=\u0410\u043A\u0442\u0438\u0432\u0435\u043D Environment\ Variables=\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u044f +Version=\u0412\u0435\u0440\u0441\u0438\u044F diff --git a/core/src/main/resources/lib/form/expandableTextbox_ru.properties b/core/src/main/resources/lib/form/expandableTextbox_ru.properties new file mode 100644 index 0000000000..fffd070ee1 --- /dev/null +++ b/core/src/main/resources/lib/form/expandableTextbox_ru.properties @@ -0,0 +1,23 @@ +# 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. + +tooltip=\u041A\u043B\u0438\u043A\u043D\u0438\u0442\u0435, \u0447\u0442\u043E\u0431\u044B \u0440\u0430\u0441\u043A\u0440\u044B\u0442\u044C \u043D\u0430 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0441\u0442\u0440\u043E\u043A
    , \u0447\u0442\u043E\u0431\u044B \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u0435\u0440\u0435\u0432\u043E\u0434 \u0441\u0442\u0440\u043E\u043A\u0438 \u0432\u043C\u0435\u0441\u0442\u043E \u043F\u0440\u043E\u0431\u0435\u043B\u0430.
    \u0414\u043B\u044F \u0432\u043E\u0437\u0432\u0440\u0430\u0442\u0430 \u043A \u043E\u0434\u043D\u043E\u0441\u0442\u0440\u043E\u043A\u043E\u0432\u043E\u0439 \u043E\u0431\u043B\u0430\u0441\u0442\u0438, \u043F\u0438\u0448\u0438\u0442\u0435 \u0432\u0441\u0451, \u0447\u0442\u043E \u0443\u0433\u043E\u0434\u043D\u043E \u0431\u0435\u0437 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\u043E\u0432 \u0441\u0442\u0440\u043E\u043A\u0438 \u0438 submit''\u0442\u0435. diff --git a/core/src/main/resources/lib/form/textarea_ru.properties b/core/src/main/resources/lib/form/textarea_ru.properties new file mode 100644 index 0000000000..dbb0ce37db --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Hide\ preview=\u0421\u043A\u0440\u044B\u0442\u044C \u043F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 +Preview=\u041F\u0440\u0435\u0434\u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440 diff --git a/core/src/main/resources/lib/hudson/buildCaption_ru.properties b/core/src/main/resources/lib/hudson/buildCaption_ru.properties index 2ee9927e92..840a36bf0f 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_ru.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_ru.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Progress=\u041f\u0440\u043e\u0433\u0440\u0435\u0441\u0441 -cancel=\u043F\u0440\u0435\u0440\u0432\u0430\u0442\u044C +cancel=\u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties index e368352069..d7e6f7071c 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text=\u041d\u0430\u0447\u0430\u0442\u043e {0} \u043d\u0430\u0437\u0430\u0434
    \u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f: {1} +text=\u041D\u0430\u0447\u0430\u0442\u043E {0}
    \u041F\u0440\u0438\u0431\u043B\u0438\u0437\u0438\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u0432\u0440\u0435\u043C\u044F \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u044F: {1} diff --git a/core/src/main/resources/lib/hudson/executors_ru.properties b/core/src/main/resources/lib/hudson/executors_ru.properties index 267f45bd9b..927b7563a7 100644 --- a/core/src/main/resources/lib/hudson/executors_ru.properties +++ b/core/src/main/resources/lib/hudson/executors_ru.properties @@ -27,5 +27,5 @@ 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 +Building=\u0421\u043E\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F terminate\ this\ build=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0441\u0431\u043e\u0440\u043a\u0443 diff --git a/core/src/main/resources/lib/hudson/iconSize_ru.properties b/core/src/main/resources/lib/hudson/iconSize_ru.properties index 81ab7a1d80..7b115a141e 100644 --- a/core/src/main/resources/lib/hudson/iconSize_ru.properties +++ b/core/src/main/resources/lib/hudson/iconSize_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Icon=\u0417\u043D\u0430\u0447\u043E\u043A +Icon=\u0418\u043A\u043E\u043D\u043A\u0430 diff --git a/core/src/main/resources/lib/hudson/newFromList/form_ru.properties b/core/src/main/resources/lib/hudson/newFromList/form_ru.properties index 95614afe46..ca18871d5a 100644 --- a/core/src/main/resources/lib/hudson/newFromList/form_ru.properties +++ b/core/src/main/resources/lib/hudson/newFromList/form_ru.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Copy\ from=\u0421\u043A\u043E\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438\u0437 +Copy\ from=\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0438\u0437 diff --git a/core/src/main/resources/lib/hudson/queue_ru.properties b/core/src/main/resources/lib/hudson/queue_ru.properties index 13e773e5fd..b8b5901d64 100644 --- a/core/src/main/resources/lib/hudson/queue_ru.properties +++ b/core/src/main/resources/lib/hudson/queue_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Build\ Queue=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u0441\u0431\u043e\u0440\u043e\u043a -No\ builds\ in\ the\ queue.=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u043f\u0443\u0441\u0442\u0430. +No\ builds\ in\ the\ queue.=\u041E\u0447\u0435\u0440\u0435\u0434\u044C \u0441\u0431\u043E\u0440\u043E\u043A \u043F\u0443\u0441\u0442\u0430. Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0441\u044f \u043a \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044e. \u0421\u0431\u043e\u0440\u043a\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442. cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c diff --git a/core/src/main/resources/lib/hudson/rssBar_ru.properties b/core/src/main/resources/lib/hudson/rssBar_ru.properties index da3e3fd8e5..a76e47a284 100644 --- a/core/src/main/resources/lib/hudson/rssBar_ru.properties +++ b/core/src/main/resources/lib/hudson/rssBar_ru.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Legend=\u041b\u0435\u0433\u0435\u043d\u0434\u0430 -for\ all=\u0412\u0441\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 -for\ failures=\u0412\u0441\u0435 \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u044b\u0435 -for\ just\ latest\ builds=\u041F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0435 \u0441\u0431\u043E\u0440\u043A\u0438 +for\ all=\u0434\u043B\u044F \u0432\u0441\u0435\u0445 +for\ failures=\u0434\u043B\u044F \u043D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0445 +for\ just\ latest\ builds=\u0434\u043B\u044F \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0438\u0445 \u0441\u0431\u043E\u0440\u043E\u043A diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.properties new file mode 100644 index 0000000000..641cf61bda --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_ru.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. + +License=\u041B\u0438\u0446\u0435\u043D\u0437\u0438\u044F +Maven\ ID=Maven ID +Name=\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 diff --git a/core/src/main/resources/lib/layout/layout_ru.properties b/core/src/main/resources/lib/layout/layout_ru.properties index 290f4e71da..0eaa7dcef7 100644 --- a/core/src/main/resources/lib/layout/layout_ru.properties +++ b/core/src/main/resources/lib/layout/layout_ru.properties @@ -20,8 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=\u043F\u043E\u0438\u0441\u043A searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box Page\ generated=\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0441\u043E\u0437\u0434\u0430\u043D\u0430 -logout=\u0412\u044B\u0445\u043E\u0434 -DISABLE\ AUTO\ REFRESH=\u0412\u044B\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 -ENABLE\ AUTO\ REFRESH=\u0412\u041A\u041B\u042E\u0427\u0418\u0422\u042C \u0410\u0412\u0422\u041E\u041E\u0411\u041D\u041E\u0412\u041B\u0415\u041D\u0418\u0415 +logout=\u0432\u044B\u0445\u043E\u0434 +DISABLE\ AUTO\ REFRESH=\u041E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B +ENABLE\ AUTO\ REFRESH=\u0412\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B diff --git a/core/src/main/resources/lib/layout/main-panel_ru.properties b/core/src/main/resources/lib/layout/main-panel_ru.properties new file mode 100644 index 0000000000..d4b66b3142 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_ru.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkins \u0433\u043E\u0442\u043E\u0432\u0438\u0442\u0441\u044F \u043A \u0432\u044B\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u044E 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 2b0a894b86..d68ac33e1b 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,7 +20,10 @@ # 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 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/newJobDetail_ru.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_ru.properties index 910812ff5e..96193bb1d2 100644 --- a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_ru.properties +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_ru.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. # OUTDATED -body=\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 maven2/3. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0438\u0437 \u043F\u0440\u043E\u0435\u043A\u0442\u043D\u044B\u0445 \u0444\u0430\u0439\u043B\u043E\u0432 POM, \u0447\u0442\u043E \u0443\u043C\u0435\u043D\u0448\u0438\u0442 \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0441\u0442\u044C \u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F. +body=\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 maven2/3. Jenkins \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E \u0438\u0437 \u043F\u0440\u043E\u0435\u043A\u0442\u043D\u044B\u0445 \u0444\u0430\u0439\u043B\u043E\u0432 POM, \u0447\u0442\u043E \u0443\u043C\u0435\u043D\u044C\u0448\u0438\u0442 \u043A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u044B\u0445 \u043D\u0430\u0441\u0442\u0440\u043E\u0435\u043A. diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_ru.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_ru.properties new file mode 100644 index 0000000000..8fc19aed59 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_ru.properties @@ -0,0 +1,24 @@ +# 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. + +Module\ Builds=\u0421\u0431\u043E\u0440\u043A\u0430 \u043C\u043E\u0434\u0443\u043B\u0435\u0439 +noRun=\u043D\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u043B\u0441\u044F -- GitLab From aa74301b354b6689cf84c78ee00099990fc430a0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 140/158] Community-contributed localization for Slovak (sk) --- .../hudson/PluginManager/index_sk.properties | 25 +++++++++++++ .../hudson/PluginManager/tabBar_sk.properties | 26 ++++++++++++++ .../hudson/PluginManager/table_sk.properties | 26 ++++++++++++++ .../message_sk.properties | 23 ++++++++++++ .../model/AbstractBuild/index_sk.properties | 26 ++++++++++++++ .../AbstractBuild/sidepanel_sk.properties | 24 +++++++++++++ .../model/AbstractBuild/tasks_sk.properties | 28 +++++++++++++++ .../AbstractProject/sidepanel_sk.properties | 30 ++++++++++++++++ .../UserIdCause/description_sk.properties | 23 ++++++++++++ .../hudson/model/Job/index_sk.properties | 23 ++++++++++++ .../ListView/configure-entries_sk.properties | 33 +++++++++++++++++ .../index_sk.properties | 24 +++++++++++++ .../hudson/model/Run/configure_sk.properties | 26 ++++++++++++++ .../model/Run/confirmDelete_sk.properties | 24 +++++++++++++ .../hudson/model/Run/console_sk.properties | 24 +++++++++++++ .../hudson/model/Run/delete_sk.properties | 23 ++++++++++++ .../CoreUpdateMonitor/message_sk.properties | 23 ++++++++++++ .../hudson/model/View/configure_sk.properties | 25 +++++++++++++ .../hudson/model/View/newJob_sk.properties | 24 +++++++++++++ .../hudson/model/View/sidepanel_sk.properties | 29 +++++++++++++++ .../SecurityRealm/loginLink_sk.properties | 23 ++++++++++++ .../summary_sk.properties | 23 ++++++++++++ .../BuildButtonColumn/column_sk.properties | 23 ++++++++++++ .../DefaultViewsTabBar/viewTabs_sk.properties | 23 ++++++++++++ .../columnHeader_sk.properties | 23 ++++++++++++ .../LastDurationColumn/column_sk.properties | 23 ++++++++++++ .../columnHeader_sk.properties | 23 ++++++++++++ .../LastFailureColumn/column_sk.properties | 23 ++++++++++++ .../columnHeader_sk.properties | 23 ++++++++++++ .../LastSuccessColumn/column_sk.properties | 23 ++++++++++++ .../StatusColumn/columnHeader_sk.properties | 23 ++++++++++++ .../WeatherColumn/columnHeader_sk.properties | 23 ++++++++++++ .../widgets/HistoryWidget/entry_sk.properties | 23 ++++++++++++ .../widgets/HistoryWidget/index_sk.properties | 25 +++++++++++++ .../model/Jenkins/legend_sk.properties | 35 +++++++++++++++++++ .../jenkins/model/Jenkins/login_sk.properties | 26 ++++++++++++++ .../model/Jenkins/manage_sk.properties | 35 +++++++++++++++++++ .../resources/lib/form/helpArea_sk.properties | 23 ++++++++++++ .../form/repeatableDeleteButton_sk.properties | 23 ++++++++++++ .../lib/hudson/buildCaption_sk.properties | 24 +++++++++++++ .../lib/hudson/buildHealth_sk.properties | 23 ++++++++++++ .../lib/hudson/buildProgressBar_sk.properties | 24 +++++++++++++ .../hudson/editableDescription_sk.properties | 24 +++++++++++++ .../lib/hudson/executors_sk.properties | 27 ++++++++++++++ .../lib/hudson/iconSize_sk.properties | 23 ++++++++++++ .../lib/hudson/newFromList/form_sk.properties | 23 ++++++++++++ .../resources/lib/hudson/queue_sk.properties | 24 +++++++++++++ .../resources/lib/hudson/rssBar_sk.properties | 26 ++++++++++++++ .../lib/hudson/test-result_sk.properties | 25 +++++++++++++ .../resources/lib/layout/layout_sk.properties | 27 ++++++++++++++ .../MavenModuleSet/actions_sk.properties | 23 ++++++++++++ 51 files changed, 1268 insertions(+) create mode 100644 core/src/main/resources/hudson/PluginManager/index_sk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/tabBar_sk.properties create mode 100644 core/src/main/resources/hudson/PluginManager/table_sk.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_sk.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_sk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_sk.properties create mode 100644 core/src/main/resources/hudson/model/View/newJob_sk.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_sk.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sk.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/column_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_sk.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_sk.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_sk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties create mode 100644 core/src/main/resources/lib/form/helpArea_sk.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_sk.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_sk.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_sk.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_sk.properties create mode 100644 core/src/main/resources/lib/hudson/executors_sk.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_sk.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_sk.properties create mode 100644 core/src/main/resources/lib/hudson/queue_sk.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_sk.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_sk.properties create mode 100644 core/src/main/resources/lib/layout/layout_sk.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sk.properties diff --git a/core/src/main/resources/hudson/PluginManager/index_sk.properties b/core/src/main/resources/hudson/PluginManager/index_sk.properties new file mode 100644 index 0000000000..378f2b097f --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_sk.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. + +All=V\u0161etko +None=Ni\u010D +Select=Vybra\u0165 diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties b/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties new file mode 100644 index 0000000000..f2231b7154 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/tabBar_sk.properties @@ -0,0 +1,26 @@ +# 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. + +Advanced=Pokro\u010Dil\u00E9 +Available=Dostupn\u00E9 +Installed=In\u0161talovan\u00E9 +Updates=Aktualiz\u00E1cie diff --git a/core/src/main/resources/hudson/PluginManager/table_sk.properties b/core/src/main/resources/hudson/PluginManager/table_sk.properties new file mode 100644 index 0000000000..cf9901aa1e --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/table_sk.properties @@ -0,0 +1,26 @@ +# 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. + +Install=In\u0161talova\u0165 +Installed=In\u0161talovan\u00E1 ver. +Name=N\u00E1zov +Version=Verzia diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties new file mode 100644 index 0000000000..17be4fe5c7 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sk.properties @@ -0,0 +1,23 @@ +# 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. + +More\ Info=Viac inform\u00E1ci\u00ED diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties new file mode 100644 index 0000000000..2847f1c65d --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sk.properties @@ -0,0 +1,26 @@ +# 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=Zostavenie +Not\ yet\ determined=E\u0161te nezisten\u00E9 +Took=Trvalo +startedAgo=Spusten\u00E9 pred {0} diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties new file mode 100644 index 0000000000..2046107a16 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_sk.properties @@ -0,0 +1,24 @@ +# 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. + +Next\ Build=Nasleduj\u00FAce zostavenie +Previous\ Build=Predch\u00E1dzaj\u00FAce zostavenie diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties new file mode 100644 index 0000000000..2ddbca1527 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sk.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=Nasp\u00E4\u0165 na projekt +Changes=Zmeny +Console\ Output=Konzolov\u00FD v\u00FDstup +Edit\ Build\ Information=Upravi\u0165 info o zostaven\u00ED +Status=Stav +raw=nespracovan\u00FD diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties new file mode 100644 index 0000000000..826f284470 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_sk.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=Sp\u00E4\u0165 na Dashboard +Build\ scheduled= +Changes=Zmeny +Configure=Nastavi\u0165 +Status=Stav +Wipe\ Out\ Workspace=Vyma\u017E pracovn\u00FD priestor +Workspace=Pracovn\u00FD priestor +delete=Zma\u017E diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties new file mode 100644 index 0000000000..c4168b0d4a --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_sk.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_user=Spusten\u00E9 u\u017E\u00EDvate\u013Eom {1} diff --git a/core/src/main/resources/hudson/model/Job/index_sk.properties b/core/src/main/resources/hudson/model/Job/index_sk.properties new file mode 100644 index 0000000000..9759486e64 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_sk.properties @@ -0,0 +1,23 @@ +# 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=Zak\u00E1za\u0165 projekt diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties new file mode 100644 index 0000000000..b2b386a66d --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_sk.properties @@ -0,0 +1,33 @@ +# 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. + +Add\ Job\ Filter=Prida\u0165 filter \u00FAloh +Add\ column=Prida\u0165 st\u013Apec +All\ selected\ jobs=V\u0161etky vybran\u00E9 \u00FAlohy +Columns=St\u013Apce +Disabled\ jobs\ only=Len neakt\u00EDvne \u00FAlohy +Enabled\ jobs\ only=Len povolen\u00E9 \u00FAlohy +Job\ Filters=Filter \u00FAloh +Jobs=\u00DAlohy +Regular\ expression=Regul\u00E1rny v\u00FDraz +Status\ Filter=Filter stavu +Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Pou\u017Ei\u0165 regul\u00E1rny v\u00FDraz na zahrnutie \u00FAloh do poh\u013Eadu diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties new file mode 100644 index 0000000000..fec2755c6d --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/index_sk.properties @@ -0,0 +1,24 @@ +# 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=Zostavi\u0165 +description=Toto zostavenie vy\u017Eaduje parametre: diff --git a/core/src/main/resources/hudson/model/Run/configure_sk.properties b/core/src/main/resources/hudson/model/Run/configure_sk.properties new file mode 100644 index 0000000000..0a248c91e4 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_sk.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Popis +DisplayName=Zobrazovan\u00E9 meno +LOADING=Nahr\u00E1vanie +Save=Ulo\u017Ei\u0165 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties new file mode 100644 index 0000000000..50526dee7f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_sk.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=Ste si ist\u00FD, \u017Ee chcete zmaza\u0165 toto zostavenie? +Yes=\u00C1no diff --git a/core/src/main/resources/hudson/model/Run/console_sk.properties b/core/src/main/resources/hudson/model/Run/console_sk.properties new file mode 100644 index 0000000000..d4e553f7f6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_sk.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=Konzolov\u00FD v\u00FDstup +View\ as\ plain\ text=Pozrie\u0165 ako \u010Dist\u00FD text diff --git a/core/src/main/resources/hudson/model/Run/delete_sk.properties b/core/src/main/resources/hudson/model/Run/delete_sk.properties new file mode 100644 index 0000000000..7fb4969302 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=Zmaza\u0165 zostavenie diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties new file mode 100644 index 0000000000..bca3d05fab --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_sk.properties @@ -0,0 +1,23 @@ +# 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. + +NewVersionAvailable=Nov\u00E1 verzia Jenkins ({0}) je dostupn\u00E1 na stiahnutie (zoznam zmien). diff --git a/core/src/main/resources/hudson/model/View/configure_sk.properties b/core/src/main/resources/hudson/model/View/configure_sk.properties new file mode 100644 index 0000000000..d3cc27f5c4 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_sk.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. + +Description=Popis +Filter\ build\ queue=Filtrova\u0165 frontu zostaven\u00ED +Name=N\u00E1zov diff --git a/core/src/main/resources/hudson/model/View/newJob_sk.properties b/core/src/main/resources/hudson/model/View/newJob_sk.properties new file mode 100644 index 0000000000..eb0e233f96 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/newJob_sk.properties @@ -0,0 +1,24 @@ +# 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. + +CopyExisting=Skop\u00EDrova\u0165 existuj\u00FAcu \u00FAlohu +JobName=N\u00E1zov \u00FAlohy diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sk.properties b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties new file mode 100644 index 0000000000..d20dd3dacc --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_sk.properties @@ -0,0 +1,29 @@ +# 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\ History=Hist\u00F3ria zostaven\u00ED +Check\ File\ Fingerprint=Skontroluj odtla\u010Dok s\u00FAboru +Delete\ View=Zmaza\u0165 poh\u013Ead +Edit\ View=Upravi\u0165 poh\u013Ead +NewJob=Nov\u00FD {0} +People=\u013Dudia +Project\ Relationship=Vz\u0165ahy projektov diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties new file mode 100644 index 0000000000..ea474f83a9 --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sk.properties @@ -0,0 +1,23 @@ +# 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. + +login=Prihl\u00E1senie diff --git a/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sk.properties b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sk.properties new file mode 100644 index 0000000000..55886236e6 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AbstractTestResultAction/summary_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Show\ all\ failed\ tests=Uk\u00E1za\u0165 v\u0161etky ne\u00FAspe\u0161n\u00E9 testy diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties new file mode 100644 index 0000000000..5086b405f2 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=Napl\u00E1nuj build diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sk.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sk.properties new file mode 100644 index 0000000000..fa2fe7e914 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sk.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Nov\u00FD poh\u013Ead diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties new file mode 100644 index 0000000000..bf85037f66 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Doba trvania diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/column_sk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/column_sk.properties new file mode 100644 index 0000000000..2721d4c0f1 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/column_sk.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Neexistuje diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties new file mode 100644 index 0000000000..913d1dfad9 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Posledn\u00E9 chybn\u00E9 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties new file mode 100644 index 0000000000..0e8668de9d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_sk.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Neexisutje diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties new file mode 100644 index 0000000000..a18503410d --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Posledn\u00FD \u00FAspech diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_sk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sk.properties new file mode 100644 index 0000000000..2721d4c0f1 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sk.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=Neexistuje diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties new file mode 100644 index 0000000000..37716a7144 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sk.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=V\u00FDsledok posledn\u00E9ho buildu diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties new file mode 100644 index 0000000000..0b64e69d53 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Stav po\u010Dasia ukazuje zhrnut\u00FD stav posledn\u00FDch buildov diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sk.properties new file mode 100644 index 0000000000..3a8c6618a4 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konzolov\u00FD v\u00FDstup diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.properties new file mode 100644 index 0000000000..2d2f1223fb --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_sk.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. + +for\ all=pre v\u0161etky +for\ failures=pre zlyhania +trend=trend diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties new file mode 100644 index 0000000000..c430c961f8 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_sk.properties @@ -0,0 +1,35 @@ +# 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. + +blue=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9. +blue_anime=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9. Nov\u00E9 zostavenie pr\u00E1ve prebieha. +grey=Projekt nebol nikdy predt\u00FDm zostaven\u00FD, alebo je projekt zak\u00E1zan\u00FD. +grey_anime=Prv\u00E9 zostavenie projektu prebieha. +health-00to20=Zdravie projektu je 20% alebo menej. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. +health-21to40=Zdravie projektu je nad 20% a do 40%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. +health-41to60=Zdravie projektu je nad 40%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. +health-61to80=Zdravie projektu je nad 60%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. +health-81plus=Zdravie projektu je nad 80%. Presunut\u00EDm my\u0161i nad ikonu projektu sa zobraz\u00ED podrobnej\u0161ie vysvetlenie. +red=Posledn\u00E9 zostavenie zlyhalo. +red_anime=Posledn\u00E9 zostavenie zlyhalo. Nov\u00E9 zostavenie pr\u00E1ve prebieha. +yellow=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9 ale nestabiln\u00E9. Oby\u010Dajne to znamen\u00E1 chybu v testoch. +yellow_anime=Posledn\u00E9 zostavenie bolo \u00FAspe\u0161n\u00E9 ale nestabiln\u00E9. Nov\u00E9 zostavenie pr\u00E1ve prebieha. diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties new file mode 100644 index 0000000000..adbb24fedf --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_sk.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Heslo +Remember\ me\ on\ this\ computer=Zapam\u00E4ta\u0165 si ma na tomto po\u010D\u00EDta\u010Di +User=U\u017E\u00EDvate\u013E +login=Prihl\u00E1senie diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties new file mode 100644 index 0000000000..06a0f9b161 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sk.properties @@ -0,0 +1,35 @@ +# 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. + +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=Prida\u0165, odstr\u00E1ni\u0165, zak\u00E1za\u0165 alebo povoli\u0165 roz\u0161\u00EDrenia, ktor\u00E9 roz\u0161iruj\u00FA funk\u010Dnos\u0165 Jenkinsa +Configure\ System=Konfigurova\u0165 syst\u00E9m +Configure\ global\ settings\ and\ paths.=Konfigurova\u0165 glob\u00E1lne nastavenia a cesty +Jenkins\ CLI=Jenkins Klient +Load\ Statistics=Na\u010D\u00EDta\u0165 \u0161tatistiky +Manage\ Jenkins=Spravova\u0165 Jenkins +Manage\ Plugins=Spravova\u0165 doplnky +Prepare\ for\ Shutdown=Pripravi\u0165 na vypnutie (Shutdown) +Reload\ Configuration\ from\ Disk=Na\u010D\u00EDta\u0165 konfigur\u00E1ciu z disku +Script\ Console=Skriptovacia konzola +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Ukon\u010D\u00ED sp\u00FA\u0161\u0165anie nov\u00FDch zostaven\u00ED, tak\u017Ee syst\u00E9m sa m\u00F4\u017Ee bezpe\u010Dne vypn\u00FA\u0165. +System\ Information=Syst\u00E9mov\u00E9 inform\u00E1cie +System\ Log=Syst\u00E9mov\u00FD log-s\u00FAbor diff --git a/core/src/main/resources/lib/form/helpArea_sk.properties b/core/src/main/resources/lib/form/helpArea_sk.properties new file mode 100644 index 0000000000..77c114d92f --- /dev/null +++ b/core/src/main/resources/lib/form/helpArea_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Loading...=Nahr\u00E1vanie ... diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties new file mode 100644 index 0000000000..2f83d19dab --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Zmaza\u0165 diff --git a/core/src/main/resources/lib/hudson/buildCaption_sk.properties b/core/src/main/resources/lib/hudson/buildCaption_sk.properties new file mode 100644 index 0000000000..0f9a5b8d5b --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_sk.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=Priebeh +cancel=Preru\u0161i\u0165 diff --git a/core/src/main/resources/lib/hudson/buildHealth_sk.properties b/core/src/main/resources/lib/hudson/buildHealth_sk.properties new file mode 100644 index 0000000000..00c09df395 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Opis diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties b/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties new file mode 100644 index 0000000000..20c378adb1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_sk.properties @@ -0,0 +1,24 @@ +# 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. + +text=Spusten\u00E9 pred {0}
    Predpokladan\u00FD zost\u00E1vaj\u00FAci \u010Das: {1} +Predpokladan\u00FD zost\u00E1vaj\u00FAci \u010Das: {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_sk.properties b/core/src/main/resources/lib/hudson/editableDescription_sk.properties new file mode 100644 index 0000000000..c3c9811eb5 --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_sk.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=Pridaj popis +edit\ description=upravi\u0165 popis diff --git a/core/src/main/resources/lib/hudson/executors_sk.properties b/core/src/main/resources/lib/hudson/executors_sk.properties new file mode 100644 index 0000000000..19e2d784f9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_sk.properties @@ -0,0 +1,27 @@ +# 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=Stav sp\u00FA\u0161\u0165a\u010Da zostaven\u00ED +Building=Zostavujem +Idle=Vo\u013En\u00FD +Status=Stav +terminate\ this\ build=preru\u0161i\u0165 toto zostavenie diff --git a/core/src/main/resources/lib/hudson/iconSize_sk.properties b/core/src/main/resources/lib/hudson/iconSize_sk.properties new file mode 100644 index 0000000000..5917729e15 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=Ikona diff --git a/core/src/main/resources/lib/hudson/newFromList/form_sk.properties b/core/src/main/resources/lib/hudson/newFromList/form_sk.properties new file mode 100644 index 0000000000..6f9a4250f9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=Skop\u00EDrova\u0165 z diff --git a/core/src/main/resources/lib/hudson/queue_sk.properties b/core/src/main/resources/lib/hudson/queue_sk.properties new file mode 100644 index 0000000000..f77b73e4d1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_sk.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Fronta zostaven\u00ED +No\ builds\ in\ the\ queue.=\u017Diadne buildy v rade. diff --git a/core/src/main/resources/lib/hudson/rssBar_sk.properties b/core/src/main/resources/lib/hudson/rssBar_sk.properties new file mode 100644 index 0000000000..2511ec1500 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_sk.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=Legenda +for\ all=pre v\u0161etko +for\ failures=pre zlyhania +for\ just\ latest\ builds=pre posledn\u00E9 buildy diff --git a/core/src/main/resources/lib/hudson/test-result_sk.properties b/core/src/main/resources/lib/hudson/test-result_sk.properties new file mode 100644 index 0000000000..e9af453afb --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_sk.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. + +1failure=1 ne\u00FAspe\u0161n\u00FD {0} +multifailures=zlyhania {0} {1} +no\ failures=Bez zlyhania diff --git a/core/src/main/resources/lib/layout/layout_sk.properties b/core/src/main/resources/lib/layout/layout_sk.properties new file mode 100644 index 0000000000..be70f7f46a --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_sk.properties @@ -0,0 +1,27 @@ +# 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. + +ENABLE\ AUTO\ REFRESH=ZAPN\u00DA\u0164 AUTOMATICK\u00C9 OBNOVOVANIE +Page\ generated=Str\u00E1nka vygenerovan\u00E1 +logout=odhl\u00E1si\u0165 +search=h\u013Eada\u0165 +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sk.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sk.properties new file mode 100644 index 0000000000..7da39d8a47 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sk.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduly -- GitLab From 362b04eb3caacc1d3fbdd569d7ce22bc8b99b946 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 141/158] Community-contributed localization for Slovenian (sl) --- .../model/AbstractBuild/tasks_sl.properties | 1 + .../hudson/model/View/sidepanel_sl.properties | 25 +++++++++++++++++++ .../loginLink_sl.properties | 23 +++++++++++++++++ .../SecurityRealm/loginLink_sl.properties | 23 +++++++++++++++++ .../DefaultViewsTabBar/viewTabs_sl.properties | 23 +++++++++++++++++ .../columnHeader_sl.properties | 23 +++++++++++++++++ .../columnHeader_sl.properties | 23 +++++++++++++++++ .../columnHeader_sl.properties | 23 +++++++++++++++++ .../StatusColumn/columnHeader_sl.properties | 23 +++++++++++++++++ .../widgets/HistoryWidget/entry_sl.properties | 23 +++++++++++++++++ .../lib/hudson/executors_sl.properties | 24 ++++++++++++++++++ .../resources/lib/hudson/queue_sl.properties | 24 ++++++++++++++++++ .../resources/lib/hudson/rssBar_sl.properties | 23 +++++++++++++++++ .../resources/lib/layout/layout_sl.properties | 4 ++- .../MavenModuleSet/actions_sl.properties | 23 +++++++++++++++++ .../maven/MavenModuleSet/index_sl.properties | 23 +++++++++++++++++ 16 files changed, 330 insertions(+), 1 deletion(-) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_sl.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties create mode 100644 core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties create mode 100644 core/src/main/resources/lib/hudson/executors_sl.properties create mode 100644 core/src/main/resources/lib/hudson/queue_sl.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_sl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sl.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sl.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties index 88a01f971a..d050eea3f5 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sl.properties @@ -23,3 +23,4 @@ Back\ to\ Project=Nazaj na projekt Changes=Spremembe Console\ Output=Izpis konzole +Status=Stanje diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sl.properties b/core/src/main/resources/hudson/model/View/sidepanel_sl.properties new file mode 100644 index 0000000000..c35107e537 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_sl.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. + +Build\ History=Zgodovina prevajanja +NewJob=Nov +People=Uporabniki diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties new file mode 100644 index 0000000000..422806cf19 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/loginLink_sl.properties @@ -0,0 +1,23 @@ +# 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. + +sign\ up=prijavite diff --git a/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties new file mode 100644 index 0000000000..1b6ffe56fb --- /dev/null +++ b/core/src/main/resources/hudson/security/SecurityRealm/loginLink_sl.properties @@ -0,0 +1,23 @@ +# 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. + +login=prijavite v diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties new file mode 100644 index 0000000000..f07986f5f3 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sl.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=nov pogled diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sl.properties new file mode 100644 index 0000000000..729c277995 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=Trajanje diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties new file mode 100644 index 0000000000..91ca7580fd --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=Zadnji neuspeh diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties new file mode 100644 index 0000000000..1058a0cc0f --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sl.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=Zadnji upsesen diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties new file mode 100644 index 0000000000..e6db167659 --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_sl.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=status zadnjega builda diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties new file mode 100644 index 0000000000..fbfef7c04a --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sl.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Zapis konzole diff --git a/core/src/main/resources/lib/hudson/executors_sl.properties b/core/src/main/resources/lib/hudson/executors_sl.properties new file mode 100644 index 0000000000..7973db1277 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_sl.properties @@ -0,0 +1,24 @@ +# 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=Stanje +Status=Status diff --git a/core/src/main/resources/lib/hudson/queue_sl.properties b/core/src/main/resources/lib/hudson/queue_sl.properties new file mode 100644 index 0000000000..b279bfc086 --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_sl.properties @@ -0,0 +1,24 @@ +# 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\ Queue=Cakalna vrsta +No\ builds\ in\ the\ queue.=Cakalna vrsta je prazna diff --git a/core/src/main/resources/lib/hudson/rssBar_sl.properties b/core/src/main/resources/lib/hudson/rssBar_sl.properties new file mode 100644 index 0000000000..ce8c3b1fa6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_sl.properties @@ -0,0 +1,23 @@ +# 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. + +for\ failures=za neuspehe diff --git a/core/src/main/resources/lib/layout/layout_sl.properties b/core/src/main/resources/lib/layout/layout_sl.properties index 8b7492a672..4a93eacc8f 100644 --- a/core/src/main/resources/lib/layout/layout_sl.properties +++ b/core/src/main/resources/lib/layout/layout_sl.properties @@ -22,4 +22,6 @@ ENABLE\ AUTO\ REFRESH=SAMODEJNO OSVE\u017DUJ STRAN Page\ generated=Stran ustvarjena -searchBox.url=i\u0161\u010Di +logout=odjava +search=i\u0161\u010Di +searchBox.url= diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sl.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sl.properties new file mode 100644 index 0000000000..15784c40a9 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_sl.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=Moduli 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 new file mode 100644 index 0000000000..738c46f4d8 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_sl.properties @@ -0,0 +1,23 @@ +# 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 -- GitLab From da22f80251e9bac67481758c6f82cbd850c31172 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:49 -0800 Subject: [PATCH 142/158] Community-contributed localization for Serbian (sr) --- .../hudson/model/View/sidepanel_sr.properties | 24 +++++++++++++++++++ .../lib/hudson/executors_sr.properties | 23 ++++++++++++++++++ .../resources/lib/layout/layout_sr.properties | 23 ++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_sr.properties create mode 100644 core/src/main/resources/lib/hudson/executors_sr.properties create mode 100644 core/src/main/resources/lib/layout/layout_sr.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sr.properties b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties new file mode 100644 index 0000000000..b2bb3c618d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_sr.properties @@ -0,0 +1,24 @@ +# 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. + +NewJob=Novo {0) +People=Ljudi diff --git a/core/src/main/resources/lib/hudson/executors_sr.properties b/core/src/main/resources/lib/hudson/executors_sr.properties new file mode 100644 index 0000000000..d5da0303f9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_sr.properties @@ -0,0 +1,23 @@ +# 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=Status diff --git a/core/src/main/resources/lib/layout/layout_sr.properties b/core/src/main/resources/lib/layout/layout_sr.properties new file mode 100644 index 0000000000..34b9e220ec --- /dev/null +++ b/core/src/main/resources/lib/layout/layout_sr.properties @@ -0,0 +1,23 @@ +# 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. + +search=Trazi -- GitLab From 1a23e9cf88c1198a345140164d3a31ac3d4e477d Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 143/158] Community-contributed localization for sv_SE (sv_SE) --- .../AboutJenkins/index_sv_SE.properties | 24 +++++++++++++++ .../PluginManager/advanced_sv_SE.properties | 5 +++- .../PluginManager/index_sv_SE.properties | 3 ++ .../PluginManager/installed_sv_SE.properties | 30 +++++++++++++++++++ .../PluginManager/table_sv_SE.properties | 3 ++ .../OldDataMonitor/message_sv_SE.properties | 25 ++++++++++++++++ .../message_sv_SE.properties | 25 ++++++++++++++++ .../message_sv_SE.properties | 23 ++++++++++++++ .../config_sv_SE.properties | 24 +++++++++++++++ .../AbstractBuild/index_sv_SE.properties | 1 + .../AbstractBuild/tasks_sv_SE.properties | 1 + .../configure-common_sv_SE.properties | 23 ++++++++++++++ .../AbstractItem/delete_sv_SE.properties | 1 + .../model/AllView/noJob_sv_SE.properties | 24 +++++++++++++++ .../model/Computer/index_sv_SE.properties | 1 + .../model/ComputerSet/new_sv_SE.properties | 2 +- .../ComputerSet/sidepanel_sv_SE.properties | 1 + .../hudson/model/JDK/config_sv_SE.properties | 23 ++++++++++++++ .../model/Job/configure_sv_SE.properties | 26 ++++++++++++++++ .../hudson/model/Job/index_sv_SE.properties | 23 ++++++++++++++ .../configure-entries_sv_SE.properties | 5 ++++ .../ListView/newViewDetail_sv_SE.properties | 2 +- .../MyViewsProperty/config_sv_SE.properties | 24 +++++++++++++++ .../config_sv_SE.properties | 23 ++++++++++++++ .../model/Run/configure_sv_SE.properties | 24 +++++++++++++++ .../model/UpdateCenter/body_sv_SE.properties | 23 ++++++++++++++ .../UpdateCenter/sidepanel_sv_SE.properties | 1 + .../hudson/model/User/builds_sv_SE.properties | 23 ++++++++++++++ .../hudson/model/User/index_sv_SE.properties | 23 ++++++++++++++ .../model/User/sidepanel_sv_SE.properties | 1 + .../model/View/People/index_sv_SE.properties | 3 ++ .../hudson/model/View/builds_sv_SE.properties | 1 + .../model/View/configure_sv_SE.properties | 2 ++ .../model/View/sidepanel_sv_SE.properties | 3 +- .../DiskSpace/cause_sv_SE.properties | 23 ++++++++++++++ .../scm/SCM/project-changes_sv_SE.properties | 1 + .../config_sv_SE.properties | 28 +++++++++++++++++ .../config_sv_SE.properties | 23 ++++++++++++++ .../LDAPSecurityRealm/config_sv_SE.properties | 1 + .../PAMSecurityRealm/config_sv_SE.properties | 24 +++++++++++++++ .../config_sv_SE.properties | 23 ++++++++++++++ .../tasks/LogRotator/config_sv_SE.properties | 30 +++++++++++++++++++ .../config_sv_SE.properties | 23 ++++++++++++++ .../floatingBox_sv_SE.properties | 1 + .../config_sv_SE.properties | 24 +++++++++++++++ .../JDKInstaller/config_sv_SE.properties | 23 ++++++++++++++ .../ToolInstallation/global_sv_SE.properties | 26 ++++++++++++++++ .../BuildButtonColumn/column_sv_SE.properties | 2 +- .../myViewTabs_sv_SE.properties | 23 ++++++++++++++ .../viewTabs_sv_SE.properties | 23 ++++++++++++++ .../columnHeader_sv_SE.properties | 2 +- .../columnHeader_sv_SE.properties | 2 +- .../columnHeader_sv_SE.properties | 2 +- .../LastSuccessColumn/column_sv_SE.properties | 23 ++++++++++++++ .../columnHeader_sv_SE.properties | 2 +- .../entries_sv_SE.properties | 1 + .../HistoryWidget/entry_sv_SE.properties | 23 ++++++++++++++ .../model/Jenkins/configure_sv_SE.properties | 4 +++ .../model/Jenkins/downgrade_sv_SE.properties | 24 +++++++++++++++ .../Jenkins/fingerprintCheck_sv_SE.properties | 28 +++++++++++++++++ .../model/Jenkins/manage_sv_SE.properties | 5 ++-- .../model/Jenkins/newView_sv_SE.properties | 2 +- .../repeatableDeleteButton_sv_SE.properties | 23 ++++++++++++++ .../lib/hudson/buildCaption_sv_SE.properties | 3 +- .../hudson/buildListTable_sv_SE.properties | 1 + .../lib/hudson/executors_sv_SE.properties | 5 ++-- .../config-customWorkspace_sv_SE.properties | 23 ++++++++++++++ .../config-disableBuild_sv_SE.properties | 24 +++++++++++++++ .../config-quietPeriod_sv_SE.properties | 24 +++++++++++++++ .../lib/hudson/rssBar_sv_SE.properties | 2 +- .../thirdPartyLicenses_sv_SE.properties | 25 ++++++++++++++++ .../lib/layout/layout_sv_SE.properties | 5 ++-- .../configure-entries_sv_SE.properties | 28 +++++++++++++++++ .../MavenModuleSet/index_sv_SE.properties | 2 ++ 74 files changed, 1009 insertions(+), 18 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties create mode 100644 core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sv_SE.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/JDK/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_sv_SE.properties create mode 100644 core/src/main/resources/hudson/model/User/index_sv_SE.properties create mode 100644 core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/PAMSecurityRealm/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tools/InstallSourceProperty/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tools/JDKInstaller/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_sv_SE.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sv_SE.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sv_SE.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_sv_SE.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_sv_SE.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_sv_SE.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_sv_SE.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_sv_SE.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties b/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties new file mode 100644 index 0000000000..e452e576f6 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +about=Om Jenkins {0} +dependencies=Jenkins anv\u00E4nder sig av f\u00F6ljande tredjepartsbibliotek. diff --git a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties index 3af4e51efd..d07169c071 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_sv_SE.properties @@ -22,12 +22,15 @@ Check\ now=Kontrollera nu File=Fil +HTTP\ Proxy\ Configuration=HTTP proxy konfiguration Password=L\u00F6senord Port=Port Server=Server Submit=Skicka +URL=URL +Update\ Site=Updatera sajt Upload=Ladda upp Upload\ Plugin=Ladda upp insticksmodul User\ name=Anv\u00E4ndarnamn -lastUpdated=Information uppdaterad (0) sedan +lastUpdated=Information uppdaterad {0} sedan uploadtext=Du kan ladda upp en .hpi-fil f\u00F6r att installera en insticksmodul som ligger utanf\u00F6r den centrala instickskatalogen. diff --git a/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties index 911856f21a..8c51c89b57 100644 --- a/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/index_sv_SE.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=Alla +None=Inga +Select=V\u00E4lj UpdatePageDescription=Den h\u00E4r sidan visar uppdateringar p\u00E5 insticksmoduler som du anv\u00E4nder. diff --git a/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties new file mode 100644 index 0000000000..1cca70cbaf --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/installed_sv_SE.properties @@ -0,0 +1,30 @@ +# 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. + +Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u00C4ndringar tr\u00E4der i kraft n\u00E4r du startar om Jenkins +Enabled=Aktiverade +Name=Namn +Previously\ installed\ version=Tidigare installerad version +Restart\ Once\ No\ Jobs\ Are\ Running=Starta om n\u00E4r inga jobb k\u00F6rs +Uncheck\ to\ disable\ the\ plugin=Kryssa ur f\u00F6r att inaktivera pluginen +Version=Version +downgradeTo=Nergradera till {0} diff --git a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties index 9c9211a252..7496944b3b 100644 --- a/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties +++ b/core/src/main/resources/hudson/PluginManager/table_sv_SE.properties @@ -21,7 +21,10 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=Markera f\u00F6r att installera insticksmodul +Click\ this\ heading\ to\ sort\ by\ category=Klicka p\u00E5 denna rubrik f\u00F6r att sortera efter kategori +Inactive=Inaktiva Install=Installera +Installed=Installerade Name=Namn No\ updates=Det finns inga uppdateringar Version=Version diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.properties new file mode 100644 index 0000000000..ecb3f5d0ad --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_sv_SE.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. + +Dismiss=Avf\u00E4rda +Manage=Hantera +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=Du har data lagrat i ett \u00E4ldre format och/eller ol\u00E4sbart data. diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.properties new file mode 100644 index 0000000000..8c44d66f1c --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_sv_SE.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. + +Dismiss=Avf\u00E4rda +More\ Info=Mer Info +blurb=Det verkar som att dina reverse proxy inst\u00E4llningar \u00E4r trasiga. diff --git a/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sv_SE.properties b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sv_SE.properties new file mode 100644 index 0000000000..a85ae3e93f --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/TooManyJobsButNoView/message_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Create\ a\ view\ now=Skapa en vy diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sv_SE.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sv_SE.properties new file mode 100644 index 0000000000..495024ec73 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=Behandla texten som HTML och anv\u00E4nd den som den \u00E4r, utan att \u00F6vers\u00E4tta den +disableSyntaxHighlighting=Inaktivera syntaxmarkering diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties index abfdc19639..9f4a75f812 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_sv_SE.properties @@ -23,6 +23,7 @@ Build=Bygge Build\ number=Byggnummer Took=Tog +log=logg none=inga on=p\u00E5 startedAgo=Startad f\u00F6r {0} sedan diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties index a85c0195cb..1e37f20fe0 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_sv_SE.properties @@ -23,4 +23,5 @@ Back\ to\ Project=Tillbaka till Projektet Changes=F\u00F6r\u00E4ndringar Console\ Output=Konsollutskrift +Edit\ Build\ Information=\u00C4ndra bygginformation Status=Status diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties new file mode 100644 index 0000000000..07f26fda87 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +default.value=(Standard) diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties index 468a77c7cb..492820c2b5 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_sv_SE.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort projektet? Yes=Ja +blurb=\u00C4r du s\u00E4ker p\u00E5 att du vill ta bort {0} "{1}"? diff --git a/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties b/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties new file mode 100644 index 0000000000..db770249aa --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=V\u00E4lkommen till Jenkins! +newJob=B\u00F6rja med att skapa ett nytt jobb. diff --git a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties index 66bc0e208f..9ebd7efa25 100644 --- a/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/Computer/index_sv_SE.properties @@ -23,4 +23,5 @@ Labels:=Etiketter: None=Inga submit.not.temporarilyOffline=Markera noden som tillf\u00E4lligt ifr\u00E5nkopplad +submit.temporarilyOffline=Noden \u00E4r online igen title.projects_tied_on=Jobb knutna till {0} diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties b/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties index 7d9c6fe987..2b0026a5e3 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/new_sv_SE.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Copy\ Existing\ Node=Koperia existerande nod -Node\ name=Nodnamn +Node\ name=Namn p\u00E5 nod diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sv_SE.properties index 5120e82c20..7c4c5e7cb4 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_sv_SE.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=Tillbaka till instrumentpanelen Configure=Konfigurera New\ Node=Skapa ny nod Manage\ Jenkins=Hantera Jenkins diff --git a/core/src/main/resources/hudson/model/JDK/config_sv_SE.properties b/core/src/main/resources/hudson/model/JDK/config_sv_SE.properties new file mode 100644 index 0000000000..722de80222 --- /dev/null +++ b/core/src/main/resources/hudson/model/JDK/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Name=Namn diff --git a/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties new file mode 100644 index 0000000000..c4d288c367 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_sv_SE.properties @@ -0,0 +1,26 @@ +# 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. + +Description=Beskrivning +Discard\ Old\ Builds=Kasta gamla byggen +LOADING=LADDAR +name={0} namn diff --git a/core/src/main/resources/hudson/model/Job/index_sv_SE.properties b/core/src/main/resources/hudson/model/Job/index_sv_SE.properties new file mode 100644 index 0000000000..fa24e25c2e --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_sv_SE.properties @@ -0,0 +1,23 @@ +# 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=Inaktivera Projekt diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties index 52cbfdc736..6b65080e66 100644 --- a/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_sv_SE.properties @@ -21,7 +21,12 @@ # THE SOFTWARE. Add\ column=L\u00E4gg till kolumn +All\ selected\ jobs=Alla valda jobb Columns=Kolumner +Disabled\ jobs\ only=Bara inaktiverade jobb +Enabled\ jobs\ only=Bara aktiverade jobb +Job\ Filters=Jobbfilter Jobs=Jobb Regular\ expression=Regulj\u00E4rt uttryck +Status\ Filter=Statusfilter Use\ a\ regular\ expression\ to\ include\ jobs\ into\ the\ view=Anv\u00E4nd ett regulj\u00E4rt uttryck f\u00F6r att inkludera job i vyn diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties index 710cfa03dd..a6a706b13b 100644 --- a/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blurb=Visar jobb i en enkel list. Du kan v\u00E4lja vilka jobb som ska visas +blurb=Visar jobb i en enkel lista. Du kan v\u00E4lja vilka jobb som ska visas. diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties new file mode 100644 index 0000000000..b799fe8454 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Default\ View=Standardvy +description=Denna vy v\u00E4ljs som standard n\u00E4r du navigerar till anv\u00E4ndarens privata vyer diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties new file mode 100644 index 0000000000..9c8d2bc116 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ Parameter=L\u00E4gg till parameter diff --git a/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties b/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties new file mode 100644 index 0000000000..0bbf80aa1b --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Description=Beskrivning +Save=Spara diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties new file mode 100644 index 0000000000..d78e5339da --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +warning=Starta om Jenkins n\u00E4r installationen \u00E4r klar och inga jobb k\u00F6r diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sv_SE.properties index 5ddc4c871a..dff4fdef16 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_sv_SE.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Manage\ Plugins=Hantera insticksmoduler +Back\ to\ Dashboard=Tillbaka till Dashboarden Manage\ Jenkins=Hantera Jenkins diff --git a/core/src/main/resources/hudson/model/User/builds_sv_SE.properties b/core/src/main/resources/hudson/model/User/builds_sv_SE.properties new file mode 100644 index 0000000000..35fd1123ab --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +title=Byggen f\u00F6r {0} diff --git a/core/src/main/resources/hudson/model/User/index_sv_SE.properties b/core/src/main/resources/hudson/model/User/index_sv_SE.properties new file mode 100644 index 0000000000..4a0a7aa640 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins anv\u00E4ndarid diff --git a/core/src/main/resources/hudson/model/User/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/User/sidepanel_sv_SE.properties index 30d9b3299f..dce11eb758 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_sv_SE.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +My\ Views=Mina vyer People=Personer Builds=Bygghistorik Configure=Konfigurera diff --git a/core/src/main/resources/hudson/model/View/People/index_sv_SE.properties b/core/src/main/resources/hudson/model/View/People/index_sv_SE.properties index d2a292b57f..862103fddb 100644 --- a/core/src/main/resources/hudson/model/View/People/index_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/People/index_sv_SE.properties @@ -20,6 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All\ People=Alla Personer Last\ Active=Senast aktiv Name=Namn On=P\u00E5 +People=Personer +User\ Id=Anv\u00E4ndar-ID diff --git a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties index b72579c27b..7913771d70 100644 --- a/core/src/main/resources/hudson/model/View/builds_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/builds_sv_SE.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=Exportera som XML buildHistory=Bygghistorik f\u00F6r {0} diff --git a/core/src/main/resources/hudson/model/View/configure_sv_SE.properties b/core/src/main/resources/hudson/model/View/configure_sv_SE.properties index 16d4cbbbf5..68853ff526 100644 --- a/core/src/main/resources/hudson/model/View/configure_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/configure_sv_SE.properties @@ -21,4 +21,6 @@ # THE SOFTWARE. Description=Beskrivning +Filter\ build\ executors=Filtrera byggexekverare +Filter\ build\ queue=Filtrera byggk\u00F6 Name=Namn diff --git a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties index 42e7c4bc85..da2b68c986 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_sv_SE.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. Build\ History=Bygghistorik +Check\ File\ Fingerprint=Kontrollera fil-fingeravtryck Delete\ View=Ta bort vy Edit\ View=Redigera vy NewJob=Skapa nytt {0} People=Personer -Project\ Relationship=Jobbsamband +Project\ Relationship=Relaterade projekt diff --git a/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_sv_SE.properties b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_sv_SE.properties new file mode 100644 index 0000000000..5537bb8e4b --- /dev/null +++ b/core/src/main/resources/hudson/node_monitors/DiskSpaceMonitorDescriptor/DiskSpace/cause_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=Diskutrymme l\u00E5gt. Enbart {0}GB kvar. diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties index 53ddbc9a4d..5317a436a4 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_sv_SE.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ changes\ in\ any\ of\ the\ builds.=Inga f\u00F6r\u00E4ndringar i n\u00E5got bygge. detail=detalj diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_sv_SE.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_sv_SE.properties new file mode 100644 index 0000000000..80304b1fa3 --- /dev/null +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_sv_SE.properties @@ -0,0 +1,28 @@ +# 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. + +Add=L\u00E4gg till +Anonymous=Anonym +Remove\ user/group=Ta bort anv\u00E4ndare/grupp +Toggle\ all=V\u00E4xla alla +User/group=Anv\u00E4ndare/grupp +User/group\ to\ add=Anv\u00E4ndare/grupp att l\u00E4gga till diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties new file mode 100644 index 0000000000..35ee53703a --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Allow\ users\ to\ sign\ up=Till\u00E5t anv\u00E4ndare att anm\u00E4la sig diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_sv_SE.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_sv_SE.properties index c605144586..c9cdcfbf78 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_sv_SE.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_sv_SE.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Server=Server +User\ search\ filter=Anv\u00E4nd s\u00F6kfilter diff --git a/core/src/main/resources/hudson/security/PAMSecurityRealm/config_sv_SE.properties b/core/src/main/resources/hudson/security/PAMSecurityRealm/config_sv_SE.properties new file mode 100644 index 0000000000..ad1b66fad6 --- /dev/null +++ b/core/src/main/resources/hudson/security/PAMSecurityRealm/config_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Service\ Name=Servicenamn +Test=Test diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties new file mode 100644 index 0000000000..1852c8e80a --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=Aktivera kompatibilitet f\u00F6r proxy diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties new file mode 100644 index 0000000000..cccae0ab35 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_sv_SE.properties @@ -0,0 +1,30 @@ +# 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. + +Days\ to\ keep\ artifacts=Dagar att spara artifacts +Days\ to\ keep\ builds=Dagar att spara byggen +Max\ #\ of\ builds\ to\ keep=Max # av byggen att spara +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=Max # av byggen att spara med artifacts +if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept=om inte tomt, kommer artifakter som \u00E4r \u00E4ldre \u00E4n antal dagar som anges att raderas, men loggar, historik, rapporter, etc f\u00F6r bygget beh\u00E5lls +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=om inte tom, s\u00E5 sparas bygghistoriken bara i s\u00E5 h\u00E4r m\u00E5nga dagar +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=om inte tom, s\u00E5 sparas bara s\u00E5 h\u00E4r m\u00E5nga byggen i bygghistoriken +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=om inte tomt, kommer endast upp till angivet antal byggens artifakter beh\u00E5llas diff --git a/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_sv_SE.properties b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_sv_SE.properties new file mode 100644 index 0000000000..9bba4324e8 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Jobs\ to\ aggregate=Jobb att aggregera diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sv_SE.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sv_SE.properties index d3829e5abf..7d776b2ae1 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sv_SE.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_sv_SE.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Test\ Result\ Trend=Testresultat trend enlarge=f\u00F6rstora just\ show\ failures=visa endast fallerade diff --git a/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sv_SE.properties b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sv_SE.properties new file mode 100644 index 0000000000..80b78d8b9c --- /dev/null +++ b/core/src/main/resources/hudson/tools/InstallSourceProperty/config_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Add\ Installer=L\u00E4gg till installerare +Delete\ Installer=Ta bort installerare diff --git a/core/src/main/resources/hudson/tools/JDKInstaller/config_sv_SE.properties b/core/src/main/resources/hudson/tools/JDKInstaller/config_sv_SE.properties new file mode 100644 index 0000000000..5d57ff13d7 --- /dev/null +++ b/core/src/main/resources/hudson/tools/JDKInstaller/config_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Version=Version diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_sv_SE.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_sv_SE.properties new file mode 100644 index 0000000000..99d64cfc3c --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_sv_SE.properties @@ -0,0 +1,26 @@ +# 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. + +description=Lista p\u00E5 {0} installationer p\u00E5 detta system +label.add=L\u00E4gg till {0} +label.delete=Ta bort {0} +title={0} installationer diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties index 63e8ce52cd..32556ab8f4 100644 --- a/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Schedule\ a\ build=Schedulera ett bygg +Schedule\ a\ build=Schemal\u00E4gg ett bygge diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sv_SE.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sv_SE.properties new file mode 100644 index 0000000000..3c19e7152f --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Ny Vy diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sv_SE.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sv_SE.properties new file mode 100644 index 0000000000..ba96b7082e --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Ny vy diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sv_SE.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sv_SE.properties index 7dacbbc93c..494ab5dd46 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sv_SE.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=Tid +Last\ Duration=Senast l\u00E4ngd diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sv_SE.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sv_SE.properties index 59861245f0..1a108ad7b0 100644 --- a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sv_SE.properties +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Failure=Senaste misslyckande +Last\ Failure=Senast misslyckade diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sv_SE.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sv_SE.properties index 122593aeb2..2d1e0ddebe 100644 --- a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sv_SE.properties +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Success=Senaste lyckade +Last\ Success=Senast lyckade diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_sv_SE.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sv_SE.properties new file mode 100644 index 0000000000..e28f93a3b6 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=I/T diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sv_SE.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sv_SE.properties index 904b613a6b..e844c213a0 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sv_SE.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=V\u00E4derrapport som visar sammanlagd status f\u00F6r senaste byggen +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=V\u00E4derrapport \u00F6ver sammanlagt status f\u00F6r de senaste byggena diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties index 890b425bab..d4bd376631 100644 --- a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_sv_SE.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. cancel\ this\ build=Avbryt detta bygge +pending=P\u00E5g\u00E5ende diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sv_SE.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sv_SE.properties new file mode 100644 index 0000000000..f3a09e8aa0 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsolutskrift diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties index 2b691bc376..cfb7db95a7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_sv_SE.properties @@ -23,5 +23,9 @@ Default\ view=Standardvy Disable=Inaktivera Global\ properties=Globala egenskaper +Home\ directory=Hemkatalog +LOADING=LADDAR Labels=Etiketter +System\ Message=Systemmeddelande +Workspace\ Root\ Directory=Rotkatalog f\u00F6r workspace statsBlurb=Hj\u00E4lp g\u00F6ra Jenkins b\u00E4ttre genom att skicka anonyma anv\u00E4ndningsstatistik och kraschrapporter till Jenkins projektet. diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties new file mode 100644 index 0000000000..5f27e8b93a --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=\u00C5terst\u00E4ll den tidigare versionen av Jenkins +buttonText=Nedgradera till {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties new file mode 100644 index 0000000000..2e5cdadd73 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_sv_SE.properties @@ -0,0 +1,28 @@ +# 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. + +Check=Kontrollera +Check\ File\ Fingerprint=Kontrollera fil-fingeravtryck +File\ to\ check=Fil som ska kontrolleras +description=Har du en JAR-fil men vet inte vilken version den har?
    Ta reda p\u00E5 det genom att kontrollera dess fingeravtryck i Jenkins databas. +fingerprint.link=https://wiki.jenkins-ci.org/display/JENKINS/Fingerprint +more\ details=mer detaljer diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties index b1e643dce6..69c5700512 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_sv_SE.properties @@ -27,6 +27,7 @@ Configure\ global\ settings\ and\ paths.=Konfigurera globala inst\u00E4llningar Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=Kasta bort all data i minnet och ladda allt fr\u00E5n filsystemet. Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=Visar diverse milj\u00F6information f\u00F6r att underl\u00E4tta fels\u00F6kning. Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=K\u00F6r godtyckliga skript f\u00F6r administration/fels\u00F6kning/diagnostik. +Jenkins\ CLI=Jenkins CLI JenkinsCliText=Kom \u00E5t/hantera Jenkins ifr\u00E5n ditt skal, eller fr\u00E5n ditt skript. Load\ Statistics=Belastningstatistik LoadStatisticsText=Kontrollera resursutnyttjandet och se om du beh\u00F6ver fler datorer till dina byggen. @@ -34,9 +35,9 @@ Manage\ Jenkins=Hantera Jenkins Manage\ Nodes=Hantera noder Manage\ Plugins=Hantera insticksmoduler Prepare\ for\ Shutdown=F\u00F6rbered f\u00F6r nedst\u00E4ngning -Reload\ Configuration\ from\ Disk=L\u00E4s om konfigurationen ifr\u00E5n disk. +Reload\ Configuration\ from\ Disk=L\u00E4s om konfigurationen fr\u00E5n disk. Script\ Console=Skriptkonsoll -Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Sluta starta ny byggen, s\u00E5 att systemet sedan kan st\u00E4ngas s\u00E4kert. +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=Sluta starta nya byggen, s\u00E5 att systemet sedan kan st\u00E4ngas s\u00E4kert. System\ Information=Systeminformation System\ Log=Systemlogg SystemLogText=Systemloggen f\u00E5ngar utskrift fr\u00E5n java.util.logging relaterat till Jenkins. diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties index 4c359f4538..64e803576f 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_sv_SE.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -View\ name=Vynamn +View\ name=Namn p\u00E5 vy diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_sv_SE.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_sv_SE.properties new file mode 100644 index 0000000000..4949758ba5 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=Radera diff --git a/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties b/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties index 8ae0eb2778..0d7478ab3a 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_sv_SE.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -cancel=avbryt +Progress=F\u00F6rlopp +cancel=Avbryt diff --git a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties index e08f0db85d..8c9a10e78e 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_sv_SE.properties @@ -22,4 +22,5 @@ Build=Bygge Time\ Since=Datum +Console\ output=Konsolutskrift Status=Status diff --git a/core/src/main/resources/lib/hudson/executors_sv_SE.properties b/core/src/main/resources/lib/hudson/executors_sv_SE.properties index faec19f65c..094893a728 100644 --- a/core/src/main/resources/lib/hudson/executors_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/executors_sv_SE.properties @@ -22,8 +22,9 @@ Build\ Executor\ Status=Status f\u00F6r Byggexekverare Building=Bygger -Idle=Inaktiv +Idle=Ledig +Master=Master Offline=Offline Status=Status -offline=offline +offline=ej tillg\u00E4nglig terminate\ this\ build=avbryt bygget diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties new file mode 100644 index 0000000000..778ef2d23a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_sv_SE.properties @@ -0,0 +1,23 @@ +# 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. + +Use\ custom\ workspace=Anv\u00E4nd custom arbetsyta diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties new file mode 100644 index 0000000000..f64d1bb98c --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_sv_SE.properties @@ -0,0 +1,24 @@ +# 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\ Build=Inaktivera bygge +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=Inga nya byggen kommer att k\u00F6ras innan projektet \u00E4r \u00E5teraktiverat. diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_sv_SE.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sv_SE.properties new file mode 100644 index 0000000000..8d9508ff31 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_sv_SE.properties @@ -0,0 +1,24 @@ +# 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. + +Number\ of\ seconds=Antal sekunder +Quiet\ period=Tyst period diff --git a/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties b/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties index 5568c7112f..1a8af8525b 100644 --- a/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties +++ b/core/src/main/resources/lib/hudson/rssBar_sv_SE.properties @@ -23,4 +23,4 @@ Legend=F\u00F6rklaring for\ all=f\u00F6r alla for\ failures=f\u00F6r misslyckade -for\ just\ latest\ builds=f\u00F6r senaste byggen +for\ just\ latest\ builds=f\u00F6r enbart senaste byggena diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_sv_SE.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sv_SE.properties new file mode 100644 index 0000000000..57763cd069 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_sv_SE.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. + +License=Licens +Maven\ ID=Maven ID +Name=Namn diff --git a/core/src/main/resources/lib/layout/layout_sv_SE.properties b/core/src/main/resources/lib/layout/layout_sv_SE.properties index fe0de2b007..d02e1096c3 100644 --- a/core/src/main/resources/lib/layout/layout_sv_SE.properties +++ b/core/src/main/resources/lib/layout/layout_sv_SE.properties @@ -21,8 +21,9 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=Avaktivera automatisk upppdatering -ENABLE\ AUTO\ REFRESH=AKTIVERA AUTOMATISK UPPDATERING +ENABLE\ AUTO\ REFRESH=AKTIVERA AUTOMATISK SIDUPPDATERING Page\ generated=Sidan skapades -logout=logga ut +logout=Logga ut +search=s\u00F6k searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_sv_SE.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_sv_SE.properties new file mode 100644 index 0000000000..f45ff2e761 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_sv_SE.properties @@ -0,0 +1,28 @@ +# 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=Bygge +Disable\ automatic\ artifact\ archiving=Inaktivera automatisk artifact-arkivering +Goals\ and\ options=M\u00E5l och alternativ +Incremental\ build\ -\ only\ build\ changed\ modules=Inkrementellt bygge - bygg bara f\u00F6r\u00E4ndrade moduler +Maven\ Version=Maven version +Root\ POM=Rot-POM 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 01f70ac6b7..f3c18e4b27 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,6 +20,8 @@ # 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 Workspace=Arbetsyta -- GitLab From ff7ae03cc8962722221b9e997e7252cb7106412b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 144/158] Community-contributed localization for Telugu (te) --- .../hudson/model/View/sidepanel_te.properties | 24 +++++++++++++++++++ .../lib/hudson/buildProgressBar_te.properties | 23 ++++++++++++++++++ .../lib/hudson/executors_te.properties | 23 ++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_te.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_te.properties create mode 100644 core/src/main/resources/lib/hudson/executors_te.properties diff --git a/core/src/main/resources/hudson/model/View/sidepanel_te.properties b/core/src/main/resources/hudson/model/View/sidepanel_te.properties new file mode 100644 index 0000000000..7d5a360ff0 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_te.properties @@ -0,0 +1,24 @@ +# 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. + +NewJob=Kothavi {0} +People=Janalu diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_te.properties b/core/src/main/resources/lib/hudson/buildProgressBar_te.properties new file mode 100644 index 0000000000..a1911c9e76 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_te.properties @@ -0,0 +1,23 @@ +# 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. + +text=Modalayyi {0} ayyindi
    Migilina Samayamu: {1} diff --git a/core/src/main/resources/lib/hudson/executors_te.properties b/core/src/main/resources/lib/hudson/executors_te.properties new file mode 100644 index 0000000000..d1cf750d1d --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_te.properties @@ -0,0 +1,23 @@ +# 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=Ekantham -- GitLab From 97731645f76dadd5879832734d4a82f3fade1ae1 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 145/158] Community-contributed localization for Turkish (tr) --- .../model/AbstractBuild/tasks_tr.properties | 27 +++++++++++++++++++ .../AbstractProject/sidepanel_tr.properties | 1 + .../hudson/model/Job/index_tr.properties | 1 + .../DefaultViewsTabBar/viewTabs_tr.properties | 23 ++++++++++++++++ .../StatusColumn/columnHeader_tr.properties | 2 +- .../WeatherColumn/columnHeader_tr.properties | 2 +- .../widgets/HistoryWidget/entry_tr.properties | 23 ++++++++++++++++ .../model/Jenkins/loginError_tr.properties | 1 + .../lib/hudson/buildCaption_tr.properties | 2 +- .../lib/hudson/buildHealth_tr.properties | 23 ++++++++++++++++ .../lib/hudson/executors_tr.properties | 2 +- .../resources/lib/hudson/rssBar_tr.properties | 1 + .../resources/lib/layout/layout_tr.properties | 3 +++ 13 files changed, 107 insertions(+), 4 deletions(-) create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_tr.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_tr.properties diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties new file mode 100644 index 0000000000..e955de8d6f --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_tr.properties @@ -0,0 +1,27 @@ +# 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. + +Back\ to\ Project=Projeye D\u00F6n +Changes=De\u011Fi\u015Fiklikler +Console\ Output=Konsol \u00C7\u0131kt\u0131s\u0131 +Edit\ Build\ Information=Yap\u0131land\u0131rma Bilgisini G\u00FCncelle +Status=Durum diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties index 08067887da..bd5c3ca532 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_tr.properties @@ -24,6 +24,7 @@ delete={0} sil Back\ to\ Dashboard=Kontrol Merkezi''ne D\u00f6n Status=Durum Changes=De\u011fi\u015fiklikler +Wipe\ Out\ Workspace=\u00C7al\u0131\u015Fma alan\u0131n\u0131 sil Workspace=\u00c7al\u0131\u015fma Alan\u0131 Configure=Konfig\u00fcrasyonu D\u00fczenle Build\ scheduled=Yap\u0131land\u0131rma planland\u0131 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 739a4b0da5..847bc0fe3c 100644 --- a/core/src/main/resources/hudson/model/Job/index_tr.properties +++ b/core/src/main/resources/hudson/model/Job/index_tr.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Permalinks=Permalinks +Disable\ Project=Projeyi 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 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties new file mode 100644 index 0000000000..cdafe99f96 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_tr.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=Yeni G\u00F6r\u00FCn\u00FCm diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties index beacfc85fb..02603ead64 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build= +Status\ of\ the\ last\ build=Son yap\u0131land\u0131rma durumu diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties index 9bfb311999..3bddcfe659 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_tr.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds= +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=Son yap\u0131land\u0131rmalar\u0131n genel durumu diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_tr.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_tr.properties new file mode 100644 index 0000000000..abe6931a96 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=Konsol \u00C7\u0131kt\u0131s\u0131 diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties index dd58fb342a..8145edd56b 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_tr.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=E\u011Fer bir sistem y\u00F6neticisi vard\u0131r ve bu bir yap\u0131land\u0131rma sorunu oldu\u011Fundan \u015F\u00FCpheleniyorsan\u0131z, sunucu konsolu \u00E7\u0131k\u0131\u015F\u0131 Daha fazla bilgi i\u00E7in bkz Invalid\ login\ information.\ Please\ try\ again.=Ge\u00e7ersiz\ giri\u015f\ bilgisi.\ L\u00fctfen\ tekrar\ deneyiniz. Try\ again=Tekrar\ deneyiniz diff --git a/core/src/main/resources/lib/hudson/buildCaption_tr.properties b/core/src/main/resources/lib/hudson/buildCaption_tr.properties index b5a652449c..d25ff741ab 100644 --- a/core/src/main/resources/lib/hudson/buildCaption_tr.properties +++ b/core/src/main/resources/lib/hudson/buildCaption_tr.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Progress=\u00d6lerleme +Progress=\u0130lerleme cancel=iptal diff --git a/core/src/main/resources/lib/hudson/buildHealth_tr.properties b/core/src/main/resources/lib/hudson/buildHealth_tr.properties new file mode 100644 index 0000000000..dc1972cd9e --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_tr.properties @@ -0,0 +1,23 @@ +# 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. + +Description=Tan\u0131m diff --git a/core/src/main/resources/lib/hudson/executors_tr.properties b/core/src/main/resources/lib/hudson/executors_tr.properties index 51c79bc8d1..1fe35edc2a 100644 --- a/core/src/main/resources/lib/hudson/executors_tr.properties +++ b/core/src/main/resources/lib/hudson/executors_tr.properties @@ -22,7 +22,7 @@ Build\ Executor\ Status=Yap\u0131land\u0131r\u0131c\u0131n\u0131n Durumu Status=Durum -Master= +Master=Ana offline=\u00e7evrim d\u0131\u015f\u0131 Dead=\u00d6l\u00fc Idle=Beklemede diff --git a/core/src/main/resources/lib/hudson/rssBar_tr.properties b/core/src/main/resources/lib/hudson/rssBar_tr.properties index 07db58df23..bdfd0d06bb 100644 --- a/core/src/main/resources/lib/hudson/rssBar_tr.properties +++ b/core/src/main/resources/lib/hudson/rssBar_tr.properties @@ -23,3 +23,4 @@ Legend=G\u00f6sterge for\ all=T\u00fcm\u00fc için for\ failures=T\u00fcm\ ba\u015far\u0131s\u0131z\ durumlar\ i\u00e7in +for\ just\ latest\ builds=sadece yeni yap\u0131land\u0131rma i\u00E7in diff --git a/core/src/main/resources/lib/layout/layout_tr.properties b/core/src/main/resources/lib/layout/layout_tr.properties index a8b096cf5e..11ac8f39b7 100644 --- a/core/src/main/resources/lib/layout/layout_tr.properties +++ b/core/src/main/resources/lib/layout/layout_tr.properties @@ -20,7 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +search=arama +search searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box +Page\ generated=Sayfa olu\u015Fturuldu logout=\u00E7\u0131k\u0131\u015F DISABLE\ AUTO\ REFRESH=Otomatik\ Yenilemeyi\ Kapat ENABLE\ AUTO\ REFRESH=Otomatik\ Yenilemeyi\ A\u00E7 -- GitLab From 4864278579720dc73ab98ca94d81212c14897a6b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 146/158] Community-contributed localization for Ukrainian (uk) --- .../message_uk.properties | 24 +++++++++++++++ .../model/AbstractBuild/changes_uk.properties | 23 ++++++++++++++ .../model/AbstractBuild/index_uk.properties | 28 +++++++++++++++++ .../AbstractBuild/sidepanel_uk.properties | 24 +++++++++++++++ .../model/AbstractBuild/tasks_uk.properties | 28 +++++++++++++++++ .../model/AbstractItem/delete_uk.properties | 24 +++++++++++++++ .../AbstractProject/sidepanel_uk.properties | 30 +++++++++++++++++++ .../hudson/model/AllView/noJob_uk.properties | 24 +++++++++++++++ .../UpstreamCause/description_uk.properties | 23 ++++++++++++++ .../UserIdCause/description_uk.properties | 23 ++++++++++++++ .../hudson/model/Job/permalinks_uk.properties | 23 ++++++++++++++ .../ParametersAction/index_uk.properties | 24 +++++++++++++++ .../Permalink/link_uk.properties | 23 ++++++++++++++ .../model/Run/confirmDelete_uk.properties | 24 +++++++++++++++ .../hudson/model/Run/console_uk.properties | 24 +++++++++++++++ .../hudson/model/Run/delete_uk.properties | 23 ++++++++++++++ .../ConnectionCheckJob/row_uk.properties | 23 ++++++++++++++ .../CoreUpdateMonitor/message_uk.properties | 23 ++++++++++++++ .../Installing/status_uk.properties | 23 ++++++++++++++ .../DownloadJob/Pending/status_uk.properties | 23 ++++++++++++++ .../hudson/model/User/builds_uk.properties | 23 ++++++++++++++ .../hudson/model/User/index_uk.properties | 23 ++++++++++++++ .../hudson/model/User/sidepanel_uk.properties | 27 +++++++++++++++++ .../hudson/model/View/sidepanel_uk.properties | 28 +++++++++++++++++ .../EmptyChangeLogSet/digest_uk.properties | 23 ++++++++++++++ .../index_uk.properties | 23 ++++++++++++++ .../sidepanel_uk.properties | 25 ++++++++++++++++ .../floatingBox_uk.properties | 26 ++++++++++++++++ .../BuildButtonColumn/column_uk.properties | 23 ++++++++++++++ .../DefaultViewsTabBar/viewTabs_uk.properties | 23 ++++++++++++++ .../columnHeader_uk.properties | 23 ++++++++++++++ .../columnHeader_uk.properties | 23 ++++++++++++++ .../LastFailureColumn/column_uk.properties | 23 ++++++++++++++ .../columnHeader_uk.properties | 23 ++++++++++++++ .../LastSuccessColumn/column_uk.properties | 23 ++++++++++++++ .../StatusColumn/columnHeader_uk.properties | 23 ++++++++++++++ .../WeatherColumn/columnHeader_uk.properties | 23 ++++++++++++++ .../BuildHistoryWidget/entries_uk.properties | 24 +++++++++++++++ .../widgets/HistoryWidget/entry_uk.properties | 23 ++++++++++++++ .../widgets/HistoryWidget/index_uk.properties | 26 ++++++++++++++++ .../Jenkins/fingerprintCheck_uk.properties | 27 +++++++++++++++++ .../model/Jenkins/manage_uk.properties | 9 ++++++ .../lib/hudson/buildCaption_uk.properties | 24 +++++++++++++++ .../lib/hudson/buildHealth_uk.properties | 23 ++++++++++++++ .../lib/hudson/buildListTable_uk.properties | 26 ++++++++++++++++ .../lib/hudson/buildProgressBar_uk.properties | 23 ++++++++++++++ .../hudson/editableDescription_uk.properties | 24 +++++++++++++++ .../lib/hudson/executors_uk.properties | 29 ++++++++++++++++++ .../lib/hudson/iconSize_uk.properties | 23 ++++++++++++++ .../resources/lib/hudson/node_uk.properties | 23 ++++++++++++++ .../project/upstream-downstream_uk.properties | 24 +++++++++++++++ .../resources/lib/hudson/queue_uk.properties | 26 ++++++++++++++++ .../resources/lib/hudson/rssBar_uk.properties | 26 ++++++++++++++++ .../lib/hudson/test-result_uk.properties | 24 +++++++++++++++ .../resources/lib/layout/layout_uk.properties | 5 ++++ .../lib/layout/main-panel_uk.properties | 23 ++++++++++++++ .../MavenModuleSet/actions_uk.properties | 24 +++++++++++++++ .../maven/MavenModuleSet/index_uk.properties | 27 +++++++++++++++++ .../MavenModuleSetBuild/main_uk.properties | 24 +++++++++++++++ 59 files changed, 1396 insertions(+) create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties create mode 100644 core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_uk.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties create mode 100644 core/src/main/resources/hudson/model/Job/permalinks_uk.properties create mode 100644 core/src/main/resources/hudson/model/ParametersAction/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/console_uk.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_uk.properties create mode 100644 core/src/main/resources/hudson/model/User/index_uk.properties create mode 100644 core/src/main/resources/hudson/model/User/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/model/View/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_uk.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties create mode 100644 core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_uk.properties create mode 100644 core/src/main/resources/lib/hudson/buildHealth_uk.properties create mode 100644 core/src/main/resources/lib/hudson/buildListTable_uk.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_uk.properties create mode 100644 core/src/main/resources/lib/hudson/editableDescription_uk.properties create mode 100644 core/src/main/resources/lib/hudson/executors_uk.properties create mode 100644 core/src/main/resources/lib/hudson/iconSize_uk.properties create mode 100644 core/src/main/resources/lib/hudson/node_uk.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties create mode 100644 core/src/main/resources/lib/hudson/queue_uk.properties create mode 100644 core/src/main/resources/lib/hudson/rssBar_uk.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_uk.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_uk.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_uk.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_uk.properties diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties new file mode 100644 index 0000000000..6969a87f4c --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_uk.properties @@ -0,0 +1,24 @@ +# 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. + +More\ Info=\u0411\u0456\u043B\u044C\u0448\u0435 \u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457 +blurb=\u0421\u0445\u043E\u0436\u0435, \u0449\u043E \u0432\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043E\u0431\u0435\u0440\u043D\u0435\u043D\u043E\u0433\u043E \u043F\u0440\u043E\u043A\u0441\u0456 \u043F\u043E\u043B\u0430\u043C\u0430\u043D\u043E. diff --git a/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties new file mode 100644 index 0000000000..809022445a --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/changes_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Changes=\u0417\u043C\u0456\u043D\u0438 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties new file mode 100644 index 0000000000..1ce42070d4 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_uk.properties @@ -0,0 +1,28 @@ +# 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=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Build\ Artifacts=\u0410\u0440\u0442\u0435\u0444\u0430\u043A\u0442\u0438 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 +Not\ yet\ determined=\u0429\u0435 \u043D\u0435 \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E +Took=\u0417\u0430\u0439\u043D\u044F\u043B\u043E +on=\u043D\u0430 +startedAgo=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties new file mode 100644 index 0000000000..51ca607be9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Next\ Build=\u041D\u0430\u0441\u0442\u0443\u043F\u043D\u0430 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Previous\ Build=\u041F\u043E\u043F\u0435\u0440\u0435\u0434\u043D\u044F \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties new file mode 100644 index 0000000000..2685cf9cb5 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_uk.properties @@ -0,0 +1,28 @@ +# 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. + +Back\ to\ Project=\u041D\u0430\u0437\u0430\u0434 \u0434\u043E \u043F\u0440\u043E\u0435\u043A\u0442\u0443 +Changes=\u0417\u043C\u0456\u043D\u0438 +Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +Edit\ Build\ Information=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044E \u0437\u0431\u0456\u0440\u043A\u0438 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +raw=\u043D\u0435\u0444\u043E\u0440\u043C\u0430\u0442\u043E\u0432\u0430\u043D\u0438\u0439 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties new file mode 100644 index 0000000000..9f81280cc6 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Yes=\u0422\u0430\u043A +blurb=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties new file mode 100644 index 0000000000..e5dd54bdf9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_uk.properties @@ -0,0 +1,30 @@ +# 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. + +Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044C \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F +Build\ scheduled=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 \u0437\u0430\u043F\u043B\u0430\u043D\u043E\u0432\u0430\u043D\u043E +Changes=\u0417\u043C\u0456\u043D\u0438 +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Wipe\ Out\ Workspace=\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0420\u043E\u0431\u043E\u0447\u0456 \u0424\u0430\u0439\u043B\u0438 +Workspace=\u0420\u043E\u0431\u043E\u0447\u0456 \u0444\u0430\u0439\u043B\u0438 +delete=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_uk.properties b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties new file mode 100644 index 0000000000..fb08d9feb0 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=\u041B\u0430\u0441\u043A\u0430\u0432\u043E \u043F\u0440\u043E\u0441\u0438\u043C\u043E \u0443 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441! +newJob=\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0441\u0442\u0432\u043E\u0440\u0456\u0442\u044C \u043D\u043E\u0432\u0435 \u0437\u0430\u0432\u0434\u0430\u043D\u043D\u044F \u0449\u043E\u0431 \u0440\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u0438 \u0440\u043E\u0431\u043E\u0442\u0443. diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties new file mode 100644 index 0000000000..cfe86aa6af --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_uk.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_project=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u0435\u0440\u0456\u0432\u043D\u0438\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u043E\u043C {0}, \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 \u043D\u043E\u043C\u0435\u0440 {1} diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties new file mode 100644 index 0000000000..8be3e56903 --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_uk.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_user=\u0417\u0430\u043F\u0443\u0449\u0435\u043D\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0435\u043C {1} diff --git a/core/src/main/resources/hudson/model/Job/permalinks_uk.properties b/core/src/main/resources/hudson/model/Job/permalinks_uk.properties new file mode 100644 index 0000000000..729624899c --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/permalinks_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Permalinks=\u041F\u043E\u0441\u0442\u0456\u0439\u043D\u0456 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties b/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties new file mode 100644 index 0000000000..af4e9a81d9 --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersAction/index_uk.properties @@ -0,0 +1,24 @@ +# 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=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Parameters=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties new file mode 100644 index 0000000000..657432a724 --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_uk.properties @@ -0,0 +1,23 @@ +# 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. + +format={0} ({1}), {2} \u0442\u043E\u043C\u0443 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties new file mode 100644 index 0000000000..f6b4841fb2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443? +Yes=\u0422\u0430\u043A diff --git a/core/src/main/resources/hudson/model/Run/console_uk.properties b/core/src/main/resources/hudson/model/Run/console_uk.properties new file mode 100644 index 0000000000..fae863c6aa --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/console_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C +View\ as\ plain\ text=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u0438\u0439 \u0442\u0435\u043A\u0441\u0442 diff --git a/core/src/main/resources/hudson/model/Run/delete_uk.properties b/core/src/main/resources/hudson/model/Run/delete_uk.properties new file mode 100644 index 0000000000..c69c3681f2 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties new file mode 100644 index 0000000000..83bb9d3cd2 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\u041F\u0456\u0434\u0433\u043E\u0442\u043E\u0432\u043A\u0430 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties new file mode 100644 index 0000000000..f28a8c675c --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_uk.properties @@ -0,0 +1,23 @@ +# 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. + +NewVersionAvailable=\u041D\u043E\u0432\u0430 \u0432\u0435\u0440\u0441\u0456\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 ({0}) \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0434\u043B\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F (\u0437\u043C\u0456\u043D\u0438). diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties new file mode 100644 index 0000000000..600ed768dd --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=\u0412\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties new file mode 100644 index 0000000000..4e42a3b754 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u041E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F diff --git a/core/src/main/resources/hudson/model/User/builds_uk.properties b/core/src/main/resources/hudson/model/User/builds_uk.properties new file mode 100644 index 0000000000..892bd8cb30 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_uk.properties @@ -0,0 +1,23 @@ +# 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. + +title=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 {0} diff --git a/core/src/main/resources/hudson/model/User/index_uk.properties b/core/src/main/resources/hudson/model/User/index_uk.properties new file mode 100644 index 0000000000..9fe4a805d0 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=\u041A\u043E\u0434 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0432 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441: diff --git a/core/src/main/resources/hudson/model/User/sidepanel_uk.properties b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties new file mode 100644 index 0000000000..904999edea --- /dev/null +++ b/core/src/main/resources/hudson/model/User/sidepanel_uk.properties @@ -0,0 +1,27 @@ +# 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. + +Builds=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 +Configure=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 +My\ Views=\u041C\u043E\u0457 \u0412\u0438\u0434\u0438 +People=\u041B\u044E\u0434\u0438 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_uk.properties b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties new file mode 100644 index 0000000000..f2f4d3f8ff --- /dev/null +++ b/core/src/main/resources/hudson/model/View/sidepanel_uk.properties @@ -0,0 +1,28 @@ +# 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\ History=\u0406\u0441\u0442\u043E\u0440\u0456\u044F \u041F\u043E\u0431\u0443\u0434\u043E\u0432 +Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0432\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0444\u0430\u0439\u043B\u0443 +Edit\ View=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0412\u0438\u0434 +NewJob=\u043D\u043E\u0432\u0438\u0439 {0} +People=\u043B\u044E\u0434\u0438 +Project\ Relationship=\u0417\u0432\u2019\u044F\u0437\u043A\u0438 \u041F\u0440\u043E\u0435\u043A\u0442\u0430 diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties new file mode 100644 index 0000000000..10987e762f --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_uk.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=\u0417\u043C\u0456\u043D \u043D\u0435\u043C\u0430\u0454. diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties new file mode 100644 index 0000000000..6ccb0ecaa4 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/index_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Users=\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.properties new file mode 100644 index 0000000000..8ef83e4ae7 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/sidepanel_uk.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. + +Back\ to\ Dashboard=\u041F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044F \u0434\u043E \u041F\u0430\u043D\u0435\u043B\u0456 \u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F +Create\ User=\u0421\u0442\u0432\u043E\u0440\u0438\u0442\u0438 \u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 +Manage\ Jenkins=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_uk.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_uk.properties new file mode 100644 index 0000000000..101c3ccb20 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_uk.properties @@ -0,0 +1,26 @@ +# 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. + +Test\ Result\ Trend=\u0422\u0440\u0435\u043D\u0434 \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0456\u0432 \u0442\u0435\u0441\u0442\u0456\u0432 +enlarge=\u0437\u0431\u0456\u043B\u044C\u0448\u0438\u0442\u0438 +just\ show\ failures=\u043F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0442\u0456\u043B\u044C\u043A\u0438 \u043D\u0435\u0432\u0434\u0430\u0447\u0456 +show\ test\ #\ and\ failure\ #=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0442\u0435\u0441\u0442\u0456\u0432 \u0442\u0430 \u043D\u0435\u0432\u0434\u0430\u0447 diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties new file mode 100644 index 0000000000..1f68955492 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u0417\u0430\u043F\u043B\u0430\u043D\u0443\u0432\u0430\u0442\u0438 \u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties new file mode 100644 index 0000000000..0029d8f1b0 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_uk.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u043D\u043E\u0432\u0438\u0439 \u0432\u0438\u0433\u043B\u044F\u0434 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties new file mode 100644 index 0000000000..7a441fcf2c --- /dev/null +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Duration=\u0442\u0440\u0438\u0432\u0430\u043B\u0456\u0441\u0442\u044C \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0433\u043E \u0431\u0456\u043B\u0434\u0430 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties new file mode 100644 index 0000000000..ddf4f53b9e --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/columnHeader_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Failure=\u041E\u0441\u0442\u0430\u043D\u043D\u044F \u043D\u0435\u0432\u0434\u0430\u0447\u0430 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties new file mode 100644 index 0000000000..6a561fdc34 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_uk.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u041D/\u0414 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties new file mode 100644 index 0000000000..12cca5b0d6 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/columnHeader_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Last\ Success=\u041E\u0441\u0442\u0430\u043D\u043D\u0456\u0439 \u0443\u0441\u043F\u0456\u0445 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties new file mode 100644 index 0000000000..9fe48774ec --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_uk.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u043D\u0435\u043C\u0430\u0454 \u0437\u0430\u0441\u0442\u043E\u0441\u0443\u043D\u043A\u0443 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties new file mode 100644 index 0000000000..229c64190b --- /dev/null +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_uk.properties @@ -0,0 +1,23 @@ +# 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\ of\ the\ last\ build=\u0421\u0442\u0430\u0442\u0443\u0441 \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties new file mode 100644 index 0000000000..561ebf0c54 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u041F\u043E\u0433\u043E\u0434\u043D\u0438\u0439 \u0437\u0432\u0456\u0442, \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0447\u0438\u0439 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0438\u0439 \u0441\u0442\u0430\u043D \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties new file mode 100644 index 0000000000..f8fdd61940 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_uk.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=\u0437\u0443\u043F\u0438\u043D\u0438\u0442\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 +pending=\u0447\u0435\u043A\u0430\u0454 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties new file mode 100644 index 0000000000..5f73d1ec88 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u0412\u0438\u0432\u0456\u0434 \u041A\u043E\u043D\u0441\u043E\u043B\u0456 diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties new file mode 100644 index 0000000000..47ca2caf49 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_uk.properties @@ -0,0 +1,26 @@ +# 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. + +More\ ...=\u0429\u0435 ... +for\ all=\u0434\u043B\u044F \u0443\u0441\u0456\u0445 +for\ failures=\u0434\u043B\u044F \u043D\u0435\u0432\u0434\u0430\u0447 +trend=\u0442\u0440\u0435\u043D\u0434 diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties new file mode 100644 index 0000000000..f20257e80f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_uk.properties @@ -0,0 +1,27 @@ +# 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. + +Check=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 +Check\ File\ Fingerprint=\u041F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u0412\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0424\u0430\u0439\u043B\u0430 +File\ to\ check=\u0424\u0430\u0439\u043B \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438 +description=\u041C\u0430\u0454\u0442\u0435 jar, \u0430\u043B\u0435 \u043D\u0435 \u0437\u043D\u0430\u0454\u0442\u0435 \u043A\u043E\u0442\u0440\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457?
    \u0414\u0456\u0437\u043D\u0430\u0439\u0442\u0435\u0441\u044C, \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0432\u0448\u0438 \u0432\u0456\u0434\u0431\u0438\u0442\u043E\u043A \u0443 \u0431\u0430\u0437\u0456 \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u0430. +more\ details=\u0434\u0435\u0442\u0430\u043B\u044C\u043D\u0456\u0448\u0435 diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties index acc43718d5..9ae4913134 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_uk.properties @@ -20,5 +20,14 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Configure\ System=\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0421\u0438\u0441\u0442\u0435\u043C\u0443 +Configure\ global\ settings\ and\ paths.=\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0442\u0430 \u043F\u0443\u0442\u0456 Load\ Statistics=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0430 \u043D\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F +Manage\ Jenkins=\u0423\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F \u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441\u043E\u043C Manage\ Nodes=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0443\u0437\u043B\u0430\u043C\u0438 +Manage\ Plugins=\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0414\u043E\u0434\u0430\u0442\u043A\u0430\u043C\u0438 +Prepare\ for\ Shutdown=\u041F\u0456\u0434\u0433\u043E\u0442\u0443\u0432\u0430\u0442\u0438\u0441\u044C \u0434\u043E \u0412\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F +Reload\ Configuration\ from\ Disk=\u041F\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u0438 \u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0437 \u0414\u0438\u0441\u043A\u0443 +Script\ Console=\u0421\u043A\u0440\u0438\u043F\u0442\u043E\u0432\u0430 \u041A\u043E\u043D\u0441\u043E\u043B\u044C +System\ Information=\u0406\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044F \u043F\u0440\u043E \u0421\u0438\u0441\u0442\u0435\u043C\u0443 +System\ Log=\u0421\u0438\u0441\u0442\u0435\u043C\u043D\u0438\u0439 \u041B\u043E\u0433 diff --git a/core/src/main/resources/lib/hudson/buildCaption_uk.properties b/core/src/main/resources/lib/hudson/buildCaption_uk.properties new file mode 100644 index 0000000000..4c4ab39fc9 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u041F\u0440\u043E\u0433\u0440\u0435\u0441 +cancel=\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/buildHealth_uk.properties b/core/src/main/resources/lib/hudson/buildHealth_uk.properties new file mode 100644 index 0000000000..12d25876ff --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildHealth_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Description=\u043E\u043F\u0438\u0441 diff --git a/core/src/main/resources/lib/hudson/buildListTable_uk.properties b/core/src/main/resources/lib/hudson/buildListTable_uk.properties new file mode 100644 index 0000000000..88a666c2da --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildListTable_uk.properties @@ -0,0 +1,26 @@ +# 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=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0430 +Console\ output=\u0412\u0438\u0432\u0456\u0434 \u041A\u043E\u043D\u0441\u043E\u043B\u0456 +Status=\u0421\u0442\u0430\u0442\u0443\u0441 +Time\ Since=\u041F\u0440\u043E\u0439\u0448\u043B\u043E \u0427\u0430\u0441\u0443 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties new file mode 100644 index 0000000000..fbb3f38739 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_uk.properties @@ -0,0 +1,23 @@ +# 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. + +text=\u0420\u043E\u0437\u043F\u043E\u0447\u0430\u0442\u043E {0} \u0442\u043E\u043C\u0443
    \u041B\u0438\u0448\u0438\u043B\u043E\u0441\u044F \u043F\u0440\u0438\u0431\u043B\u0438\u0437\u043D\u043E {1} diff --git a/core/src/main/resources/lib/hudson/editableDescription_uk.properties b/core/src/main/resources/lib/hudson/editableDescription_uk.properties new file mode 100644 index 0000000000..f04cb77e6c --- /dev/null +++ b/core/src/main/resources/lib/hudson/editableDescription_uk.properties @@ -0,0 +1,24 @@ +# 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. + +add\ description=\u0434\u043E\u0434\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 +edit\ description=\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043E\u043F\u0438\u0441 diff --git a/core/src/main/resources/lib/hudson/executors_uk.properties b/core/src/main/resources/lib/hudson/executors_uk.properties new file mode 100644 index 0000000000..09d5490644 --- /dev/null +++ b/core/src/main/resources/lib/hudson/executors_uk.properties @@ -0,0 +1,29 @@ +# 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=\u0421\u0442\u0430\u0442\u0443\u0441 \u0412\u0438\u043A\u043E\u043D\u0430\u0432\u0446\u0456\u0432 \u041F\u043E\u0431\u0443\u0434\u043E\u0432 +Building=\u0411\u0443\u0434\u0443\u0454 +Idle=\u043F\u043E\u0432\u0456\u043B\u044C\u043D\u0438\u0439 +Master=\u0413\u043E\u043B\u043E\u0432\u043D\u0438\u0439 +Status=\u0441\u0442\u0430\u0442\u0443\u0441 +offline=\u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043E +terminate\ this\ build=\u043F\u0435\u0440\u0435\u0440\u0432\u0430\u0442\u0438 \u0446\u044E \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0443 diff --git a/core/src/main/resources/lib/hudson/iconSize_uk.properties b/core/src/main/resources/lib/hudson/iconSize_uk.properties new file mode 100644 index 0000000000..b3ffeb17b1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/iconSize_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Icon=\u041F\u0456\u043A\u0442\u043E\u0433\u0440\u0430\u043C\u0430 diff --git a/core/src/main/resources/lib/hudson/node_uk.properties b/core/src/main/resources/lib/hudson/node_uk.properties new file mode 100644 index 0000000000..a77f2faefb --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_uk.properties @@ -0,0 +1,23 @@ +# 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. + +master=\u0433\u043E\u043B\u043E\u0432\u043D\u043E\u043C\u0443 diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties new file mode 100644 index 0000000000..8ad972bca0 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=\u041F\u0456\u0434\u043F\u043E\u0440\u044F\u0434\u043A\u043E\u0432\u0430\u043D\u0456 \u041F\u0440\u043E\u0435\u043A\u0442\u0438 +Upstream\ Projects=\u041A\u0435\u0440\u0456\u0432\u043D\u0456 \u043F\u0440\u043E\u0435\u043A\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/queue_uk.properties b/core/src/main/resources/lib/hudson/queue_uk.properties new file mode 100644 index 0000000000..5433e696de --- /dev/null +++ b/core/src/main/resources/lib/hudson/queue_uk.properties @@ -0,0 +1,26 @@ +# 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\ Queue=\u0427\u0435\u0440\u0433\u0430 \u041F\u043E\u0431\u0443\u0434\u043E\u0432 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C. \u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0456 \u043F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u0442\u0438\u0441\u044F \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C. +No\ builds\ in\ the\ queue.=\u041D\u0435\u043C\u0430\u0454 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 \u0443 \u0447\u0435\u0440\u0437\u0456 +cancel=\u0432\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 diff --git a/core/src/main/resources/lib/hudson/rssBar_uk.properties b/core/src/main/resources/lib/hudson/rssBar_uk.properties new file mode 100644 index 0000000000..4453baba30 --- /dev/null +++ b/core/src/main/resources/lib/hudson/rssBar_uk.properties @@ -0,0 +1,26 @@ +# 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. + +Legend=\u041E\u043F\u0438\u0441 +for\ all=\u0434\u043B\u044F \u0432\u0441\u0456\u0445 +for\ failures=\u0434\u043B\u044F \u043D\u0435\u0432\u0434\u0430\u043B\u0438\u0445 +for\ just\ latest\ builds=\u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043B\u044F \u043E\u0441\u0442\u0430\u043D\u043D\u0456\u0445 \u043F\u043E\u0431\u0443\u0434\u043E\u0432 diff --git a/core/src/main/resources/lib/hudson/test-result_uk.properties b/core/src/main/resources/lib/hudson/test-result_uk.properties new file mode 100644 index 0000000000..738e596752 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_uk.properties @@ -0,0 +1,24 @@ +# 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. + +multifailures="{0} \u043D\u0435\u0432\u0434\u0430\u0447 {1}" +no\ failures=\u0431\u0435\u0437 \u043D\u0435\u0432\u0434\u0430\u0447 diff --git a/core/src/main/resources/lib/layout/layout_uk.properties b/core/src/main/resources/lib/layout/layout_uk.properties index d918ea64ce..4427b8e1b8 100644 --- a/core/src/main/resources/lib/layout/layout_uk.properties +++ b/core/src/main/resources/lib/layout/layout_uk.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +DISABLE\ AUTO\ REFRESH=\u0412\u0418\u041C\u041A\u041D\u0423\u0422\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u0415 \u041E\u041D\u041E\u0412\u041B\u0415\u041D\u041D\u042F +ENABLE\ AUTO\ REFRESH=\u0423\u0412\u0406\u041C\u041A\u041D\u0423\u0422\u0418 \u0410\u0412\u0422\u041E\u041C\u0410\u0422\u0418\u0427\u041D\u0415 \u041E\u041D\u041E\u0412\u041B\u0415\u041D\u041D\u042F +Page\ generated=\u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0437\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0430 logout=\u0412\u0438\u0439\u0442\u0438 +search=\u043F\u043E\u0448\u0443\u043A +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_uk.properties b/core/src/main/resources/lib/layout/main-panel_uk.properties new file mode 100644 index 0000000000..f2615e1424 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_uk.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=\u0414\u0436\u0435\u043D\u043A\u0456\u043D\u0441 \u0437\u0431\u0438\u0440\u0430\u0454\u0442\u044C\u0441\u044F \u0437\u0443\u043F\u0438\u043D\u044F\u0442\u0438\u0441\u044C diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_uk.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_uk.properties new file mode 100644 index 0000000000..b30be10c47 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0423\u0441\u0456 \u0412\u0438\u043C\u043A\u043D\u0443\u0442\u0456 \u041C\u043E\u0434\u0443\u043B\u0456 +Modules=\u041C\u043E\u0434\u0443\u043B\u0456 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 new file mode 100644 index 0000000000..7e8cc88b97 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_uk.properties @@ -0,0 +1,27 @@ +# 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=\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 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_uk.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_uk.properties new file mode 100644 index 0000000000..a57e2f6e21 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_uk.properties @@ -0,0 +1,24 @@ +# 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. + +Module\ Builds=\u041F\u043E\u0431\u0443\u0434\u043E\u0432\u0438 \u041C\u043E\u0434\u0443\u043B\u0435\u0439 +noRun=\u043D\u0435 \u0437\u0430\u043F\u0443\u0441\u043A\u0430\u043B\u0438\u0441\u044C -- GitLab From 73193bce67203411000d0457b37b39041aa6b366 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 147/158] Community-contributed localization for zh_CN (zh_CN) --- .../AboutJenkins/index_zh_CN.properties | 25 +++++++++++++ .../PluginManager/advanced_zh_CN.properties | 2 ++ .../checkUpdates_zh_CN.properties | 25 +++++++++++++ .../PluginManager/index_zh_CN.properties | 3 ++ .../PluginManager/installed_zh_CN.properties | 3 ++ .../PluginManager/table_zh_CN.properties | 1 + .../index_zh_CN.properties | 25 +++++++++++++ .../message_zh_CN.properties | 25 +++++++++++++ .../message_zh_CN.properties | 24 +++++++++++++ .../levels_zh_CN.properties | 28 +++++++++++++++ .../sidepanel_zh_CN.properties | 1 + .../config_zh_CN.properties | 24 +++++++++++++ .../MatrixProject/ajaxMatrix_zh_CN.properties | 23 ++++++++++++ .../MatrixProject/index_zh_CN.properties | 24 +++++++++++++ .../AbstractBuild/index_zh_CN.properties | 6 +++- .../AbstractBuild/sidepanel_zh_CN.properties | 2 +- .../AbstractBuild/tasks_zh_CN.properties | 5 ++- .../configure-common_zh_CN.properties | 24 +++++++++++++ .../AbstractItem/delete_zh_CN.properties | 1 + .../AbstractItem/noWorkspace_zh_CN.properties | 26 ++++++++++++++ .../AbstractProject/main_zh_CN.properties | 3 +- .../sidepanel_zh_CN.properties | 7 ++-- .../model/AllView/noJob_zh_CN.properties | 24 +++++++++++++ .../config_zh_CN.properties | 27 ++++++++++++++ .../UserIdCause/description_zh_CN.properties | 1 + .../model/Computer/index_zh_CN.properties | 1 + .../dir_zh_CN.properties | 1 + .../model/Job/configure_zh_CN.properties | 27 ++++++++++++++ .../hudson/model/Job/index_zh_CN.properties | 25 +++++++++++++ .../configure-entries_zh_CN.properties | 23 ++++++++++++ .../ListView/newViewDetail_zh_CN.properties | 23 ++++++++++++ .../LoadStatistics/main_zh_CN.properties | 1 + .../MyViewsProperty/newView_zh_CN.properties | 23 ++++++++++++ .../NoFingerprintMatch/index_zh_CN.properties | 24 +++++++++++++ .../config_zh_CN.properties | 24 +++++++++++++ .../KeepLogBuildBadge/badge_zh_CN.properties | 23 ++++++++++++ .../model/Run/configure_zh_CN.properties | 26 ++++++++++++++ .../model/Run/confirmDelete_zh_CN.properties | 24 +++++++++++++ .../hudson/model/Run/console_zh_CN.properties | 4 +-- .../hudson/model/Run/logKeep_zh_CN.properties | 23 ++++++++++++ .../ConnectionCheckJob/row_zh_CN.properties | 23 ++++++++++++ .../Installing/status_zh_CN.properties | 23 ++++++++++++ .../Pending/status_zh_CN.properties | 23 ++++++++++++ .../Success/status_zh_CN.properties | 23 ++++++++++++ .../Pending/status_zh_CN.properties | 23 ++++++++++++ .../RestartJenkinsJob/row_zh_CN.properties | 23 ++++++++++++ .../model/UpdateCenter/body_zh_CN.properties | 23 ++++++++++++ .../model/UpdateCenter/index_zh_CN.properties | 23 ++++++++++++ .../UpdateCenter/sidepanel_zh_CN.properties | 2 ++ .../hudson/model/User/index_zh_CN.properties | 23 ++++++++++++ .../model/User/sidepanel_zh_CN.properties | 1 + .../model/View/People/index_zh_CN.properties | 27 ++++++++++++++ .../hudson/model/View/builds_zh_CN.properties | 1 + .../hudson/model/View/newJob_zh_CN.properties | 3 ++ .../model/View/sidepanel_zh_CN.properties | 9 +++-- .../EmptyChangeLogSet/digest_zh_CN.properties | 23 ++++++++++++ .../config_zh_CN.properties | 2 ++ .../LDAPSecurityRealm/config_zh_CN.properties | 2 ++ .../slaves/JNLPLauncher/main_zh_CN.properties | 23 ++++++++++++ .../SlaveComputer/sidepanel2_zh_CN.properties | 25 +++++++++++++ .../ArtifactArchiver/config_zh_CN.properties | 24 +++++++++++++ .../tasks/BatchFile/config_zh_CN.properties | 23 ++++++++++++ .../BuildTrigger/config_zh_CN.properties | 24 +++++++++++++ .../Fingerprinter/config_zh_CN.properties | 23 ++++++++++++ .../tasks/LogRotator/config_zh_CN.properties | 30 ++++++++++++++++ .../tasks/Mailer/config_zh_CN.properties | 24 +++++++++++++ .../tasks/Mailer/global_zh_CN.properties | 3 ++ .../junit/ClassResult/list_zh_CN.properties | 27 ++++++++++++++ .../junit/History/index_zh_CN.properties | 23 ++++++++++++ .../config_zh_CN.properties | 23 ++++++++++++ .../config_zh_CN.properties | 25 +++++++++++++ .../TestObject/sidepanel_zh_CN.properties | 24 +++++++++++++ .../floatingBox_zh_CN.properties | 26 ++++++++++++++ .../SCMTrigger/config_zh_CN.properties | 23 ++++++++++++ .../TimerTrigger/config_zh_CN.properties | 23 ++++++++++++ .../myViewTabs_zh_CN.properties | 23 ++++++++++++ .../viewTabs_zh_CN.properties | 23 ++++++++++++ .../LastFailureColumn/column_zh_CN.properties | 23 ++++++++++++ .../columnHeader_zh_CN.properties | 2 +- .../columnHeader_zh_CN.properties | 23 ++++++++++++ .../entries_zh_CN.properties | 24 +++++++++++++ .../HistoryWidget/entry_zh_CN.properties | 23 ++++++++++++ .../HistoryWidget/index_zh_CN.properties | 1 + .../model/Jenkins/_cli_zh_CN.properties | 2 ++ .../model/Jenkins/configure_zh_CN.properties | 3 ++ .../model/Jenkins/downgrade_zh_CN.properties | 24 +++++++++++++ .../Jenkins/fingerprintCheck_zh_CN.properties | 27 ++++++++++++++ .../model/Jenkins/legend_zh_CN.properties | 35 +++++++++++++++++++ .../model/Jenkins/loginError_zh_CN.properties | 24 +++++++++++++ .../model/Jenkins/login_zh_CN.properties | 25 +++++++++++++ .../model/Jenkins/manage_zh_CN.properties | 2 +- .../model/Jenkins/newView_zh_CN.properties | 23 ++++++++++++ .../projectRelationship_zh_CN.properties | 26 ++++++++++++++ .../model/Jenkins/systemInfo_zh_CN.properties | 4 +++ .../lib/form/advanced_zh_CN.properties | 23 ++++++++++++ .../repeatableDeleteButton_zh_CN.properties | 23 ++++++++++++ .../lib/form/repeatable_zh_CN.properties | 23 ++++++++++++ .../lib/form/textarea_zh_CN.properties | 24 +++++++++++++ .../lib/hudson/buildCaption_zh_CN.properties | 24 +++++++++++++ .../hudson/buildProgressBar_zh_CN.properties | 23 ++++++++++++ .../lib/hudson/executors_zh_CN.properties | 4 ++- .../hudson/listScmBrowsers_zh_CN.properties | 24 +++++++++++++ .../lib/hudson/node_zh_CN.properties | 23 ++++++++++++ ...ockWhenDownstreamBuilding_zh_CN.properties | 23 ++++++++++++ ...blockWhenUpstreamBuilding_zh_CN.properties | 23 ++++++++++++ .../config-buildWrappers_zh_CN.properties | 23 ++++++++++++ .../project/config-builders_zh_CN.properties | 24 +++++++++++++ .../config-customWorkspace_zh_CN.properties | 24 +++++++++++++ .../config-disableBuild_zh_CN.properties | 24 +++++++++++++ .../config-publishers_zh_CN.properties | 23 ++++++++++++ .../config-quietPeriod_zh_CN.properties | 24 +++++++++++++ .../config-retryCount_zh_CN.properties | 24 +++++++++++++ .../project/config-scm_zh_CN.properties | 23 ++++++++++++ .../project/config-trigger_zh_CN.properties | 23 ++++++++++++ ...g-upstream-pseudo-trigger_zh_CN.properties | 25 +++++++++++++ .../hudson/project/matrix_zh_CN.properties | 23 ++++++++++++ .../lib/hudson/queue_zh_CN.properties | 2 +- .../lib/hudson/test-result_zh_CN.properties | 23 ++++++++++++ .../thirdPartyLicenses_zh_CN.properties | 25 +++++++++++++ .../lib/layout/layout_zh_CN.properties | 6 ++-- .../MavenModuleSet/actions_zh_CN.properties | 23 ++++++++++++ .../configure-entries_zh_CN.properties | 23 ++++++++++++ .../MavenModuleSet/index_zh_CN.properties | 29 +++++++++++++++ 123 files changed, 2249 insertions(+), 17 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_zh_CN.properties create mode 100644 core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_CN.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_CN.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_zh_CN.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Job/configure_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ListView/newViewDetail_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/User/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/model/View/People/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties create mode 100644 core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_CN.properties create mode 100644 core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/BuildTrigger/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/LogRotator/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/Mailer/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/ClassResult/list_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/History/index_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/triggers/TimerTrigger/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties create mode 100644 core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_zh_CN.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/advanced_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/repeatableDeleteButton_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/repeatable_zh_CN.properties create mode 100644 core/src/main/resources/lib/form/textarea_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/listScmBrowsers_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/node_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-builders_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-publishers_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-scm_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-trigger_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/project/matrix_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/test-result_zh_CN.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_CN.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_CN.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_zh_CN.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_zh_CN.properties b/core/src/main/resources/hudson/AboutJenkins/index_zh_CN.properties new file mode 100644 index 0000000000..713451482a --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_zh_CN.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. + +about=\u5173\u4E8EJenkins{0} +blurb=Jenkins\u662F\u4E00\u4E2A\u57FA\u4E8E\u793E\u533A\u5F00\u53D1\u7684\u5F00\u6E90\u6301\u7EED\u96C6\u6210\u670D\u52A1\u5668 +dependencies=Jenkins\u4F9D\u8D56\u4E8E\u4EE5\u4E0B\u7B2C\u4E09\u65B9\u5E93 diff --git a/core/src/main/resources/hudson/PluginManager/advanced_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/advanced_zh_CN.properties index f42d98569f..afffdf88b2 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_zh_CN.properties @@ -27,6 +27,8 @@ Password=\u5BC6\u7801 Port=\u7AEF\u53E3 Server=\u670D\u52A1\u5668 Submit=\u63D0\u4EA4 +URL=URL +Update\ Site=\u5347\u7EA7\u7AD9\u70B9 Upload=\u4E0A\u4F20 Upload\ Plugin=\u4E0A\u4F20\u63D2\u4EF6 User\ name=\u7528\u6237\u540D diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_CN.properties new file mode 100644 index 0000000000..0025a0cb19 --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_CN.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. + +Checking\ Updates...=\u68C0\u67E5\u66F4\u65B0 +Done=\u5B8C\u6210 +Go\ back\ to\ update\ center=\u8FD4\u56DE\u5347\u7EA7\u4E2D\u5FC3 diff --git a/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties index 72a8b3a3a8..afc61956dc 100644 --- a/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/index_zh_CN.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +All=\u5168\u9009 +None=\u5168\u4E0D\u9009 +Select=\u9009\u62E9 UpdatePageDescription=\u6B64\u9875\u9762\u663E\u793A\u60A8\u5DF2\u5B89\u88C5\u7684\u63D2\u4EF6\u7684\u53EF\u7528\u66F4\u65B0 diff --git a/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties index a05ee66152..483eb88d26 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_CN.properties @@ -23,5 +23,8 @@ Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u6240\u6709\u6539\u53D8\u4F1A\u5728\u91CD\u65B0\u542F\u52A8Jenkins\u4EE5\u540E\u751F\u6548\u3002 Enabled=\u542F\u7528 Name=\u540D\u79F0 +Previously\ installed\ version=\u4E0A\u4E00\u4E2A\u5B89\u88C5\u7684\u7248\u672C +Restart\ Once\ No\ Jobs\ Are\ Running=\u5F53\u6CA1\u6709\u4EFB\u52A1\u65F6\u91CD\u542F Uncheck\ to\ disable\ the\ plugin=\u53D6\u6D88\u9009\u62E9\u4EE5\u7981\u7528\u63D2\u4EF6 Version=\u7248\u672C +downgradeTo=\u964D\u5230 diff --git a/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties b/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties index 90c9724394..bbe3319d54 100644 --- a/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties +++ b/core/src/main/resources/hudson/PluginManager/table_zh_CN.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Check\ to\ install\ the\ plugin=\u8BF7\u52FE\u9009\u8981\u5B89\u88C5\u7684\u63D2\u4EF6 +Click\ this\ heading\ to\ sort\ by\ category=\u70B9\u51FB\u6807\u9898\u6309\u5206\u7C7B\u6392\u5E8F Install=\u5B89\u88C5 Installed=\u5DF2\u5B89\u88C5 Name=\u540D\u79F0 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_CN.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_CN.properties new file mode 100644 index 0000000000..6ad181e8e7 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_CN.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. + +blurb=JENKINS_HOME \u5C31\u5FEB\u8981\u7A7A\u95F4\u4E0D\u8DB3\u4E86 +description.2=\u8981\u89E3\u51B3\u8FD9\u4E2A\u95EE\u9898\uFF0C\u4F60\u5E94\u8BE5\u73B0\u5728\u5C31\u6709\u6240\u884C\u52A8\u3002 +solution.1=\u6E05\u7406\u4E00\u4E0B\u8FD9\u4E2A\u78C1\u76D8\u5206\u533A\u4E00\u8FB9\u817E\u51FA\u66F4\u591A\u7684\u7A7A\u95F4\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_CN.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_CN.properties new file mode 100644 index 0000000000..81263a6e4e --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_CN.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. + +Dismiss=\u4E0D\u518D\u663E\u793A +Tell\ me\ more=\u66F4\u591A\u4FE1\u606F +blurb=\u4F60\u7684 Jenkins \u6570\u636E\u76EE\u5F55 "{0}" (AKA JENKINS_HOME) \u5C31\u5FEB\u8981\u7A7A\u95F4\u4E0D\u8DB3\u4E86\u3002\u4F60\u5E94\u8BE5\u5728\u5B83\u88AB\u5B8C\u5168\u6491\u6EE1\u4E4B\u524D\u5C31\u6709\u6240\u884C\u52A8\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties new file mode 100644 index 0000000000..9b09161a80 --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Dismiss=\u4E0D\u518D\u663E\u793A +More\ Info=\u66F4\u591A\u4FE1\u606F diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_CN.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_CN.properties new file mode 100644 index 0000000000..a74842b77b --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_CN.properties @@ -0,0 +1,28 @@ +# 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. + +Adjust\ Levels=\u914D\u7F6E\u7EA7\u522B +Level=\u7EA7\u522B +Logger\ Configuration=\u65E5\u5FD7\u914D\u7F6E +Name=\u540D\u79F0 +Submit=\u63D0\u4EA4 +defaultLoggerMsg=\u6CA1\u6709\u540D\u79F0\u7684\u662F\u9ED8\u8BA4\u65E5\u5FD7\u3002\u6240\u6709\u6CA1\u914D\u7F6E\u7EA7\u522B\u7684\u65E5\u5FD7\u5C06\u7EE7\u627F\u9ED8\u8BA4\u65E5\u5FD7 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_CN.properties index a1659e0449..9585c4d98b 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_CN.properties @@ -23,5 +23,6 @@ All\ Logs=\u6240\u6709\u65e5\u5fd7 Back\ to\ Dashboard=\u8fd4\u56de Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 +Log\ Levels=\u65E5\u5FD7\u7EA7\u522B Logger\ List=\u65e5\u5fd7\u5217\u8868 New\ Log\ Recorder=\u65b0\u5efa\u65e5\u5fd7\u8bb0\u5f55\u5668 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties new file mode 100644 index 0000000000..eb55d48411 --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=\u5C06\u6587\u672C\u4F5C\u4E3AHTML\u5E76\u4E14\u4E0D\u52A0\u4EFB\u4F55\u7FFB\u8BD1 +disableSyntaxHighlighting=\u7981\u7528\u8BED\u6CD5\u9AD8\u4EAE diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_zh_CN.properties b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_zh_CN.properties new file mode 100644 index 0000000000..67b0344fa3 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/ajaxMatrix_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Not\ configured=\u5C1A\u672A\u914D\u7F6E 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 new file mode 100644 index 0000000000..795177e375 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/index_zh_CN.properties @@ -0,0 +1,24 @@ +# 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=\u7981\u7528\u9879\u76EE +Project=\u9879\u76EE diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties index a0bdbfe594..872d382780 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_CN.properties @@ -21,8 +21,12 @@ # THE SOFTWARE. Build=\u6784\u5efa -Build\ Artifacts=\u6784\u5efaArtifacts +Build\ Artifacts=\u6784\u5EFA\u4EA7\u7269 Build\ number=\u6784\u5efa\u53f7 +Failed\ to\ determine=\u786E\u8BA4\u5931\u8D25 +Not\ yet\ determined=\u8FD8\u672A\u786E\u5B9A Permalinks=\u6c38\u4e45\u8fde\u63a5 Took=\u7528\u65f6 +log=\u65E5\u5FD7 +on=\u8FD0\u884C\u4E8E startedAgo=\u5f00\u59cb\u4e8e{0}\u524d diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties index 2e14edeac9..eda2f9490f 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_CN.properties @@ -21,4 +21,4 @@ # THE SOFTWARE. Next\ Build=\u540e\u4e00\u6b21\u6784\u5efa -Previous\ Build=\u524d\u4e00\u6b21\u6784\u5efa +Previous\ Build=\u524D\u4E00\u6B21\u6267\u884C diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties index 96a6c5bfa6..1456bb9370 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_CN.properties @@ -22,5 +22,8 @@ Back\ to\ Project=\u8FD4\u56DE\u9879\u76EE Changes=\u53D8\u66F4\u96C6 -Console\ Output=\u547D\u4EE4\u884C\u8F93\u51FA +Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA +Edit\ Build\ Information=\u7F16\u8F91\u6784\u5EFA\u4FE1\u606F Status=\u72B6\u6001 +View\ Build\ Information=\u67E5\u770B\u6784\u5EFA\u4FE1\u606F +raw=\u539F\u59CB\u6570\u636E diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties new file mode 100644 index 0000000000..0a5f745c2c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Advanced\ Project\ Options\ configure-common=\u9AD8\u7EA7\u9879\u76EE\u9009\u9879 +title.concurrentbuilds=\u5728\u5FC5\u8981\u7684\u65F6\u5019\u5E76\u53D1\u6784\u5EFA diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_CN.properties index 05d53d99ef..adef472d90 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_CN.properties @@ -22,3 +22,4 @@ Are\ you\ sure\ about\ deleting\ the\ job?=\u786E\u5B9A\u8981\u5220\u9664\u5F53\u524D\u4EFB\u52A1\u5417\uFF1F Yes=\u662F +blurb=\u786E\u5B9A\u8981\u5220\u9664\u9879\u76EE"{1}"? diff --git a/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties new file mode 100644 index 0000000000..5f4b5c7da9 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/noWorkspace_zh_CN.properties @@ -0,0 +1,26 @@ +# 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. + +Error:\ no\ workspace=\u9519\u8BEF\uFF1A\u6CA1\u6709\u5DE5\u4F5C\u7A7A\u95F4 +There''s\ no\ workspace\ for\ this\ project.\ Possible\ reasons\ are:=\u6B64\u9879\u76EE\u6CA1\u6709\u5DE5\u4F5C\u7A7A\u95F4\u3002\u53EF\u80FD\u7684\u539F\u56E0\u5982\u4E0B\uFF1A +li3=\u6B64\u5DE5\u4F5C\u7A7A\u95F4\u7684\u76EE\u5F55({0})\u5728Jenkins\u4E4B\u5916\u88AB\u79FB\u9664 +text=\u6267\u884C\u6784\u5EFA\u4F7FJenkins\u521B\u5EFA\u5DE5\u4F5C\u7A7A\u95F4 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties index 83f39bee1a..3f10145194 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_zh_CN.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u4E0A\u6B21\u6210\u529FArtifacts +Last\ Successful\ Artifacts=\u672C\u6B21\u6210\u529F\u751F\u6210 +Latest\ Test\ Result=\u6700\u65B0\u6D4B\u8BD5\u7ED3\u679C Recent\ Changes=\u6700\u8FD1\u53D8\u66F4\u96C6 Workspace=\u5DE5\u4F5C\u533A diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties index 5e3bc7d1f3..e790aca707 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_CN.properties @@ -21,10 +21,11 @@ # THE SOFTWARE. Back\ to\ Dashboard=\u8fd4\u56de -Build\ scheduled=\u6784\u5efa\u8ba1\u5212 +Build\ scheduled=\u6784\u5EFA\u5DF2\u5B89\u6392 Changes=\u53d8\u66f4\u96c6 -Configure=\u8bbe\u7f6e +Configure=\u914D\u7F6E Status=\u72b6\u6001 +View\ Configuration=\u67E5\u770B\u914D\u7F6E Wipe\ Out\ Workspace=\u6e05\u7a7a\u5de5\u4f5c\u533a Workspace=\u5de5\u4f5c\u533a -delete=\u5220\u9664{0} +delete=\u5220\u9664 {0} diff --git a/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties b/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties new file mode 100644 index 0000000000..87b0d3eeb3 --- /dev/null +++ b/core/src/main/resources/hudson/model/AllView/noJob_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Welcome\ to\ Jenkins!=\u6B22\u8FCE\u4F7F\u7528Jenkins\uFF01 +newJob=\u8BF7\u70B9\u51FB \u65B0\u5EFA\u4EFB\u52A1 \u5F00\u59CB\u4F7F\u7528. diff --git a/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_CN.properties b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_CN.properties new file mode 100644 index 0000000000..ae7ebca70e --- /dev/null +++ b/core/src/main/resources/hudson/model/BuildAuthorizationToken/config_zh_CN.properties @@ -0,0 +1,27 @@ +# 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. + +Authentication\ Token=\u8EAB\u4EFD\u9A8C\u8BC1\u4EE4\u724C +Trigger\ builds\ remotely=\u89E6\u53D1\u8FDC\u7A0B\u6784\u5EFA +Use\ the\ following\ URL\ to\ trigger\ build\ remotely:=\u4F7F\u7528\u4E0B\u5217URL\u6765\u89E6\u53D1\u8FDC\u7A0B\u6784\u5EFA +e.g.,\ from\ scripts=\u4F8B\u5982,\u4F7F\u7528\u811A\u672C +or=\u6216\u8005 diff --git a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties index 7f36a2034c..08a96b13e8 100644 --- a/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Cause/UserIdCause/description_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +started_by_anonymous=\u533F\u540D\u7528\u6237\u542F\u52A8 started_by_user=\u542f\u52a8\u7528\u6237{1} diff --git a/core/src/main/resources/hudson/model/Computer/index_zh_CN.properties b/core/src/main/resources/hudson/model/Computer/index_zh_CN.properties index 7bed50aa92..ecb166e08c 100644 --- a/core/src/main/resources/hudson/model/Computer/index_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Computer/index_zh_CN.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Labels:=\u6807\u7B7E None=\u65E0 submit.not.temporarilyOffline=\u4E34\u65F6\u65AD\u5F00\u6B64\u8282\u70B9 title.projects_tied_on=\u5173\u8054\u5230{0}\u7684\u9879\u76EE diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_CN.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_CN.properties index 78a2cbe17b..3210f74de7 100644 --- a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_CN.properties +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_CN.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ files\ in\ directory=\u7A7A\u76EE\u5F55 all\ files\ in\ zip=\u6253\u5305\u4E0B\u8F7D\u5168\u90E8\u6587\u4EF6 view=\u67E5\u770B diff --git a/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties b/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties new file mode 100644 index 0000000000..3cbfde6247 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/configure_zh_CN.properties @@ -0,0 +1,27 @@ +# 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. + +Description=\u63CF\u8FF0 +Discard\ Old\ Builds=\u4E22\u5F03\u65E7\u7684\u6784\u5EFA +LOADING=\u8F7D\u5165\u4E2D +Save=\u4FDD\u5B58 +name={0}\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/Job/index_zh_CN.properties b/core/src/main/resources/hudson/model/Job/index_zh_CN.properties new file mode 100644 index 0000000000..7106bab891 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_zh_CN.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. + +Disable\ Project=\u7981\u7528\u9879\u76EE +Enable=\u542F\u7528 +This\ project\ is\ currently\ disabled=\u6B64\u9879\u76EE\u5DF2\u7981\u7528 diff --git a/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties new file mode 100644 index 0000000000..c7ba814fff --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/configure-entries_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Add\ column=\u6DFB\u52A0\u5217 diff --git a/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_CN.properties b/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_CN.properties new file mode 100644 index 0000000000..2b9cfff40e --- /dev/null +++ b/core/src/main/resources/hudson/model/ListView/newViewDetail_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +blurb=\u663E\u793A\u7B80\u5355\u5217\u8868\u3002\u4F60\u53EF\u4EE5\u4ECE\u4E2D\u9009\u62E9\u4EFB\u52A1\u6765\u663E\u793A\u5728\u67D0\u4E2A\u89C6\u56FE\u4E2D diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties index 27510526d3..fd67a95ec0 100644 --- a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_CN.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Load\ statistics\ graph=\u52A0\u8F7D\u7EDF\u8BA1\u56FE Long=\u957F Medium=\u4E2D Short=\u77ED diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties new file mode 100644 index 0000000000..3fce044575 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/newView_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=View \u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_CN.properties b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_CN.properties new file mode 100644 index 0000000000..29bb36be7d --- /dev/null +++ b/core/src/main/resources/hudson/model/NoFingerprintMatch/index_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Back\ to\ Dashboard=\u8FD4\u56DE\u63A7\u5236\u53F0 +No\ matching\ record\ found=\u6CA1\u6709\u5BF9\u5E94\u7684\u8BB0\u5F55\u5B58\u5728 diff --git a/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties new file mode 100644 index 0000000000..9cf593e10c --- /dev/null +++ b/core/src/main/resources/hudson/model/ParametersDefinitionProperty/config_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Add\ Parameter=\u589E\u52A0\u53C2\u6570 +This\ build\ is\ parameterized=\u53C2\u6570\u5316\u6784\u5EFA\u8FC7\u7A0B diff --git a/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties new file mode 100644 index 0000000000..05600b65b6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/KeepLogBuildBadge/badge_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u6B64\u6B21\u6784\u5EFA diff --git a/core/src/main/resources/hudson/model/Run/configure_zh_CN.properties b/core/src/main/resources/hudson/model/Run/configure_zh_CN.properties new file mode 100644 index 0000000000..f6696de4f6 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_zh_CN.properties @@ -0,0 +1,26 @@ +# 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. + +Description=\u63CF\u8FF0 +DisplayName=\u663E\u793A\u540D\u79F0 +LOADING=\u52A0\u8F7D\u4E2D +Save=\u4FDD\u5B58 diff --git a/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties new file mode 100644 index 0000000000..53df455935 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/confirmDelete_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ the\ build?=\u4F60\u786E\u5B9E\u5E0C\u671B\u5220\u9664\u5F53\u524D\u6784\u5EFA? +Yes=\u786E\u8BA4 diff --git a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties index e46c706d24..7a556d1a8b 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_CN.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_CN.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Console\ Output=\u547D\u4EE4\u884C\u8F93\u51FA -View\ as\ plain\ text=\u4EE5\u6587\u672C\u65B9\u5F0F\u67E5\u770B +Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA +View\ as\ plain\ text=\u4EE5\u7EAF\u6587\u672C\u65B9\u5F0F\u67E5\u770B diff --git a/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties b/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties new file mode 100644 index 0000000000..c2c8ec8014 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u7559\u5F53\u524D\u6784\u5EFA diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_CN.properties new file mode 100644 index 0000000000..48f5525352 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\u51C6\u5907 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_CN.properties new file mode 100644 index 0000000000..0afb260980 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=\u5B89\u88C5\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_CN.properties new file mode 100644 index 0000000000..758c6895e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u7B49\u5F85 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_CN.properties new file mode 100644 index 0000000000..f1c7c35164 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Success=\u5B8C\u6210 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_CN.properties new file mode 100644 index 0000000000..758c6895e6 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u7B49\u5F85 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_CN.properties new file mode 100644 index 0000000000..9cf0c29304 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=\u91CD\u542F Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties new file mode 100644 index 0000000000..2d7aff4539 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +warning=\u5F53\u5B89\u88C5\u6210\u529F\u5E76\u4E14\u6CA1\u6709\u8FD0\u884C\u4E2D\u7684\u4EFB\u52A1\u65F6\u91CD\u542FJenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties new file mode 100644 index 0000000000..f41211d40e --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Installing\ Plugins/Upgrades=\u5B89\u88C5\u63D2\u4EF6/\u5347\u7EA7 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties index ddac158346..aaded27293 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=\u8FD4\u56DE\u63A7\u5236\u53F0 Manage\ Jenkins=\u7cfb\u7edf\u7ba1\u7406 +Manage\ Plugins=\u7BA1\u7406\u63D2\u4EF6 diff --git a/core/src/main/resources/hudson/model/User/index_zh_CN.properties b/core/src/main/resources/hudson/model/User/index_zh_CN.properties new file mode 100644 index 0000000000..546b77bf7b --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins\u7528\u6237Id diff --git a/core/src/main/resources/hudson/model/User/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/User/sidepanel_zh_CN.properties index 9428d7ebf5..cfe5746e78 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_zh_CN.properties @@ -23,5 +23,6 @@ People=\u7528\u6237 Builds=\u6784\u5efa Configure=\u8bbe\u7f6e +Delete=\u5220\u9664 My\ Views=\u6211\u7684\u89c6\u56fe Status=\u72b6\u6001 diff --git a/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties b/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties new file mode 100644 index 0000000000..cb621d1b9d --- /dev/null +++ b/core/src/main/resources/hudson/model/View/People/index_zh_CN.properties @@ -0,0 +1,27 @@ +# 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. + +Last\ Active=\u6700\u540E\u6D3B\u52A8\u65F6\u95F4 +Name=\u540D\u79F0 +On=\u5728\u7EBF +People=\u7528\u6237 +User\ Id=\u7528\u6237Id diff --git a/core/src/main/resources/hudson/model/View/builds_zh_CN.properties b/core/src/main/resources/hudson/model/View/builds_zh_CN.properties index d32afbb222..215bac5af3 100644 --- a/core/src/main/resources/hudson/model/View/builds_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/builds_zh_CN.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Export\ as\ plain\ XML=\u5BFC\u51FAXML buildHistory={0} \u7684\u6784\u5efa\u5386\u53f2 diff --git a/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties b/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties index 133ccb8347..811fa1d757 100644 --- a/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/newJob_zh_CN.properties @@ -22,3 +22,6 @@ #CopyExisting=\u590D\u5236\u73B0\u6709\u4EFB\u52A1 #JobName=\u4EFB\u52A1\u540D\u79F0 +CopyExisting=\u62F7\u8D1D\u5DF2\u5B58\u5728\u4EFB\u52A1 + +JobName=\u4EFB\u52A1\u540D\u79F0 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties index bd600e13fd..1179c1fe9a 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_zh_CN.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u6784\u5efa\u5386\u53f2 -People=\u7528\u6237 +Build\ History=\u4EFB\u52A1\u5386\u53F2 +Check\ File\ Fingerprint=\u68C0\u67E5\u6587\u4EF6\u6307\u7EB9 +Delete\ View=\u5220\u9664\u89C6\u56FE +Edit\ View=\u7F16\u8F91\u4EFB\u52A1\u5217\u8868 +NewJob=\u65B0{0} +People=\u67E5\u770B\u7528\u6237 +Project\ Relationship=\u9879\u76EE\u7684\u5173\u7CFB diff --git a/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties new file mode 100644 index 0000000000..f49c6977bb --- /dev/null +++ b/core/src/main/resources/hudson/scm/EmptyChangeLogSet/digest_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +No\ changes.=\u6CA1\u6709\u6539\u53D8\u3002 diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_CN.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_CN.properties index 4b22efbbc3..76b6f20d54 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_CN.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_CN.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Remove\ user/group=\u79FB\u9664\u7528\u6237/\u7EC4 +Toggle\ all=\u5C55\u5F00\u5168\u90E8 User/group=\u7528\u6237/\u7ec4 Anonymous=\u533f\u540d\u7528\u6237 User/group\ to\ add=\u6dfb\u52a0\u7528\u6237/\u7ec4 diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_CN.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_CN.properties index eb37688789..d875825149 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_CN.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Manager\ Password=\u7BA1\u7406\u5BC6\u7801 Server=\u670d\u52a1\u5668 +User\ search\ filter=\u7528\u6237\u641C\u7D22\u8FC7\u6EE4\u5668 diff --git a/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_CN.properties b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_CN.properties new file mode 100644 index 0000000000..1f1a4b8bdc --- /dev/null +++ b/core/src/main/resources/hudson/slaves/JNLPLauncher/main_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Connected\ via\ JNLP\ agent.=\u5DF2\u901A\u8FC7JNLP Agent\u8FDE\u63A5 diff --git a/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_CN.properties b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_CN.properties new file mode 100644 index 0000000000..e0be0ef6d8 --- /dev/null +++ b/core/src/main/resources/hudson/slaves/SlaveComputer/sidepanel2_zh_CN.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. + +Disconnect=\u65AD\u5F00\u8FDE\u63A5 +Log=\u65E5\u5FD7 +System\ Information=\u7CFB\u7EDF\u4FE1\u606F diff --git a/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties new file mode 100644 index 0000000000..e89b7bb242 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/ArtifactArchiver/config_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Files\ to\ archive=\u7528\u4E8E\u5B58\u6863\u7684\u6587\u4EF6 +lastBuildOnly=\u53EA\u4FDD\u7559\u6700\u65B0\u7684\u6210\u529F/\u7A33\u5B9A\u53D1\u5E03\u5305\u4EE5\u8282\u7701\u78C1\u76D8\u7A7A\u95F4 diff --git a/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties new file mode 100644 index 0000000000..5e49f75ff9 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BatchFile/config_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Command=\u547D\u4EE4 diff --git a/core/src/main/resources/hudson/tasks/BuildTrigger/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/BuildTrigger/config_zh_CN.properties new file mode 100644 index 0000000000..eb304144f5 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/BuildTrigger/config_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Projects\ to\ build=\u8981\u6784\u5EFA\u7684\u9879\u76EE +Trigger\ even\ if\ the\ build\ is\ unstable=\u5728\u6784\u5EFA\u4E0D\u7A33\u5B9A\u65F6\u4F9D\u7136\u89E6\u53D1 diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/config_zh_CN.properties new file mode 100644 index 0000000000..073c7fcb03 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/config_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Keep\ the\ build\ logs\ of\ dependencies=\u4FDD\u7559\u6784\u5EFA\u7684\u4F9D\u8D56\u65E5\u5FD7 diff --git a/core/src/main/resources/hudson/tasks/LogRotator/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/LogRotator/config_zh_CN.properties new file mode 100644 index 0000000000..68ed7733b6 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/LogRotator/config_zh_CN.properties @@ -0,0 +1,30 @@ +# 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. + +Days\ to\ keep\ artifacts=\u53D1\u5E03\u5305\u4FDD\u7559\u5929\u6570 +Days\ to\ keep\ builds=\u4FDD\u6301\u6784\u5EFA\u7684\u5929\u6570 +Max\ #\ of\ builds\ to\ keep=\u4FDD\u6301\u6784\u5EFA\u7684\u6700\u5927\u4E2A\u6570 +Max\ #\ of\ builds\ to\ keep\ with\ artifacts=\u53D1\u5E03\u5305\u6700\u5927\u4FDD\u7559#\u4E2A\u6784\u5EFA +if\ not\ empty,\ artifacts\ from\ builds\ older\ than\ this\ number\ of\ days\ will\ be\ deleted,\ but\ the\ logs,\ history,\ reports,\ etc\ for\ the\ build\ will\ be\ kept=\u5982\u679C\u975E\u7A7A\uFF0C\u6BD4\u6B64\u65E9\u7684\u53D1\u5E03\u5305\u5C06\u88AB\u5220\u9664\uFF0C\u4F46\u6784\u5EFA\u7684\u65E5\u5FD7\u3001\u64CD\u4F5C\u5386\u53F2\u3001\u62A5\u544A\u7B49\u5C06\u88AB\u4FDD\u7559 +if\ not\ empty,\ build\ records\ are\ only\ kept\ up\ to\ this\ number\ of\ days=\u5982\u679C\u975E\u7A7A\uFF0C\u6784\u5EFA\u8BB0\u5F55\u5C06\u4FDD\u5B58\u6B64\u5929\u6570 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ build\ records\ are\ kept=\u5982\u679C\u975E\u7A7A\uFF0C\u6700\u591A\u6B64\u6570\u76EE\u7684\u6784\u5EFA\u8BB0\u5F55\u5C06\u88AB\u4FDD\u5B58 +if\ not\ empty,\ only\ up\ to\ this\ number\ of\ builds\ have\ their\ artifacts\ retained=\u5982\u679C\u975E\u7A7A\uFF0C\u6700\u591A\u6B64\u6570\u76EE\u5927\u6784\u5EFA\u5C06\u4FDD\u7559\u4ED6\u4EEC\u7684\u53D1\u5E03\u5305 diff --git a/core/src/main/resources/hudson/tasks/Mailer/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/Mailer/config_zh_CN.properties new file mode 100644 index 0000000000..3806ba92ab --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Mailer/config_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Send\ e-mail\ for\ every\ unstable\ build=\u6BCF\u6B21\u4E0D\u7A33\u5B9A\u7684\u6784\u5EFA\u90FD\u53D1\u9001\u90AE\u4EF6\u901A\u77E5 +Send\ separate\ e-mails\ to\ individuals\ who\ broke\ the\ build=\u5355\u72EC\u53D1\u9001\u90AE\u4EF6\u7ED9\u5BF9\u6784\u5EFA\u9020\u6210\u4E0D\u826F\u5F71\u54CD\u7684\u8D23\u4EFB\u4EBA diff --git a/core/src/main/resources/hudson/tasks/Mailer/global_zh_CN.properties b/core/src/main/resources/hudson/tasks/Mailer/global_zh_CN.properties index 5034d7a262..661b13b529 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/global_zh_CN.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/global_zh_CN.properties @@ -23,11 +23,14 @@ E-mail\ Notification=\u90ae\u4ef6\u901a\u77e5 Test\ configuration\ by\ sending\ e-mail=\u7528\u7cfb\u7edf\u7ba1\u7406\u5458\u6d4b\u8bd5\u90ae\u4ef6\u914d\u7f6e SMTP\ server=SMTP\u670d\u52a1\u5668 +Charset=\u5B57\u7B26\u96C6 Default\ user\ e-mail\ suffix=\u7528\u6237\u9ed8\u8ba4\u90ae\u4ef6\u540e\u7f00 +Sender\ E-mail\ Address=\u53D1\u9001\u8005\u7684\u90AE\u7BB1\u5730\u5740 System\ Admin\ E-mail\ Address=\u7cfb\u7edf\u7ba1\u7406\u5458\u90ae\u4ef6\u5730\u5740 Jenkins\ URL=Jenkins URL User\ Name=\u7528\u6237\u540d Password=\u5bc6\u7801 Use\ SSL=\u4f7f\u7528SSL\u534f\u8bae +Test\ configuration\ by\ sending\ test\ e-mail=\u901A\u8FC7\u53D1\u9001\u6D4B\u8BD5\u90AE\u4EF6\u6D4B\u8BD5\u914D\u7F6E Use\ SMTP\ Authentication=\u4f7f\u7528SMTP\u8ba4\u8bc1 SMTP\ Port=SMTP\u7aef\u53e3 diff --git a/core/src/main/resources/hudson/tasks/junit/ClassResult/list_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/ClassResult/list_zh_CN.properties new file mode 100644 index 0000000000..88ad2d2089 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/ClassResult/list_zh_CN.properties @@ -0,0 +1,27 @@ +# 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. + +Description=\u63CF\u8FF0 +Duration=\u8017\u65F6 +Fail=\u5931\u8D25 +Skip=\u8DF3\u8FC7 +Total=\u5408\u8BA1 diff --git a/core/src/main/resources/hudson/tasks/junit/History/index_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/History/index_zh_CN.properties new file mode 100644 index 0000000000..f366a405ba --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/History/index_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +title={0}\u7684\u5386\u53F2 diff --git a/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties new file mode 100644 index 0000000000..caa156f9c6 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/junit/JUnitResultArchiver/config_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Retain\ long\ standard\ output/error=\u4FDD\u7559\u957F\u7684\u6807\u51C6\u8F93\u51FA/\u9519\u8BEF diff --git a/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_zh_CN.properties new file mode 100644 index 0000000000..2bad7425cd --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/AggregatedTestResultPublisher/config_zh_CN.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. + +Automatically\ aggregate\ all\ downstream\ tests=\u81EA\u52A8\u6574\u5408\u6240\u6709\u7684downstream\u6D4B\u8BD5 +Include\ failed\ builds\ in\ results=\u5728\u7ED3\u6784\u4E2D\u5305\u542B\u5931\u8D25\u7684\u6784\u5EFA +Jobs\ to\ aggregate=\u5408\u5E76\u4EFB\u52A1 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties new file mode 100644 index 0000000000..119242bd3d --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +History=\u5386\u53F2\u8BB0\u5F55 +Previous\ Build=\u4E0A\u6B21\u6784\u5EFA diff --git a/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties new file mode 100644 index 0000000000..63e16512bc --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestResultProjectAction/floatingBox_zh_CN.properties @@ -0,0 +1,26 @@ +# 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. + +Test\ Result\ Trend=\u6D4B\u8BD5\u7ED3\u679C\u8D8B\u52BF +enlarge=\u653E\u5927 +just\ show\ failures=\u53EA\u663E\u793A\u5931\u8D25\u7684 +show\ test\ #\ and\ failure\ #=\u663E\u793A\u6D4B\u8BD5\u548C\u5931\u8D25\u6570\u76EE diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/config_zh_CN.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/config_zh_CN.properties new file mode 100644 index 0000000000..3e87810019 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/config_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule=\u65E5\u7A0B\u8868 diff --git a/core/src/main/resources/hudson/triggers/TimerTrigger/config_zh_CN.properties b/core/src/main/resources/hudson/triggers/TimerTrigger/config_zh_CN.properties new file mode 100644 index 0000000000..3e87810019 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/TimerTrigger/config_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule=\u65E5\u7A0B\u8868 diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties new file mode 100644 index 0000000000..563905c8d0 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u65B0\u89C6\u56FE diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties new file mode 100644 index 0000000000..75a0ab9360 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u521B\u5EFA\u4E00\u4E2A\u65B0\u89C6\u56FE diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties new file mode 100644 index 0000000000..c037a6f952 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u6CA1\u6709 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties index 2e377cd51b..52c3cf1010 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_CN.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u6700\u540e\u6784\u5efa\u72b6\u6001 +Status\ of\ the\ last\ build=\u6700\u65B0\u6784\u5EFA\u72B6\u6001 diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties new file mode 100644 index 0000000000..01a463a302 --- /dev/null +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u62A5\u544A\u4E2D\u662F\u5426\u663E\u793A\u6700\u8FD1\u6784\u5EFA\u7684\u96C6\u6210\u72B6\u6001 diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties new file mode 100644 index 0000000000..1c18f80d56 --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=\u53D6\u6D88\u6B64\u6784\u5EFA +pending=\u8FDE\u63A5\u7B49\u5F85\u4E2D diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_CN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_CN.properties new file mode 100644 index 0000000000..50dd98d86f --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u63A7\u5236\u53F0\u8F93\u51FA diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties index 2616fb4822..45f6b6d81a 100644 --- a/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/index_zh_CN.properties @@ -20,6 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +More\ ...=\u66F4\u591A ... for\ all=\u5168\u90E8 for\ failures=\u5931\u8D25 trend=\u8D8B\u52BF\u56FE diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties index 872e5b1115..f8cf7eede7 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_CN.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Available\ Commands=\u53EF\u7528\u7684\u547D\u4EE4 Jenkins\ CLI=Jenkins \u547d\u4ee4\u884c +blurb=\u4F60\u53EF\u4EE5\u901A\u8FC7\u547D\u4EE4\u884C\u5DE5\u5177\u64CD\u4F5CJenkins\u7684\u8BB8\u591A\u7279\u6027\u3002\u4F60\u53EF\u4EE5\u901A\u8FC7 Wiki\u83B7\u5F97\u66F4\u591A\u4FE1\u606F\u3002\u4F5C\u4E3A\u5F00\u59CB\uFF0C\u4F60\u53EF\u4EE5\u4E0B\u8F7Djenkins-cli.jar\uFF0C\u7136\u540E\u8FD0\u884C\u4E0B\u5217\u547D\u4EE4\uFF1A diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties index 717bc4e684..48a95a50cf 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_CN.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. \#\ of\ executors=\u6267\u884c\u8005\u6570\u91cf +LOADING=\u52A0\u8F7D\u4E2D Labels=\u6807\u8bb0 Home\ directory=\u4e3b\u76ee\u5f55 Quiet\ period=\u751f\u6210\u524d\u7b49\u5f85\u65f6\u95f4 @@ -37,9 +38,11 @@ SCM\ checkout\ retry\ count=SCM\u7b7e\u51fa\u91cd\u8bd5\u6b21\u6570 System\ Message=\u7cfb\u7edf\u6d88\u606f Global\ properties=\u5168\u5c40\u5c5e\u6027 +Build\ Record\ Root\ Directory=\u6784\u5EFA\u6839\u76EE\u5F55 Cloud=\u4e91 Add\ a\ new\ cloud=\u65b0\u589e\u4e00\u4e2a\u4e91 JDKs=JDK\u5149\u5b50 JDK\ installations=JDK\u5b9e\u4f8b List\ of\ JDK\ installations\ on\ this\ system=\u7cfb\u7edfJDK\u5b9e\u4f8b\u5217\u8868 +Workspace\ Root\ Directory=\u5DE5\u4F5C\u7A7A\u95F4\u6839\u76EE\u5F55 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_CN.properties new file mode 100644 index 0000000000..3b8cece7bf --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=\u6062\u590D\u6210\u4E0A\u4E00\u4E2A\u7248\u672C +buttonText=\u964D\u4E3A{0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties new file mode 100644 index 0000000000..75e63e43b6 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_CN.properties @@ -0,0 +1,27 @@ +# 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. + +Check=\u68C0\u67E5 +Check\ File\ Fingerprint=\u68C0\u67E5\u6587\u4EF6\u6807\u8BC6 +File\ to\ check=\u8981\u68C0\u67E5\u7684\u6587\u4EF6 +description=\u5F97\u5230\u4E00\u4E2Ajar\u6587\u4EF6\uFF0C\u4F46\u662F\u4E0D\u77E5\u9053\u5176\u7248\u672C\u53F7\uFF1F\u901A\u8FC7\u68C0\u67E5\u6587\u4EF6\u6807\u8BC6\u5728Jenkins\u7684\u6570\u636E\u5E93\u91CC\u627E\u5230\u7248\u672C\u53F7\u3002 +more\ details=\u8BE6\u7EC6 diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties new file mode 100644 index 0000000000..5b43d3a04f --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_CN.properties @@ -0,0 +1,35 @@ +# 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. + +blue=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F +blue_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\u3002\u4E00\u4E2A\u65B0\u7684\u6784\u5EFA\u6B63\u5728\u8FDB\u884C\u4E2D +grey=\u9879\u76EE\u4ECE\u672A\u6784\u5EFA\uFF0C\u6216\u8005\u88AB\u7981\u7528 +grey_anime=\u7B2C\u4E00\u6B21\u6784\u5EFA\u4E2D +health-00to20=\u9879\u76EE\u5065\u5EB7\u5EA6\u4F4E\u4E8E20%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 +health-21to40=\u9879\u76EE\u5065\u5EB7\u5EA6\u4ECB\u4E8E20%~40%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 +health-41to60=\u9879\u76EE\u5065\u5EB7\u5EA6\u4ECB\u4E8E40%~60%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 +health-61to80=\u9879\u76EE\u5065\u5EB7\u5EA6\u4ECB\u4E8E60%~80%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 +health-81plus=\u9879\u76EE\u5065\u5EB7\u5EA6\u9AD8\u4E8E80%\u3002\u4F60\u53EF\u4EE5\u5C06\u9F20\u6807\u653E\u5728\u9879\u76EE\u56FE\u6807\u4E0A\u4EE5\u83B7\u53D6\u66F4\u591A\u4FE1\u606F\u3002 +red=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u5F7B\u5E95\u5931\u8D25\u3002 +red_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u5F7B\u5E95\u5931\u8D25\u3002\u65B0\u7684\u6784\u5EFA\u8FDB\u884C\u4E2D\u3002 +yellow=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u5305\u542B\u9519\u8BEF\u3002\u8FD9\u4E3B\u8981\u662F\u67D0\u4E9B\u6D4B\u8BD5\u5931\u8D25\u5F15\u8D77\u7684\u3002 +yellow_anime=\u4E0A\u4E00\u4E2A\u6784\u5EFA\u6210\u529F\uFF0C\u4F46\u5305\u6362\u9519\u8BEF\u3002\u4E00\u4E2A\u65B0\u7684\u6784\u5EFA\u8FDB\u884C\u4E2D\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_CN.properties new file mode 100644 index 0000000000..fd26271850 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Invalid\ login\ information.\ Please\ try\ again.=\u767B\u5F55\u4FE1\u606F\u65E0\u6548\u3002\u8BF7\u91CD\u8BD5\u3002 +Try\ again=\u91CD\u8BD5 diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.properties new file mode 100644 index 0000000000..474d802f89 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/login_zh_CN.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. + +Remember\ me\ on\ this\ computer=\u8BB0\u4F4F\u6211,\u5728\u672C\u7535\u8111\u4E0A. +login=\u767B\u5F55 +signUp=\u521B\u5EFA\u4E00\u4E2A\u7528\u6237\u8D26\u53F7 \u5982\u679C\u4F60\u6CA1\u6709\u6CE8\u518C\u7528\u6237. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties index d803c28ee9..eae9179140 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_CN.properties @@ -27,7 +27,7 @@ Configure\ global\ settings\ and\ paths.=\u5168\u5c40\u8bbe\u7f6e&\u8def\u5f84 Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u653e\u5f03\u5f53\u524d\u5185\u5b58\u4e2d\u6240\u6709\u7684\u8bbe\u7f6e\u4fe1\u606f\u5e76\u4ece\u914d\u7f6e\u6587\u4ef6\u4e2d\u91cd\u65b0\u8bfb\u53d6 Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u663e\u793a\u7cfb\u7edf\u73af\u5883\u4fe1\u606f\u4ee5\u5e2e\u52a9\u89e3\u51b3\u95ee\u9898\u3002 Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u6267\u884c\u7528\u4e8e\u7ba1\u7406\u6216\u6545\u969c\u63a2\u6d4b\u6216\u8bca\u65ad\u7684\u4efb\u610f\u811a\u672c\u547d\u4ee4\u3002 -Jenkins\ CLI=Jenkins CLI +Jenkins\ CLI=Jenkins \u547D\u4EE4\u884C(CLI) JenkinsCliText=\u4ece\u60a8\u547d\u4ee4\u884c\u6216\u811a\u672c\u8bbf\u95ee\u6216\u7ba1\u7406\u60a8\u7684Jenkins\u3002 Load\ Statistics=\u8d1f\u8f7d\u7edf\u8ba1 LoadStatisticsText=\u68c0\u67e5\u60a8\u7684\u8d44\u6e90\u5229\u7528\u60c5\u51b5\uff0c\u770b\u770b\u662f\u5426\u9700\u8981\u66f4\u591a\u7684\u8ba1\u7b97\u673a\u6765\u5e2e\u52a9\u60a8\u6784\u5efa\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_CN.properties new file mode 100644 index 0000000000..809ee9a343 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=\u89C6\u56FE\u540D\u79F0 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties new file mode 100644 index 0000000000..318ef12ac6 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_CN.properties @@ -0,0 +1,26 @@ +# 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. + +Compare=\u6BD4\u8F83 +Project\ Relationship=\u9879\u76EE\u7684\u5173\u7CFB +downstream\ project=\u4E0B\u6E38\u9879\u76EE +upstream\ project=\u4E0A\u6E38\u9879\u76EE diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties index 1873769057..2693a973f3 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_CN.properties @@ -20,5 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Enabled=\u542F\u7528 Environment\ Variables=\u73AF\u5883\u53D8\u91CF +Name=\u540D\u79F0 +Plugins=\u63D2\u4EF6 System\ Properties=\u7CFB\u7EDF\u5C5E\u6027 +Version=\u7248\u672C diff --git a/core/src/main/resources/lib/form/advanced_zh_CN.properties b/core/src/main/resources/lib/form/advanced_zh_CN.properties new file mode 100644 index 0000000000..c4404ced45 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=\u9AD8\u7EA7 diff --git a/core/src/main/resources/lib/form/repeatableDeleteButton_zh_CN.properties b/core/src/main/resources/lib/form/repeatableDeleteButton_zh_CN.properties new file mode 100644 index 0000000000..b8dbdf1aff --- /dev/null +++ b/core/src/main/resources/lib/form/repeatableDeleteButton_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Delete=\u5220\u9664 diff --git a/core/src/main/resources/lib/form/repeatable_zh_CN.properties b/core/src/main/resources/lib/form/repeatable_zh_CN.properties new file mode 100644 index 0000000000..9f8cfebf41 --- /dev/null +++ b/core/src/main/resources/lib/form/repeatable_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Add=\u589E\u52A0 diff --git a/core/src/main/resources/lib/form/textarea_zh_CN.properties b/core/src/main/resources/lib/form/textarea_zh_CN.properties new file mode 100644 index 0000000000..47e5435e0a --- /dev/null +++ b/core/src/main/resources/lib/form/textarea_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Hide\ preview=\u9690\u85CF\u9884\u89C8 +Preview=\u9884\u89C8 diff --git a/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties b/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties new file mode 100644 index 0000000000..d5b88a4265 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u8FDB\u7A0B +cancel=\u53D6\u6D88 diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties b/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties new file mode 100644 index 0000000000..c95864a2be --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildProgressBar_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +text=\u5F00\u59CB\u4E8E{0}\u524D
    \u4F30\u8BA1\u5269\u4F59\u65F6\u95F4: {1} diff --git a/core/src/main/resources/lib/hudson/executors_zh_CN.properties b/core/src/main/resources/lib/hudson/executors_zh_CN.properties index 1698afc168..2d70e6b16b 100644 --- a/core/src/main/resources/lib/hudson/executors_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/executors_zh_CN.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Executor\ Status=\u6784\u5efa\u72b6\u6001 +Build\ Executor\ Status=\u4EFB\u52A1\u72B6\u6001 +Building=\u6B63\u5728\u6784\u5EFA Idle=\u7a7a\u95f2 +Master=\u4E3B\u673A Status=\u72b6\u6001 diff --git a/core/src/main/resources/lib/hudson/listScmBrowsers_zh_CN.properties b/core/src/main/resources/lib/hudson/listScmBrowsers_zh_CN.properties new file mode 100644 index 0000000000..0df2dc3e89 --- /dev/null +++ b/core/src/main/resources/lib/hudson/listScmBrowsers_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Auto=\u81EA\u52A8 +Repository\ browser=\u6E90\u7801\u5E93\u6D4F\u89C8\u5668 diff --git a/core/src/main/resources/lib/hudson/node_zh_CN.properties b/core/src/main/resources/lib/hudson/node_zh_CN.properties new file mode 100644 index 0000000000..88cc38516f --- /dev/null +++ b/core/src/main/resources/lib/hudson/node_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +master=\u4E3B\u670D\u52A1\u5668 diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_CN.properties new file mode 100644 index 0000000000..d3e85e648a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenDownstreamBuilding_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Block\ build\ when\ downstream\ project\ is\ building=\u8BE5\u9879\u76EE\u7684\u4E0B\u6E38\u9879\u76EE\u6B63\u5728\u6784\u5EFA\u65F6\u963B\u6B62\u8BE5\u9879\u76EE\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_CN.properties new file mode 100644 index 0000000000..3c2df9655a --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-blockWhenUpstreamBuilding_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Block\ build\ when\ upstream\ project\ is\ building=\u8BE5\u9879\u76EE\u7684\u4E0A\u6E38\u9879\u76EE\u6B63\u5728\u6784\u5EFA\u65F6\u963B\u6B62\u8BE5\u9879\u76EE\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_CN.properties new file mode 100644 index 0000000000..27160416af --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-buildWrappers_zh_CN.properties @@ -0,0 +1,23 @@ +# 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\ Environment=\u6784\u5EFA\u73AF\u5883 diff --git a/core/src/main/resources/lib/hudson/project/config-builders_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-builders_zh_CN.properties new file mode 100644 index 0000000000..b4833005c6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-builders_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Add\ build\ step=\u589E\u52A0\u6784\u5EFA\u6B65\u9AA4 +Build=\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_CN.properties new file mode 100644 index 0000000000..93b6ac8fb6 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-customWorkspace_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Directory=\u76EE\u5F55 +Use\ custom\ workspace=\u4F7F\u7528\u81EA\u5B9A\u4E49\u7684\u5DE5\u4F5C\u7A7A\u95F4 diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties new file mode 100644 index 0000000000..a959c1aedf --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_CN.properties @@ -0,0 +1,24 @@ +# 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\ Build=\u505C\u6B62\u6784\u5EFA +No\ new\ builds\ will\ be\ executed\ until\ the\ project\ is\ re-enabled.=\u76F4\u5230\u5141\u8BB8\u9879\u76EE\u6784\u5EFA,\u5426\u5219\u4E0D\u80FD\u8FDB\u884C\u65B0\u7684\u6784\u5EFA diff --git a/core/src/main/resources/lib/hudson/project/config-publishers_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-publishers_zh_CN.properties new file mode 100644 index 0000000000..0489e5696f --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-publishers_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Post-build\ Actions=\u6784\u5EFA\u540E\u64CD\u4F5C diff --git a/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_CN.properties new file mode 100644 index 0000000000..139de6a2a4 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-quietPeriod_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Number\ of\ seconds=\u79D2\u949F +Quiet\ period=\u5B89\u9759\u671F diff --git a/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties new file mode 100644 index 0000000000..1dd600cc78 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-retryCount_zh_CN.properties @@ -0,0 +1,24 @@ +# 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. + +Retry\ Count=\u91CD\u8BD5\u6B21\u6570 +SCM\ checkout\ retry\ count=SCM\u68C0\u51FA\u91CD\u8BD5\u6B21\u6570 diff --git a/core/src/main/resources/lib/hudson/project/config-scm_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-scm_zh_CN.properties new file mode 100644 index 0000000000..38e1a8cd17 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-scm_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Source\ Code\ Management=\u6E90\u7801\u7BA1\u7406 diff --git a/core/src/main/resources/lib/hudson/project/config-trigger_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-trigger_zh_CN.properties new file mode 100644 index 0000000000..451a321b47 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-trigger_zh_CN.properties @@ -0,0 +1,23 @@ +# 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\ Triggers=\u6784\u5EFA\u89E6\u53D1\u5668 diff --git a/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.properties new file mode 100644 index 0000000000..b6290335b1 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-upstream-pseudo-trigger_zh_CN.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. + +Build\ after\ other\ projects\ are\ built=\u5728\u5176\u4ED6\u9879\u76EE\u6784\u5EFA\u5B8C\u6210\u540E\u624D\u6267\u884C\u6784\u5EFA +Multiple\ projects\ can\ be\ specified\ like\ ''abc,\ def''=\u8D85\u8FC7\u4E00\u4E2A\u9879\u76EE\u53EF\u4EE5\u6307\u5B9A\u4E3A''abc, def'' +Projects\ names=\u5DE5\u7A0B\u540D diff --git a/core/src/main/resources/lib/hudson/project/matrix_zh_CN.properties b/core/src/main/resources/lib/hudson/project/matrix_zh_CN.properties new file mode 100644 index 0000000000..000c9a45af --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/matrix_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Configurations=\u914D\u7F6E diff --git a/core/src/main/resources/lib/hudson/queue_zh_CN.properties b/core/src/main/resources/lib/hudson/queue_zh_CN.properties index 02b9515433..4a02928f66 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_CN.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_CN.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u6784\u5efa\u961f\u5217 +Build\ Queue=\u4EFB\u52A1\u961F\u5217 Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=\u7cfb\u7edf\u6b63\u5728\u5173\u95ed\u3002\u6ca1\u6709\u66f4\u591a\u7684\u6784\u5efa\u4f1a\u88ab\u6267\u884c\u3002 No\ builds\ in\ the\ queue.=\u5f53\u524d\u961f\u5217\u6ca1\u6709\u6784\u5efa\u4efb\u52a1 cancel=\u53d6\u6d88 diff --git a/core/src/main/resources/lib/hudson/test-result_zh_CN.properties b/core/src/main/resources/lib/hudson/test-result_zh_CN.properties new file mode 100644 index 0000000000..2777505236 --- /dev/null +++ b/core/src/main/resources/lib/hudson/test-result_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +no\ failures=\u6CA1\u6709\u5931\u8D25\u7684 diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_CN.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_CN.properties new file mode 100644 index 0000000000..7fc867f485 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_CN.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. + +License=\u8BB8\u53EF +Maven\ ID=Maven ID +Name=\u540D\u79F0 diff --git a/core/src/main/resources/lib/layout/layout_zh_CN.properties b/core/src/main/resources/lib/layout/layout_zh_CN.properties index 3903e84b6a..d1c8892d3e 100644 --- a/core/src/main/resources/lib/layout/layout_zh_CN.properties +++ b/core/src/main/resources/lib/layout/layout_zh_CN.properties @@ -21,7 +21,9 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=\u7981\u7528\u81EA\u52A8\u5237\u65B0 -ENABLE\ AUTO\ REFRESH=\u81EA\u52A8\u5237\u65B0 +ENABLE\ AUTO\ REFRESH=\u6253\u5F00\u81EA\u52A8\u5237\u65B0 Page\ generated=\u9875\u9762\u751F\u6210\u4E8E logout=\u9000\u51FA -searchBox.url=\u641C\u7D22 +search=\u641C\u7D22 +searchBox.url=\u641C\u7D22\u6846 + diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_CN.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_CN.properties new file mode 100644 index 0000000000..8d3ab6cde3 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_CN.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=\u6A21\u5757 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_zh_CN.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_zh_CN.properties new file mode 100644 index 0000000000..e5dcb70b8c --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/configure-entries_zh_CN.properties @@ -0,0 +1,23 @@ +# 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\ Settings=\u6784\u5EFA\u8BBE\u7F6E 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 new file mode 100644 index 0000000000..156b8dc95c --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_CN.properties @@ -0,0 +1,29 @@ +# 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=\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 -- GitLab From 04d0e957b6b08325801f68621bc68ae7d90904c0 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 22:49:50 -0800 Subject: [PATCH 148/158] Community-contributed localization for zh_TW (zh_TW) --- .../AboutJenkins/index_zh_TW.properties | 25 +++++++++++++ .../PluginManager/advanced_zh_TW.properties | 13 +++++-- .../checkUpdates_zh_TW.properties | 25 +++++++++++++ .../PluginManager/index_zh_TW.properties | 27 ++++++++++++++ .../PluginManager/installed_zh_TW.properties | 7 ++++ .../PluginManager/tabBar_zh_TW.properties | 2 +- .../PluginManager/table_zh_TW.properties | 2 ++ .../index_zh_TW.properties | 27 ++++++++++++++ .../message_zh_TW.properties | 24 +++++++++++++ .../OldDataMonitor/manage_zh_TW.properties | 35 +++++++++++++++++++ .../OldDataMonitor/message_zh_TW.properties | 25 +++++++++++++ .../message_zh_TW.properties | 25 +++++++++++++ .../LogRecorderManager/all_zh_TW.properties | 23 ++++++++++++ .../LogRecorderManager/feeds_zh_TW.properties | 23 ++++++++++++ .../LogRecorderManager/index_zh_TW.properties | 26 ++++++++++++++ .../levels_zh_TW.properties | 28 +++++++++++++++ .../sidepanel_zh_TW.properties | 6 +++- .../config_zh_TW.properties | 24 +++++++++++++ .../newJobDetail_zh_TW.properties | 23 ++++++++++++ .../AbstractBuild/index_zh_TW.properties | 29 +++++++++++++++ .../AbstractBuild/sidepanel_zh_TW.properties | 4 +-- .../AbstractBuild/tasks_zh_TW.properties | 3 ++ .../configure-common_zh_TW.properties | 23 ++++++++++++ .../AbstractItem/delete_zh_TW.properties | 3 +- .../AbstractProject/changes_zh_TW.properties | 2 +- .../AbstractProject/main_zh_TW.properties | 2 +- .../sidepanel_zh_TW.properties | 1 + .../description_zh_TW.properties | 23 ++++++++++++ .../CauseAction/summary_zh_TW.properties | 23 ++++++++++++ .../model/ComputerSet/index_zh_TW.properties | 2 ++ .../model/ComputerSet/new_zh_TW.properties | 24 +++++++++++++ .../ComputerSet/sidepanel_zh_TW.properties | 26 ++++++++++++++ .../dir_zh_TW.properties | 24 +++++++++++++ .../ExternalJob/newJobDetail_zh_TW.properties | 24 +++++++++++++ .../newJobDetail_zh_TW.properties | 23 ++++++++++++ .../model/Job/buildTimeTrend_zh_TW.properties | 26 ++++++++++++++ .../model/Job/configure_zh_TW.properties | 3 ++ .../hudson/model/Job/index_zh_TW.properties | 23 ++++++++++++ .../LoadStatistics/main_zh_TW.properties | 29 +++++++++++++++ .../MyViewsProperty/config_zh_TW.properties | 24 +++++++++++++ .../Permalink/link_zh_TW.properties | 23 ++++++++++++ .../model/Run/configure_zh_TW.properties | 26 ++++++++++++++ .../hudson/model/Run/console_zh_TW.properties | 1 + .../hudson/model/Run/delete_zh_TW.properties | 23 ++++++++++++ .../hudson/model/Run/logKeep_zh_TW.properties | 24 +++++++++++++ .../model/TaskAction/log_zh_TW.properties | 23 ++++++++++++ .../ConnectionCheckJob/row_zh_TW.properties | 23 ++++++++++++ .../message_zh_TW.properties | 28 +++++++++++++++ .../Installing/status_zh_TW.properties | 23 ++++++++++++ .../Pending/status_zh_TW.properties | 23 ++++++++++++ .../Success/status_zh_TW.properties | 23 ++++++++++++ .../Pending/status_zh_TW.properties | 23 ++++++++++++ .../RestartJenkinsJob/row_zh_TW.properties | 23 ++++++++++++ .../model/UpdateCenter/body_zh_TW.properties | 23 ++++++++++++ .../model/UpdateCenter/index_zh_TW.properties | 1 + .../UpdateCenter/sidepanel_zh_TW.properties | 1 + .../hudson/model/User/builds_zh_TW.properties | 23 ++++++++++++ .../model/User/configure_zh_TW.properties | 2 +- .../hudson/model/User/index_zh_TW.properties | 23 ++++++++++++ .../model/User/sidepanel_zh_TW.properties | 5 +-- .../model/View/People/index_zh_TW.properties | 4 +++ .../hudson/model/View/builds_zh_TW.properties | 24 +++++++++++++ .../model/View/configure_zh_TW.properties | 26 ++++++++++++++ .../hudson/model/View/newJob_zh_TW.properties | 2 ++ .../model/View/sidepanel_zh_TW.properties | 9 +++-- .../scm/SCM/project-changes_zh_TW.properties | 1 + .../config_zh_TW.properties | 3 ++ .../config_zh_TW.properties | 23 ++++++++++++ .../LDAPSecurityRealm/config_zh_TW.properties | 2 ++ .../PAMSecurityRealm/config_zh_TW.properties | 1 + .../config_zh_TW.properties | 23 ++++++++++++ .../config_zh_TW.properties | 24 +++++++++++++ .../FingerprintAction/index_zh_TW.properties | 28 +++++++++++++++ .../UserProperty/config_zh_TW.properties | 3 +- .../junit/CaseResult/index_zh_TW.properties | 5 ++- .../MetaTabulatedResult/body_zh_TW.properties | 5 ++- .../TestObject/sidepanel_zh_TW.properties | 25 +++++++++++++ .../test/TestResult/index_zh_TW.properties | 2 +- .../ToolInstallation/global_zh_TW.properties | 24 +++++++++++++ .../config_zh_TW.properties | 23 ++++++++++++ .../BuildAction/index_zh_TW.properties | 25 +++++++++++++ .../SCMAction/index_zh_TW.properties | 24 +++++++++++++ .../BuildButtonColumn/column_zh_TW.properties | 23 ++++++++++++ .../myViewTabs_zh_TW.properties | 23 ++++++++++++ .../viewTabs_zh_TW.properties | 23 ++++++++++++ .../columnHeader_zh_TW.properties | 2 +- .../LastFailureColumn/column_zh_TW.properties | 23 ++++++++++++ .../LastSuccessColumn/column_zh_TW.properties | 23 ++++++++++++ .../columnHeader_zh_TW.properties | 2 +- .../columnHeader_zh_TW.properties | 2 +- .../entries_zh_TW.properties | 24 +++++++++++++ .../HistoryWidget/entry_zh_TW.properties | 23 ++++++++++++ .../model/Jenkins/_cli_zh_TW.properties | 2 ++ .../Jenkins/_safeRestart_zh_TW.properties | 24 +++++++++++++ .../model/Jenkins/configure_zh_TW.properties | 4 +++ .../model/Jenkins/downgrade_zh_TW.properties | 24 +++++++++++++ .../Jenkins/fingerprintCheck_zh_TW.properties | 27 ++++++++++++++ .../model/Jenkins/legend_zh_TW.properties | 14 +++++++- .../model/Jenkins/loginError_zh_TW.properties | 25 +++++++++++++ .../model/Jenkins/login_zh_TW.properties | 2 +- .../model/Jenkins/manage_zh_TW.properties | 21 ++++++++--- .../model/Jenkins/newView_zh_TW.properties | 23 ++++++++++++ .../projectRelationship-help_zh_TW.properties | 28 +++++++++++++++ .../projectRelationship_zh_TW.properties | 26 ++++++++++++++ .../model/Jenkins/systemInfo_zh_TW.properties | 5 +++ .../lib/form/advanced_zh_TW.properties | 23 ++++++++++++ .../lib/hudson/buildCaption_zh_TW.properties | 24 +++++++++++++ .../hudson/buildListTable_zh_TW.properties | 2 +- .../hudson/buildProgressBar_zh_TW.properties | 2 +- .../editableDescription_zh_TW.properties | 1 + .../lib/hudson/executors_zh_TW.properties | 5 +-- .../hudson/newFromList/form_zh_TW.properties | 23 ++++++++++++ .../config-disableBuild_zh_TW.properties | 23 ++++++++++++ .../upstream-downstream_zh_TW.properties | 24 +++++++++++++ .../lib/hudson/propertyTable_zh_TW.properties | 1 + .../lib/hudson/queue_zh_TW.properties | 6 ++-- .../lib/hudson/scriptConsole_zh_TW.properties | 25 +++++++++++++ .../thirdPartyLicenses_zh_TW.properties | 25 +++++++++++++ .../lib/layout/layout_zh_TW.properties | 6 ++-- .../lib/layout/main-panel_zh_TW.properties | 23 ++++++++++++ .../resources/lib/test/bar_zh_TW.properties | 25 +++++++++++++ .../maven/MavenBuild/actions_zh_TW.properties | 23 ++++++++++++ .../MavenBuild/executedMojos_zh_TW.properties | 30 ++++++++++++++++ .../MavenModuleSet/actions_zh_TW.properties | 24 +++++++++++++ .../deleteAllDisabledModules_zh_TW.properties | 24 +++++++++++++ .../MavenModuleSet/index_zh_TW.properties | 25 +++++++++++++ .../MavenModuleSet/modules_zh_TW.properties | 23 ++++++++++++ .../newJobDetail_zh_TW.properties | 23 ++++++++++++ .../MavenModuleSetBuild/main_zh_TW.properties | 23 ++++++++++++ .../MavenProbeAction/envVars_zh_TW.properties | 23 ++++++++++++ .../MavenProbeAction/index_zh_TW.properties | 23 ++++++++++++ .../sidepanel_zh_TW.properties | 26 ++++++++++++++ .../systemProperties_zh_TW.properties | 23 ++++++++++++ .../MavenProbeAction/threads_zh_TW.properties | 23 ++++++++++++ .../RedeployPublisher/config_zh_TW.properties | 25 +++++++++++++ .../index_zh_TW.properties | 25 +++++++++++++ .../index_zh_TW.properties | 27 ++++++++++++++ 137 files changed, 2386 insertions(+), 36 deletions(-) create mode 100644 core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/PluginManager/checkUpdates_zh_TW.properties create mode 100644 core/src/main/resources/hudson/PluginManager/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties create mode 100644 core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties create mode 100644 core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties create mode 100644 core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/ExternalJob/newJobDetail_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Job/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Run/configure_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Run/delete_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/User/builds_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/User/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/View/builds_zh_TW.properties create mode 100644 core/src/main/resources/hudson/model/View/configure_zh_TW.properties create mode 100644 core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_TW.properties create mode 100644 core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties create mode 100644 core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_TW.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_TW.properties create mode 100644 core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties create mode 100644 core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_TW.properties create mode 100644 core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_TW.properties create mode 100644 core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties create mode 100644 core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties create mode 100644 core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties create mode 100644 core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties create mode 100644 core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties create mode 100644 core/src/main/resources/lib/form/advanced_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties create mode 100644 core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties create mode 100644 core/src/main/resources/lib/layout/main-panel_zh_TW.properties create mode 100644 core/src/main/resources/lib/test/bar_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenBuild/executedMojos_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/deleteAllDisabledModules_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/envVars_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/index_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/sidepanel_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/systemProperties_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/threads_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/RedeployPublisher/config_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/reporters/MavenAbstractArtifactRecord/index_zh_TW.properties create mode 100644 maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_zh_TW.properties diff --git a/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties b/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.properties new file mode 100644 index 0000000000..8003b81289 --- /dev/null +++ b/core/src/main/resources/hudson/AboutJenkins/index_zh_TW.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. + +about=\u95DC\u65BC Jenkins {0} +blurb=Jenkins \u662F\u793E\u7FA4\u958B\u767C\u7684\u958B\u653E\u539F\u59CB\u78BC\u6301\u7E8C\u6574\u5408\u4F3A\u670D\u5668\u3002 +dependencies=Jenkins \u76F8\u4F9D\u65BC\u4E0B\u5217\u7B2C\u4E09\u65B9\u51FD\u5F0F\u5EAB\u3002 diff --git a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties index ad2f2d963e..5a3886abb9 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/advanced_zh_TW.properties @@ -20,10 +20,17 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Check\ now=\u99AC\u4E0A\u6AA2\u67E5 File=\u6A94\u6848 +HTTP\ Proxy\ Configuration=HTTP \u4EE3\u7406\u4F3A\u670D\u5668\u8A2D\u5B9A Password=\u5BC6\u78BC -Server=\u4F3A\u670D\u6A5F -Submit=\u9001\u4EA4 +Port=\u9023\u63A5\u57E0 +Server=\u4F3A\u670D\u5668 +Submit=\u9001\u51FA +URL=URL +Update\ Site=\u66F4\u65B0\u7DB2\u7AD9 Upload=\u4E0A\u50B3 -Upload\ Plugin=\u4E0A\u50B3\u63D2\u4EF6 +Upload\ Plugin=\u4E0A\u50B3\u5916\u639B\u7A0B\u5F0F User\ name=\u4F7F\u7528\u8005\u540D\u7A31 +lastUpdated=\u66F4\u65B0\u8CC7\u8A0A\u53D6\u5F97\u6642\u9593: {0} \u4EE5\u524D +uploadtext=\u60A8\u53EF\u4EE5\u624B\u52D5\u4E0A\u50B3 .hpi \u6A94\u6848\u4F86\u5B89\u88DD\u4E0D\u5728\u4E2D\u592E\u5132\u5B58\u5EAB\u4E0A\u7684\u5916\u639B\u7A0B\u5F0F\u3002 diff --git a/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_TW.properties new file mode 100644 index 0000000000..68b16416bd --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/checkUpdates_zh_TW.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. + +Checking\ Updates...=\u6B63\u5728\u6AA2\u67E5\u66F4\u65B0... +Done=\u5B8C\u6210 +Go\ back\ to\ update\ center=\u56DE\u5230\u66F4\u65B0\u4E2D\u5FC3 diff --git a/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties new file mode 100644 index 0000000000..2fdae48cdb --- /dev/null +++ b/core/src/main/resources/hudson/PluginManager/index_zh_TW.properties @@ -0,0 +1,27 @@ +# 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. + +All=\u5168\u90E8 +None=\u7121 +Select=\u9078\u53D6 +UpdatePageDescription=\u9019\u4E00\u9801\u5217\u51FA\u6240\u6709\u60A8\u4F7F\u7528\u4E2D\u5916\u639B\u7A0B\u5F0F\u7684\u66F4\u65B0\u3002 +UpdatePageLegend=\u5DF2\u7D93\u5347\u7D1A\u6210\u7684\u5916\u639B\u7A0B\u5F0F\u6703\u6574\u5217\u986F\u793A\u70BA\u505C\u7528\uFF0C\u91CD\u65B0\u555F\u52D5\u5F8C\u5C31\u80FD\u4F7F\u7528\u3002\u7070\u8272\u4F46\u9084\u80FD\u9078\u53D6\u7684\u5916\u639B\u7A0B\u5F0F\u662F\u6B63\u5728\u5B89\u88DD\u6216\u662F\u5DF2\u7D93\u5931\u6557\u3002 diff --git a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties index c8d6bf94f3..a3c366fb23 100644 --- a/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/installed_zh_TW.properties @@ -21,6 +21,13 @@ # THE SOFTWARE. Changes\ will\ take\ effect\ when\ you\ restart\ Jenkins=\u7576\u4F60\u91CD\u65B0\u555F\u52D5Jenkins\u5F8C\u5C31\u6703\u5957\u7528\u4FEE\u6539 +Enabled=\u555F\u7528 Name=\u540D\u7A31 +Pinned=\u639B\u8F09 +Previously\ installed\ version=\u4E4B\u524D\u5B89\u88DD\u7684\u7248\u672C Restart\ Now=\u99AC\u4E0A\u91CD\u65B0\u555F\u52D5 +Restart\ Once\ No\ Jobs\ Are\ Running=\u91CD\u65B0\u555F\u52D5 (\u7B49\u6240\u6709\u4F5C\u696D\u57F7\u884C\u5B8C\u7562) +Uncheck\ to\ disable\ the\ plugin=\u672A\u6838\u53D6\u7684\u5916\u639B\u6703\u88AB\u505C\u7528 +Unpin=\u5378\u9664 Version=\u7248\u672C +downgradeTo=\u964D\u7248\u6210 {0} diff --git a/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties index 2125253510..5184df4dbd 100644 --- a/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/tabBar_zh_TW.properties @@ -21,6 +21,6 @@ # THE SOFTWARE. Advanced=\u9032\u968E -Available=\u6709\u6548\u7684 +Available=\u53EF\u7528\u7684 Installed=\u5DF2\u5B89\u88DD Updates=\u66F4\u65B0 diff --git a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties index 29437a0cad..911e8fbd33 100644 --- a/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties +++ b/core/src/main/resources/hudson/PluginManager/table_zh_TW.properties @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Check\ to\ install\ the\ plugin=\u5C07\u60F3\u8981\u5B89\u88DD\u7684\u5916\u639B\u7A0B\u5F0F\u6838\u53D6\u8D77\u4F86 +Click\ this\ heading\ to\ sort\ by\ category=\u5728\u6A19\u984C\u4E0A\u6309\u4E00\u4E0B\u53EF\u4EE5\u4F9D\u985E\u5225\u9032\u884C\u6392\u5E8F Install=\u5B89\u88DD Installed=\u5DF2\u5B89\u88DD\u7684 Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties new file mode 100644 index 0000000000..21d846301b --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/index_zh_TW.properties @@ -0,0 +1,27 @@ +# 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. + +blurb=JENKINS_HOME \u5FEB\u6EFF\u4E86 +description.1=\u60A8\u7684 JENKINS_HOME ({0}) \u5FEB\u6EFF\u4E86\u3002\u7576\u9019\u500B\u76EE\u9304\u5B8C\u5168\u6C92\u6709\u4EFB\u4F55\u7A7A\u9593\u6642\uFF0C\u5C07\u5C0E\u81F4 Jenkins \u767C\u751F\u56B4\u91CD\u7684\u932F\u8AA4\u3002 +description.2=\u70BA\u4E86\u907F\u514D\u767C\u751F\u61BE\u4E8B\uFF0C\u60A8\u61C9\u8A72\u99AC\u4E0A\u63A1\u53D6\u884C\u52D5\u3002 +solution.1=\u6E05\u6389\u9019\u500B\u5206\u5272\u5340\u4E0A\u7684\u67D0\u4E9B\u6A94\u6848\uFF0C\u7A7A\u51FA\u4E00\u4E9B\u7A7A\u9593\u3002 +solution.2=\u5C07 JENKINS_HOME \u79FB\u5230\u6BD4\u8F03\u5927\u7684\u5206\u5272\u5340\u88E1\u3002\u5728\u6211\u5011\u7684 Wiki \u4E0A\u6709\u4F5C\u6CD5\u8AAA\u660E\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties new file mode 100644 index 0000000000..e690ceccde --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/HudsonHomeDiskUsageMonitor/message_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Tell\ me\ more=\u8A73\u7D30\u8AAA\u660E +blurb=\u60A8 Jenkins \u7684\u8CC7\u6599\u76EE\u9304 "{0}" (\u4E5F\u5C31\u662F JENKINS_HOME) \u5FEB\u6EFF\u4E86\u3002\u60A8\u61C9\u8A72\u5728\u5B83\u7206\u6389\u524D\u76E1\u5FEB\u8655\u7406\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties new file mode 100644 index 0000000000..1aabf6712d --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/manage_zh_TW.properties @@ -0,0 +1,35 @@ +# 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. + +Discard\ Unreadable\ Data=\u522A\u9664\u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599 +Error=\u932F\u8AA4 +Manage\ Old\ Data=\u7BA1\u7406\u820A\u8CC7\u6599 +Name=\u540D\u7A31 +No\ old\ data\ was\ found.=\u6C92\u6709\u627E\u5230\u820A\u8CC7\u6599\u3002 +Type=\u985E\u578B +Unreadable\ Data=\u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599 +Version=\u7248\u672C +blurb.1=\u5132\u5B58\u8CC7\u6599\u7684\u65B9\u5F0F\u6539\u8B8A\u6642\uFF0CJenkins \u4F7F\u7528\u4EE5\u4E0B\u7B56\u7565\u8655\u7406: \u8CC7\u6599\u8F09\u5165\u6642\u6703\u88AB\u8F49\u79FB\u6210\u65B0\u7684\u7D50\u69CB\uFF0C\u800C\u4E14\u4E0D\u6703\u88AB\u4EE5\u65B0\u683C\u5F0F\u91CD\u65B0\u5132\u5B58\u3002\u5982\u6B64\u624D\u80FD\u5728\u5FC5\u8981\u7684\u6642\u5019\u5C0D Jenkins \u964D\u7248\u3002\u7136\u800C\uFF0C\u8CC7\u6599\u5C31\u6709\u53EF\u80FD\u88AB\u6C38\u9060\u4EE5\u820A\u683C\u5F0F\u5132\u5B58\u5728\u78C1\u789F\u4E0A\u3002\u4E0B\u8868\u5217\u51FA\u7684\u5C31\u662F\u9019\u985E\u8CC7\u6599\uFF0C\u4EE5\u53CA Jenknins \u8CC7\u6599\u7D50\u69CB\u8B8A\u66F4\u7684\u7248\u672C\u3002 +blurb.2=\u8B80\u53D6\u8CC7\u6599\u6642\u4E5F\u6709\u53EF\u80FD\u767C\u751F\u932F\u8AA4 (\u4F8B\u5982: \u67D0\u500B\u5916\u639B\u7A0B\u5F0F\u65B0\u589E\u67D0\u4E9B\u8CC7\u6599\u9032\u4F86\uFF0C\u4F46\u662F\u8A72\u5916\u639B\u7A0B\u5F0F\u5F8C\u4F86\u88AB\u95DC\u9589\u4E86; \u7D50\u69CB\u8B8A\u66F4\u6642\u6C92\u6709\u5BEB\u5C0D\u61C9\u7684\u8F49\u79FB\u7A0B\u5F0F; \u6216 Jenkins \u88AB\u964D\u7248\u524D\u5DF2\u7D93\u5BEB\u5165\u4E86\u820A\u7248\u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599)\u3002\u9019\u4E9B\u932F\u8AA4\u90FD\u6703\u88AB\u8A18\u9304\u4E0B\u4F86\uFF0C\u4F46\u662F\u8CC7\u6599\u5C31\u6703\u88AB\u7565\u904E\uFF0C\u8B93 Jenkins \u53EF\u4EE5\u7E7C\u7E8C\u555F\u52D5\u4E26\u9806\u5229\u904B\u4F5C\u3002 +blurb.3=\u4E0B\u5217\u8868\u55AE\u53EF\u4EE5\u8B93\u60A8\u5C07\u6A94\u6848\u4EE5\u73FE\u884C\u683C\u5F0F\u91CD\u65B0\u5132\u5B58\u3002\u4F46\u662F\u91CD\u65B0\u5132\u5B58\u5F8C\u6BD4\u6307\u5B9A\u7248\u672C\u9084\u8981\u820A\u7684 Jenkins \u5C07\u7121\u6CD5\u8B80\u53D6\u9019\u4E9B\u8CC7\u6599\u3002\u4E0D\u904E\u8981\u6CE8\u610F\u7684\u662F\uFF0C\u5373\u4F7F\u60A8\u6C92\u6709\u4F7F\u7528\u9019\u4EFD\u8868\u55AE\uFF0C\u53EA\u6709\u55AE\u7D14\u7684\u900F\u904E Jenkins \u5EFA\u7ACB\u6216\u662F\u8A2D\u5B9A\u5DE5\u4F5C\u53CA\u57F7\u884C\u5EFA\u7F6E\u4F5C\u696D\uFF0C\u90FD\u6709\u53EF\u80FD\u5132\u5B58\u5230\u820A\u7248 Jenkins \u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599\u3002\u6B64\u5916\uFF0C\u5728\u91CD\u65B0\u5132\u5B58\u6642\uFF0C\u4E0A\u8868\u53F3\u5074\u5217\u51FA\u932F\u8AA4\u7684\u76F8\u95DC\u8CC7\u6599\u90FD\u6703\u907A\u5931\u3002 +blurb.4=\u8CC7\u6599\u8F49\u79FB\u7684\u8655\u7406\u529F\u80FD\u65E5\u5F8C\u53EF\u80FD\u6703\u88AB\u79FB\u9664\uFF0C\u4F46\u662F\u8CC7\u6599\u7D50\u69CB\u6539\u8B8A\u7684 150 \u7248\u4E4B\u5167\u6211\u5011\u6703\u76E1\u91CF\u78BA\u4FDD\u76F8\u5BB9\u6027\u3002\u8D85\u904E\u9019\u500B\u7248\u672C\u7684\u8CC7\u6599\u6703\u4EE5\u7C97\u9AD4\u986F\u793A\uFF0C\u5EFA\u8B70\u60A8\u91CD\u65B0\u5132\u5B58\u9019\u4E9B\u6A94\u6848\u3002 +blurb.6=\u4FDD\u7559\u9019\u4E9B\u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599\u4E26\u4E0D\u6703\u6709\u4EC0\u9EBC\u5927\u7919\uFF0CJenkins \u6703\u5B89\u5168\u7684\u5FFD\u7565\u5B83\u5011\u3002\u4E0D\u904E\u70BA\u4E86\u907F\u514D\u6BCF\u6B21 Jenkins \u555F\u52D5\u6642\u90FD\u6703\u5217\u51FA\u76F8\u95DC\u7684\u8A0A\u606F\uFF0C\u60A8\u53EF\u4EE5\u4F7F\u7528\u4E0B\u65B9\u7684\u6309\u9215\u91CD\u65B0\u5132\u5B58\u6A94\u6848\uFF0C\u6C38\u4E45\u522A\u9664\u90A3\u4E9B\u7121\u6CD5\u8B80\u53D6\u7684\u8CC7\u6599\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.properties new file mode 100644 index 0000000000..33c50f91ed --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/OldDataMonitor/message_zh_TW.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. + +Dismiss=\u5FFD\u7565 +Manage=\u7BA1\u7406 +You\ have\ data\ stored\ in\ an\ older\ format\ and/or\ unreadable\ data.=\u60A8\u6709\u8CC7\u6599\u683C\u5F0F\u904E\u820A\u6216\u662F\u7121\u6CD5\u8B80\u53D6\u3002 diff --git a/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.properties new file mode 100644 index 0000000000..70dbfcabaa --- /dev/null +++ b/core/src/main/resources/hudson/diagnosis/ReverseProxySetupMonitor/message_zh_TW.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. + +Dismiss=\u4E0D\u7BA1 +More\ Info=\u66F4\u591A\u8CC7\u8A0A +blurb=\u60A8\u7684 Reverse Proxy \u8A2D\u5B9A\u597D\u50CF\u6709\u9EDE\u554F\u984C\u5594\u3002 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties new file mode 100644 index 0000000000..2858aa516d --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/all_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ Log=Jenkins \u65E5\u8A8C diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties new file mode 100644 index 0000000000..24d792e537 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/feeds_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +All=\u5168\u90E8 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties new file mode 100644 index 0000000000..eedbec5837 --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/index_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Add\ new\ log\ recorder=\u65B0\u589E\u65E5\u8A8C\u8A18\u9304\u5668 +All\ Jenkins\ Logs=\u6240\u6709 Jenkins \u65E5\u8A8C +Log\ Recorders=\u65E5\u8A8C\u8A18\u9304\u5668 +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties new file mode 100644 index 0000000000..572fe5b73c --- /dev/null +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/levels_zh_TW.properties @@ -0,0 +1,28 @@ +# 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. + +Adjust\ Levels=\u8ABF\u6574\u7B49\u7D1A +Level=\u7B49\u7D1A +Logger\ Configuration=Logger \u8A2D\u5B9A +Name=\u540D\u7A31 +Submit=\u9001\u51FA +defaultLoggerMsg=\u6C92\u6709\u540D\u7A31\u7684 Logger \u4EE3\u8868\u662F\u9810\u8A2D Logger\u3002\u5B83\u7684\u7B49\u7D1A\u6703\u88AB\u6240\u6709\u6C92\u6709\u6307\u5B9A\u7B49\u7D1A\u7684 Logger \u7E7C\u627F\u3002 diff --git a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties index 8b976fbc2c..77c1fec904 100644 --- a/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/logging/LogRecorderManager/sidepanel_zh_TW.properties @@ -21,4 +21,8 @@ # THE SOFTWARE. All\ Logs=\u6240\u6709\u8a18\u9304 -Manage\ Jenkins=\u7ba1\u7406Jenkins +Back\ to\ Dashboard=\u56DE\u5230\u5100\u8868\u677F +Log\ Levels=\u65E5\u8A8C\u7B49\u7D1A +Logger\ List=Logger \u6E05\u55AE +Manage\ Jenkins=\u7BA1\u7406 Jenkins +New\ Log\ Recorder=\u65B0\u589E\u65E5\u8A8C\u8A18\u9304\u5668 diff --git a/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_TW.properties b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_TW.properties new file mode 100644 index 0000000000..30d6898a7e --- /dev/null +++ b/core/src/main/resources/hudson/markup/RawHtmlMarkupFormatter/config_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +blurb=\u5C07\u9019\u4E9B\u6587\u5B57\u8996\u70BA HTML\uFF0C\u539F\u6C41\u539F\u5473\u7684\u986F\u793A\u51FA\u4F86 +disableSyntaxHighlighting=\u95DC\u9589\u8A9E\u6CD5\u5F69\u8272\u6A19\u793A diff --git a/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_zh_TW.properties b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_zh_TW.properties new file mode 100644 index 0000000000..e2307ce7f0 --- /dev/null +++ b/core/src/main/resources/hudson/matrix/MatrixProject/newJobDetail_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +body=\u9069\u5408\u9700\u8981\u6709\u5927\u91CF\u4E0D\u540C\u8A2D\u5B9A\u7684\u5C08\u6848\uFF0C\u4F8B\u5982\u5728\u5404\u5F0F\u74B0\u5883\u4E0A\u9032\u884C\u6E2C\u8A66\u3001\u5E73\u53F0\u76F8\u4F9D\u7684\u5EFA\u69CB...\u7B49\u4F5C\u696D\u3002 diff --git a/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties new file mode 100644 index 0000000000..6590e6bb6c --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractBuild/index_zh_TW.properties @@ -0,0 +1,29 @@ +# 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=\u5EFA\u7F6E +Build\ Artifacts=\u5EFA\u7F6E\u7522\u51FA\u6A94\u6848 +Downstream\ Builds=\u4E0B\u6E38\u5EFA\u7F6E +Not\ yet\ determined=\u9084\u6C92\u5224\u5B9A\u904E +Took=\u8CBB\u6642 +none=\u7121 +startedAgo={0} \u524D\u958B\u59CB diff --git a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties index 8382801f8b..d17aed0070 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/sidepanel_zh_TW.properties @@ -20,5 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Next\ Build=\u4E0B\u4E00\u500B\u5EFA\u69CB -Previous\ Build=\u4E0A\u6B21\u5EFA\u69CB +Next\ Build=\u4E0B\u4E00\u6B21\u5EFA\u7F6E +Previous\ Build=\u524D\u4E00\u6B21\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties index 87d8137dd6..0daff81938 100644 --- a/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractBuild/tasks_zh_TW.properties @@ -23,4 +23,7 @@ Back\ to\ Project=\u56DE\u5230\u5C08\u6848 Changes=\u8B8A\u66F4 Console\ Output=\u756B\u9762\u8F38\u51FA +Edit\ Build\ Information=\u7DE8\u8F2F\u5EFA\u7F6E\u8CC7\u8A0A Status=\u72C0\u614B +View\ Build\ Information=\u6AA2\u8996\u5EFA\u7F6E\u8CC7\u8A0A +raw=\u539F\u59CB\u8CC7\u6599 diff --git a/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties new file mode 100644 index 0000000000..32133261e1 --- /dev/null +++ b/core/src/main/resources/hudson/model/AbstractItem/configure-common_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced\ Project\ Options\ configure-common=\u9032\u968E\u5C08\u6848\u9078\u9805 diff --git a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties index b859b19d2f..93ca52ae2a 100644 --- a/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractItem/delete_zh_TW.properties @@ -21,4 +21,5 @@ # THE SOFTWARE. Are\ you\ sure\ about\ deleting\ the\ job?=\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u9019\u500B\u5DE5\u4F5C\u55CE? -Yes=\u662F\u7684 +Yes=\u662F +blurb=\u78BA\u5B9A\u8981\u522A\u9664 {0} ''''{1}''''? diff --git a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties index 64ee1eb921..d0ce38bd63 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/changes_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Changes=\u6539\u8B8A +Changes=\u8B8A\u66F4 diff --git a/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties index 6da1d823b2..210b9abeb9 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/main_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Successful\ Artifacts=\u6700\u5F8C\u6210\u529F\u7684\u52A0\u5DE5 +Last\ Successful\ Artifacts=\u6700\u5F8C\u6210\u529F\u7522\u51FA\u7684\u6A94\u6848 Latest\ Test\ Result=\u6700\u5F8C\u6E2C\u8A66\u7D50\u679C Recent\ Changes=\u6700\u8FD1\u7684\u8B8A\u66F4 Workspace=\u5DE5\u4F5C\u5340 diff --git a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties index 63e784f603..fb331bb315 100644 --- a/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/AbstractProject/sidepanel_zh_TW.properties @@ -21,6 +21,7 @@ # THE SOFTWARE. Back\ to\ Dashboard=\u56DE\u5230\u5100\u8868\u677F +Build\ scheduled=\u5EFA\u7ACB\u6392\u7A0B Changes=\u8B8A\u66F4 Configure=\u8A2D\u5B9A Status=\u72C0\u614B diff --git a/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties new file mode 100644 index 0000000000..3f519a55ab --- /dev/null +++ b/core/src/main/resources/hudson/model/Cause/UpstreamCause/description_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +started_by_project=\u7531\u4E0A\u6E38\u5C08\u6848 {0} \u7684\u7B2C {1} \u6B21\u5EFA\u7F6E\u6240\u89F8\u767C diff --git a/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties b/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties new file mode 100644 index 0000000000..0e4d40bfa8 --- /dev/null +++ b/core/src/main/resources/hudson/model/CauseAction/summary_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Ntimes=({0} \u6B21) diff --git a/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties index 2375368899..6ffa54065a 100644 --- a/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/ComputerSet/index_zh_TW.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Configure=\u8A2D\u5B9A Name=\u540D\u7A31 +Refresh\ status=\u66F4\u65B0\u72C0\u614B diff --git a/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties new file mode 100644 index 0000000000..34ea7973bc --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/new_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Copy\ Existing\ Node=\u8907\u88FD\u65E2\u6709\u7BC0\u9EDE +Node\ name=\u7BC0\u9EDE\u540D\u7A31 diff --git a/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties new file mode 100644 index 0000000000..de3225c66c --- /dev/null +++ b/core/src/main/resources/hudson/model/ComputerSet/sidepanel_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Back\ to\ Dashboard=\u8FD4\u56DE\u5100\u8868\u677F +Configure=\u8A2D\u5B9A +Manage\ Jenkins=\u7BA1\u7406 Jenkins +New\ Node=\u65B0\u589E\u7BC0\u9EDE diff --git a/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties new file mode 100644 index 0000000000..5507fbe29f --- /dev/null +++ b/core/src/main/resources/hudson/model/DirectoryBrowserSupport/dir_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +all\ files\ in\ zip=\u5168\u90E8\u6253\u5305\u6210 Zip \u6A94 +view=\u6AA2\u8996 diff --git a/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_zh_TW.properties b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_zh_TW.properties new file mode 100644 index 0000000000..104e95bc52 --- /dev/null +++ b/core/src/main/resources/hudson/model/ExternalJob/newJobDetail_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +body=\u9019\u985E\u578B\u7684\u4F5C\u696D\u5145\u8A31\u60A8\u8A18\u9304 Jenkins \u4E4B\u5916\uFF0C\u751A\u81F3\u662F\u5728\u9060\u7AEF\u6A5F\u5668\u4E0A\u7684\u7A0B\u5E8F\u7684\u57F7\u884C\u7D50\u679C\u3002\u9019\u500B\u8A2D\u8A08\u80FD\u8B93\u60A8\u7684 Jenkins \u505A\u70BA\u65E2\u6709\u81EA\u52D5\u5316\u7CFB\u7D71\u7684\u5100\u8868\u7248\u3002\u9019\u4EFD\u6587\u4EF6\u88E1\u6709\u8A73\u7D30\u7684\u8AAA\u660E\u3002 + diff --git a/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_TW.properties b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_TW.properties new file mode 100644 index 0000000000..e9b2578031 --- /dev/null +++ b/core/src/main/resources/hudson/model/FreeStyleProject/newJobDetail_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +body=\u9019\u662F Jenkins \u7684\u4E3B\u8981\u529F\u80FD\u3002Jenkins \u6703\u5EFA\u69CB\u60A8\u7684\u5C08\u6848\uFF0C\u642D\u914D\u4E0A\u4EFB\u4F55\u7684\u7248\u672C\u7BA1\u7406\u7CFB\u7D71\u53CA\u5EFA\u69CB\u7CFB\u7D71\uFF0C\u751A\u81F3\u65BC\u4E5F\u53EF\u4EE5\u7528\u4F86\u505A\u8EDF\u9AD4\u5EFA\u69CB\u4E4B\u5916\u7684\u5176\u4ED6\u4E8B\u60C5\u3002 diff --git a/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties new file mode 100644 index 0000000000..891bf036e1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/buildTimeTrend_zh_TW.properties @@ -0,0 +1,26 @@ +# 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=\u5EFA\u7F6E +Build\ Time\ Trend=\u5EFA\u7F6E\u6642\u9593\u8DA8\u52E2 +Duration=\u671F\u9593 +Timeline=\u6642\u9593\u8EF8 diff --git a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties index d832dfb2b1..7e930ba3d3 100644 --- a/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Job/configure_zh_TW.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Description=\u63CF\u8FF0 +LOADING=\u8B80\u53D6\u4E2D Save=\u5132\u5B58 +name={0} \u540D\u7A31 diff --git a/core/src/main/resources/hudson/model/Job/index_zh_TW.properties b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties new file mode 100644 index 0000000000..9ddd39554f --- /dev/null +++ b/core/src/main/resources/hudson/model/Job/index_zh_TW.properties @@ -0,0 +1,23 @@ +# 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 diff --git a/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties new file mode 100644 index 0000000000..4ac9af2cdc --- /dev/null +++ b/core/src/main/resources/hudson/model/LoadStatistics/main_zh_TW.properties @@ -0,0 +1,29 @@ +# 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. + +Load\ statistics\ graph=\u8CA0\u8F09\u7D71\u8A08\u5716 +Long=\u9577\u671F +Medium=\u4E2D\u671F +Short=\u77ED\u671F +Timespan=\u6642\u9593\u7BC4\u570D +blurb=\u8CA0\u8F09\u7D71\u8A08\u8FFD\u8E64\u4E09\u9805\u4E3B\u8981\u7684\u8CC7\u6E90\u4F7F\u7528\u7387\u8A08\u91CF\u503C:
    \u57F7\u884C\u7A0B\u5F0F\u7684\u6578\u76EE
    \u4EE5\u4E3B\u6A5F\u4F86\u770B\uFF0C\u9019\u662F\u8A72\u4E3B\u6A5F\u4E0A\u7684\u57F7\u884C\u7A0B\u5F0F\u6578\u76EE\u3002\u4EE5 Label \u4F86\u770B\uFF0C\u9019\u662F\u8A72 Label \u4E0B\u6240\u6709\u4E3B\u6A5F\u7684\u57F7\u884C\u7A0B\u5F0F\u6578\u76EE\u7E3D\u5408\u3002\u4EE5\u6574\u500B Jenkins \u7684\u89D2\u5EA6\u4F86\u770B\uFF0C\u9019\u662F\u9019\u500B Jenkins \u914D\u7F6E\u88E1\u6240\u4EE5\u4E3B\u6A5F\u4E0A\u6240\u6709\u57F7\u884C\u7A0B\u5F0F\u7684\u6578\u76EE\u52A0\u7E3D\u3002\u9664\u4E86\u8A2D\u5B9A\u6539\u8B8A\u53EF\u80FD\u6703\u6578\u503C\u5F71\u97FF\u5916\uFF0CSlave \u662F\u5426\u96E2\u7DDA\u4E5F\u540C\u6A23\u6703\u6709\u5F71\u97FF\u3002
    \u4F5C\u696D\u4E2D\u57F7\u884C\u7A0B\u5F0F\u7684\u6578\u76EE
    \u9019\u689D\u7DDA\u8A18\u9304\u6B63\u5728\u9032\u884C\u5EFA\u7F6E\u7684\u57F7\u884C\u7A0B\u5F0F\u7684\u6578\u76EE\u3002\u9019\u500B\u6578\u503C\u8207\u7E3D\u6578\u76EE\u7684\u6BD4\u4F8B\u5C31\u662F\u8CC7\u6E90\u4F7F\u7528\u7387\u3002\u5982\u679C\u6240\u6709\u7684\u57F7\u884C\u7A0B\u5F0F\u9577\u6642\u9593\u90FD\u5F88\u5FD9\u788C\uFF0C\u5EFA\u8B70\u60A8\u5728 Jenkins \u53E2\u96C6\u88E1\u591A\u52A0\u5E7E\u53F0\u96FB\u8166\u3002
    \u4F47\u5217\u9577\u5EA6
    \u9019\u662F\u5EFA\u7F6E\u4F47\u5217\u4E2D\u7684\u4F5C\u696D\u6578\u76EE\uFF0C\u9019\u4E9B\u4F5C\u696D\u6B63\u5728\u7B49\u5019\u6709\u7A7A\u7684\u57F7\u884C\u7A0B\u5F0F (\u6578\u503C\u5206\u5225\u6307\u9019\u90E8\u4E3B\u6A5F\u3001\u9019\u500B Label\u3001\u6574\u500B Jenkins \u914D\u7F6E)\u3002\u4E26\u4E0D\u5305\u542B\u5728\u5B89\u975C\u9031\u671F\u88E1\u7684\u4F5C\u696D\uFF0C\u4E5F\u4E0D\u5305\u542B\u4F47\u5217\u4E2D\u5DF2\u6709\u5148\u524D\u7248\u672C\u6B63\u5728\u5EFA\u7F6E\u7684\u4F5C\u696D\u3002\u5982\u679C\u9019\u689D\u7DDA\u4E00\u76F4\u90FD\u5728 0 \u4E4B\u4E0A\uFF0C\u4EE3\u8868\u60A8\u7684 Jenkins \u5982\u679C\u591A\u52A0\u5E7E\u90E8\u4E3B\u6A5F\u53EF\u4EE5\u57F7\u884C\u66F4\u591A\u7684\u5EFA\u7F6E\u4F5C\u696D\u3002
    \u9019\u5F35\u5716\u662F\u4EE5\u6307\u6578\u79FB\u52D5\u5E73\u5747\u7DDA\u7E6A\u88FD\uFF0C\u8CC7\u6599\u4EE5\u4E09\u7A2E\u4E0D\u540C\u7684\u5468\u671F\u6536\u96C6\uFF0C\u5206\u5225\u662F 10 \u79D2\u30011 \u5206\u9418\u4EE5\u53CA 1 \u5C0F\u6642\u3002 +title=\u8CA0\u8F09\u7D71\u8A08: {0} diff --git a/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties b/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties new file mode 100644 index 0000000000..ca7103baf9 --- /dev/null +++ b/core/src/main/resources/hudson/model/MyViewsProperty/config_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Default\ View=\u9810\u8A2D\u8996\u5716 +description=\u79FB\u5230\u4F7F\u7528\u8005\u500B\u4EBA\u8996\u5716\u6642\u9810\u8A2D\u4F7F\u7528\u7684\u8996\u5716 diff --git a/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties new file mode 100644 index 0000000000..b70a95faff --- /dev/null +++ b/core/src/main/resources/hudson/model/PermalinkProjectAction/Permalink/link_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +format={0} ({1}), {2} \u524D diff --git a/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties b/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties new file mode 100644 index 0000000000..d715a0a054 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/configure_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Description=\u63CF\u8FF0 +DisplayName=\u986F\u793A\u540D\u7A31 +LOADING=\u8F09\u5165\u4E2D +Save=\u5132\u5B58 diff --git a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties index 2aac50118e..cde654fed8 100644 --- a/core/src/main/resources/hudson/model/Run/console_zh_TW.properties +++ b/core/src/main/resources/hudson/model/Run/console_zh_TW.properties @@ -22,3 +22,4 @@ Console\ Output=\u756B\u9762\u8F38\u51FA View\ as\ plain\ text=\u7D14\u6587\u5B57\u6AA2\u8996 +skipSome=\u7565\u904E {0,number,integer} KB.. \u5B8C\u6574\u5167\u5BB9 diff --git a/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties new file mode 100644 index 0000000000..69f2e7543f --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/delete_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Delete\ this\ build=\u522A\u9664\u9019\u6B21\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties b/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties new file mode 100644 index 0000000000..499893f9f1 --- /dev/null +++ b/core/src/main/resources/hudson/model/Run/logKeep_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Don''t\ keep\ this\ build\ forever=\u4E0D\u8981\u6C38\u4E45\u4FDD\u5B58\u9019\u6B21\u5EFA\u7F6E +Keep\ this\ build\ forever=\u6C38\u4E45\u4FDD\u5B58\u9019\u6B21\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties b/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties new file mode 100644 index 0000000000..cf231d8bf0 --- /dev/null +++ b/core/src/main/resources/hudson/model/TaskAction/log_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Clear\ error\ to\ retry=\u6E05\u9664\u932F\u8AA4\uFF0C\u91CD\u8A66\u4E00\u6B21 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties new file mode 100644 index 0000000000..133b4a9e17 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/ConnectionCheckJob/row_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Preparation=\u6E96\u5099 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties new file mode 100644 index 0000000000..e90d4c4b96 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/CoreUpdateMonitor/message_zh_TW.properties @@ -0,0 +1,28 @@ +# 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. + +NewVersionAvailable=\u65B0\u7248\u7684 Jenkins ({0}) \u5DF2\u7D93\u53EF\u4EE5\u4E0B\u8F09 (\u6539\u7248\u8A18\u9304)\u3002 +Or\ Upgrade\ Automatically=\u6216\u662F\u81EA\u52D5\u5347\u7248 +UpgradeComplete=Jenkins {0} \u5347\u7248\u5B8C\u6210\uFF0C\u7B49\u5019\u91CD\u65B0\u555F\u52D5\u3002 + + +UpgradeProgress=Jenkins {0} \u5347\u7D1A\u4F5C\u696D\u6B63\u5728\u9032\u884C\u4E2D\u6216\u662F\u5DF2\u7D93\u5931\u6557\u3002 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties new file mode 100644 index 0000000000..dd44a261c0 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Installing/status_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Installing=\u5B89\u88DD\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties new file mode 100644 index 0000000000..02e1a14603 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Pending/status_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u64F1\u7F6E\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties new file mode 100644 index 0000000000..a0ba9a5b69 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/DownloadJob/Success/status_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Success=\u6210\u529F diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties new file mode 100644 index 0000000000..02e1a14603 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/Pending/status_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Pending=\u64F1\u7F6E\u4E2D diff --git a/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties new file mode 100644 index 0000000000..b81e92026b --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/RestartJenkinsJob/row_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Restarting\ Jenkins=\u91CD\u65B0\u555F\u52D5 Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties new file mode 100644 index 0000000000..80218c7c81 --- /dev/null +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +warning=\u5B89\u88DD\u5B8C\u6210\u4E14\u6C92\u6709\u4EFB\u4F55\u5DE5\u4F5C\u5728\u57F7\u884C\u7684\u6642\u5019\u91CD\u65B0\u555F\u52D5 Jenkins diff --git a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties index 36fb0e127f..c84ca483d5 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/index_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Installing\ Plugins/Upgrades=\u5B89\u88DD\u5916\u639B\u7A0B\u5F0F\u6216\u5347\u7248 Restart\ When\ No\ Jobs\ Are\ Running=\u7576\u6C92\u6709\u4EFB\u4F55\u5DE5\u4F5C\u6B63\u5728\u57F7\u884C\u6642\u91CD\u65B0\u555F\u52D5 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties index e5eefb29cf..cd0f123f93 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/sidepanel_zh_TW.properties @@ -20,5 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Back\ to\ Dashboard=\u56DE\u5230\u5100\u8868\u677F Manage\ Jenkins=\u7BA1\u7406Jenkins Manage\ Plugins=\u7BA1\u7406\u63D2\u4EF6 diff --git a/core/src/main/resources/hudson/model/User/builds_zh_TW.properties b/core/src/main/resources/hudson/model/User/builds_zh_TW.properties new file mode 100644 index 0000000000..44d659ffc5 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/builds_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +title={0} \u7684\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/model/User/configure_zh_TW.properties b/core/src/main/resources/hudson/model/User/configure_zh_TW.properties index e597c32fc6..c779a94370 100644 --- a/core/src/main/resources/hudson/model/User/configure_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/configure_zh_TW.properties @@ -22,4 +22,4 @@ Description=\u63CF\u8FF0 Save=\u5132\u5B58 -Your\ name=\u4F60\u7684\u540D\u5B57 +Your\ name=\u60A8\u7684\u540D\u5B57 diff --git a/core/src/main/resources/hudson/model/User/index_zh_TW.properties b/core/src/main/resources/hudson/model/User/index_zh_TW.properties new file mode 100644 index 0000000000..e7259b3041 --- /dev/null +++ b/core/src/main/resources/hudson/model/User/index_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ User\ Id=Jenkins \u4F7F\u7528\u8005 ID diff --git a/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties index 06a19a188a..c0a9f9ef53 100644 --- a/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/User/sidepanel_zh_TW.properties @@ -21,7 +21,8 @@ # THE SOFTWARE. Delete=\u522A\u9664 -People=\u4F7F\u7528\u8005 -Builds=\u5EFA\u69CB +My\ Views=\u6211\u7684\u8996\u5716 +People=\u4EBA\u54E1 +Builds=\u5EFA\u7F6E Configure=\u8A2D\u5B9A Status=\u72C0\u614B diff --git a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties index 2375368899..11dfdd0af8 100644 --- a/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/People/index_zh_TW.properties @@ -20,4 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Last\ Active=\u6700\u8FD1\u4E00\u6B21\u6D3B\u52D5 Name=\u540D\u7A31 +On=\u6A21\u7D44 +People=\u4EBA\u54E1 +User\ Id=\u4F7F\u7528\u8005 ID diff --git a/core/src/main/resources/hudson/model/View/builds_zh_TW.properties b/core/src/main/resources/hudson/model/View/builds_zh_TW.properties new file mode 100644 index 0000000000..497ef9fe41 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/builds_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Export\ as\ plain\ XML=\u532F\u51FA\u6210 XML +buildHistory={0} \u5EFA\u7F6E\u6B77\u7A0B diff --git a/core/src/main/resources/hudson/model/View/configure_zh_TW.properties b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties new file mode 100644 index 0000000000..6019534bf7 --- /dev/null +++ b/core/src/main/resources/hudson/model/View/configure_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Description=\u63CF\u8FF0 +Filter\ build\ executors=\u7BE9\u9078\u5EFA\u7F6E\u57F7\u884C\u7A0B\u5F0F +Filter\ build\ queue=\u7BE9\u9078\u5EFA\u7F6E\u4F47\u5217 +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties index bb88ddd0b0..5154d31537 100644 --- a/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/newJob_zh_TW.properties @@ -21,3 +21,5 @@ # THE SOFTWARE. #JobName=\u5DE5\u4F5C\u540D\u7A31 +CopyExisting=\u8907\u88FD\u65E2\u6709\u7684{0} +JobName={0}\u540D\u7A31 diff --git a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties index 431b5b7284..3acaef50d9 100644 --- a/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties +++ b/core/src/main/resources/hudson/model/View/sidepanel_zh_TW.properties @@ -20,5 +20,10 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ History=\u5EFA\u69CB\u6B77\u7A0B -People=\u4F7F\u7528\u8005 +Build\ History=\u5EFA\u7F6E\u6B77\u7A0B +Check\ File\ Fingerprint=\u6AA2\u67E5\u6587\u4EF6\u7248\u672C +Delete\ View=\u522A\u9664\u8996\u5716 +Edit\ View=\u7DE8\u8F2F\u8996\u5716 +NewJob=\u65B0\u589E{0} +People=\u4EBA\u54E1 +Project\ Relationship=\u9805\u76EE\u95DC\u9023 diff --git a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties index 65e566b9fd..394d08cc25 100644 --- a/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties +++ b/core/src/main/resources/hudson/scm/SCM/project-changes_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +No\ changes\ in\ any\ of\ the\ builds.=\u9019\u6B21\u5EFA\u7F6E\u88E1\u4E26\u6C92\u6709\u4EFB\u4F55\u7684\u8B8A\u66F4\u3002 detail=\u7D30\u7BC0 diff --git a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_TW.properties b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_TW.properties index f5733ee16c..4703e939a4 100644 --- a/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/GlobalMatrixAuthorizationStrategy/config_zh_TW.properties @@ -21,3 +21,6 @@ # THE SOFTWARE. Add=\u65B0\u589E +Anonymous=\u533F\u540D\u4F7F\u7528\u8005 +User/group=\u4F7F\u7528\u8005/\u7FA4\u7D44 +User/group\ to\ add=\u8981\u65B0\u589E\u7684\u4F7F\u7528\u8005/\u7FA4\u7D44 diff --git a/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties new file mode 100644 index 0000000000..8413f409e9 --- /dev/null +++ b/core/src/main/resources/hudson/security/HudsonPrivateSecurityRealm/config_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Allow\ users\ to\ sign\ up=\u5141\u8A31\u4F7F\u7528\u8005\u8A3B\u518A diff --git a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_TW.properties b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_TW.properties index 87b164d603..b78ded6c24 100644 --- a/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/LDAPSecurityRealm/config_zh_TW.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Allow\ blank\ rootDN=\u5141\u8A31\u7A7A\u767D\u7684 rootDN Server=\u4F3A\u670D\u5668 +root\ DN=Root DN diff --git a/core/src/main/resources/hudson/security/PAMSecurityRealm/config_zh_TW.properties b/core/src/main/resources/hudson/security/PAMSecurityRealm/config_zh_TW.properties index 3218e25030..ba1279d56e 100644 --- a/core/src/main/resources/hudson/security/PAMSecurityRealm/config_zh_TW.properties +++ b/core/src/main/resources/hudson/security/PAMSecurityRealm/config_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Service\ Name=\u670D\u52D9\u540D\u7A31 Test=\u6E2C\u8A66 diff --git a/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties new file mode 100644 index 0000000000..504af8db61 --- /dev/null +++ b/core/src/main/resources/hudson/security/csrf/DefaultCrumbIssuer/config_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Enable\ proxy\ compatibility=\u958B\u555F\u4EE3\u7406\u4F3A\u670D\u5668\u76F8\u5BB9\u6027 diff --git a/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties new file mode 100644 index 0000000000..33b8d9ee7b --- /dev/null +++ b/core/src/main/resources/hudson/slaves/EnvironmentVariablesNodeProperty/config_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +name=\u540D\u7A31 +value=\u503C diff --git a/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_TW.properties b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_TW.properties new file mode 100644 index 0000000000..9e295b5225 --- /dev/null +++ b/core/src/main/resources/hudson/tasks/Fingerprinter/FingerprintAction/index_zh_TW.properties @@ -0,0 +1,28 @@ +# 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. + +Age=\u5E74\u9F61 +File=\u6A94\u6848 +Original\ owner=\u539F\u59CB\u64C1\u6709\u8005 +Recorded\ Fingerprints=\u7279\u5FB5\u503C\u8A18\u9304 +more\ details=\u8A73\u7D30\u8CC7\u6599 +outside\ Jenkins=Jenkins \u5916\u90E8 diff --git a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_zh_TW.properties b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_zh_TW.properties index abf4e848fb..ea18498924 100644 --- a/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/Mailer/UserProperty/config_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -E-mail\ address=\u96FB\u5B50\u4FE1\u7BB1 +E-mail\ address=E-mail \u4FE1\u7BB1 +description=\u60A8\u7684 e-mail \u4FE1\u7BB1\uFF0C\u4F8B\u5982 joe.chin@sun.com diff --git a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_TW.properties b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_TW.properties index 0c204185ed..1d23462b98 100644 --- a/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/junit/CaseResult/index_zh_TW.properties @@ -21,4 +21,7 @@ # THE SOFTWARE. Error\ Message=\u932F\u8AA4\u8A0A\u606F -took=\u4F7F\u7528 +failingFor=\u9023\u7E8C {0} \u6B21\u5EFA\u7F6E\u90FD\u5931\u6557 +since.after='' ''\u958B\u59CB +since.before=\u5F9E'' '' +took=\u8CBB\u6642 {0} diff --git a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_TW.properties b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_TW.properties index 3e04b5fd3f..11a484f4f2 100644 --- a/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/test/MetaTabulatedResult/body_zh_TW.properties @@ -23,7 +23,10 @@ Age=\u7D2F\u7A4D\u6642\u9593 All\ Failed\ Tests=\u6240\u6709\u5931\u6557\u7684\u6E2C\u8A66 All\ Tests=\u6240\u6709\u6E2C\u8A66 -Duration=\u6301\u7E8C\u671F\u9593 +Duration=\u6301\u7E8C\u6642\u9593 Fail=\u5931\u6557 +Loading...=\u8F09\u5165\u4E2D... +Skip=\u7565\u904E +Test\ Name=\u6E2C\u8A66\u540D\u7A31 Total=\u7E3D\u8A08 diff=\u5DEE\u7570 diff --git a/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_TW.properties b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_TW.properties new file mode 100644 index 0000000000..fc2bbbe9ac --- /dev/null +++ b/core/src/main/resources/hudson/tasks/test/TestObject/sidepanel_zh_TW.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. + +History=\u6B77\u7A0B +Next\ Build=\u4E0B\u4E00\u6B21\u5EFA\u7F6E +Previous\ Build=\u4E0A\u4E00\u6B21\u5EFA\u7F6E diff --git a/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_TW.properties b/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_TW.properties index 20986fbc52..78727dfe6d 100644 --- a/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_TW.properties +++ b/core/src/main/resources/hudson/tasks/test/TestResult/index_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -took=\u4F7F\u7528 {0} +took=\u4F7F\u7528 {0}\u3002 diff --git a/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties new file mode 100644 index 0000000000..bc72ad05f2 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolInstallation/global_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +description=\u672C\u7CFB\u7D71\u4E0A\u7684 {0} \u5B89\u88DD\u6E05\u55AE +title={0} \u5B89\u88DD diff --git a/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_TW.properties b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_TW.properties new file mode 100644 index 0000000000..2375368899 --- /dev/null +++ b/core/src/main/resources/hudson/tools/ToolLocationNodeProperty/config_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Name=\u540D\u7A31 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_zh_TW.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_zh_TW.properties new file mode 100644 index 0000000000..ee37fcb5c9 --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/BuildAction/index_zh_TW.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. + +Polling\ Log=\u8F2A\u8A62\u65E5\u8A8C +View\ as\ plain\ text=\u4EE5\u7D14\u6587\u5B57\u986F\u793A +blurb=\u9019\u9801\u6703\u5217\u51FA\u89F8\u767C\u9019\u4E00\u6B21\u5EFA\u7F6E\u7684\u8F2A\u8A62\u65E5\u8A8C\u3002 diff --git a/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_TW.properties b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_TW.properties new file mode 100644 index 0000000000..bee1b052af --- /dev/null +++ b/core/src/main/resources/hudson/triggers/SCMTrigger/SCMAction/index_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Polling\ has\ not\ run\ yet.=\u9084\u6C92\u6709\u57F7\u884C\u904E\u8F2A\u8A62\u3002 +title="{0}" diff --git a/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties new file mode 100644 index 0000000000..f7a4016ac3 --- /dev/null +++ b/core/src/main/resources/hudson/views/BuildButtonColumn/column_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Schedule\ a\ build=\u6392\u7A0B\u5EFA\u7F6E\u4F5C\u696D diff --git a/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_TW.properties b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_TW.properties new file mode 100644 index 0000000000..91d6caa3d9 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultMyViewsTabBar/myViewTabs_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u65B0\u589E\u8996\u5716 diff --git a/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_TW.properties b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_TW.properties new file mode 100644 index 0000000000..91d6caa3d9 --- /dev/null +++ b/core/src/main/resources/hudson/views/DefaultViewsTabBar/viewTabs_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +New\ View=\u65B0\u589E\u8996\u5716 diff --git a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_zh_TW.properties b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_zh_TW.properties index 6b442a8054..b30982c814 100644 --- a/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_zh_TW.properties +++ b/core/src/main/resources/hudson/views/LastDurationColumn/columnHeader_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Last\ Duration=\u4E0A\u6B21\u5EFA\u7F6E\u8017\u8CBB +Last\ Duration=\u4E0A\u6B21\u5EFA\u7F6E\u82B1\u8CBB\u6642\u9593 diff --git a/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties new file mode 100644 index 0000000000..61c97fa941 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastFailureColumn/column_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u7121\u8CC7\u6599 diff --git a/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties new file mode 100644 index 0000000000..2a028b00d7 --- /dev/null +++ b/core/src/main/resources/hudson/views/LastSuccessColumn/column_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +N/A=\u6C92\u6709 diff --git a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_TW.properties b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_TW.properties index aec221f7bd..cdb5038dad 100644 --- a/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_TW.properties +++ b/core/src/main/resources/hudson/views/StatusColumn/columnHeader_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Status\ of\ the\ last\ build=\u6700\u5F8C\u4E00\u6B21\u5EFA\u69CB\u7684\u72C0\u614B +Status\ of\ the\ last\ build=\u6700\u5F8C\u4E00\u6B21\u5EFA\u7F6E\u7684\u72C0\u614B diff --git a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_TW.properties b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_TW.properties index 4d621888ac..543c152c5b 100644 --- a/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_TW.properties +++ b/core/src/main/resources/hudson/views/WeatherColumn/columnHeader_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u8FD1\u671F\u5EFA\u69CB\u7684\u72C0\u614B\u6C23\u8C61\u5831\u544A +Weather\ report\ showing\ aggregated\ status\ of\ recent\ builds=\u6700\u8FD1\u5E7E\u6B21\u5EFA\u7F6E\u7D50\u679C\u7684\u6C23\u8C61\u5831\u544A diff --git a/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties new file mode 100644 index 0000000000..c8209e817e --- /dev/null +++ b/core/src/main/resources/hudson/widgets/BuildHistoryWidget/entries_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +cancel\ this\ build=\u53D6\u6D88\u9019\u6B21\u5EFA\u7F6E +pending=\u64F1\u7F6E\u4E2D diff --git a/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties new file mode 100644 index 0000000000..4d707b79fc --- /dev/null +++ b/core/src/main/resources/hudson/widgets/HistoryWidget/entry_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Console\ Output=\u756B\u9762\u8F38\u51FA diff --git a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties index 0ea345aae3..5f7e1cd0f1 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/_cli_zh_TW.properties @@ -20,4 +20,6 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Available\ Commands=\u53EF\u7528\u7684\u6307\u4EE4 Jenkins\ CLI=Jenkins \u547D\u4EE4\u5217 +blurb=\u60A8\u53EF\u4EE5\u900F\u904E\u547D\u4EE4\u5217\u5DE5\u4F5C\u4F7F\u7528 Jenkins \u7684\u8AF8\u591A\u529F\u80FD\u3002\u5728 Wiki \u4E0A\u6709\u8A73\u7D30\u7684\u529F\u80FD\u8AAA\u660E\u3002\u5FC3\u52D5\u4E0D\u5982\u99AC\u4E0A\u884C\u52D5\uFF0C\u4E0B\u8F09 jenkins-cli.jar\uFF0C\u4E26\u57F7\u884C\u4EE5\u4E0B\u6307\u4EE4: diff --git a/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties new file mode 100644 index 0000000000..aa187acd11 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/_safeRestart_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ restarting\ Jenkins?\ Jenkins\ will\ restart\ once\ all\ running\ jobs\ are\ finished.=\u60A8\u78BA\u5B9A\u8981\u91CD\u65B0\u555F\u52D5 Jenkins \u55CE\uFF1FJenkins \u6703\u5728\u6240\u6709\u57F7\u884C\u4E2D\u7684\u5DE5\u4F5C\u90FD\u5B8C\u6210\u5F8C\u91CD\u65B0\u555F\u52D5\u3002 +Yes=\u662F diff --git a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties index fd377a0ced..a400a9ce6a 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/configure_zh_TW.properties @@ -21,6 +21,10 @@ # THE SOFTWARE. Access\ Control=\u5B58\u53D6\u63A7\u5236 +Build\ Record\ Root\ Directory=\u5EFA\u7F6E\u8A18\u9304\u6839\u76EE\u9304 +Home\ directory=Home \u76EE\u9304 +LOADING=\u8F09\u5165\u4E2D Random=\u96A8\u6A5F Save=\u5132\u5B58 System\ Message=\u7CFB\u7D71\u8A0A\u606F +Workspace\ Root\ Directory=\u5DE5\u4F5C\u5340\u6839\u76EE\u9304 diff --git a/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties new file mode 100644 index 0000000000..3f5f2bb4cd --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/downgrade_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Restore\ the\ previous\ version\ of\ Jenkins=\u56DE\u5FA9\u6210\u4E4B\u524D\u7248\u672C\u7684 Jenkins\u3002 +buttonText=\u964D\u7248\u6210 {0} diff --git a/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties new file mode 100644 index 0000000000..30d6a3fd23 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/fingerprintCheck_zh_TW.properties @@ -0,0 +1,27 @@ +# 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. + +Check=\u6AA2\u67E5 +Check\ File\ Fingerprint=\u6AA2\u67E5\u6A94\u6848\u7279\u5FB5 +File\ to\ check=\u8981\u6AA2\u67E5\u7684\u6A94\u6848 +description=\u624B\u908A\u6709\u4E00\u500B JAR \u6A94\uFF0C\u4F46\u662F\u537B\u4E0D\u77E5\u9053\u5B83\u5230\u5E95\u662F\u54EA\u4E00\u7248\u7684?
    \u900F\u904E\u6A94\u6848\u7684\u7279\u5FB5\u503C\u5230 Jenkins \u7684\u8CC7\u6599\u5EAB\u88E1\u627E\u770B\u770B\u5427 +more\ details=\u66F4\u591A\u8CC7\u8A0A diff --git a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties index e51c72ff97..5e3b6d9392 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/legend_zh_TW.properties @@ -20,4 +20,16 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -blue=\u6700\u5F8C\u5EFA\u69CB\u662F\u6210\u529F\u7684 +blue=\u6700\u8FD1\u4E00\u6B21\u7684\u5EFA\u7F6E\u662F\u6210\u529F\u7684\u3002 +blue_anime=\u6700\u8FD1\u4E00\u6B21\u7684\u5EFA\u7F6E\u6210\u529F\u3002\u6B63\u5728\u9032\u884C\u65B0\u7684\u5EFA\u7F6E\u4F5C\u696D\u3002 +grey=\u9019\u500B\u5C08\u6848\u5F9E\u4F86\u6C92\u6709\u5EFA\u7F6E\u904E\uFF0C\u6216\u662F\u5C08\u6848\u5DF2\u7D93\u88AB\u95DC\u9589\u3002 +grey_anime=\u6B63\u5728\u9032\u884C\u8A72\u5C08\u6848\u7684\u7B2C\u4E00\u6B21\u5EFA\u7F6E\u4F5C\u696D\u3002 +health-00to20=\u5C08\u6848\u5065\u5EB7\u4F4E\u65BC 20%\u3002\u5C07\u6ED1\u9F20\u6E38\u6A19\u79FB\u5230\u5C08\u6848\u5716\u793A\u4E0A\u53EF\u4EE5\u770B\u5230\u66F4\u8A73\u7D30\u7684\u89E3\u91CB\u3002 +health-21to40=\u5C08\u6848\u5065\u5EB7\u4ECB\u65BC 20% \u5230 40% \u4E4B\u9593\u3002\u5C07\u6ED1\u9F20\u6E38\u6A19\u79FB\u5230\u5C08\u6848\u5716\u793A\u4E0A\u53EF\u4EE5\u770B\u5230\u66F4\u8A73\u7D30\u7684\u89E3\u91CB\u3002 +health-41to60=\u5C08\u6848\u5065\u5EB7\u4ECB\u65BC 40% \u5230 60% \u4E4B\u9593\u3002\u5C07\u6ED1\u9F20\u6E38\u6A19\u79FB\u5230\u5C08\u6848\u5716\u793A\u4E0A\u53EF\u4EE5\u770B\u5230\u66F4\u8A73\u7D30\u7684\u89E3\u91CB\u3002 +health-61to80=\u5C08\u6848\u5065\u5EB7\u4ECB\u65BC 60% \u5230 80% \u4E4B\u9593\u3002\u5C07\u6ED1\u9F20\u6E38\u6A19\u79FB\u5230\u5C08\u6848\u5716\u793A\u4E0A\u53EF\u4EE5\u770B\u5230\u66F4\u8A73\u7D30\u7684\u89E3\u91CB\u3002 +health-81plus=\u5C08\u6848\u5065\u5EB7\u9AD8\u65BC 80%\u3002\u5C07\u6ED1\u9F20\u6E38\u6A19\u79FB\u5230\u5C08\u6848\u5716\u793A\u4E0A\u53EF\u4EE5\u770B\u5230\u66F4\u8A73\u7D30\u7684\u89E3\u91CB\u3002 +red=\u6700\u8FD1\u4E00\u6B21\u5EFA\u7F6E\u6158\u70C8\u7684\u5931\u6557\u4E86\u3002 +red_anime=\u6700\u8FD1\u4E00\u6B21\u7684\u5EFA\u7F6E\u5931\u6557\u3002\u6B63\u5728\u9032\u884C\u65B0\u7684\u5EFA\u7F6E\u4F5C\u696D\u3002 +yellow=\u6700\u8FD1\u4E00\u6B21\u5EFA\u7F6E\u6210\u529F\uFF0C\u4F46\u662F\u4E26\u4E0D\u7A69\u5B9A\u3002\u4E3B\u8981\u539F\u56E0\u53EF\u80FD\u662F\u90E8\u5206\u6E2C\u8A66\u6848\u4F8B\u672A\u901A\u904E\u3002 +yellow_anime=\u6700\u8FD1\u4E00\u6B21\u7684\u5EFA\u7F6E\u6210\u529F\u4F46\u4E0D\u7A69\u5B9A\u3002\u6B63\u5728\u9032\u884C\u65B0\u7684\u5EFA\u7F6E\u4F5C\u696D\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.properties new file mode 100644 index 0000000000..4b096b9a5c --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/loginError_zh_TW.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. + +If\ you\ are\ a\ system\ administrator\ and\ suspect\ this\ to\ be\ a\ configuration\ problem,\ see\ the\ server\ console\ output\ for\ more\ details.=\u5982\u679C\u60A8\u662F\u7CFB\u7D71\u7BA1\u7406\u54E1\uFF0C\u800C\u4E14\u61F7\u7591\u662F\u7CFB\u7D71\u8A2D\u5B9A\u554F\u984C\uFF0C\u8ACB\u67E5\u770B\u4F3A\u670D\u5668\u7684 Console \u8F38\u51FA\uFF0C\u88E1\u9762\u53EF\u80FD\u6709\u66F4\u8A73\u7D30\u7684\u8CC7\u6599\u3002 +Invalid\ login\ information.\ Please\ try\ again.=\u7121\u6548\u7684\u767B\u5165\u8CC7\u8A0A\u3002\u8ACB\u518D\u8A66\u4E00\u6B21\u3002 +Try\ again=\u518D\u8A66\u4E00\u6B21 diff --git a/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties index e951c1c6fc..5b36cf5530 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/login_zh_TW.properties @@ -21,7 +21,7 @@ # THE SOFTWARE. Password=\u5BC6\u78BC -Remember\ me\ on\ this\ computer=\u8A18\u4F4F\u6211\u6709\u767B\u5165 +Remember\ me\ on\ this\ computer=\u5728\u9019\u53F0\u96FB\u8166\u4E0A\u8A18\u4F4F\u767B\u5165\u72C0\u614B User=\u4F7F\u7528\u8005\u5E33\u865F login=\u767B\u5165 signUp=\u5EFA\u7ACB\u65B0\u5E33\u865F\u5982\u679C\u4F60\u9084\u6C92\u6709\u81EA\u5DF1\u7684\u5E33\u865F. diff --git a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties index dea0074337..b88e8be46c 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/manage_zh_TW.properties @@ -20,13 +20,26 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Configure\ System=\u914D\u7F6E\u7CFB\u7D71 -Configure\ global\ settings\ and\ paths.=\u914D\u7F6E\u5168\u57DF\u7684\u8A2D\u5B9A\u53CA\u8DEF\u5F91 +Add,\ remove,\ control\ and\ monitor\ the\ various\ nodes\ that\ Jenkins\ runs\ jobs\ on.=\u65B0\u589E\u3001\u79FB\u9664\u3001\u63A7\u5236\u6216\u76E3\u63A7 Jenkins \u57F7\u884C\u4F5C\u696D\u7684\u7BC0\u9EDE\u3002 +Add,\ remove,\ disable\ or\ enable\ plugins\ that\ can\ extend\ the\ functionality\ of\ Jenkins.=\u5916\u639B\u7A0B\u5F0F\u662F\u80FD\u64F4\u5145 Jenkins \u529F\u80FD\u7684\u7A0B\u5F0F\uFF0C\u60A8\u53EF\u4EE5\u5728\u9019\u88E1\u65B0\u589E\u3001\u79FB\u9664\u3001\u95DC\u9589\u6216\u662F\u958B\u555F\u9019\u4E9B\u5916\u639B\u7A0B\u5F0F\u3002 +Cancel\ Shutdown=\u53D6\u6D88\u505C\u6A5F +Configure\ System=\u8A2D\u5B9A\u7CFB\u7D71 +Configure\ global\ settings\ and\ paths.=\u8A2D\u5B9A\u5168\u57DF\u7684\u8A2D\u5B9A\u503C\u53CA\u8DEF\u5F91\u3002 +Discard\ all\ the\ loaded\ data\ in\ memory\ and\ reload\ everything\ from\ file\ system.=\u653E\u68C4\u6240\u6709\u8F09\u5165\u5230\u8A18\u61B6\u9AD4\u8A2D\u7684\u8CC7\u6599\uFF0C\u518D\u5168\u90E8\u7531\u6A94\u6848\u7CFB\u7D71\u4E2D\u8F09\u5165\u3002 +Displays\ various\ environmental\ information\ to\ assist\ trouble-shooting.=\u986F\u793A\u7CFB\u7D71\u74B0\u5883\u76F8\u95DC\u8CC7\u8A0A\uFF0C\u5E6B\u52A9\u8655\u7406\u554F\u984C\u3002 +Executes\ arbitrary\ script\ for\ administration/trouble-shooting/diagnostics.=\u57F7\u884C\u4EFB\u4F55\u7BA1\u7406\u3001\u554F\u984C\u6392\u9664\u3001\u8A3A\u65B7\u7684 Script\u3002 Jenkins\ CLI=Jenkins \u547D\u4EE4\u5217 +JenkinsCliText=\u7D93\u7531 Shell \u6216\u662F\u60A8\u5BEB\u7684 Script \u5B58\u53D6\u53CA\u7BA1\u7406 Jenkins\u3002 Load\ Statistics=\u8CA0\u8F09\u7D71\u8A08 +LoadStatisticsText=\u6AA2\u67E5\u60A8\u7684\u8CC7\u6E90\u4F7F\u7528\u7387\uFF0C\u770B\u770B\u662F\u4E0D\u8981\u9700\u8981\u66F4\u591A\u4E3B\u6A5F\u624D\u6490\u5F97\u4F4F\u3002 Manage\ Jenkins=\u7BA1\u7406 Jenkins Manage\ Nodes=\u7BA1\u7406\u7BC0\u9EDE -Manage\ Plugins=\u7BA1\u7406\u63D2\u4EF6 -Reload\ Configuration\ from\ Disk=\u5F9E\u78C1\u789F\u91CD\u65B0\u8F09\u5165\u914D\u7F6E\u6A94 +Manage\ Plugins=\u7BA1\u7406\u5916\u639B\u7A0B\u5F0F +Prepare\ for\ Shutdown=\u6E96\u5099\u95DC\u6A5F +Reload\ Configuration\ from\ Disk=\u5F9E\u78C1\u789F\u91CD\u65B0\u8F09\u5165\u8A2D\u5B9A +Script\ Console=Script \u4E3B\u63A7\u53F0 +Stops\ executing\ new\ builds,\ so\ that\ the\ system\ can\ be\ eventually\ shut\ down\ safely.=\u4E0D\u518D\u57F7\u884C\u4EFB\u4F55\u65B0\u7684\u5EFA\u69CB\u4F5C\u696D\uFF0C\u8B93\u7CFB\u7D71\u6700\u5F8C\u53EF\u4EE5\u5B89\u5168\u7684\u505C\u6A5F\u3002 System\ Information=\u7CFB\u7D71\u8CC7\u8A0A System\ Log=\u7CFB\u7D71\u8A18\u9304 +SystemLogText=\u7CFB\u7D71\u8A18\u9304\u4FDD\u5B58\u4E86 java.util.logging \u6709\u95DC\u65BC Jenkins \u7684\u8F38\u51FA\u7D50\u679C\u3002 +Useful\ when\ you\ modified\ config\ files\ directly\ on\ disk.=\u5982\u679C\u60A8\u525B\u525B\u76F4\u63A5\u5728\u78C1\u789F\u4E0A\u4FEE\u6539\u8A2D\u5B9A\u6A94\uFF0C\u9019\u500B\u529F\u80FD\u5C31\u61C9\u8A72\u883B\u6709\u7528\u7684\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties new file mode 100644 index 0000000000..bfe0f78377 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/newView_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +View\ name=\u8996\u5716\u540D\u7A31 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties new file mode 100644 index 0000000000..5760c98162 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship-help_zh_TW.properties @@ -0,0 +1,28 @@ +# 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. + +For\ this\ feature\ to\ work,\ the\ following\ conditions\ need\ to\ be\ met:=\u70BA\u4E86\u8981\u80FD\u4F7F\u7528\u9019\u500B\u529F\u80FD\uFF0C\u5FC5\u9808\u7B26\u5408\u4E0B\u5217\u689D\u4EF6: +The\ downstream\ project\ records\ the\ fingerprints\ of\ the\ upstream\ files\ it\ uses=\u4E0B\u6E38\u5C08\u6848\u8981\u8A18\u9304\u7528\u5230\u7684\u4E0A\u6E38\u6A94\u6848\u7279\u5FB5 +The\ upstream\ project\ records\ the\ fingerprints\ of\ its\ build\ artifacts=\u4E0A\u6E38\u5C08\u6848\u8981\u8A18\u9304\u6240\u7522\u751F\u6A94\u6848\u7684\u7279\u5FB5 +This\ allows\ Jenkins\ to\ correlate\ two\ projects.=\u5982\u6B64\u4E00\u4F86 Jenkins \u5C31\u80FD\u81EA\u52D5\u95DC\u806F\u5169\u500B\u5C08\u6848\u3002 +Title=\u4EC0\u9EBC\u662F\u300C\u5C08\u6848\u95DC\u806F\u300D\uFF1F +body=\u5982\u679C\u60A8\u7684\u5C08\u6848\u9593\u5F7C\u6B64\u6709\u95DC\u806F\uFF0CJenkins \u80FD\u8FFD\u8E64\u4E0B\u6E38\u5C08\u6848\u5230\u5E95\u662F\u4F7F\u7528\u5230\u4E0A\u6E38\u5C08\u6848\u7684\u54EA\u4E00\u500B\u7248\u672C\u9032\u884C\u5EFA\u69CB\u3002\u9019\u500B\u529F\u80FD\u662F\u7D93\u7531\u6A94\u6848\u7279\u5FB5\u652F\u63F4\u6240\u7522\u751F\u7684\u8A18\u9304\u4F86\u9054\u6210\u3002 diff --git a/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties new file mode 100644 index 0000000000..9a78665cd0 --- /dev/null +++ b/core/src/main/resources/jenkins/model/Jenkins/projectRelationship_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Compare=\u6BD4\u8F03 +Project\ Relationship=\u5C08\u6848\u95DC\u806F +downstream\ project=\u4E0B\u6E38\u5C08\u6848 +upstream\ project=\u4E0A\u6E38\u5C08\u6848 diff --git a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties index 8c0660f080..63821a67ee 100644 --- a/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties +++ b/core/src/main/resources/jenkins/model/Jenkins/systemInfo_zh_TW.properties @@ -20,4 +20,9 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Enabled=\u555F\u7528 Environment\ Variables=\u74B0\u5883\u8B8A\u6578 +Name=\u540D\u7A31 +Plugins=\u5916\u639B\u7A0B\u5F0F +System\ Properties=\u7CFB\u7D71\u5C6C\u6027 +Version=\u7248\u672C diff --git a/core/src/main/resources/lib/form/advanced_zh_TW.properties b/core/src/main/resources/lib/form/advanced_zh_TW.properties new file mode 100644 index 0000000000..19586f3cf8 --- /dev/null +++ b/core/src/main/resources/lib/form/advanced_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Advanced=\u9032\u968E diff --git a/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties b/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties new file mode 100644 index 0000000000..b9263a8c38 --- /dev/null +++ b/core/src/main/resources/lib/hudson/buildCaption_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Progress=\u9032\u5EA6 +cancel=\u53D6\u6D88 diff --git a/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties b/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties index 9b1f4f545f..9e77258f1d 100644 --- a/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildListTable_zh_TW.properties @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build=\u5EFA\u69CB +Build=\u5EFA\u7F6E Console\ output=\u756B\u9762\u8F38\u51FA Time\ Since=\u65E5\u671F Status=\u72C0\u614B diff --git a/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties b/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties index 118f951d12..c5870ada3e 100644 --- a/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/buildProgressBar_zh_TW.properties @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -text="{0}\u524D\u555F\u52D5 \u4F30\u8A08\u9084\u9700\u8981:{1}" +text="{0}\u524D\u958B\u59CB
    \u9810\u4F30\u9084\u8981: {1}" diff --git a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties index b1de7fbb18..e797d0c51d 100644 --- a/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/editableDescription_zh_TW.properties @@ -20,4 +20,5 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +add\ description=\u7DE8\u8F2F\u63CF\u8FF0 edit\ description=\u7DE8\u8F2F\u63CF\u8FF0 diff --git a/core/src/main/resources/lib/hudson/executors_zh_TW.properties b/core/src/main/resources/lib/hudson/executors_zh_TW.properties index 8317ac799c..2a38eba26d 100644 --- a/core/src/main/resources/lib/hudson/executors_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/executors_zh_TW.properties @@ -20,7 +20,8 @@ # 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 +Build\ Executor\ Status=\u5EFA\u69CB\u57F7\u884C\u7A0B\u5F0F\u72C0\u614B +Building=\u5EFA\u7F6E\u4E2D Idle=\u9592\u7F6E Status=\u72C0\u614B +terminate\ this\ build=\u4E2D\u65B7\u9019\u9805\u5EFA\u69CB\u4F5C\u696D diff --git a/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties b/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties new file mode 100644 index 0000000000..f4cd18bd5d --- /dev/null +++ b/core/src/main/resources/lib/hudson/newFromList/form_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Copy\ from=\u8907\u88FD\u4F86\u6E90 diff --git a/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties new file mode 100644 index 0000000000..5f17029199 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/config-disableBuild_zh_TW.properties @@ -0,0 +1,23 @@ +# 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\ Build=\u95DC\u9589\u5EFA\u69CB diff --git a/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties new file mode 100644 index 0000000000..d047443e82 --- /dev/null +++ b/core/src/main/resources/lib/hudson/project/upstream-downstream_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Downstream\ Projects=\u4E0B\u6E38\u5C08\u6848 +Upstream\ Projects=\u4E0A\u6E38\u5C08\u6848 diff --git a/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties b/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties index 2375368899..d624950eb1 100644 --- a/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/propertyTable_zh_TW.properties @@ -21,3 +21,4 @@ # THE SOFTWARE. Name=\u540D\u7A31 +Value=\u6578\u503C diff --git a/core/src/main/resources/lib/hudson/queue_zh_TW.properties b/core/src/main/resources/lib/hudson/queue_zh_TW.properties index dcafb3797d..a4acae6057 100644 --- a/core/src/main/resources/lib/hudson/queue_zh_TW.properties +++ b/core/src/main/resources/lib/hudson/queue_zh_TW.properties @@ -20,5 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -Build\ Queue=\u5EFA\u69CB\u4F47\u5217 -No\ builds\ in\ the\ queue.=\u4F47\u5217\u4E2D\u6C92\u6709\u5EFA\u69CB +Build\ Queue=\u5EFA\u7F6E\u4F47\u5217 +Jenkins\ is\ going\ to\ shut\ down.\ No\ further\ builds\ will\ be\ performed.=Jenkins \u5373\u5C07\u8981\u95DC\u6A5F\uFF0C\u4E0D\u6703\u518D\u57F7\u884C\u4EFB\u4F55\u65B0\u7684\u5EFA\u7F6E\u4F5C\u696D\u3002 +No\ builds\ in\ the\ queue.=\u4F47\u5217\u4E2D\u6C92\u6709\u5EFA\u69CB\u4F5C\u696D\u3002 +cancel=\u53D6\u6D88 diff --git a/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.properties new file mode 100644 index 0000000000..b8fa052cce --- /dev/null +++ b/core/src/main/resources/lib/hudson/scriptConsole_zh_TW.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. + +Run=\u57F7\u884C +Script\ Console=Script \u4E3B\u63A7\u53F0 +description=\u8F38\u5165\u4EFB\u610F\u7684 Groovy Script \uFF0C\u5728\u4F3A\u670D\u5668\u4E0A\u57F7\u884C\u3002\u5C0D\u7591\u96E3\u6392\u89E3\u6216\u662F\u8A3A\u65B7\u5F88\u6709\u7528\u3002\u4F7F\u7528 "println" \u6307\u4EE4\u53EF\u4EE5\u770B\u5230\u8F38\u51FA (\u5982\u679C\u60A8\u4F7F\u7528\u4F7F\u7528 System.out \u7684\u8A71\uFF0C\u5C07\u6703\u8F38\u51FA\u5230\u4F3A\u670D\u5668\u4E0A\u7684 stdout\uFF0C\u6703\u6BD4\u8F03\u96E3\u770B\u5230)\u3002\u7BC4\u4F8B: diff --git a/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.properties new file mode 100644 index 0000000000..a51afcb4c8 --- /dev/null +++ b/core/src/main/resources/lib/hudson/thirdPartyLicenses_zh_TW.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. + +License=\u6388\u6B0A +Maven\ ID=Maven ID +Name=\u540D\u7A31 diff --git a/core/src/main/resources/lib/layout/layout_zh_TW.properties b/core/src/main/resources/lib/layout/layout_zh_TW.properties index dea6e20107..6d6a6b7aed 100644 --- a/core/src/main/resources/lib/layout/layout_zh_TW.properties +++ b/core/src/main/resources/lib/layout/layout_zh_TW.properties @@ -21,6 +21,8 @@ # THE SOFTWARE. DISABLE\ AUTO\ REFRESH=\u53D6\u6D88\u81EA\u52D5\u66F4\u65B0\u9801\u9762 -ENABLE\ AUTO\ REFRESH=\u5141\u8A31\u81EA\u52D5\u66F4\u65B0\u9801\u9762 -Page\ generated=\u9801\u9762\u5DF2\u7522\u751F +ENABLE\ AUTO\ REFRESH=\u81EA\u52D5\u66F4\u65B0\u9801\u9762 +Page\ generated=\u9801\u9762\u7522\u751F logout=\u767B\u51FA +search=\u641C\u5C0B +searchBox.url=http://wiki.jenkins-ci.org/display/JENKINS/Search+Box diff --git a/core/src/main/resources/lib/layout/main-panel_zh_TW.properties b/core/src/main/resources/lib/layout/main-panel_zh_TW.properties new file mode 100644 index 0000000000..d5b68f72f2 --- /dev/null +++ b/core/src/main/resources/lib/layout/main-panel_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Jenkins\ is\ going\ to\ shut\ down=Jenkins \u5373\u5C07\u8981\u95DC\u6A5F diff --git a/core/src/main/resources/lib/test/bar_zh_TW.properties b/core/src/main/resources/lib/test/bar_zh_TW.properties new file mode 100644 index 0000000000..ffa6d566e0 --- /dev/null +++ b/core/src/main/resources/lib/test/bar_zh_TW.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. + +failures={0} \u500B\u5931\u6557 +skipped={0} \u500B\u7565\u904E +tests={0} \u500B\u6E2C\u8A66 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_zh_TW.properties new file mode 100644 index 0000000000..d4b335327a --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/actions_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Executed\ Mojos=\u57F7\u884C\u7684 Mojo diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenBuild/executedMojos_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/executedMojos_zh_TW.properties new file mode 100644 index 0000000000..80b0f70208 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenBuild/executedMojos_zh_TW.properties @@ -0,0 +1,30 @@ +# 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\ in\ progress.=\u6B63\u5728\u5EFA\u7F6E\u3002 +Duration=\u6642\u9593\u9577\u77ED +Executed\ Mojos=\u57F7\u884C\u7684 Mojo +Fingerprint=\u7279\u5FB5 +Goal=Goal +Plugin=\u5916\u639B\u7A0B\u5F0F +Version=\u7248\u672C +fingerprint=\u7279\u5FB5 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_TW.properties new file mode 100644 index 0000000000..926d2de7cf --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/actions_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Delete\ All\ Disabled\ Modules=\u522A\u9664\u6240\u6709\u505C\u7528\u7684\u6A21\u7D44 +Modules=\u6A21\u7D44 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/deleteAllDisabledModules_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/deleteAllDisabledModules_zh_TW.properties new file mode 100644 index 0000000000..d5d0419f9b --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/deleteAllDisabledModules_zh_TW.properties @@ -0,0 +1,24 @@ +# 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. + +Are\ you\ sure\ about\ deleting\ all\ the\ disabled\ modules?=\u662F\u5426\u78BA\u5B9A\u8981\u522A\u9664\u6240\u6709\u505C\u7528\u7684\u6A21\u7D44? +Yes=\u662F 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 new file mode 100644 index 0000000000..3f06b5e276 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/index_zh_TW.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. + +Disable\ Project=\u95DC\u9589\u5C08\u6848 +Enable=\u555F\u7528 +This\ project\ is\ currently\ disabled=\u672C\u5C08\u6848\u76EE\u524D\u662F\u505C\u7528\u7684\u3002 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_zh_TW.properties new file mode 100644 index 0000000000..44b60cc381 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/modules_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Modules=\u6A21\u7D44 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_zh_TW.properties new file mode 100644 index 0000000000..b5bdc14553 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSet/newJobDetail_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +body=\u5EFA\u69CB Maven 2 \u5C08\u6848\u3002Jenkins \u5229\u7528\u60A8\u5DF2\u7D93\u5BEB\u5728 POM \u88E1\u7684\u8CC7\u6599\uFF0C\u5927\u5927\u964D\u4F4E\u624B\u52D5\u8A2D\u5B9A\u7684\u9700\u8981\u3002 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_zh_TW.properties new file mode 100644 index 0000000000..3d5091f49d --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenModuleSetBuild/main_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +noRun=\u6C92\u6709\u57F7\u884C diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/envVars_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/envVars_zh_TW.properties new file mode 100644 index 0000000000..8c0660f080 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/envVars_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Environment\ Variables=\u74B0\u5883\u8B8A\u6578 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/index_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/index_zh_TW.properties new file mode 100644 index 0000000000..f1fdc0bc17 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/index_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +description=\u7531\u5DE6\u65B9\u7684\u9023\u7D50\u53D6\u5F97\u57F7\u884C\u4E2D\u7684 Maven \u8655\u7406\u7A0B\u5E8F\u76F8\u95DC\u8CC7\u8A0A\uFF0C\u53EF\u4EE5\u5E6B\u52A9\u9032\u884C\u7591\u96E3\u6392\u89E3\u3002 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/sidepanel_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/sidepanel_zh_TW.properties new file mode 100644 index 0000000000..cfe6b6db0f --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/sidepanel_zh_TW.properties @@ -0,0 +1,26 @@ +# 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. + +Environment\ Variables=\u74B0\u5883\u8B8A\u6578 +Script\ Console=Script \u4E3B\u63A7\u53F0 +System\ Properties=\u7CFB\u7D71\u5C6C\u6027 +Thread\ Dump=Thread \u50BE\u5370 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/systemProperties_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/systemProperties_zh_TW.properties new file mode 100644 index 0000000000..c81fc739df --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/systemProperties_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +System\ Properties=\u7CFB\u7D71\u5C6C\u6027 diff --git a/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/threads_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/threads_zh_TW.properties new file mode 100644 index 0000000000..90e5f1b993 --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/MavenProbeAction/threads_zh_TW.properties @@ -0,0 +1,23 @@ +# 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. + +Thread\ Dump=\u57F7\u884C\u7DD2\u50BE\u5370 diff --git a/maven-plugin/src/main/resources/hudson/maven/RedeployPublisher/config_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/RedeployPublisher/config_zh_TW.properties new file mode 100644 index 0000000000..682a4aadbd --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/RedeployPublisher/config_zh_TW.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. + +Assign\ unique\ versions\ to\ snapshots=\u91DD\u5C0D\u5FEB\u7167 (Snapshot) \u6307\u5B9A\u552F\u4E00\u7248\u672C +Repository\ ID=\u5132\u5B58\u5EAB ID +Repository\ URL=\u5132\u5B58\u5EAB URL diff --git a/maven-plugin/src/main/resources/hudson/maven/reporters/MavenAbstractArtifactRecord/index_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/reporters/MavenAbstractArtifactRecord/index_zh_TW.properties new file mode 100644 index 0000000000..b050c1936c --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/reporters/MavenAbstractArtifactRecord/index_zh_TW.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. + +OK=\u78BA\u5B9A +Redeploy\ Artifacts=\u91CD\u65B0\u90E8\u7F72\u7522\u51FA\u6A94\u6848 +This\ page\ allows\ you\ to\ redeploy\ the\ build\ artifacts\ to\ a\ repository\ after\ the\ fact.=\u9019\u500B\u9801\u9762\u80FD\u8B93\u60A8\u5C07\u5EFA\u7F6E\u904E\u7A0B\u7522\u51FA\u7684\u6A94\u6848\u4E8B\u5F8C\u90E8\u7F72\u5230\u5132\u5B58\u5EAB\u88E1\u3002 diff --git a/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_zh_TW.properties b/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_zh_TW.properties new file mode 100644 index 0000000000..fe7edd34cd --- /dev/null +++ b/maven-plugin/src/main/resources/hudson/maven/reporters/SurefireAggregatedReport/index_zh_TW.properties @@ -0,0 +1,27 @@ +# 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. + +Fail=\u5931\u6557 +Module=\u6A21\u7D44 +Test\ Result=\u6E2C\u8A66\u7D50\u679C +Total=\u7E3D\u8A08 +diff=\u5DEE\u7570 -- GitLab From 1bb20d6739964ba79a6e8321ffc37e8cce5cf037 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Thu, 1 Dec 2011 23:02:25 -0800 Subject: [PATCH 149/158] recording the l10n bundles --- changelog.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.html b/changelog.html index 7ac5297f50..9404aee269 100644 --- a/changelog.html +++ b/changelog.html @@ -88,6 +88,8 @@ Upcoming changes
  • Use $JENKINS_USER in Debian postinst script. (issue 5771) +
  • + Added/improved localization to Arabic, Bulgarian, Catalan, Czech, Danish, German, Greek, Esperanto, Spanish, Estonian, Basque, Finnish, French, Hebrew, Hindi, Hungarian, Indonesian, Icelandic, Italian, Kannada, Korean, Lithuanian, Latvian, Marathi, Norwegian, Dutch, Polish, Portugeese, Romanian, Russian, Slovak, Slovenian, Serbian, Swedish, Telgu, Turkish, Ukrainian, and Chinese. Thanks everyone! -- GitLab From ff711b0aa111faa334f366b842b4722a0c63586b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 00:10:27 -0800 Subject: [PATCH 150/158] noting the locale fix in 1.176 --- changelog.html | 2 ++ core/pom.xml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index 9404aee269..840eee0e08 100644 --- a/changelog.html +++ b/changelog.html @@ -88,6 +88,8 @@ Upcoming changes
  • Use $JENKINS_USER in Debian postinst script. (issue 5771) +
  • + Fixed a bug where Jenkins failed to show localized text for Hebrew, Indonesian, and Yedish.
  • Added/improved localization to Arabic, Bulgarian, Catalan, Czech, Danish, German, Greek, Esperanto, Spanish, Estonian, Basque, Finnish, French, Hebrew, Hindi, Hungarian, Indonesian, Icelandic, Italian, Kannada, Korean, Lithuanian, Latvian, Marathi, Norwegian, Dutch, Polish, Portugeese, Romanian, Russian, Slovak, Slovenian, Serbian, Swedish, Telgu, Turkish, Ukrainian, and Chinese. Thanks everyone! diff --git a/core/pom.xml b/core/pom.xml index 57e50dab92..47af44eb0d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -42,7 +42,7 @@ THE SOFTWARE. true - 1.174 + 1.176 -- GitLab From 87f501ce5396ba8ff5a79d6416cb325bc00319de Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 10:15:41 -0800 Subject: [PATCH 151/158] this script counts the l10n --- core/report-l10n.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 core/report-l10n.sh diff --git a/core/report-l10n.sh b/core/report-l10n.sh new file mode 100755 index 0000000000..a161784581 --- /dev/null +++ b/core/report-l10n.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# this script counts available localizations in the core +( + for f in $(find src/main/resources -name '*.properties'); do + f=$(basename "$f" | sed -n -e 's/.*\(\(_.._..\.\)\|\(_..\.\)\).*$/\1/p') + echo $f + done +) | sort | uniq -- GitLab From df259d7a898ee5f004e4491e7e6362b61fffbce2 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 15:36:37 -0800 Subject: [PATCH 152/158] fixing NPE. getUrlName() contract allows returning null. --- core/src/main/java/hudson/model/View.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/View.java b/core/src/main/java/hudson/model/View.java index 4b3959d9cc..de1316aae4 100644 --- a/core/src/main/java/hudson/model/View.java +++ b/core/src/main/java/hudson/model/View.java @@ -454,9 +454,12 @@ public abstract class View extends AbstractModelObject implements AccessControll } public Object getDynamic(String token) { - for (Action a : getActions()) + for (Action a : getActions()) { + String url = a.getUrlName(); + if (url==null) continue; if(a.getUrlName().equals(token)) return a; + } return null; } -- GitLab From 1bcbea4389ec31f6582a85c82c2b7b05b10c894f Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 15:45:40 -0800 Subject: [PATCH 153/158] made the code more robust (against SCM computing null change set), and fixed the race condition (if GC happens during this operation.) --- .../main/java/hudson/model/AbstractBuild.java | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/core/src/main/java/hudson/model/AbstractBuild.java b/core/src/main/java/hudson/model/AbstractBuild.java index 21598da0a8..fdb5012c58 100644 --- a/core/src/main/java/hudson/model/AbstractBuild.java +++ b/core/src/main/java/hudson/model/AbstractBuild.java @@ -766,17 +766,21 @@ public abstract class AbstractBuild

    ,R extends Abs } } - if (changeSet == null || changeSet.get() == null) // cached value - try { - changeSet = new WeakReference>(calcChangeSet()); - } finally { - // defensive check. if the calculation fails (such as through an exception), - // set a dummy value so that it'll work the next time. the exception will - // be still reported, giving the plugin developer an opportunity to fix it. - if (changeSet==null) - changeSet=new WeakReference>(ChangeLogSet.createEmpty(this)); - } - return changeSet.get(); + ChangeLogSet cs = null; + if (changeSet!=null) + cs = changeSet.get(); + + if (cs==null) + cs = calcChangeSet(); + + // defensive check. if the calculation fails (such as through an exception), + // set a dummy value so that it'll work the next time. the exception will + // be still reported, giving the plugin developer an opportunity to fix it. + if (cs==null) + cs = ChangeLogSet.createEmpty(this); + + changeSet = new WeakReference>(cs); + return cs; } /** -- GitLab From a59d563d1309c8bd4a19a3ed72469eecc7e77167 Mon Sep 17 00:00:00 2001 From: Seiji Sogabe Date: Sat, 3 Dec 2011 13:33:34 +0900 Subject: [PATCH 154/158] l10n(ja) for UpdateCenter --- core/src/main/resources/hudson/Messages_ja.properties | 5 +++++ .../main/resources/hudson/PluginManager/table_ja.properties | 6 ++++-- core/src/main/resources/hudson/model/Messages_ja.properties | 2 ++ .../src/main/resources/hudson/model/UpdateCenter/body.jelly | 2 +- .../resources/hudson/model/UpdateCenter/body_ja.properties | 3 +++ 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/core/src/main/resources/hudson/Messages_ja.properties b/core/src/main/resources/hudson/Messages_ja.properties index 87671bcdec..39dd77adc6 100644 --- a/core/src/main/resources/hudson/Messages_ja.properties +++ b/core/src/main/resources/hudson/Messages_ja.properties @@ -37,6 +37,11 @@ FilePath.validateRelativePath.notDirectory=''{0}'' \u306f\u30c7\u30a3\u30ec\u30a FilePath.validateRelativePath.noSuchFile=\u30d5\u30a1\u30a4\u30eb ''{0}'' \u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 FilePath.validateRelativePath.noSuchDirectory=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea ''{0}'' \u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 +PluginManager.PluginDoesntSupportDynamicLoad.RestartRequired=\ + {0} \u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u30c0\u30a4\u30ca\u30df\u30c3\u30af\u30ed\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u305b\u3093\u3002\u5909\u66f4\u3092\u53cd\u6620\u3059\u308b\u306b\u306fJenkins\u3092\u518d\u8d77\u52d5\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +PluginManager.PluginIsAlreadyInstalled.RestartRequired=\ + {0} \u30d7\u30e9\u30b0\u30a4\u30f3\u306f\u65e2\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u5909\u66f4\u3092\u53cd\u6620\u3059\u308b\u306b\u306fJenkins\u3092\u518d\u8d77\u52d5\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + Util.millisecond={0} ms Util.second={0} \u79d2 Util.minute={0} \u5206 diff --git a/core/src/main/resources/hudson/PluginManager/table_ja.properties b/core/src/main/resources/hudson/PluginManager/table_ja.properties index 5a0eda14eb..84306743fc 100644 --- a/core/src/main/resources/hudson/PluginManager/table_ja.properties +++ b/core/src/main/resources/hudson/PluginManager/table_ja.properties @@ -1,6 +1,6 @@ # The MIT License # -# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe +# Copyright (c) 2004-2011, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -26,7 +26,7 @@ Name=\u540d\u524d Version=\u30d0\u30fc\u30b8\u30e7\u30f3 Installed=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u307f No\ updates=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u5bfe\u8c61\u306a\u3057 -Install=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb +Install\ without\ restart=\u518d\u8d77\u52d5\u305b\u305a\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb compatWarning=\ \u8b66\u544a: \u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u306f\u4e92\u63db\u6027\u304c\u3042\u308a\u307e\u305b\u3093\u3002\ \u3053\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f7f\u7528\u3059\u308b\u30b8\u30e7\u30d6\u3092\u518d\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 @@ -35,3 +35,5 @@ coreWarning=\ \u3042\u306a\u305f\u306eJenkins\u3067\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308b\u304b\u3069\u3046\u304b\u5206\u304b\u308a\u307e\u305b\u3093\u3002 Inactive=\u4e0d\u6d3b\u6027 Update\ Center=\u30a2\u30c3\u30d7\u30c7\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc +Download\ now\ and\ install\ after\ restart=\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u518d\u8d77\u52d5\u5f8c\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb +Install=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb \ No newline at end of file diff --git a/core/src/main/resources/hudson/model/Messages_ja.properties b/core/src/main/resources/hudson/model/Messages_ja.properties index 10de8cbbfa..0384485f78 100644 --- a/core/src/main/resources/hudson/model/Messages_ja.properties +++ b/core/src/main/resources/hudson/model/Messages_ja.properties @@ -179,6 +179,8 @@ Slave.UnableToLaunch=\u30b9\u30ec\u30fc\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c Slave.UnixSlave=\u3053\u308c\u306fUnix\u306e\u30b9\u30ec\u30fc\u30d6\u3067\u3059\u3002 Slave.WindowsSlave=\u3053\u308c\u306fWindows\u306e\u30b9\u30ec\u30fc\u30d6\u3067\u3059\u3002 +UpdateCenter.DownloadButNotActivated=\u6b63\u5e38\u306b\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3057\u305f\u3002\u6b21\u306e\u30d6\u30fc\u30c8\u6642\u306b\u6709\u52b9\u306b\u306a\u308a\u307e\u3059\u3002 + View.Permissions.Title=\u30d3\u30e5\u30fc View.CreatePermission.Description=\ \u3053\u306e\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3\u306f\u3001\u65b0\u898f\u30d3\u30e5\u30fc\u306e\u4f5c\u6210\u3092\u8a31\u53ef\u3057\u307e\u3059\u3002 diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly index e9a1907ab6..ba358666a4 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body.jelly +++ b/core/src/main/resources/hudson/model/UpdateCenter/body.jelly @@ -40,7 +40,7 @@ THE SOFTWARE.

    ${%Go back to the top page}
    - (you can start using the installed plugins right away) + (${%you can start using the installed plugins right away})

    diff --git a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties index 633e66c5ae..15eb09778b 100644 --- a/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties +++ b/core/src/main/resources/hudson/model/UpdateCenter/body_ja.properties @@ -20,4 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. +Go\ back\ to\ the\ top\ page=\u30c8\u30c3\u30d7\u3078\u623b\u308b +you\ can\ start\ using\ the\ installed\ plugins\ right\ away=\ + \u3059\u3050\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059 warning=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b8c\u4e86\u5f8c\u3001\u30b8\u30e7\u30d6\u304c\u306a\u3051\u308c\u3070Jenkins\u3092\u518d\u8d77\u52d5\u3059\u308b -- GitLab From ad5186442445143f7e4efe99fcffad2eee3e82fa Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 22:11:58 -0800 Subject: [PATCH 155/158] Ruby version. A lot better. --- core/report-l10n.rb | 551 ++++++++++++++++++++++++++++++++++++++++++++ core/report-l10n.sh | 8 - 2 files changed, 551 insertions(+), 8 deletions(-) create mode 100755 core/report-l10n.rb delete mode 100755 core/report-l10n.sh diff --git a/core/report-l10n.rb b/core/report-l10n.rb new file mode 100755 index 0000000000..d48bf4d2f9 --- /dev/null +++ b/core/report-l10n.rb @@ -0,0 +1,551 @@ +#!/usr/bin/env ruby +require 'set' + +list = Set.new +Dir.glob("src/**/*.properties").each do |f| + f = File.basename(f) + if f =~ /_(.._..)\.properties$/ + list << $1 + elsif f =~ /_(..)\.properties$/ + list << $1 + end +end + +# from https://github.com/ged/linguistics/blob/master/lib/linguistics/iso639.rb +module ISO639 + + # Hash of ISO639 2- and 3-letter language codes + LANGUAGE_CODES = {} + + # Read everything after the __END__ + _, data = File.read(__FILE__).split( /^__END__$/, 2 ) + + # To read the files, please note that one line of text contains one + # entry. An alpha-3 (bibliographic) code, an alpha-3 (terminologic) + # code (when given), an alpha-2 code (when given), an English name, + # and a French name of a language are all separated by pipe (|) + # characters. If one of these elements is not applicable to the entry, + # the field is left empty, i.e., a pipe (|) character immediately + # follows the preceding entry. The Line terminator is the LF character. + + # bib_alpha3|term_alpha3|alpha2|eng_name|fre_name + # E.g., "eng||en|English|anglais" + data.lines do |line| + next unless line =~ /\|/ # Skip non-language lines + bib_alpha3, term_alpha3, alpha2, eng_name, fre_name = line.chomp.split( '|', 5 ) + entry = { + :eng_name => eng_name, + :fre_name => fre_name, + :codes => [ bib_alpha3, alpha2, term_alpha3 ].reject {|item| item.empty? } + } + $stderr.puts " adding language code entry %p from line: %p" % + [ entry, line ] if $DEBUG + + LANGUAGE_CODES[ bib_alpha3.to_sym ] = entry + LANGUAGE_CODES[ alpha2.to_sym ] = entry if alpha2!="" + end + +end # module Linguistics::ISO639 + + +list = list.map do |l| + p,v = l.split("_",2) + + p ||= l + + e = ISO639::LANGUAGE_CODES[p.to_sym] + if e then + e[:eng_name]+(v ? " (#{v})" : "") + else + v + end +end + +list.sort.each do |x| puts x end + +__END__ +aar||aa|Afar|afar +abk||ab|Abkhazian|abkhaze +ace|||Achinese|aceh +ach|||Acoli|acoli +ada|||Adangme|adangme +ady|||Adyghe; Adygei|adyghé +afa|||Afro-Asiatic languages|afro-asiatiques, langues +afh|||Afrihili|afrihili +afr||af|Afrikaans|afrikaans +ain|||Ainu|aïnou +aka||ak|Akan|akan +akk|||Akkadian|akkadien +alb|sqi|sq|Albanian|albanais +ale|||Aleut|aléoute +alg|||Algonquian languages|algonquines, langues +alt|||Southern Altai|altai du Sud +amh||am|Amharic|amharique +ang|||English, Old (ca.450-1100)|anglo-saxon (ca.450-1100) +anp|||Angika|angika +apa|||Apache languages|apaches, langues +ara||ar|Arabic|arabe +arc|||Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)|araméen d'empire (700-300 BCE) +arg||an|Aragonese|aragonais +arm|hye|hy|Armenian|arménien +arn|||Mapudungun; Mapuche|mapudungun; mapuche; mapuce +arp|||Arapaho|arapaho +art|||Artificial languages|artificielles, langues +arw|||Arawak|arawak +asm||as|Assamese|assamais +ast|||Asturian; Bable; Leonese; Asturleonese|asturien; bable; léonais; asturoléonais +ath|||Athapascan languages|athapascanes, langues +aus|||Australian languages|australiennes, langues +ava||av|Avaric|avar +ave||ae|Avestan|avestique +awa|||Awadhi|awadhi +aym||ay|Aymara|aymara +aze||az|Azerbaijani|azéri +bad|||Banda languages|banda, langues +bai|||Bamileke languages|bamiléké, langues +bak||ba|Bashkir|bachkir +bal|||Baluchi|baloutchi +bam||bm|Bambara|bambara +ban|||Balinese|balinais +baq|eus|eu|Basque|basque +bas|||Basa|basa +bat|||Baltic languages|baltes, langues +bej|||Beja; Bedawiyet|bedja +bel||be|Belarusian|biélorusse +bem|||Bemba|bemba +ben||bn|Bengali|bengali +ber|||Berber languages|berbères, langues +bho|||Bhojpuri|bhojpuri +bih||bh|Bihari languages|langues biharis +bik|||Bikol|bikol +bin|||Bini; Edo|bini; edo +bis||bi|Bislama|bichlamar +bla|||Siksika|blackfoot +bnt|||Bantu (Other)|bantoues, autres langues +bos||bs|Bosnian|bosniaque +bra|||Braj|braj +bre||br|Breton|breton +btk|||Batak languages|batak, langues +bua|||Buriat|bouriate +bug|||Buginese|bugi +bul||bg|Bulgarian|bulgare +bur|mya|my|Burmese|birman +byn|||Blin; Bilin|blin; bilen +cad|||Caddo|caddo +cai|||Central American Indian languages|amérindiennes de L'Amérique centrale, langues +car|||Galibi Carib|karib; galibi; carib +cat||ca|Catalan; Valencian|catalan; valencien +cau|||Caucasian languages|caucasiennes, langues +ceb|||Cebuano|cebuano +cel|||Celtic languages|celtiques, langues; celtes, langues +cha||ch|Chamorro|chamorro +chb|||Chibcha|chibcha +che||ce|Chechen|tchétchène +chg|||Chagatai|djaghataï +chi|zho|zh|Chinese|chinois +chk|||Chuukese|chuuk +chm|||Mari|mari +chn|||Chinook jargon|chinook, jargon +cho|||Choctaw|choctaw +chp|||Chipewyan; Dene Suline|chipewyan +chr|||Cherokee|cherokee +chu||cu|Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic|slavon d'église; vieux slave; slavon liturgique; vieux bulgare +chv||cv|Chuvash|tchouvache +chy|||Cheyenne|cheyenne +cmc|||Chamic languages|chames, langues +cop|||Coptic|copte +cor||kw|Cornish|cornique +cos||co|Corsican|corse +cpe|||Creoles and pidgins, English based|créoles et pidgins basés sur l'anglais +cpf|||Creoles and pidgins, French-based |créoles et pidgins basés sur le français +cpp|||Creoles and pidgins, Portuguese-based |créoles et pidgins basés sur le portugais +cre||cr|Cree|cree +crh|||Crimean Tatar; Crimean Turkish|tatar de Crimé +crp|||Creoles and pidgins |créoles et pidgins +csb|||Kashubian|kachoube +cus|||Cushitic languages|couchitiques, langues +cze|ces|cs|Czech|tchèque +dak|||Dakota|dakota +dan||da|Danish|danois +dar|||Dargwa|dargwa +day|||Land Dayak languages|dayak, langues +del|||Delaware|delaware +den|||Slave (Athapascan)|esclave (athapascan) +dgr|||Dogrib|dogrib +din|||Dinka|dinka +div||dv|Divehi; Dhivehi; Maldivian|maldivien +doi|||Dogri|dogri +dra|||Dravidian languages|dravidiennes, langues +dsb|||Lower Sorbian|bas-sorabe +dua|||Duala|douala +dum|||Dutch, Middle (ca.1050-1350)|néerlandais moyen (ca. 1050-1350) +dut|nld|nl|Dutch; Flemish|néerlandais; flamand +dyu|||Dyula|dioula +dzo||dz|Dzongkha|dzongkha +efi|||Efik|efik +egy|||Egyptian (Ancient)|égyptien +eka|||Ekajuk|ekajuk +elx|||Elamite|élamite +eng||en|English|anglais +enm|||English, Middle (1100-1500)|anglais moyen (1100-1500) +epo||eo|Esperanto|espéranto +est||et|Estonian|estonien +ewe||ee|Ewe|éwé +ewo|||Ewondo|éwondo +fan|||Fang|fang +fao||fo|Faroese|féroïen +fat|||Fanti|fanti +fij||fj|Fijian|fidjien +fil|||Filipino; Pilipino|filipino; pilipino +fin||fi|Finnish|finnois +fiu|||Finno-Ugrian languages|finno-ougriennes, langues +fon|||Fon|fon +fre|fra|fr|French|français +frm|||French, Middle (ca.1400-1600)|français moyen (1400-1600) +fro|||French, Old (842-ca.1400)|français ancien (842-ca.1400) +frr|||Northern Frisian|frison septentrional +frs|||Eastern Frisian|frison oriental +fry||fy|Western Frisian|frison occidental +ful||ff|Fulah|peul +fur|||Friulian|frioulan +gaa|||Ga|ga +gay|||Gayo|gayo +gba|||Gbaya|gbaya +gem|||Germanic languages|germaniques, langues +geo|kat|ka|Georgian|géorgien +ger|deu|de|German|allemand +gez|||Geez|guèze +gil|||Gilbertese|kiribati +gla||gd|Gaelic; Scottish Gaelic|gaélique; gaélique écossais +gle||ga|Irish|irlandais +glg||gl|Galician|galicien +glv||gv|Manx|manx; mannois +gmh|||German, Middle High (ca.1050-1500)|allemand, moyen haut (ca. 1050-1500) +goh|||German, Old High (ca.750-1050)|allemand, vieux haut (ca. 750-1050) +gon|||Gondi|gond +gor|||Gorontalo|gorontalo +got|||Gothic|gothique +grb|||Grebo|grebo +grc|||Greek, Ancient (to 1453)|grec ancien (jusqu'à 1453) +gre|ell|el|Greek, Modern (1453-)|grec moderne (après 1453) +grn||gn|Guarani|guarani +gsw|||Swiss German; Alemannic; Alsatian|suisse alémanique; alémanique; alsacien +guj||gu|Gujarati|goudjrati +gwi|||Gwich'in|gwich'in +hai|||Haida|haida +hat||ht|Haitian; Haitian Creole|haïtien; créole haïtien +hau||ha|Hausa|haoussa +haw|||Hawaiian|hawaïen +heb||he|Hebrew|hébreu +her||hz|Herero|herero +hil|||Hiligaynon|hiligaynon +him|||Himachali languages; Western Pahari languages|langues himachalis; langues paharis occidentales +hin||hi|Hindi|hindi +hit|||Hittite|hittite +hmn|||Hmong|hmong +hmo||ho|Hiri Motu|hiri motu +hrv||hr|Croatian|croate +hsb|||Upper Sorbian|haut-sorabe +hun||hu|Hungarian|hongrois +hup|||Hupa|hupa +iba|||Iban|iban +ibo||ig|Igbo|igbo +ice|isl|is|Icelandic|islandais +ido||io|Ido|ido +iii||ii|Sichuan Yi; Nuosu|yi de Sichuan +ijo|||Ijo languages|ijo, langues +iku||iu|Inuktitut|inuktitut +ile||ie|Interlingue; Occidental|interlingue +ilo|||Iloko|ilocano +ina||ia|Interlingua (International Auxiliary Language Association)|interlingua (langue auxiliaire internationale) +inc|||Indic languages|indo-aryennes, langues +ind||id|Indonesian|indonésien +ine|||Indo-European languages|indo-européennes, langues +inh|||Ingush|ingouche +ipk||ik|Inupiaq|inupiaq +ira|||Iranian languages|iraniennes, langues +iro|||Iroquoian languages|iroquoises, langues +ita||it|Italian|italien +jav||jv|Javanese|javanais +jbo|||Lojban|lojban +jpn||ja|Japanese|japonais +jpr|||Judeo-Persian|judéo-persan +jrb|||Judeo-Arabic|judéo-arabe +kaa|||Kara-Kalpak|karakalpak +kab|||Kabyle|kabyle +kac|||Kachin; Jingpho|kachin; jingpho +kal||kl|Kalaallisut; Greenlandic|groenlandais +kam|||Kamba|kamba +kan||kn|Kannada|kannada +kar|||Karen languages|karen, langues +kas||ks|Kashmiri|kashmiri +kau||kr|Kanuri|kanouri +kaw|||Kawi|kawi +kaz||kk|Kazakh|kazakh +kbd|||Kabardian|kabardien +kha|||Khasi|khasi +khi|||Khoisan languages|khoïsan, langues +khm||km|Central Khmer|khmer central +kho|||Khotanese; Sakan|khotanais; sakan +kik||ki|Kikuyu; Gikuyu|kikuyu +kin||rw|Kinyarwanda|rwanda +kir||ky|Kirghiz; Kyrgyz|kirghiz +kmb|||Kimbundu|kimbundu +kok|||Konkani|konkani +kom||kv|Komi|kom +kon||kg|Kongo|kongo +kor||ko|Korean|coréen +kos|||Kosraean|kosrae +kpe|||Kpelle|kpellé +krc|||Karachay-Balkar|karatchai balkar +krl|||Karelian|carélien +kro|||Kru languages|krou, langues +kru|||Kurukh|kurukh +kua||kj|Kuanyama; Kwanyama|kuanyama; kwanyama +kum|||Kumyk|koumyk +kur||ku|Kurdish|kurde +kut|||Kutenai|kutenai +lad|||Ladino|judéo-espagnol +lah|||Lahnda|lahnda +lam|||Lamba|lamba +lao||lo|Lao|lao +lat||la|Latin|latin +lav||lv|Latvian|letton +lez|||Lezghian|lezghien +lim||li|Limburgan; Limburger; Limburgish|limbourgeois +lin||ln|Lingala|lingala +lit||lt|Lithuanian|lituanien +lol|||Mongo|mongo +loz|||Lozi|lozi +ltz||lb|Luxembourgish; Letzeburgesch|luxembourgeois +lua|||Luba-Lulua|luba-lulua +lub||lu|Luba-Katanga|luba-katanga +lug||lg|Ganda|ganda +lui|||Luiseno|luiseno +lun|||Lunda|lunda +luo|||Luo (Kenya and Tanzania)|luo (Kenya et Tanzanie) +lus|||Lushai|lushai +mac|mkd|mk|Macedonian|macédonien +mad|||Madurese|madourais +mag|||Magahi|magahi +mah||mh|Marshallese|marshall +mai|||Maithili|maithili +mak|||Makasar|makassar +mal||ml|Malayalam|malayalam +man|||Mandingo|mandingue +mao|mri|mi|Maori|maori +map|||Austronesian languages|austronésiennes, langues +mar||mr|Marathi|marathe +mas|||Masai|massaï +may|msa|ms|Malay|malais +mdf|||Moksha|moksa +mdr|||Mandar|mandar +men|||Mende|mendé +mga|||Irish, Middle (900-1200)|irlandais moyen (900-1200) +mic|||Mi'kmaq; Micmac|mi'kmaq; micmac +min|||Minangkabau|minangkabau +mis|||Uncoded languages|langues non codées +mkh|||Mon-Khmer languages|môn-khmer, langues +mlg||mg|Malagasy|malgache +mlt||mt|Maltese|maltais +mnc|||Manchu|mandchou +mni|||Manipuri|manipuri +mno|||Manobo languages|manobo, langues +moh|||Mohawk|mohawk +mon||mn|Mongolian|mongol +mos|||Mossi|moré +mul|||Multiple languages|multilingue +mun|||Munda languages|mounda, langues +mus|||Creek|muskogee +mwl|||Mirandese|mirandais +mwr|||Marwari|marvari +myn|||Mayan languages|maya, langues +myv|||Erzya|erza +nah|||Nahuatl languages|nahuatl, langues +nai|||North American Indian languages|nord-amérindiennes, langues +nap|||Neapolitan|napolitain +nau||na|Nauru|nauruan +nav||nv|Navajo; Navaho|navaho +nbl||nr|Ndebele, South; South Ndebele|ndébélé du Sud +nde||nd|Ndebele, North; North Ndebele|ndébélé du Nord +ndo||ng|Ndonga|ndonga +nds|||Low German; Low Saxon; German, Low; Saxon, Low|bas allemand; bas saxon; allemand, bas; saxon, bas +nep||ne|Nepali|népalais +new|||Nepal Bhasa; Newari|nepal bhasa; newari +nia|||Nias|nias +nic|||Niger-Kordofanian languages|nigéro-kordofaniennes, langues +niu|||Niuean|niué +nno||nn|Norwegian Nynorsk; Nynorsk, Norwegian|norvégien nynorsk; nynorsk, norvégien +nob||nb|Bokmål, Norwegian; Norwegian Bokmål|norvégien bokmål +nog|||Nogai|nogaï; nogay +non|||Norse, Old|norrois, vieux +nor||no|Norwegian|norvégien +nqo|||N'Ko|n'ko +nso|||Pedi; Sepedi; Northern Sotho|pedi; sepedi; sotho du Nord +nub|||Nubian languages|nubiennes, langues +nwc|||Classical Newari; Old Newari; Classical Nepal Bhasa|newari classique +nya||ny|Chichewa; Chewa; Nyanja|chichewa; chewa; nyanja +nym|||Nyamwezi|nyamwezi +nyn|||Nyankole|nyankolé +nyo|||Nyoro|nyoro +nzi|||Nzima|nzema +oci||oc|Occitan (post 1500); Provençal|occitan (après 1500); provençal +oji||oj|Ojibwa|ojibwa +ori||or|Oriya|oriya +orm||om|Oromo|galla +osa|||Osage|osage +oss||os|Ossetian; Ossetic|ossète +ota|||Turkish, Ottoman (1500-1928)|turc ottoman (1500-1928) +oto|||Otomian languages|otomi, langues +paa|||Papuan languages|papoues, langues +pag|||Pangasinan|pangasinan +pal|||Pahlavi|pahlavi +pam|||Pampanga; Kapampangan|pampangan +pan||pa|Panjabi; Punjabi|pendjabi +pap|||Papiamento|papiamento +pau|||Palauan|palau +peo|||Persian, Old (ca.600-400 B.C.)|perse, vieux (ca. 600-400 av. J.-C.) +per|fas|fa|Persian|persan +phi|||Philippine languages|philippines, langues +phn|||Phoenician|phénicien +pli||pi|Pali|pali +pol||pl|Polish|polonais +pon|||Pohnpeian|pohnpei +por||pt|Portuguese|portugais +pra|||Prakrit languages|prâkrit, langues +pro|||Provençal, Old (to 1500)|provençal ancien (jusqu'à 1500) +pus||ps|Pushto; Pashto|pachto +qaa-qtz|||Reserved for local use|réservée à l'usage local +que||qu|Quechua|quechua +raj|||Rajasthani|rajasthani +rap|||Rapanui|rapanui +rar|||Rarotongan; Cook Islands Maori|rarotonga; maori des îles Cook +roa|||Romance languages|romanes, langues +roh||rm|Romansh|romanche +rom|||Romany|tsigane +rum|ron|ro|Romanian; Moldavian; Moldovan|roumain; moldave +run||rn|Rundi|rundi +rup|||Aromanian; Arumanian; Macedo-Romanian|aroumain; macédo-roumain +rus||ru|Russian|russe +sad|||Sandawe|sandawe +sag||sg|Sango|sango +sah|||Yakut|iakoute +sai|||South American Indian (Other)|indiennes d'Amérique du Sud, autres langues +sal|||Salishan languages|salishennes, langues +sam|||Samaritan Aramaic|samaritain +san||sa|Sanskrit|sanskrit +sas|||Sasak|sasak +sat|||Santali|santal +scn|||Sicilian|sicilien +sco|||Scots|écossais +sel|||Selkup|selkoupe +sem|||Semitic languages|sémitiques, langues +sga|||Irish, Old (to 900)|irlandais ancien (jusqu'à 900) +sgn|||Sign Languages|langues des signes +shn|||Shan|chan +sid|||Sidamo|sidamo +sin||si|Sinhala; Sinhalese|singhalais +sio|||Siouan languages|sioux, langues +sit|||Sino-Tibetan languages|sino-tibétaines, langues +sla|||Slavic languages|slaves, langues +slo|slk|sk|Slovak|slovaque +slv||sl|Slovenian|slovène +sma|||Southern Sami|sami du Sud +sme||se|Northern Sami|sami du Nord +smi|||Sami languages|sames, langues +smj|||Lule Sami|sami de Lule +smn|||Inari Sami|sami d'Inari +smo||sm|Samoan|samoan +sms|||Skolt Sami|sami skolt +sna||sn|Shona|shona +snd||sd|Sindhi|sindhi +snk|||Soninke|soninké +sog|||Sogdian|sogdien +som||so|Somali|somali +son|||Songhai languages|songhai, langues +sot||st|Sotho, Southern|sotho du Sud +spa||es|Spanish; Castilian|espagnol; castillan +srd||sc|Sardinian|sarde +srn|||Sranan Tongo|sranan tongo +srp||sr|Serbian|serbe +srr|||Serer|sérère +ssa|||Nilo-Saharan languages|nilo-sahariennes, langues +ssw||ss|Swati|swati +suk|||Sukuma|sukuma +sun||su|Sundanese|soundanais +sus|||Susu|soussou +sux|||Sumerian|sumérien +swa||sw|Swahili|swahili +swe||sv|Swedish|suédois +syc|||Classical Syriac|syriaque classique +syr|||Syriac|syriaque +tah||ty|Tahitian|tahitien +tai|||Tai languages|tai, langues +tam||ta|Tamil|tamoul +tat||tt|Tatar|tatar +tel||te|Telugu|télougou +tem|||Timne|temne +ter|||Tereno|tereno +tet|||Tetum|tetum +tgk||tg|Tajik|tadjik +tgl||tl|Tagalog|tagalog +tha||th|Thai|thaï +tib|bod|bo|Tibetan|tibétain +tig|||Tigre|tigré +tir||ti|Tigrinya|tigrigna +tiv|||Tiv|tiv +tkl|||Tokelau|tokelau +tlh|||Klingon; tlhIngan-Hol|klingon +tli|||Tlingit|tlingit +tmh|||Tamashek|tamacheq +tog|||Tonga (Nyasa)|tonga (Nyasa) +ton||to|Tonga (Tonga Islands)|tongan (Îles Tonga) +tpi|||Tok Pisin|tok pisin +tsi|||Tsimshian|tsimshian +tsn||tn|Tswana|tswana +tso||ts|Tsonga|tsonga +tuk||tk|Turkmen|turkmène +tum|||Tumbuka|tumbuka +tup|||Tupi languages|tupi, langues +tur||tr|Turkish|turc +tut|||Altaic languages|altaïques, langues +tvl|||Tuvalu|tuvalu +twi||tw|Twi|twi +tyv|||Tuvinian|touva +udm|||Udmurt|oudmourte +uga|||Ugaritic|ougaritique +uig||ug|Uighur; Uyghur|ouïgour +ukr||uk|Ukrainian|ukrainien +umb|||Umbundu|umbundu +und|||Undetermined|indéterminée +urd||ur|Urdu|ourdou +uzb||uz|Uzbek|ouszbek +vai|||Vai|vaï +ven||ve|Venda|venda +vie||vi|Vietnamese|vietnamien +vol||vo|Volapük|volapük +vot|||Votic|vote +wak|||Wakashan languages|wakashanes, langues +wal|||Walamo|walamo +war|||Waray|waray +was|||Washo|washo +wel|cym|cy|Welsh|gallois +wen|||Sorbian languages|sorabes, langues +wln||wa|Walloon|wallon +wol||wo|Wolof|wolof +xal|||Kalmyk; Oirat|kalmouk; oïrat +xho||xh|Xhosa|xhosa +yao|||Yao|yao +yap|||Yapese|yapois +yid||yi|Yiddish|yiddish +yor||yo|Yoruba|yoruba +ypk|||Yupik languages|yupik, langues +zap|||Zapotec|zapotèque +zbl|||Blissymbols; Blissymbolics; Bliss|symboles Bliss; Bliss +zen|||Zenaga|zenaga +zha||za|Zhuang; Chuang|zhuang; chuang +znd|||Zande languages|zandé, langues +zul||zu|Zulu|zoulou +zun|||Zuni|zuni +zxx|||No linguistic content; Not applicable|pas de contenu linguistique; non applicable +zza|||Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki|zaza; dimili; dimli; kirdki; kirmanjki; zazaki diff --git a/core/report-l10n.sh b/core/report-l10n.sh deleted file mode 100755 index a161784581..0000000000 --- a/core/report-l10n.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -# this script counts available localizations in the core -( - for f in $(find src/main/resources -name '*.properties'); do - f=$(basename "$f" | sed -n -e 's/.*\(\(_.._..\.\)\|\(_..\.\)\).*$/\1/p') - echo $f - done -) | sort | uniq -- GitLab From dec633208bf4849548d98e851c1e6498c29f7bbb Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 23:31:29 -0800 Subject: [PATCH 156/158] Supported "no proxy host" setting and modernized the impl. --- changelog.html | 2 + core/src/main/java/hudson/PluginManager.java | 51 +++-------- .../main/java/hudson/ProxyConfiguration.java | 85 +++++++++++++++++-- .../hudson/PluginManager/advanced.jelly | 22 ++--- .../hudson/ProxyConfiguration/config.groovy | 19 +++++ .../ProxyConfiguration/config_da.properties | 26 ++++++ .../ProxyConfiguration/config_de.properties | 26 ++++++ .../ProxyConfiguration/config_es.properties | 26 ++++++ .../ProxyConfiguration/config_fi.properties | 26 ++++++ .../ProxyConfiguration/config_fr.properties | 28 ++++++ .../ProxyConfiguration/config_it.properties | 29 +++++++ .../ProxyConfiguration/config_ja.properties | 26 ++++++ .../ProxyConfiguration/config_ko.properties | 26 ++++++ .../config_nb_NO.properties | 26 ++++++ .../ProxyConfiguration/config_nl.properties | 26 ++++++ .../ProxyConfiguration/config_pl.properties | 26 ++++++ .../config_pt_BR.properties | 26 ++++++ .../ProxyConfiguration/config_ru.properties | 26 ++++++ .../config_sv_SE.properties | 36 ++++++++ .../ProxyConfiguration/config_tr.properties | 31 +++++++ .../config_zh_CN.properties | 36 ++++++++ .../config_zh_TW.properties | 36 ++++++++ .../hudson/ProxyConfiguration/help-name.html | 0 .../ProxyConfiguration/help-name_de.html | 0 .../ProxyConfiguration/help-name_fr.html | 0 .../ProxyConfiguration/help-name_ja.html | 0 .../ProxyConfiguration/help-name_nl.html | 0 .../ProxyConfiguration/help-name_pt_BR.html | 0 .../ProxyConfiguration/help-name_tr.html | 0 .../ProxyConfiguration/help-noProxyHost.html | 4 + .../hudson/ProxyConfiguration/help-port.html | 0 .../ProxyConfiguration/help-port_de.html | 0 .../ProxyConfiguration/help-port_fr.html | 0 .../ProxyConfiguration/help-port_ja.html | 0 .../ProxyConfiguration/help-port_nl.html | 0 .../ProxyConfiguration/help-port_pt_BR.html | 0 .../ProxyConfiguration/help-port_tr.html | 0 .../ProxyConfiguration/help-userName.html | 0 .../ProxyConfiguration/help-userName_de.html | 0 .../ProxyConfiguration/help-userName_ja.html | 0 40 files changed, 606 insertions(+), 59 deletions(-) create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config.groovy create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_da.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_de.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_es.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_it.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_nb_NO.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_nl.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_zh_CN.properties create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties rename war/src/main/webapp/help/update-center/proxy-server.html => core/src/main/resources/hudson/ProxyConfiguration/help-name.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_de.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_fr.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_ja.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_nl.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_pt_BR.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html (100%) rename war/src/main/webapp/help/update-center/proxy-server_tr.html => core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html (100%) create mode 100644 core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html rename war/src/main/webapp/help/update-center/proxy-port.html => core/src/main/resources/hudson/ProxyConfiguration/help-port.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_de.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_de.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_fr.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_fr.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_ja.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_ja.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_nl.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_nl.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_pt_BR.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_pt_BR.html (100%) rename war/src/main/webapp/help/update-center/proxy-port_tr.html => core/src/main/resources/hudson/ProxyConfiguration/help-port_tr.html (100%) rename war/src/main/webapp/help/update-center/proxy-username.html => core/src/main/resources/hudson/ProxyConfiguration/help-userName.html (100%) rename war/src/main/webapp/help/update-center/proxy-username_de.html => core/src/main/resources/hudson/ProxyConfiguration/help-userName_de.html (100%) rename war/src/main/webapp/help/update-center/proxy-username_ja.html => core/src/main/resources/hudson/ProxyConfiguration/help-userName_ja.html (100%) diff --git a/changelog.html b/changelog.html index 840eee0e08..c3ac01421a 100644 --- a/changelog.html +++ b/changelog.html @@ -90,6 +90,8 @@ Upcoming changes (issue 5771)

  • Fixed a bug where Jenkins failed to show localized text for Hebrew, Indonesian, and Yedish. +
  • + Proxy configuration supported "no proxy host" setting to allow some hosts to bypass proxy.
  • Added/improved localization to Arabic, Bulgarian, Catalan, Czech, Danish, German, Greek, Esperanto, Spanish, Estonian, Basque, Finnish, French, Hebrew, Hindi, Hungarian, Indonesian, Icelandic, Italian, Kannada, Korean, Lithuanian, Latvian, Marathi, Norwegian, Dutch, Polish, Portugeese, Romanian, Russian, Slovak, Slovenian, Serbian, Swedish, Telgu, Turkish, Ukrainian, and Chinese. Thanks everyone! diff --git a/core/src/main/java/hudson/PluginManager.java b/core/src/main/java/hudson/PluginManager.java index 372dc3969f..80d1a0927f 100644 --- a/core/src/main/java/hudson/PluginManager.java +++ b/core/src/main/java/hudson/PluginManager.java @@ -28,6 +28,7 @@ import hudson.init.InitMilestone; import hudson.init.InitStrategy; import hudson.init.InitializerFinder; import hudson.model.AbstractModelObject; +import hudson.model.Descriptor; import hudson.model.Failure; import hudson.model.UpdateCenter; import hudson.model.UpdateSite; @@ -611,49 +612,21 @@ public abstract class PluginManager extends AbstractModelObject { } - public HttpResponse doProxyConfigure( - @QueryParameter("proxy.server") String server, - @QueryParameter("proxy.port") String port, - @QueryParameter("proxy.userName") String userName, - @QueryParameter("proxy.password") String password) throws IOException { - Jenkins hudson = Jenkins.getInstance(); - hudson.checkPermission(Jenkins.ADMINISTER); + public HttpResponse doProxyConfigure(StaplerRequest req) throws IOException, ServletException { + Jenkins jenkins = Jenkins.getInstance(); + jenkins.checkPermission(Jenkins.ADMINISTER); - server = Util.fixEmptyAndTrim(server); - if(server==null) { - hudson.proxy = null; + ProxyConfiguration pc = req.bindJSON(ProxyConfiguration.class, req.getSubmittedForm()); + if (pc.name==null) { + jenkins.proxy = null; ProxyConfiguration.getXmlFile().delete(); - } else try { - int proxyPort = Integer.parseInt(Util.fixNull(port)); - if (proxyPort < 0 || proxyPort > 65535) { - throw new Failure(Messages.PluginManager_PortNotInRange(0, 65535)); - } - hudson.proxy = new ProxyConfiguration(server, proxyPort, - Util.fixEmptyAndTrim(userName),Util.fixEmptyAndTrim(password)); - hudson.proxy.save(); - } catch (NumberFormatException nfe) { - throw new Failure(Messages.PluginManager_PortNotANumber()); + } else { + jenkins.proxy = pc; + jenkins.proxy.save(); } return new HttpRedirect("advanced"); } - public FormValidation doCheckProxyPort(@QueryParameter String value) { - value = Util.fixEmptyAndTrim(value); - if (value == null) { - return FormValidation.ok(); - } - int port; - try { - port = Integer.parseInt(value); - } catch (NumberFormatException e) { - return FormValidation.error(Messages.PluginManager_PortNotANumber()); - } - if (port < 0 || port > 65535) { - return FormValidation.error(Messages.PluginManager_PortNotInRange(0, 65535)); - } - return FormValidation.ok(); - } - /** * Uploads a plugin. */ @@ -687,6 +660,10 @@ public abstract class PluginManager extends AbstractModelObject { } } + public Descriptor getProxyDescriptor() { + return Jenkins.getInstance().getDescriptor(ProxyConfiguration.class); + } + /** * {@link ClassLoader} that can see all plugins. */ diff --git a/core/src/main/java/hudson/ProxyConfiguration.java b/core/src/main/java/hudson/ProxyConfiguration.java index 47b03500e0..ae10f81e63 100644 --- a/core/src/main/java/hudson/ProxyConfiguration.java +++ b/core/src/main/java/hudson/ProxyConfiguration.java @@ -23,6 +23,10 @@ */ package hudson; +import com.google.common.collect.Lists; +import hudson.model.AbstractDescribableImpl; +import hudson.model.Descriptor; +import hudson.util.FormValidation; import jenkins.model.Jenkins; import hudson.model.Saveable; import hudson.model.listeners.SaveableListener; @@ -41,7 +45,13 @@ import java.net.URLConnection; import com.thoughtworks.xstream.XStream; import java.io.InputStream; +import java.util.Collections; +import java.util.List; +import java.util.regex.Pattern; + import org.jvnet.robust_http_client.RetryableHttpStream; +import org.kohsuke.stapler.DataBoundConstructor; +import org.kohsuke.stapler.QueryParameter; /** * HTTP proxy configuration. @@ -57,7 +67,7 @@ import org.jvnet.robust_http_client.RetryableHttpStream; * * @see jenkins.model.Jenkins#proxy */ -public final class ProxyConfiguration implements Saveable { +public final class ProxyConfiguration extends AbstractDescribableImpl implements Saveable { public final String name; public final int port; @@ -67,8 +77,12 @@ public final class ProxyConfiguration implements Saveable { private final String userName; /** - * null + * List of host names that shouldn't use proxy, as typed by users. + * + * @see #getNoProxyHostPatterns() */ + public final String noProxyHost; + @Deprecated private String password; @@ -82,10 +96,16 @@ public final class ProxyConfiguration implements Saveable { } public ProxyConfiguration(String name, int port, String userName, String password) { - this.name = name; + this(name,port,userName,password,null); + } + + @DataBoundConstructor + public ProxyConfiguration(String name, int port, String userName, String password, String noProxyHost) { + this.name = Util.fixEmptyAndTrim(name); this.port = port; - this.userName = userName; + this.userName = Util.fixEmptyAndTrim(userName); this.secretPassword = Secret.fromString(password); + this.noProxyHost = Util.fixEmptyAndTrim(noProxyHost); } public String getUserName() { @@ -105,7 +125,35 @@ public final class ProxyConfiguration implements Saveable { return (secretPassword == null) ? null : secretPassword.getEncryptedValue(); } + /** + * Returns the list of properly formatted no proxy host names. + */ + public List getNoProxyHostPatterns() { + if (noProxyHost==null) return Collections.emptyList(); + + List r = Lists.newArrayList(); + for (String s : noProxyHost.split("[ \t\n,|]+")) { + if (s.length()==0) continue; + r.add(Pattern.compile(s.replace(".", "\\.").replace("*", "[^.]*"))); + } + return r; + } + + /** + * @deprecated + * Use {@link #createProxy(String)} + */ public Proxy createProxy() { + return createProxy(null); + } + + public Proxy createProxy(String host) { + if (host!=null && noProxyHost!=null) { + for (Pattern p : getNoProxyHostPatterns()) { + if (p.matcher(host).matches()) + return Proxy.NO_PROXY; + } + } return new Proxy(Proxy.Type.HTTP, new InetSocketAddress(name,port)); } @@ -145,7 +193,7 @@ public final class ProxyConfiguration implements Saveable { if(p==null) return url.openConnection(); - URLConnection con = url.openConnection(p.createProxy()); + URLConnection con = url.openConnection(p.createProxy(url.getHost())); if(p.getUserName()!=null) { // Add an authenticator which provides the credentials for proxy authentication Authenticator.setDefault(new Authenticator() { @@ -171,7 +219,7 @@ public final class ProxyConfiguration implements Saveable { if (p == null) return new RetryableHttpStream(url); - InputStream is = new RetryableHttpStream(url, p.createProxy()); + InputStream is = new RetryableHttpStream(url, p.createProxy(url.getHost())); if (p.getUserName() != null) { // Add an authenticator which provides the credentials for proxy authentication Authenticator.setDefault(new Authenticator() { @@ -194,4 +242,29 @@ public final class ProxyConfiguration implements Saveable { static { XSTREAM.alias("proxy", ProxyConfiguration.class); } + + @Extension + public static class DescriptorImpl extends Descriptor { + @Override + public String getDisplayName() { + return "Proxy Configuration"; + } + + public FormValidation doCheckPort(@QueryParameter String value) { + value = Util.fixEmptyAndTrim(value); + if (value == null) { + return FormValidation.ok(); + } + int port; + try { + port = Integer.parseInt(value); + } catch (NumberFormatException e) { + return FormValidation.error(Messages.PluginManager_PortNotANumber()); + } + if (port < 0 || port > 65535) { + return FormValidation.error(Messages.PluginManager_PortNotInRange(0, 65535)); + } + return FormValidation.ok(); + } + } } diff --git a/core/src/main/resources/hudson/PluginManager/advanced.jelly b/core/src/main/resources/hudson/PluginManager/advanced.jelly index 98f7b551ad..da82f1f666 100644 --- a/core/src/main/resources/hudson/PluginManager/advanced.jelly +++ b/core/src/main/resources/hudson/PluginManager/advanced.jelly @@ -32,25 +32,15 @@ THE SOFTWARE. - +

    ${%HTTP Proxy Configuration}

    - - - - - - - - - - - - - - + + + + + diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config.groovy b/core/src/main/resources/hudson/ProxyConfiguration/config.groovy new file mode 100644 index 0000000000..a7aea49410 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config.groovy @@ -0,0 +1,19 @@ +package hudson.ProxyConfiguration; + +def f=namespace(lib.FormTagLib) + +f.entry(title:_("Server"),field:"name") { + f.textbox() +} +f.entry(title:_("Port"),field:"port") { + f.number(clazz:"number",min:0,max:65535,step:1) +} +f.entry(title:_("User name"),field:"userName") { + f.textbox() +} +f.entry(title:_("Password"),field:"password") { + f.password(value:instance?.encryptedPassword) +} +f.entry(title:_("No Proxy Host"),field:"noProxyHost") { + f.textarea() +} diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_da.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_da.properties new file mode 100644 index 0000000000..7d9ae2d5a0 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_da.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Adgangskode +User\ name=Brugernavn +Port=Port +Server=Server diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties new file mode 100644 index 0000000000..ca929eb4fd --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_de.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Harald Wellmann, 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. + +Server=Server +Port=Port +User\ name=Benutzername +Password=Kennwort diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties new file mode 100644 index 0000000000..9ce49f8b13 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_es.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi +# +# 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. + +User\ name=Usuario +Server=Servidor +Port=Puerto +Password=Contrase\u00f1a diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties new file mode 100644 index 0000000000..e66d579965 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_fi.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Salasana +Port=Portti +Server=Palvelin +User\ name=K\u00e4ytt\u00e4j\u00e4 diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties new file mode 100644 index 0000000000..461167fb10 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_fr.properties @@ -0,0 +1,28 @@ +# 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. + +Proxy\ Needs\ Authorization=Le proxy n\u00e9cessite une authentification +Server=Serveur +Port= +User\ name=Nom d''utilisateur +No\ Proxy\ for=Pas de proxy pour +Password=Mot de passe diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties new file mode 100644 index 0000000000..91419ea77d --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_it.properties @@ -0,0 +1,29 @@ +# 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. + +Check\ now=Controlla ora +HTTP\ Proxy\ Configuration=Configurazione Proxy HTTP +Port=Porta +Submit=Invia +User\ name=Nome utente +lastUpdated=Informazioni di aggiornamento ottenute: {0} fa +uploadtext=Puoi fare l''upload di un file .hpi per installare diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties new file mode 100644 index 0000000000..421e0aa4bf --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ja.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +Server=\u30b5\u30fc\u30d0\u30fc +Port=\u30dd\u30fc\u30c8\u756a\u53f7 +User\ name=\u30e6\u30fc\u30b6\u30fc\u540d +Password=\u30d1\u30b9\u30ef\u30fc\u30c9 diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties new file mode 100644 index 0000000000..3f049e1546 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ko.properties @@ -0,0 +1,26 @@ +# 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. + +Password=\uc554\ud638 +Port=\ud3ec\ud2b8 +Server=\uc11c\ubc84 +User\ name=\uc0ac\uc6a9\uc790\uba85 diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_nb_NO.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_nb_NO.properties new file mode 100644 index 0000000000..b96449ebd8 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_nb_NO.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Passord +Port=Port +Server=Server +User\ name=Brukernavn diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_nl.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_nl.properties new file mode 100644 index 0000000000..1cbecc3026 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_nl.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Wim Rosseel +# +# 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. + +Password=Wachtwoord +Server=Server +Port=Poortnummer +User\ name=Gebruikersnaam diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties new file mode 100644 index 0000000000..a03b5b7cb5 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_pl.properties @@ -0,0 +1,26 @@ +# 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. + +Password=Has\u0142o +Port=Port +Server=Serwer +User\ name=Nazwa u\u017cytkownika diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties new file mode 100644 index 0000000000..8976514e9c --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_pt_BR.properties @@ -0,0 +1,26 @@ +# The MIT License +# +# Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi, Cleiber Silva +# +# 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. + +Server=Servidor +Password=Senha +User\ name=Nomde de usu\u00e1rio +Port=Porta diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties new file mode 100644 index 0000000000..eec64f2f09 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_ru.properties @@ -0,0 +1,26 @@ +# 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. + +Password=\u041f\u0430\u0440\u043e\u043b\u044c +Port=\u041f\u043e\u0440\u0442 +Server=\u0421\u0435\u0440\u0432\u0435\u0440 +User\ name=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties new file mode 100644 index 0000000000..d07169c071 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_sv_SE.properties @@ -0,0 +1,36 @@ +# 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. + +Check\ now=Kontrollera nu +File=Fil +HTTP\ Proxy\ Configuration=HTTP proxy konfiguration +Password=L\u00F6senord +Port=Port +Server=Server +Submit=Skicka +URL=URL +Update\ Site=Updatera sajt +Upload=Ladda upp +Upload\ Plugin=Ladda upp insticksmodul +User\ name=Anv\u00E4ndarnamn +lastUpdated=Information uppdaterad {0} sedan +uploadtext=Du kan ladda upp en .hpi-fil f\u00F6r att installera en insticksmodul som ligger utanf\u00F6r den centrala instickskatalogen. diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties new file mode 100644 index 0000000000..7d12d210c9 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_tr.properties @@ -0,0 +1,31 @@ +# 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. + +HTTP\ Proxy\ Configuration=HTTP Proxy Konfig\u00fcrasyonu +Submit=G\u00f6nder +Upload\ Plugin=Eklenti Y\u00fckle +uploadtext=\ +Merkezi eklenti repository''si d\u0131\u015f\u0131nda bir eklenti eklemek i\u00e7in .hpi dosyas\u0131n\u0131 y\u00fcklemeniz yeterli olacakt\u0131r. +File=Dosya +Upload=Y\u00fckle +lastUpdated=Al\u0131nan son g\u00fcncelleme bilgisi : {0} \u00f6nce +Check\ now=\u015eimdi kontrol et diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_zh_CN.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_CN.properties new file mode 100644 index 0000000000..afffdf88b2 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_CN.properties @@ -0,0 +1,36 @@ +# 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. + +Check\ now=\u7ACB\u5373\u83B7\u53D6 +File=\u6587\u4EF6 +HTTP\ Proxy\ Configuration=\u4EE3\u7406\u8BBE\u7F6E +Password=\u5BC6\u7801 +Port=\u7AEF\u53E3 +Server=\u670D\u52A1\u5668 +Submit=\u63D0\u4EA4 +URL=URL +Update\ Site=\u5347\u7EA7\u7AD9\u70B9 +Upload=\u4E0A\u4F20 +Upload\ Plugin=\u4E0A\u4F20\u63D2\u4EF6 +User\ name=\u7528\u6237\u540D +lastUpdated=\u66F4\u65B0\u4FE1\u606F\u83B7\u53D6\u4E8E{0}\u524D +uploadtext=\u60A8\u53EF\u4EE5\u901A\u8FC7\u4E0A\u4F20\u4E00\u4E2A.hpi\u6587\u4EF6\u6765\u5B89\u88C5\u63D2\u4EF6\u3002 diff --git a/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties new file mode 100644 index 0000000000..5a3886abb9 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/config_zh_TW.properties @@ -0,0 +1,36 @@ +# 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. + +Check\ now=\u99AC\u4E0A\u6AA2\u67E5 +File=\u6A94\u6848 +HTTP\ Proxy\ Configuration=HTTP \u4EE3\u7406\u4F3A\u670D\u5668\u8A2D\u5B9A +Password=\u5BC6\u78BC +Port=\u9023\u63A5\u57E0 +Server=\u4F3A\u670D\u5668 +Submit=\u9001\u51FA +URL=URL +Update\ Site=\u66F4\u65B0\u7DB2\u7AD9 +Upload=\u4E0A\u50B3 +Upload\ Plugin=\u4E0A\u50B3\u5916\u639B\u7A0B\u5F0F +User\ name=\u4F7F\u7528\u8005\u540D\u7A31 +lastUpdated=\u66F4\u65B0\u8CC7\u8A0A\u53D6\u5F97\u6642\u9593: {0} \u4EE5\u524D +uploadtext=\u60A8\u53EF\u4EE5\u624B\u52D5\u4E0A\u50B3 .hpi \u6A94\u6848\u4F86\u5B89\u88DD\u4E0D\u5728\u4E2D\u592E\u5132\u5B58\u5EAB\u4E0A\u7684\u5916\u639B\u7A0B\u5F0F\u3002 diff --git a/war/src/main/webapp/help/update-center/proxy-server.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_de.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_de.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_fr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_fr.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_fr.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_ja.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_ja.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_ja.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_nl.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_nl.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_nl.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_pt_BR.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_pt_BR.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_pt_BR.html diff --git a/war/src/main/webapp/help/update-center/proxy-server_tr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-server_tr.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-name_tr.html diff --git a/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html new file mode 100644 index 0000000000..a0421a7792 --- /dev/null +++ b/core/src/main/resources/hudson/ProxyConfiguration/help-noProxyHost.html @@ -0,0 +1,4 @@ +
    + Specify host name patterns that shouldn't go through the proxy, one host per line. + "*" is the wild card host name (such as "*.cloudbees.com" or "www*.jenkins-ci.org") +
    \ No newline at end of file diff --git a/war/src/main/webapp/help/update-center/proxy-port.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_de.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_de.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_de.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_fr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_fr.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_fr.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_fr.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_ja.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_ja.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_ja.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_ja.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_nl.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_nl.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_nl.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_nl.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_pt_BR.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_pt_BR.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_pt_BR.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_pt_BR.html diff --git a/war/src/main/webapp/help/update-center/proxy-port_tr.html b/core/src/main/resources/hudson/ProxyConfiguration/help-port_tr.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-port_tr.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-port_tr.html diff --git a/war/src/main/webapp/help/update-center/proxy-username.html b/core/src/main/resources/hudson/ProxyConfiguration/help-userName.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-username.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-userName.html diff --git a/war/src/main/webapp/help/update-center/proxy-username_de.html b/core/src/main/resources/hudson/ProxyConfiguration/help-userName_de.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-username_de.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-userName_de.html diff --git a/war/src/main/webapp/help/update-center/proxy-username_ja.html b/core/src/main/resources/hudson/ProxyConfiguration/help-userName_ja.html similarity index 100% rename from war/src/main/webapp/help/update-center/proxy-username_ja.html rename to core/src/main/resources/hudson/ProxyConfiguration/help-userName_ja.html -- GitLab From 2508476bb2b89148e3535fd7a6c55f1d7b220509 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 23:36:53 -0800 Subject: [PATCH 157/158] [FIXED JENKINS-8710] --- changelog.html | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.html b/changelog.html index c3ac01421a..04796254ba 100644 --- a/changelog.html +++ b/changelog.html @@ -92,6 +92,7 @@ Upcoming changes Fixed a bug where Jenkins failed to show localized text for Hebrew, Indonesian, and Yedish.
  • Proxy configuration supported "no proxy host" setting to allow some hosts to bypass proxy. + (issue 8710)
  • Added/improved localization to Arabic, Bulgarian, Catalan, Czech, Danish, German, Greek, Esperanto, Spanish, Estonian, Basque, Finnish, French, Hebrew, Hindi, Hungarian, Indonesian, Icelandic, Italian, Kannada, Korean, Lithuanian, Latvian, Marathi, Norwegian, Dutch, Polish, Portugeese, Romanian, Russian, Slovak, Slovenian, Serbian, Swedish, Telgu, Turkish, Ukrainian, and Chinese. Thanks everyone! -- GitLab From e645c17652361f6846f63ff9d91a35e3065a680a Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Fri, 2 Dec 2011 23:45:03 -0800 Subject: [PATCH 158/158] fixed a test regression --- test/src/test/java/hudson/slaves/NodeProvisionerTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java index 6832221e1d..e810185aed 100644 --- a/test/src/test/java/hudson/slaves/NodeProvisionerTest.java +++ b/test/src/test/java/hudson/slaves/NodeProvisionerTest.java @@ -65,6 +65,8 @@ public class NodeProvisionerTest extends HudsonTestCase { NodeProvisionerInvoker.RECURRENCEPERIOD = original; } + public void testDummy() {} // just to make Surefire happy + /** * Latch synchronization primitive that waits for N thread to pass the checkpoint. *

    -- GitLab