View Javadoc

1   /*
2    * ModeShape (http://www.modeshape.org)
3    * See the COPYRIGHT.txt file distributed with this work for information
4    * regarding copyright ownership.  Some portions may be licensed
5    * to Red Hat, Inc. under one or more contributor license agreements.
6   * See the AUTHORS.txt file in the distribution for a full listing of 
7   * individual contributors.
8    *
9    * ModeShape is free software. Unless otherwise indicated, all code in ModeShape
10   * is licensed to you under the terms of the GNU Lesser General Public License as
11   * published by the Free Software Foundation; either version 2.1 of
12   * the License, or (at your option) any later version.
13   *
14   * ModeShape is distributed in the hope that it will be useful,
15   * but WITHOUT ANY WARRANTY; without even the implied warranty of
16   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17   * Lesser General Public License for more details.
18   *
19   * You should have received a copy of the GNU Lesser General Public
20   * License along with this software; if not, write to the Free
21   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
23   */
24  package org.modeshape.connector.svn;
25  
26  import java.util.Locale;
27  import java.util.Set;
28  import org.modeshape.common.i18n.I18n;
29  
30  /**
31   * The internationalized string constants for the <code>org.modeshape.connector.svn*</code> packages.
32   */
33  public final class SvnRepositoryConnectorI18n {
34  
35      public static I18n connectorName;
36      public static I18n nodeDoesNotExist;
37      public static I18n nodeIsActuallyUnknow;
38      public static I18n propertyIsRequired;
39      public static I18n errorSerializingCachePolicyInSource;
40      public static I18n locationInRequestMustHavePath;
41      public static I18n sourceIsReadOnly;
42      public static I18n sourceDoesNotSupportCreatingWorkspaces;
43      public static I18n sourceDoesNotSupportCloningWorkspaces;
44      public static I18n sourceDoesNotSupportDeletingWorkspaces;
45      public static I18n connectingFailureOrUserAuthenticationProblem;
46      public static I18n pathForPredefinedWorkspaceDoesNotExist;
47      public static I18n pathForPredefinedWorkspaceIsNotDirectory;
48      public static I18n pathForPredefinedWorkspaceCannotBeRead;
49      public static I18n workspaceDoesNotExist;
50      public static I18n pathForDefaultWorkspaceDoesNotExist;
51      public static I18n pathForDefaultWorkspaceIsNotDirectory;
52      public static I18n pathForDefaultWorkspaceCannotBeRead;
53      public static I18n sameNameSiblingsAreNotAllowed;
54      public static I18n onlyTheDefaultNamespaceIsAllowed;
55      public static I18n unableToCreateWorkspaces;
56      public static I18n pathForRequestIsNotCorrect;
57      public static I18n pathForRequestMustStartWithAForwardSlash;
58      public static I18n nodeAlreadyExist;
59      public static I18n unsupportedPrimaryType;
60      public static I18n invalidPropertyNames;
61      public static I18n invalidNameForResource;
62      public static I18n invalidPathForResource;
63      public static I18n missingRequiredProperty;
64      public static I18n couldNotCreateFile;
65      public static I18n couldNotReadData;
66      public static I18n deleteFailed;
67      public static I18n nodeOrderingNotSupported;
68  
69      public static I18n repositoryRootUrlPropertyDescription;
70      public static I18n repositoryRootUrlPropertyLabel;
71      public static I18n repositoryRootUrlPropertyCategory;
72      public static I18n usernamePropertyDescription;
73      public static I18n usernamePropertyLabel;
74      public static I18n usernamePropertyCategory;
75      public static I18n passwordPropertyDescription;
76      public static I18n passwordPropertyLabel;
77      public static I18n passwordPropertyCategory;
78      public static I18n creatingWorkspacesAllowedPropertyDescription;
79      public static I18n creatingWorkspacesAllowedPropertyLabel;
80      public static I18n creatingWorkspacesAllowedPropertyCategory;
81      public static I18n defaultWorkspaceNamePropertyDescription;
82      public static I18n defaultWorkspaceNamePropertyLabel;
83      public static I18n defaultWorkspaceNamePropertyCategory;
84      public static I18n predefinedWorkspaceNamesPropertyDescription;
85      public static I18n predefinedWorkspaceNamesPropertyLabel;
86      public static I18n predefinedWorkspaceNamesPropertyCategory;
87      public static I18n updatesAllowedPropertyDescription;
88      public static I18n updatesAllowedPropertyLabel;
89      public static I18n updatesAllowedPropertyCategory;
90  
91      static {
92          try {
93              I18n.initialize(SvnRepositoryConnectorI18n.class);
94          } catch (final Exception err) {
95              System.err.println(err);
96          }
97      }
98  
99      public static Set<Locale> getLocalizationProblemLocales() {
100         return I18n.getLocalizationProblemLocales(SvnRepositoryConnectorI18n.class);
101     }
102 
103     public static Set<String> getLocalizationProblems() {
104         return I18n.getLocalizationProblems(SvnRepositoryConnectorI18n.class);
105     }
106 
107     public static Set<String> getLocalizationProblems( Locale locale ) {
108         return I18n.getLocalizationProblems(SvnRepositoryConnectorI18n.class, locale);
109     }
110 
111 }