I want to dynamically modify the "xxx.strings" file by a shell script in iOS project.
They are key-value files.Is there some way to replace the value with the key?
1.The "InfoPlist.strings" file contents like this:
CFBundleDisplayName = "WinTraining";
some one wants to change "WinTraining" to "eDetailing", like this:
CFBundleDisplayName = "eDetailing";
2.And there same muti line files named "Localizable.strings" like this:
"Item" = "Item";
"ProductName" = "Product Name";
"Today" = "Today";
"NetworkError" = "Unable to connect to the network, please check the network";
"UploadComplete" = "Upload complete";
"Updating" = "Updating,Please wait...";
I want to modify the ".strings" file in my CI environment(jenkins),diffrient jenkins's jobs is built for diffrient customers) . In iOS project "CFBundleDisplayName" is used to set the app name, different customer requires different app name, so I need to change the "InfoPlist.string" file. "Localizable.strings",same situation.