com.softicar.platform.common.date.CommonWeekdayI18n 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 CommonWeekdayI18n {
I18n0 FRIDAY = new I18n0("Friday")//
.de("Freitag");
I18n0 MONDAY = new I18n0("Monday")//
.de("Montag");
I18n0 SATURDAY = new I18n0("Saturday")//
.de("Samstag");
I18n0 SUNDAY = new I18n0("Sunday")//
.de("Sonntag");
I18n0 THURSDAY = new I18n0("Thursday")//
.de("Donnerstag");
I18n0 TUESDAY = new I18n0("Tuesday")//
.de("Dienstag");
I18n0 WEDNESDAY = new I18n0("Wednesday")//
.de("Mittwoch");
}