extract-localizable-string-plugin-xcode
extract-localizable-string-plugin-xcode copied to clipboard
Runs, but doesn't insert the string into the Localized.strings file
This is wonderful, except it isn't actually putting the strings into the localized.strings file.
Is this known on 7,2?
Same here, on Xcode v7.2, after doing an extract, the string just disappear, not saved anywhere.
I have this problem too.
+1
I have the same problem. Starting investigating, I saw that EditorLocalizable L199 getDefaultLocalizableFilePath
returns nil
For a temporary fix:
- Copy the full path of your Localizable.strings
- Open the project ExtractorLocalizableStrings downloaded from Github
- In [EditorLocalizable getDefaultLocalizableFilePath], add
return <Full path to your Localizable.strings>;at the very top of the method. - In [EditorLocalizable localizableFilePaths] add
return @[<Full path to your Localizable.strings>]; - Compile the project
- Restart XCode Now, the keys should be added to the Localizable.strings.
When I have time, I will look into why these two methods can't find the file and return nil