npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mobile-localization

v0.0.4

Published

A tool for managing localized ressources for all mobile plateforms (iOS, Android, Windows Phone, ...)

Downloads

261

Readme

Mobile Localization

Mobile Localization cover

A small tool for generating localized files for major mobile platforms.

Installation

$ npm install mobile-localization -g

You can also use it locally by removing the -g parameter and replacing it by -save to add the dependency in your package.json project file .

Usage

$ mobile-localization [options]

Options:

  -h, --help           output usage information
  -V, --version        output the version number
  -f, --file <path>    The csv file containing all localized labels
  -o, --output <path>  The output folder
  -s, --os <id>        Generates localized file only for a specified os (ios, android, windows)
  -c, --culture <iso>  Generates localized file only for a specified culture (iso 3166-1 alpha2)
  -m, --mapping <path> Adds a yaml mapping file. Each key will be mapped to extra keys.
  -r, --report		   Generates an html report of all the labels.

It will generates subfolders for each system with its localization files.

For example, this command will generate labels only for iOS, with default culture :

$ mobile-localization --file example/labels.csv --output example/output/ --os ios --culture default

Input format

The incoming format is a csv (; column separator) file with a first line describing the columns :

  • 0 - optional - os : os concerned by this resource (default: ios, android, windows, javascript, example : ios, windows)
  • 1 - required - key : key of the resource (example : title)
  • 2 - required - description : international description of the resource (example : The main title of the application)
  • 3 - required - value : default value for the resource (example : My Application)
  • X - optional - <ISO 3166-1 alpha 2> : translation in a foreign language (example : FR Mon Application)

The escaped characters in label values are :

  • \n : breakline.
  • \s : semicolon.

You can create formatted strings by adding %@ where the formatted segments will be inserted. Those elements will be replaced by :

  • android : %s
  • ios : %@
  • windows : {i} (where i is the index of the element)
  • javascript : {i} (where i is the index of the element)

Output format

  • iOS : /<culture>/Localizable.strings
  • Android : /values-<culture>/strings.xml
  • WPF / Windows 8.0 / Windows Phone 8.0 / Windows 8.1 / Windows Phone 8.1 : /strings/<culture>/Resources.resw
  • Javascript : /strings.<culture>.js

Author

@aloisdeniel