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 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.date;
import com.softicar.platform.common.core.i18n.I18n0;
public interface CommonWeekdayAbbreviationI18n {
I18n0 FR = new I18n0("Fr")//
.de("Fr")
.bs("Pet")
.sr("Pet")
.hr("Pet");
I18n0 MO = new I18n0("Mo")//
.de("Mo")
.bs("Pon")
.sr("Pon")
.hr("Pon");
I18n0 SA = new I18n0("Sa")//
.de("Sa")
.bs("Sub")
.sr("Sub")
.hr("Sub");
I18n0 SU = new I18n0("Su")//
.de("So")
.bs("Ned")
.sr("Ned")
.hr("Ned");
I18n0 TH = new I18n0("Th")//
.de("Do")
.bs("Čet")
.sr("Čet")
.hr("Čet");
I18n0 TU = new I18n0("Tu")//
.de("Di")
.bs("Uto")
.sr("Uto")
.hr("Uto");
I18n0 WE = new I18n0("We")//
.de("Mi")
.bs("Sri")
.sr("Sri")
.hr("Sri");
}