equivalent-exchange-3/ee3_common/ee3/common/lib/Localizations.java
pahimar 30c0d78eba Merge pull request #25 from aritzhack/master
Added Spanish-Spain (es-ES) translation
2012-10-22 09:27:54 -07:00

28 lines
717 B
Java

package ee3.common.lib;
/**
* BlockIds
*
* 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 + "cy_GB.xml",
LANG_RESOURCE_LOCATION + "de_DE.xml",
LANG_RESOURCE_LOCATION + "en_US.xml",
LANG_RESOURCE_LOCATION + "fr_FR.xml",
LANG_RESOURCE_LOCATION + "it_IT.xml",
LANG_RESOURCE_LOCATION + "nl_NL.xml",
LANG_RESOURCE_LOCATION + "pt_PT.xml",
LANG_RESOURCE_LOCATION + "es_ES.xml",
LANG_RESOURCE_LOCATION + "ru_RU.xml"
};
}