l10n 0.1.1

l10n 0.1.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jan 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Mark Berner.



l10n 0.1.1

  • By
  • Mark Berner

l10n

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, [email protected]

License

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