com.softicar.platform.common.date.CommonWeekdayAbbreviationI18n Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-common-date Show documentation
Show all versions of platform-common-date Show documentation
The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.
package com.softicar.platform.common.date;
import com.softicar.platform.common.core.i18n.I18n0;
public interface CommonWeekdayAbbreviationI18n {
I18n0 FR = new I18n0("Fr")//
.de("Fr");
I18n0 MO = new I18n0("Mo")//
.de("Mo");
I18n0 SA = new I18n0("Sa")//
.de("Sa");
I18n0 SU = new I18n0("Su")//
.de("So");
I18n0 TH = new I18n0("Th")//
.de("Do");
I18n0 TU = new I18n0("Tu")//
.de("Di");
I18n0 WE = new I18n0("We")//
.de("Mi");
}