com.softicar.platform.common.container.CommonContainerI18n Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-common Show documentation
Show all versions of platform-common Show documentation
The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.
package com.softicar.platform.common.container;
import com.softicar.platform.common.core.i18n.I18n0;
public interface CommonContainerI18n {
I18n0 AND = new I18n0("and")//
.de("und");
I18n0 ASCENDING = new I18n0("Ascending")//
.de("Aufsteigend");
I18n0 DESCENDING = new I18n0("Descending")//
.de("Absteigend");
I18n0 EMPTY = new I18n0("empty")//
.de("leer");
I18n0 NOT_EMPTY = new I18n0("not empty")//
.de("nicht leer");
I18n0 OR = new I18n0("or")//
.de("oder");
}