1 /* 2 * Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> 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.awtui; 12 13 import org.eclipse.jgit.nls.NLS; 14 import org.eclipse.jgit.nls.TranslationBundle; 15 16 /** 17 * Translation bundle for JGit UI 18 */ 19 public class UIText extends TranslationBundle { 20 21 /** 22 * Get an instance of this translation bundle. 23 * 24 * @return an instance of this translation bundle 25 */ get()26 public static UIText get() { 27 return NLS.getBundleFor(UIText.class); 28 } 29 30 // @formatter:off 31 /***/ public String authenticationRequired; 32 /***/ public String author; 33 /***/ public String date; 34 /***/ public String enterUsernameAndPasswordFor; 35 /***/ public String mustBeSpecialTableModel; 36 /***/ public String password; 37 /***/ public String username; 38 /***/ public String warning; 39 } 40