Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2018-03-30Add plural localizationsgreshilov
2018-03-30Modifications for MAPS.MEIlya Zverev
2018-01-26Update version to 1.0.3v1.0.3Sebastian Celis
2018-01-26Merge pull request #235 from scelis/fix/234_complex_placeholdersSebastian Celis
Fix an error caused by combining %@ with other placeholders
2018-01-26Fix safe yaml crashTomer Shemesh
Fix Safe Yaml crash In some cases safe yaml will be loaded and cause it to crash when ever it is run before date class has been loaded. This can be seen in a few cases and makes it crash when ever twine is called. https://github.com/dtao/safe_yaml/issues/80 https://github.com/test-kitchen/test-kitchen/issues/1327 https://github.com/jekyll/jekyll/issues/3201 This commit fixes that issue
2018-01-24Fix an error caused by combining %@ with other placeholdersSebastian Celis
Fixes #234
2018-01-20Update version to 1.0.2v1.0.2Sebastian Celis
2017-12-12Escape angle brackets in Android formatter, if the string contains a ↵Sebastian Ludwig
placeholder to enable users to use the official way to retrieve these strings. Improves #212.
2017-10-18Update version to 1.0.1Sebastian Celis
2017-10-18Always prefer the formatter passed inSebastian Celis
This fixes #221
2017-10-16Update version to 1.0Sebastian Celis
2017-10-13more readable ifPhilippe Auriach
2017-10-10use developer-language option for apple Base folderPhilippe Auriach
2017-09-18Close #212: Change Android escaping to preserve basic styling tags and ↵Sebastian Ludwig
anything inside CDATA.
2017-09-13Fix #213: Add --version again which got lost in c619dd6.Sebastian Ludwig
2017-08-24Fail twine commands if there’s more than one formatter candidate. Fixes #201.Sebastian Ludwig
2017-08-03Fix indentationJuan Pablo Orsay
2017-08-03Android folder should have the region code preceded by lowercase "r"Juan Pablo Orsay
2017-07-31Merge pull request #200 from scelis/fix-po-language-detectionSebastian Celis
Fix language detection for .po formatters
2017-07-31Fix language detection for .po formattersSebastian Celis
The old regular expressions were only supporting two character language identifiers. This commit allows languages to scale to things like "en-GB". Fixes #199
2017-07-31Fix typos.Sebastian Ludwig
2017-06-20Add 'q' placeholder modifier for android stringsIlya Zverev
2017-05-22Fix #191 by using the parsed boolean value for CLI options, not always `true`.Sebastian Ludwig
2017-01-19Update version to 0.10.1v0.10.1Sebastian Celis
2017-01-19Fixed #184 by checking if IO.console is defined.Sebastian Ludwig
2017-01-17Update version to 0.10.0v0.10.0Sebastian Celis
2017-01-17Fixed #182: Renamed command generate-loc-drop to ↵Sebastian Ludwig
generate-localization-archive and consume-loc-drop to consume-localization-archive.
2016-12-20Improved CLI and only showing applicable options per command.Sebastian Ludwig
2016-12-19Merge pull request #177 from sebastianludwig/fix-169-153Sebastian Celis
Implements #169 and resolves #153
2016-12-15Merge pull request #178 from ↵Sebastian Celis
sebastianludwig/can-handle-directory-default-and-formatting Minor improvements and a little cleanup
2016-12-15Fixed #179 by converting placeholders before escaping @ signs.Sebastian Ludwig
2016-12-08Added can_handle_directory? default implementation to Abstract.Sebastian Ludwig
2016-12-08Corrected source code formatting.Sebastian Ludwig
2016-12-08Fixed #153 by removing command deprecation warning.Sebastian Ludwig
2016-12-08Implemented determine_language_given_path for Flash formatter.Sebastian Ludwig
2016-12-08Fixed #169 by adding proper placeholder handling to Flash formatter.Sebastian Ludwig
2016-12-08Removed unnecessary return statements.Sebastian Ludwig
2016-11-22Merge pull request #174 from sebastianludwig/fix-164-printf-spaceSebastian Celis
Fixed #165 by disallowing single spaces as valid printf flags.
2016-11-22Fixed #165 by disallowing single spaces as valid printf flags.Sebastian Ludwig
2016-11-21Fixed #172 by removing language mappings.Sebastian Ludwig
2016-06-21Added AND and NOT logic for tags.Sebastian Ludwig
2016-05-16Merge pull request #161 from sebastianludwig/fix_117_xliff_tagsSebastian Celis
Fix 117 xliff tags
2016-05-04Remote empty sections before joining them togetherMatthew Abbott
Previously, a comma was being printed on the last line of every section, even if that section did not contribute any rows to the formatted output (e.g., no rows within that section had the tags needed to be output during this run). When such a zero-row section happens, it results in an line with only a comma on it, which is not valid json. This can make incremental adjustment of the jquery files rather tedious, even when using gui tools to quickly reject changes.
2016-05-03Allowing xliff tags in android values and escaping special characters as ↵Sebastian Ludwig
recommended by Android docs.
2016-05-03Add UTF-8 Content-Type to the Django formatterPaul Wagener
2016-04-27Properly parsing multiline strings in Android formatter by using REXML ↵Sebastian Ludwig
instead of regexps. Fixes #81.
2016-04-26Fixed #155 by removing mapping from zh to zh-Hans in Android formatter.Sebastian Ludwig
2016-04-03Merge pull request #147 from sebastianludwig/namingSebastian Celis
Better naming
2016-04-02Incorporated PR feedback.Sebastian Ludwig
2016-04-01Be explicit when requiring formatters.Sebastian Celis
I think I prefer this explicitness over the prior automatic importing code. It feels safer (it won't load files that are placed into the formatters folder that shouldn't be there) and it avoids the issue we had in #145 where formatters can load in arbitrary order.