For localizable.strings, we can only set key-value pair and not inhertable, which means you must rewrite the same value for different keys. What I want:
"SomeSimpleText" = "I am a simple text";
"helloText" = #"SomeSimpleText";
print("helloText".localizedString) = "I am a simple text";
For
localizable.strings
, we can only set key-value pair and not inhertable, which means you must rewrite the same value for different keys. What I want:print("helloText".localizedString) = "I am a simple text";