de.sstoehr.pustefix.i18n.mojo.Locale 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.mojo;
import java.io.File;
public class Locale {
private String locale;
private File poFile;
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public File getPoFile() {
return poFile;
}
public void setPoFile(File poFile) {
this.poFile = poFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy