19 package org.turro.i18n;
21 import java.util.Collections;
22 import java.util.List;
23 import java.util.Locale;
31 public String
get(String msg) {
32 if(msg ==
null)
return null;
36 public String
get(String msg,
int count) {
37 if(msg ==
null)
return null;
41 public String
format(String msg, Object... arguments) {
42 if(msg ==
null)
return null;
46 public String
get(Locale locale, String msg) {
47 if(msg ==
null)
return null;
51 public String
get(Locale locale, String msg,
int count) {
52 if(msg ==
null)
return null;
56 public String
format(Locale locale, String msg, Object... arguments) {
57 if(msg ==
null)
return null;
62 if(msg ==
null)
return Collections.EMPTY_LIST;
68 private final I18nApiWrapper i18nApiWrapper;
75 this.i18nApiWrapper = i18nApiWrapper;
static I18nCompatibilityKey instance()
static I18nCompatibilityWrapper from(I18nApiWrapper i18nApiWrapper)
List< String > getInLocales(String msg)
String format(String msg, Object... arguments)
String format(Locale locale, String msg, Object... arguments)
static List< Locale > getSiteLocales()