1 package jodd.datetime.names; 2 3 6 public final class SerbianNames implements jodd.datetime.JdtNames { 7 8 private final String[] month = { "Januar", "Februar", "Mart", "April", "Maj", "Juni", "Juli", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" }; 9 public String[] getMonths() { 10 return month; 11 } 12 13 private final String[] month_s = { "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec" }; 14 public String[] getShortMonths() { 15 return month_s; 16 } 17 18 private final String[] weekday = { "Ponedeljak", "Utorak", "Sreda", "Cetvrtak", "Petak", "Subota", "Nedelja"}; 19 public String[] getDaysOfWeek() { 20 return weekday; 21 } 22 23 private final String[] weekday_s = { "Pon", "Uto", "Sre", "Cet","Pet", "Sub", "Ned" }; 24 public String[] getShortDaysOfWeek() { 25 return weekday_s; 26 } 27 28 } 29 | Popular Tags |