我正在使用 Xamarin iOS,并且我有一个 Localizable.strings 文件,我在其中保存了所有字符串。现在变得非常困惑,想知道是否有办法在此文件中添加评论以更好地组织它?
Best Answer-推荐答案 strong>
在.strings 文件中添加注释的常用约定如下:
/* Comment */
"key" = "localized-value";
https://developer.xamarin.com/guides/ios/advanced_topics/localization_and_internationalization/#.strings_file_format
关于Localizable.strings 文件中的 iOS 注释,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36270876/
|