mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-18 16:01:44 +00:00
Settings Screen Localization Patch
This commit is contained in:
parent
ce1411caa1
commit
dc97b23083
3 changed files with 7 additions and 5 deletions
|
|
@ -840,7 +840,8 @@
|
|||
"env_warning": "Set EXPO_PUBLIC_SUPABASE_URL and EXPO_PUBLIC_SUPABASE_ANON_KEY to enable sync."
|
||||
},
|
||||
"connection": "Connection"
|
||||
}
|
||||
},
|
||||
"mal_description":"Sincronizza con MyAnimeList"
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacy & Data",
|
||||
|
|
|
|||
|
|
@ -823,7 +823,8 @@
|
|||
"env_warning": "Imposta EXPO_PUBLIC_SUPABASE_URL e EXPO_PUBLIC_SUPABASE_ANON_KEY per abilitare la sincronizzazione."
|
||||
},
|
||||
"connection": "Connessione"
|
||||
}
|
||||
},
|
||||
"mal_description":"Sincronizza con MyAnimeList"
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacy e Dati",
|
||||
|
|
|
|||
|
|
@ -717,8 +717,8 @@ const SettingsScreen: React.FC = () => {
|
|||
<SettingsCard title={t('settings.account').toUpperCase()}>
|
||||
{showCloudSyncItem && (
|
||||
<SettingItem
|
||||
title="Nuvio Sync"
|
||||
description="Sync data across your Nuvio devices"
|
||||
title={t('settings.cloud_sync.title')}
|
||||
description={t('settings.cloud_sync.description')}
|
||||
customIcon={
|
||||
<FastImage
|
||||
source={require('../../assets/nuvio-sync-icon-og.png')}
|
||||
|
|
@ -754,7 +754,7 @@ const SettingsScreen: React.FC = () => {
|
|||
{isItemVisible('mal') && (
|
||||
<SettingItem
|
||||
title="MyAnimeList"
|
||||
description="Sync with MyAnimeList"
|
||||
description={t('settings.mal_description')}
|
||||
customIcon={<Image source={require('../../assets/rating-icons/mal-icon.png')} style={{ width: 20, height: 20, borderRadius: 4 }} resizeMode="contain" />}
|
||||
renderControl={() => <ChevronRight />}
|
||||
onPress={() => navigation.navigate('MalSettings')}
|
||||
|
|
|
|||
Loading…
Reference in a new issue