1 /*
2 * Copyright (C) 2011, 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.internal.storage.dfs;
12
13 import org.eclipse.jgit.nls.NLS;
14 import org.eclipse.jgit.nls.TranslationBundle;
15
16 /**
17 * Translation bundle for the DFS storage implementation.
18 */
19 public class DfsText extends TranslationBundle {
20 /**
21 * Get an instance of this translation bundle.
22 *
23 * @return instance of this translation bundle.
24 */
25 public static DfsText get() {
26 return NLS.getBundleFor(DfsText.class);
27 }
28
29 // @formatter:off
30 /***/ public String cannotReadIndex;
31 /***/ public String shortReadOfBlock;
32 /***/ public String shortReadOfIndex;
33 /***/ public String willNotStoreEmptyPack;
34 }