equivalent-exchange-3/ee3_common/ee3/common/lib/Localizations.java
2012-11-07 23:13:05 +09:00

34 lines
996 B
Java

package ee3.common.lib;
/**
* Localizations
*
* Library containing all mod language related files
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public class Localizations {
private static final String LANG_RESOURCE_LOCATION = "/ee3/lang/";
public static String[] localeFiles = {
LANG_RESOURCE_LOCATION + "cs_CZ.xml",
LANG_RESOURCE_LOCATION + "cy_GB.xml",
LANG_RESOURCE_LOCATION + "de_DE.xml",
LANG_RESOURCE_LOCATION + "en_US.xml",
LANG_RESOURCE_LOCATION + "es_ES.xml",
LANG_RESOURCE_LOCATION + "fr_FR.xml",
LANG_RESOURCE_LOCATION + "it_IT.xml",
LANG_RESOURCE_LOCATION + "ja_JP.xml",
LANG_RESOURCE_LOCATION + "nl_NL.xml",
LANG_RESOURCE_LOCATION + "pl_PL.xml",
LANG_RESOURCE_LOCATION + "pt_PT.xml",
LANG_RESOURCE_LOCATION + "ru_RU.xml",
LANG_RESOURCE_LOCATION + "sr_RS.xml",
LANG_RESOURCE_LOCATION + "sv_SE.xml",
LANG_RESOURCE_LOCATION + "zh_CN.xml"
};
}