View Javadoc
1   /*
2    * Copyright (C) 2014, Google Inc. and others
3    *
4    * This program and the accompanying materials are made available under the
5    * terms of the Eclipse Distribution License v. 1.0 which is available at
6    * https://www.eclipse.org/org/documents/edl-v10.php.
7    *
8    * SPDX-License-Identifier: BSD-3-Clause
9    */
10  
11  package org.eclipse.jgit.gitrepo.internal;
12  
13  import org.eclipse.jgit.nls.NLS;
14  import org.eclipse.jgit.nls.TranslationBundle;
15  
16  /**
17   * Translation bundle for repo command
18   */
19  public class RepoText extends TranslationBundle {
20  
21  	/**
22  	 * Get an instance of this translation bundle
23  	 *
24  	 * @return an instance of this translation bundle
25  	 */
26  	public static RepoText get() {
27  		return NLS.getBundleFor(RepoText.class);
28  	}
29  
30  	// @formatter:off
31  	/***/ public String errorIncludeFile;
32  	/***/ public String errorIncludeNotImplemented;
33  	/***/ public String errorNoDefault;
34  	/***/ public String errorNoDefaultFilename;
35  	/***/ public String errorNoFetch;
36  	/***/ public String errorParsingManifestFile;
37  	/***/ public String errorRemoteUnavailable;
38  	/***/ public String invalidManifest;
39  	/***/ public String repoCommitMessage;
40  }