BartyCrouch icon indicating copy to clipboard operation
BartyCrouch copied to clipboard

Localization/I18n: Incrementally update/translate your Strings files from .swift, .h, .m(m), .storyboard or .xib files.

Results 47 BartyCrouch issues
Sort by recently updated
recently updated
newest added

The idea is that for translators, it would be great to have some context for the translations. For this, automated unit / UI tests could be used where the accessory...

enhancement

Often times, multiple projects with overlapping translations are developed within one company. This could be multiple apps where some of the translations overlap or simply an Android version of the...

enhancement

To make BartyCrouch also useful for Android development, a linting configuration and features could be added, that might be useful on CI and in git commit prehooks to ensure no...

enhancement

We're using BartyCrouch as our build script phase. I found out that all version from 3.11.2 and newer are crashing with the following stack: ``` 2018-11-14 11:15:58.401 bartycrouch[27535:1456155] *** Terminating...

bug

I have included the below in an Xcode project but it doesnt seem to be making the translate request. I have tested my API secret and that seems to be...

help wanted

We use such code to automatically set default value for the strings: `NSLocalizedString("account.gender.NA", value: "N/A", comment: "Title for account N/A gender")` But bartycouch creates empty strings in Localizable.strings for those...

BartyCrouch could provide a command to automatically add a list of common localization Strings to the `Localizable.strings` file for convenience. Translations would be provided for as many languages as possible....

Hi! I am trying to update Storyboard string files in terminal with this command: **bartycrouch interfaces -p /Users/Alex/Desktop/Test\ BartyCrouch** I am getting this error: **Could not extract strings from Storyboard...

I used custom function: -f "LLS" to parse the localized strings: `LLS(@"LOC_BASE_INFO", @""), LLS(@"LOC_UPGRADE", @""), LLS(@"LOC_CRAFT_PRICE", @""), LLS(@"LOC_SKILLS", @""), LLS(@"LOC_SET_SKILLS", @""), LLS(@"LOC_CRAFT_MATERIALS", @"") ` it will work good if there...

enhancement

(First of all, thanks for a great tool!) With the following code, only `"foo"` is picked up by BartyCrouch: ```swift let foo = NSLocalizedString("foo", comment: "foo") let bar = NSLocalizedString(...

enhancement