Skip to content

mark2b/l10n

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

l10n

[![CI Status](http://img.shields.io/travis/Mark Berner/l10n.svg?style=flat)](https://travis-ci.org/Mark Berner/l10n) Version License Platform

l10n String extension provides convenient way for strings localization

"Hello, World !!!".l10n()               // Looks for "Hello, World !!!" key in the Localized.strings 
"Hello, World !!!".l10n(l.vc1)          // Looks for "Hello, World !!!" key in the
                                        // ViewController1.strings (mapped via l10NResources)
"Hello, %@ !!!".l10n(args:"Me")         // Looks for "Hello, %@ !!!" key in the Localized.strings
                                        // and replace '%@' by argument
"Hello, %@ !!!".l10n(l.vc1, args:"Me")

extension l10nResources {
    public static let vc1 = "ViewController1"
    public static let vc2 = "ViewController2"
}
typealias l = l10NResources

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

l10n is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "l10n"

Author

Mark Berner, mark2b@gmail.com

License

l10n is available under the MIT license. See the LICENSE file for more info.