localicious icon indicating copy to clipboard operation
localicious copied to clipboard

A toolchain for working with localization files in a platform-agnostic way.

Results 13 localicious issues
Sort by recently updated
recently updated
newest added

``` OS: Ubuntu 23.04 node --version v16.20.1 yarn --version 1.22.19 localicious --version 1.0.1 ``` When I run ```localicious render localizations.yaml ./ -l en,nl -ot ios -c IOS``` or ```localicious render...

- eslint from 8.20.0 to 8.22.0, which in turn upgrades ansi-regex for which a security vulnerability was reported - minimist (a dependency of handlebars) from 1.2.5 to 1.2.6 (see https://github.com/handlebars-lang/handlebars.js/pull/1879#issuecomment-1210574442)

Update logic for exporting copies for JS Before copies were exported as 1-on-1 mapping like : ``` { "Basket.EditBasket.AddToDeliveryCurrentDeliverySection.Subtitle.COPY": "%1$s Produkte", //... } ``` With this change, copies will be...

Update node dependency versions, Yarn cache is included with the repo, We need to keep a copy of resolved dependencies, this PR updates the versions of those dependencies. JIRA Ticket...

Fixes https://github.com/PicnicSupermarket/localicious/issues/52

Let's take an example of formatting a string for a number of things. The yml could look like this: ```yml ThingCount: COPY: ZERO: en: 'no things' ONE: en: '%1{{d}} thing'...

This should be caught by validation For example, this: ```yaml SHARED: Widget: 1CoolTitle: COPY: en: "😎 title" nl: "😎 titel" ``` Renders the following which does not compile: ```swift public...