
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@272 f0f2a975-2e09-46c8-9428-3b39399b9f3c
87 lines
3.2 KiB
Java
87 lines
3.2 KiB
Java
/************************************************************************
|
|
*
|
|
* L10n.java
|
|
*
|
|
* Copyright: 2002-2012 by Henrik Just
|
|
*
|
|
* This file is part of Writer2LaTeX.
|
|
*
|
|
* Writer2LaTeX is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Writer2LaTeX is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Version 1.4 (2012-03-16)
|
|
*
|
|
*/
|
|
|
|
package writer2latex.xhtml.l10n;
|
|
|
|
import java.util.Locale;
|
|
import java.util.ResourceBundle;
|
|
|
|
/* This class handles localized strings (used for navigation links in the exported document)
|
|
* Note that the US-English strings need duplicated due to ResourceBundles' search order.
|
|
* Default strings are needed for the special case that neither strings for the document language,
|
|
* nor for the system default language are available.
|
|
* US-English strings are needed if the document language is English and the system locale is not.
|
|
*/
|
|
public class L10n {
|
|
public final static int UP = 0;
|
|
public final static int FIRST = 1;
|
|
public final static int PREVIOUS = 2;
|
|
public final static int NEXT = 3;
|
|
public final static int LAST = 4;
|
|
public final static int CONTENTS = 5;
|
|
public final static int INDEX = 6;
|
|
public final static int HOME = 7;
|
|
public final static int DIRECTORY = 8;
|
|
public final static int DOCUMENT = 9;
|
|
|
|
private ResourceBundle resourceBundle = ResourceBundle.getBundle("writer2latex.xhtml.l10n.XhtmlStrings",Locale.getDefault());
|
|
private Locale locale = null;
|
|
|
|
public void setLocale(String sLanguage, String sCountry) {
|
|
if (sLanguage!=null) {
|
|
if (sCountry!=null) {
|
|
locale = new Locale(sLanguage,sCountry);
|
|
}
|
|
else {
|
|
locale = new Locale(sLanguage);
|
|
}
|
|
}
|
|
else {
|
|
locale = Locale.getDefault();
|
|
}
|
|
|
|
resourceBundle = ResourceBundle.getBundle("writer2latex.xhtml.l10n.XhtmlStrings",locale);
|
|
}
|
|
|
|
public Locale getLocale() {
|
|
return locale;
|
|
}
|
|
|
|
public String get(int nString) {
|
|
switch (nString) {
|
|
case UP: return resourceBundle.getString("up");
|
|
case FIRST : return resourceBundle.getString("first");
|
|
case PREVIOUS : return resourceBundle.getString("previous");
|
|
case NEXT : return resourceBundle.getString("next");
|
|
case LAST : return resourceBundle.getString("last");
|
|
case CONTENTS : return resourceBundle.getString("contents");
|
|
case INDEX : return resourceBundle.getString("index");
|
|
case HOME : return resourceBundle.getString("home");
|
|
case DIRECTORY: return resourceBundle.getString("directory");
|
|
case DOCUMENT: return resourceBundle.getString("document");
|
|
default: return "???";
|
|
}
|
|
}
|
|
}
|