|
String | get (String msg) |
|
String | get (String msg, int count) |
|
String | format (String msg, Object... arguments) |
|
String | get (Locale locale, String msg) |
|
String | get (Locale locale, String msg, int count) |
|
String | format (Locale locale, String msg, Object... arguments) |
|
List< String > | getInLocales (String msg) |
|
◆ format() [1/2]
String org.turro.i18n.I18nCompatibilityWrapper.format |
( |
Locale |
locale, |
|
|
String |
msg, |
|
|
Object... |
arguments |
|
) |
| |
Definition at line 56 of file I18nCompatibilityWrapper.java.
57 if(msg ==
null)
return null;
58 return i18nApiWrapper.get(locale, I18nCompatibilityKey.instance().getOrDefault(msg, msg));
◆ format() [2/2]
String org.turro.i18n.I18nCompatibilityWrapper.format |
( |
String |
msg, |
|
|
Object... |
arguments |
|
) |
| |
Definition at line 41 of file I18nCompatibilityWrapper.java.
42 if(msg ==
null)
return null;
43 return i18nApiWrapper.format(I18nCompatibilityKey.instance().getOrDefault(msg, msg), arguments);
◆ from()
◆ get() [1/4]
String org.turro.i18n.I18nCompatibilityWrapper.get |
( |
Locale |
locale, |
|
|
String |
msg |
|
) |
| |
Definition at line 46 of file I18nCompatibilityWrapper.java.
47 if(msg ==
null)
return null;
48 return i18nApiWrapper.get(locale, I18nCompatibilityKey.instance().getOrDefault(msg, msg));
◆ get() [2/4]
String org.turro.i18n.I18nCompatibilityWrapper.get |
( |
Locale |
locale, |
|
|
String |
msg, |
|
|
int |
count |
|
) |
| |
Definition at line 51 of file I18nCompatibilityWrapper.java.
52 if(msg ==
null)
return null;
53 return i18nApiWrapper.get(locale, I18nCompatibilityKey.instance().getOrDefault(msg, msg), count);
◆ get() [3/4]
String org.turro.i18n.I18nCompatibilityWrapper.get |
( |
String |
msg | ) |
|
Definition at line 31 of file I18nCompatibilityWrapper.java.
32 if(msg ==
null)
return null;
33 return i18nApiWrapper.get(I18nCompatibilityKey.instance().getOrDefault(msg, msg));
◆ get() [4/4]
String org.turro.i18n.I18nCompatibilityWrapper.get |
( |
String |
msg, |
|
|
int |
count |
|
) |
| |
Definition at line 36 of file I18nCompatibilityWrapper.java.
37 if(msg ==
null)
return null;
38 return i18nApiWrapper.get(I18nCompatibilityKey.instance().getOrDefault(msg, msg), count);
◆ getInLocales()
List<String> org.turro.i18n.I18nCompatibilityWrapper.getInLocales |
( |
String |
msg | ) |
|
Definition at line 61 of file I18nCompatibilityWrapper.java.
62 if(msg ==
null)
return Collections.EMPTY_LIST;
63 return i18nApiWrapper.getInLocales(I18nCompatibilityKey.instance().getOrDefault(msg, msg), I18nContext.getSiteLocales());
The documentation for this class was generated from the following file: