// (c) 2008 mediaunit.de
/**
 * Collection of localized strings.
 *
 * @author tc
 * @since 2008-07-16
 */
/*
 * Simulate namespaces.
 */
if (typeof es == "undefined") 
    es = new Object();
if (typeof es.fhecor == "undefined") 
    es.fhecor = new Object();
if (typeof es.fhecor.Locale == "undefined") 
    es.fhecor.Locale = new Object();

// English localization
es.fhecor.Locale.en = {
	MORE_NEWS: "MORE NEWS",
	DETAIL: "DETAILS"
};

// Spanish localization
es.fhecor.Locale.es = {
	MORE_NEWS: "MÁS NOTICIAS",
	DETAIL: "DETALLE"
};