RxLocalizer is a framework written in swift which allows you to localize your apps, using RxSwift.
- Xcode 10
- Swift 4.2
- iOS 10+
pod 'RxLocalizer'
import RxLocalizer
Localizer.shared.localized("Start")
.drive(startLabel.rx.text)
.disposed(by: disposeBag)
You are able to set language by language code. A full list of the codes you can check here.
Localizer.shared.changeLanguage.accept("en")
You are able to change default configuration, using changeConfiguration
property.
let localizerConfig = LocalizerConfig(defaults: .standard, bundle: .main, tableName: "Localizable")
Localizer.shared.changeConfiguration.accept(localizerConfig)
RxLocalizer is available under the MIT license. See the LICENSE file for more info. Copyright (c) RxSwiftCommunity