Locale files are located inside frontend/locales
directory.
App auto-detects your locale from browser. You can override it in frontend/src/routes/+layout.ts
, for example:
init({ initialLocale: 'ru' ?? undefined, fallbackLocale: 'ru' });
Locale files stored in frontend/locales
. Use the existing as an example. For example add de.json
for German language.
Update frontend/src/routes/+layout.ts
if you'd like to override defaults.