com.softicar.platform.common.date.CommonMonthI18n 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 CommonMonthI18n {
I18n0 APRIL = new I18n0("April")//
.de("April")
.bs("April")
.hr("Travanj")
.sr("April");
I18n0 AUGUST = new I18n0("August")//
.de("August")
.bs("August")
.hr("Kolovoz")
.sr("August");
I18n0 DECEMBER = new I18n0("December")//
.de("Dezember")
.bs("Decembar")
.hr("Prosinac")
.sr("Decembar");
I18n0 FEBRUARY = new I18n0("February")//
.de("Februar")
.bs("Februar")
.hr("Veljača")
.sr("Februar");
I18n0 JANUARY = new I18n0("January")//
.de("Januar")
.bs("Januar")
.hr("Siječanj")
.sr("Januar");
I18n0 JULY = new I18n0("July")//
.de("Juli")
.bs("Juli")
.hr("Srpanj")
.sr("Juli");
I18n0 JUNE = new I18n0("June")//
.de("Juni")
.bs("Juni")
.hr("Lipanj")
.sr("Juni");
I18n0 MARCH = new I18n0("March")//
.de("März")
.bs("Mart")
.hr("Ožujak")
.sr("Mart");
I18n0 MAY = new I18n0("May")//
.de("Mai")
.bs("Maj")
.hr("Svibanj")
.sr("Maj");
I18n0 NOVEMBER = new I18n0("November")//
.de("November")
.bs("Novembar")
.hr("Studeni")
.sr("Novembar");
I18n0 OCTOBER = new I18n0("October")//
.de("Oktober")
.bs("Oktobar")
.hr("Listopad")
.sr("Oktobar");
I18n0 SEPTEMBER = new I18n0("September")//
.de("September")
.bs("Septembar")
.hr("Rujan")
.sr("Septembar");
}