Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

r18n-desktop

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

r18n-desktop

  • 5.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

R18n Desktop

Cirrus CI - Base Branch Build Status Codecov branch Code Climate Depfu License Gem

A tool to translate your desktop application to several languages.

It is just a wrapper for R18n core library. See R18n documentation for more information.

Features

  • Nice Ruby-style syntax.
  • Filters.
  • Model Translation (or any Ruby object).
  • Auto-detect user locales.
  • Flexible locales.
  • Total flexibility.

See full features in main README.

How To

  1. Create translations dir. For example: ./i18n/.

  2. Add file with translation to ./i18n/ with language code in file name (for example, en.yml for English or en-us.yml USA English dialect). For example, ./i18n/en.yml:

    file:
     add: Add file
     delete: Delete file %1
    
    files: !!pl
     0: No files
     1: One file
     n: '%1 files'
    
  3. Add R18n to your application:

    require 'r18n-desktop'
    
  4. Load I18n object:

    R18n.from_env('i18n/')
    

User can set the locale manually:

 ```ruby
R18n.from_env('i18n/', manual_locale)
 ```

5. Include mixin to use helpers:

 ```ruby
include R18n::Helpers
 ```

6. Use translation messages to user. For example:

 ```ruby
t.file.add            #=> "Add file"
t.file.delete('Test') #=> "Delete file Test"
t.files(1)            #=> "One file"
t.files(12)           #=> "12 files"

l -12000.5          #=> "−12,000.5"
l Time.now          #=> "2009-08-09 21:41"
l Time.now, :human  #=> "now"
l Time.now, :full   #=> "August 9th, 2009 21:41"

# Base translation
t.ok     #=> "OK"
t.cancel #=> "Cancel"
 ```

7. You can print user locale or available locales:

 ```ruby
"Your locale: " + r18n.locale.title
"Select another: " + r18n.available_locales.map { |i| i.title }.join(', ')
 ```

License

R18n is licensed under the GNU Lesser General Public License version 3. You can read it in LICENSE file or in www.gnu.org/licenses/lgpl-3.0.html.

Author

Andrey “A.I.” Sitnik andrey@sitnik.ru

FAQs

Package last updated on 03 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc