anycms-i18n
Internationalization support for the anycms-rs ecosystem.
Quick Start
use ;
let i18n = new
.default_locale
.fallback_locale
.embedded_translations
.build
.unwrap;
// Simple translation
let msg = t!;
// With locale override
let msg = t!;
// With interpolation
let msg = t!;
// With plural
let msg = t!;