Date
1 - 4 of 4
update Localization
Gerriet M. Denkmann
I have an app (macOS 13.4, Xcode Version 9.3 (9E145)) which was localised (Xcode did some magic for me).
Now I made some changes. Is there a way to update the Localizable.string, MainMenu.strings, etc. without destroying the stuff I already have translated? I.e. things no longer existing should be removed (or commented out) and new stuff should be added. Gerriet. |
|
The main idea for Cocoa localization is that your source artifacts are the “the truth” for your development region (by default English): You use the real strings in NSLocalizedString() macros and in your xib and storyboard files
toggle quoted message
Show quoted text
Then, when you’re ready to localize your application, you export for localization from Xcode to produce an XLIFF file that contains translatable strings. At the point of export, you can also choose to include existing translations in that XLIFF file, so your translators know what work they don’t have to do. When your translator returns an updated XLIFF file for a given localization, you then import that to Xcode and it puts the appropriate content in the resources for just that language, replacing whatever was there previously. Because of the ability to include existing translations in the exported XLIFF, this shouldn’t be a big deal; strings that were present before should still be present, and strings that are no longer present should be omitted. -- Chris PS - There were substantial improvements to Xcode’s translation infrastructure in Xcode 9.3, so for anyone else out there who has used it before, please try it out with Xcode 9.3.
|
|
Michael Babin
Any pointers to information on what changed? I looked through the Xcode Release Notes (https://developer.apple.com/library/content/releasenotes/DeveloperTools/RN-Xcode/Chapters/Introduction.html#//apple_ref/doc/uid/TP40001051-CH1-SW1), but did not see any mention of these changes or their effect(s). Only a mention of the added LOCALIZED_STRING_MACRO_NAMES build setting. |
|
On May 11, 2018, at 7:16 AM, Michael Babin <mbabin@...> wrote:
I don’t have any detailed list of what changed in Xcode 9.3 that I can share, sorry. Speaking generally, the only changes anyone should notice should be positive; much of the underlying infrastructure related to localization in Xcode was substantially updated, but that should be invisible to developers except insofar as there should be many fewer issues encountered in common workflows. -- Chris -- who works on Xcode, including its localization support |
|