mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-18 07:51:46 +00:00
Sections Label Localization Support and Improvements
This commit is contained in:
parent
99dbcb44c9
commit
53b7d77d5c
3 changed files with 8 additions and 4 deletions
|
|
@ -704,6 +704,8 @@
|
|||
"made_with_love": "Made with ❤️ by Tapframe and friends",
|
||||
"sections": {
|
||||
"information": "INFORMATION",
|
||||
"general":"GENERAL",
|
||||
"data":"DATA",
|
||||
"account": "ACCOUNT",
|
||||
"theme": "THEME",
|
||||
"layout": "LAYOUT",
|
||||
|
|
|
|||
|
|
@ -689,6 +689,8 @@
|
|||
"made_with_love": "Fatto con ❤️ da Tapframe e amici",
|
||||
"sections": {
|
||||
"information": "INFORMAZIONI",
|
||||
"general":"GENERALE",
|
||||
"data":"DATI",
|
||||
"account": "ACCOUNT",
|
||||
"theme": "TEMA",
|
||||
"layout": "LAYOUT",
|
||||
|
|
@ -701,7 +703,7 @@
|
|||
"audio_subtitles": "AUDIO E SOTTOTITOLI",
|
||||
"media": "MEDIA",
|
||||
"notifications": "NOTIFICHE",
|
||||
"testing": "TEST",
|
||||
"testing": "STRUMENTI PER SVILUPPATORI",
|
||||
"danger_zone": "ZONA PERICOLOSA",
|
||||
"introdb_contribution":"CONTRIBUTI INTRODB"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -438,7 +438,7 @@ const SettingsScreen: React.FC = () => {
|
|||
case 'appearance':
|
||||
return (
|
||||
<>
|
||||
<SettingsCard title="GENERAL" isTablet={isTablet}>
|
||||
<SettingsCard title={t('settings.sections.general')} isTablet={isTablet}>
|
||||
<SettingItem
|
||||
title={t('settings.language')}
|
||||
description={t(`settings.${LOCALES.find(l => l.code === i18n.language)?.key}`)}
|
||||
|
|
@ -771,7 +771,7 @@ const SettingsScreen: React.FC = () => {
|
|||
(settingsConfig?.categories?.['integrations']?.visible !== false) ||
|
||||
(settingsConfig?.categories?.['playback']?.visible !== false)
|
||||
) && (
|
||||
<SettingsCard title="GENERAL">
|
||||
<SettingsCard title={t('settings.sections.general')}>
|
||||
<SettingItem
|
||||
title={t('settings.language')}
|
||||
description={t(`settings.${LOCALES.find(l => l.code === i18n.language)?.key}`)
|
||||
|
|
@ -825,7 +825,7 @@ const SettingsScreen: React.FC = () => {
|
|||
(settingsConfig?.categories?.['backup']?.visible !== false) ||
|
||||
(settingsConfig?.categories?.['updates']?.visible !== false)
|
||||
) && (
|
||||
<SettingsCard title="DATA">
|
||||
<SettingsCard title={t('settings.sections.data')}>
|
||||
{(settingsConfig?.categories?.['backup']?.visible !== false) && (
|
||||
<SettingItem
|
||||
title={t('settings.backup_restore')}
|
||||
|
|
|
|||
Loading…
Reference in a new issue