-1
我工作的本地化。我得到了一些關於它的信息,即編輯Localizable.strings中的標籤文本。但我想本地化解析數據。我在下面用於編輯Localizable.strings中的標籤文本。對此有何想法?如何本地化解析數據?
label1.text=NSLocalizedString(@"One", @"The Number1");
label2.text=NSLocalizedString(@"Two", @"The Number 2");
.....
Data is editing in
/* The Number 5 */
"Five" = "Five";
/* The Number 4 */
"Four" = "Four";
/* The Number1 */
"One" = "One";
/* The Number 3 */
"Three" = "Three";
/* The Number 2 */
"Two" = "Two";
什麼是你的問題? – Cocoanetics
如何定位表 – fathik
什麼「分析數據」你說的是分析數據?你上面顯示的字符串文件是你如何本地化字符串。 – Cocoanetics