mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-23 01:32:11 +00:00
Backup Settings Description Localization Patch
This commit is contained in:
parent
e3a09164e6
commit
b710f786e4
2 changed files with 2 additions and 1 deletions
|
|
@ -666,6 +666,7 @@
|
||||||
"integrations": "Integrazioni",
|
"integrations": "Integrazioni",
|
||||||
"playback": "Riproduzione",
|
"playback": "Riproduzione",
|
||||||
"backup_restore": "Backup e Ripristino",
|
"backup_restore": "Backup e Ripristino",
|
||||||
|
"backup_restore_desc": "Crea e utilizza backup per l'app",
|
||||||
"updates": "Aggiornamenti",
|
"updates": "Aggiornamenti",
|
||||||
"about": "Informazioni",
|
"about": "Informazioni",
|
||||||
"developer": "Sviluppatore",
|
"developer": "Sviluppatore",
|
||||||
|
|
|
||||||
|
|
@ -920,7 +920,7 @@ const SettingsScreen: React.FC = () => {
|
||||||
{settingsConfig?.categories?.['backup']?.visible !== false && (
|
{settingsConfig?.categories?.['backup']?.visible !== false && (
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title={t('settings.backup_restore')}
|
title={t('settings.backup_restore')}
|
||||||
description="Create and restore app backups"
|
description={t('settings.backup_restore_desc')}
|
||||||
icon="archive"
|
icon="archive"
|
||||||
renderControl={() => <ChevronRight />}
|
renderControl={() => <ChevronRight />}
|
||||||
onPress={() => navigation.navigate('Backup')}
|
onPress={() => navigation.navigate('Backup')}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue