A lightweight internationalization (i18n) library for the Fluxus UI framework, providing simple yet powerful translation capabilities for your Scala.js applications.
- Simple integration with Fluxus components
- YAML-based translation files
- Reactive language switching with Airstream signals
- Parameter substitution for dynamic content
- Nested translation keys with dot notation
- Type-safe translation function
Add the following dependency to your build.sbt
:
libraryDependencies += "io.github.edadma" %%% "fluxus-i18n" % "0.0.1"
Create translation files for each language:
# English translations
greeting: Hello
farewell: Goodbye
user:
welcome: "Welcome, {name}!"
profile: "User Profile"
# French translations
greeting: Bonjour
farewell: Au revoir
user:
welcome: "Bienvenue, {name}!"
profile: "Profil d'utilisateur"
import io.github.edadma.fluxus.i18n.I18n
// Load translations at application startup
I18n.loadTranslation("en", enYaml)
I18n.loadTranslation("fr", frYaml)
// Set default language
I18n.setLanguage("en")
import io.github.edadma.fluxus._
import io.github.edadma.fluxus.i18n._
def GreetingComponent = () => {
// Get translation function
val t = useTranslation()
div(
h1(t("greeting")),
p(t("user.welcome", "name" -> "John")),
button(
onClick := (() => I18n.setLanguage("fr")),
t("changeLanguage")
)
)
}
// Load translations from YAML string
I18n.loadTranslation(lang: String, yamlString: String): Unit
// Set the current language
I18n.setLanguage(lang: String): Unit
// Get the current language signal (from Airstream)
val langSignal = I18n.currentLanguage.signal
// Hook to use in components
val t = useTranslation()
// Simple translation
t("key")
// Translation with parameter substitution
t("key.with.params", "param1" -> "value1", "param2" -> "value2")
You can access the reactive state of translations using Airstream signals:
import io.github.edadma.fluxus.useSignal
def LanguageSwitcherComponent = () => {
// Current language as a reactive value
val currentLang = useSignal(I18n.currentLanguage)
div(
p(s"Current language: $currentLang"),
button(
onClick := (() => I18n.setLanguage("en")),
"English"
),
button(
onClick := (() => I18n.setLanguage("fr")),
"Français"
)
)
}
// Translation definition (in YAML):
// user:
// messages: "You have {count} new {count|message:messages}"
// In component:
val t = useTranslation()
t("user.messages", "count" -> messageCount.toString)
- Scala 3.6.x
- Scala.js 1.18.x
- Fluxus 0.0.8+
ISC License - see LICENSE file for details.