de.sstoehr.pustefix.i18n.output.AbstractWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pustefix-i18n-maven-plugin Show documentation
Show all versions of pustefix-i18n-maven-plugin Show documentation
A maven plugin to work with PO translation files with Pustefix framework
package de.sstoehr.pustefix.i18n.output;
import java.io.File;
import java.util.LinkedHashMap;
import java.util.Map;
import de.sstoehr.pustefix.i18n.model.Locale;
public abstract class AbstractWriter implements Writer {
protected Map locales = new LinkedHashMap<>();
@Override
public void addLocale(Locale locale, File file) {
locales.put(locale, file);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy