All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softicar.platform.common.date.CommonWeekdayI18n Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
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");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy