taketin / i18n-cocoa

Manage translation and localization with analysis, for iOS, OSX.

Home Page:https://rubygems.org/gems/i18n-cocoa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

i18n::Cocoa Gem-version Gem-downloads LICENSE

i18n-cocoa manages translation and localization with analysis, for iOS, OSX. It helps you find to missing and unused localized strings in file.

Support languages

Objective-C, Objective-C++, Swift

Installation

Add this line to your application's Gemfile:

gem 'i18n-cocoa'

And then execute:

$ bundle

Or install it yourself as:

$ gem install i18n-cocoa

Usage

Check health

I18n::Cocoa.health checks if any keys are missing or not used:

require 'i18n/cocoa'

success, failure_issues = I18n::Cocoa.health

Custom macro and specify directory

require 'i18n/cocoa'

attributes = { localized_macro_string: 'LocalizedString', search_path: 'iOSProject'}
success, failure_issues = I18n::Cocoa.health attributes

Remove unused keys

I18n::Cocoa.remove_unused remove unused keys from .strings file if any keys are not used:

require 'i18n/cocoa'

success, failure_issues = I18n::Cocoa.remove_unused

Features

  • Ensure to not forget to add localized string literal with key in .strings files
  • Find to unused localized keys in files and strip them from these files
  • Documentation
  • Find unused localized keys in files per language
  • Comprehensive Unit Test Coverage

Contributing

  1. Fork it ( https://github.com/hirohisa/i18n-cocoa/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Manage translation and localization with analysis, for iOS, OSX.

https://rubygems.org/gems/i18n-cocoa

License:MIT License


Languages

Language:Ruby 70.0%Language:Objective-C 30.0%