In the Russian localization, the /settings/theme page header is displayed as темы with a lowercase first letter.
The settings page header uses:
<PageHeader title={t(`settings.${activeTab}.title`)} description="manageSettings" />
So for /settings/theme, it resolves to settings.theme.title.
Currently, the Russian locale contains:
"settings": {
"theme": {
"title": "темы"
}
}
Expected behavior
The page title should be capitalized and singular:
Suggested fix
Update dashboard/public/statics/locales/ru.json:
- "title": "темы"
+ "title": "Тема"
Additional context
The top-level theme.title key is already translated as Тема, but the page header uses settings.theme.title, so the lowercase value is still visible on /settings/theme.
In the Russian localization, the
/settings/themepage header is displayed asтемыwith a lowercase first letter.The settings page header uses:
So for
/settings/theme, it resolves tosettings.theme.title.Currently, the Russian locale contains:
Expected behavior
The page title should be capitalized and singular:
Suggested fix
Update
dashboard/public/statics/locales/ru.json:Additional context
The top-level
theme.titlekey is already translated asТема, but the page header usessettings.theme.title, so the lowercase value is still visible on/settings/theme.