View Javadoc
1   /*
2    * Copyright (C) 2013, 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.archive.internal;
12  
13  import org.eclipse.jgit.nls.NLS;
14  import org.eclipse.jgit.nls.TranslationBundle;
15  
16  /**
17   * Translation bundle for archivers
18   */
19  public class ArchiveText extends TranslationBundle {
20  	/**
21  	 * Get an instance of this translation bundle.
22  	 *
23  	 * @return an instance of this translation bundle
24  	 */
25  	public static ArchiveText get() {
26  		return NLS.getBundleFor(ArchiveText.class);
27  	}
28  
29  	// @formatter:off
30  	/***/ public String cannotSetOption;
31  	/***/ public String invalidCompressionLevel;
32  	/***/ public String pathDoesNotMatchMode;
33  	/***/ public String unsupportedMode;
34  }