Currently the way I store strings is by using Localizable.strings, for example
English:
"URL" = "http://google.com";
Spanish:
"URL" = "http://google.com";
As you can see I have the same string for both languages, is there a way I can use something similar to localizable.strings (loads automatically, compatible with any language/localization) without having to write the same key/value in both files? And then retrieve the value using a method? ( NSGetstring("URL") )