mirror of
https://github.com/nitu2003/T18n
synced 2024-11-22 07:48:47 +00:00
[-] 稍微修改了一点点方法
This commit is contained in:
parent
b4fa3f0fd0
commit
4eef26a4c8
@ -4,6 +4,7 @@ import java.nio.charset.Charset;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@SuppressWarnings("unused")
|
||||||
public class I18n {
|
public class I18n {
|
||||||
|
|
||||||
private static LanguageMap map;
|
private static LanguageMap map;
|
||||||
@ -61,7 +62,7 @@ public class I18n {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** 使字符串列表扁平化。 */
|
/** 使字符串列表扁平化。 */
|
||||||
public static String flattenList(List<String> vlist) {
|
private static String flattenList(List<String> vlist) {
|
||||||
|
|
||||||
String v = "";
|
String v = "";
|
||||||
for(String o : vlist) {
|
for(String o : vlist) {
|
||||||
@ -87,7 +88,8 @@ public class I18n {
|
|||||||
return getLanguageMapSafe().containsKey(key);
|
return getLanguageMapSafe().containsKey(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean canTranslate(String key) {
|
/** @see #hasKey(String) */
|
||||||
|
private static boolean canTranslate(String key) {
|
||||||
return hasKey(key);
|
return hasKey(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user