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

com.softicar.platform.common.date.CommonDateI18n 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;
import com.softicar.platform.common.core.i18n.I18n1;
import com.softicar.platform.common.core.i18n.I18n2;
import com.softicar.platform.common.core.i18n.I18n3;
import com.softicar.platform.common.core.i18n.I18n4;

public interface CommonDateI18n extends CommonMonthI18n, CommonWeekdayI18n {

	I18n0 _2_DAYS_AGO = new I18n0("2 days ago")//
		.de("vor 2 Tagen");
	I18n1 ARG1_SECONDS = new I18n1("%s seconds")//
		.de("%s Sekunden");
	I18n4 ARG1D_ARG2H_ARG3MIN_ARG4S = new I18n4("%sd %sh %smin %ss")//
		.de("%sT %sh %smin %ss");
	I18n3 ARG1H_ARG2MIN_ARG3S = new I18n3("%sh %smin %ss")//
		.de("%sh %smin %ss");
	I18n2 ARG1MIN_ARG2S = new I18n2("%smin %ss")//
		.de("%smin %ss");
	I18n1 ILLEGAL_DATE_SPECIFICATION_ARG1 = new I18n1("Illegal date specification: %s")//
		.de("Ungültige Datumsangabe: %s");
	I18n1 ILLEGAL_TIME_SPECIFICATION_ARG1 = new I18n1("Illegal time specification: %s")//
		.de("Ungültige Zeitangabe: %s");
	I18n0 MISSING_DATE_SPECIFICATION = new I18n0("Missing date specification.")//
		.de("Fehlende Datumsangabe.");
	I18n0 MISSING_TIME_SPECIFICATION = new I18n0("Missing time specification.")//
		.de("Fehlende Zeitangabe.");
	I18n0 TODAY = new I18n0("Today")//
		.de("Heute");
	I18n0 TOMORROW = new I18n0("Tomorrow")//
		.de("Morgen");
	I18n0 YESTERDAY = new I18n0("Yesterday")//
		.de("Gestern");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy