LocalizedStringForKeyValueTable() public method

public LocalizedStringForKeyValueTable ( string key, string value, string table ) : string
key string
value string
table string
return string
コード例 #1
0
ファイル: KNBundle.cs プロジェクト: bt-browser/KNFoundation
 public static string KNLocalizedStringWithDefaultValue(string key, string tableName, KNBundle bundle, string value, string comment)
 {
     return bundle.LocalizedStringForKeyValueTable(key, value, tableName);
 }
コード例 #2
0
ファイル: KNBundle.cs プロジェクト: bt-browser/KNFoundation
 public static string KNLocalizedStringFromTableInBundle(string key, string tableName, KNBundle bundle, string comment)
 {
     return bundle.LocalizedStringForKeyValueTable(key, null, tableName);
 }