mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-19 08:22:00 +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."
|
"env_warning": "Set EXPO_PUBLIC_SUPABASE_URL and EXPO_PUBLIC_SUPABASE_ANON_KEY to enable sync."
|
||||||
},
|
},
|
||||||
"connection": "Connection"
|
"connection": "Connection"
|
||||||
}
|
},
|
||||||
|
"mal_description":"Sincronizza con MyAnimeList"
|
||||||
},
|
},
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Privacy & Data",
|
"title": "Privacy & Data",
|
||||||
|
|
|
||||||
|
|
@ -823,7 +823,8 @@
|
||||||
"env_warning": "Imposta EXPO_PUBLIC_SUPABASE_URL e EXPO_PUBLIC_SUPABASE_ANON_KEY per abilitare la sincronizzazione."
|
"env_warning": "Imposta EXPO_PUBLIC_SUPABASE_URL e EXPO_PUBLIC_SUPABASE_ANON_KEY per abilitare la sincronizzazione."
|
||||||
},
|
},
|
||||||
"connection": "Connessione"
|
"connection": "Connessione"
|
||||||
}
|
},
|
||||||
|
"mal_description":"Sincronizza con MyAnimeList"
|
||||||
},
|
},
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Privacy e Dati",
|
"title": "Privacy e Dati",
|
||||||
|
|
|
||||||
|
|
@ -717,8 +717,8 @@ const SettingsScreen: React.FC = () => {
|
||||||
<SettingsCard title={t('settings.account').toUpperCase()}>
|
<SettingsCard title={t('settings.account').toUpperCase()}>
|
||||||
{showCloudSyncItem && (
|
{showCloudSyncItem && (
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title="Nuvio Sync"
|
title={t('settings.cloud_sync.title')}
|
||||||
description="Sync data across your Nuvio devices"
|
description={t('settings.cloud_sync.description')}
|
||||||
customIcon={
|
customIcon={
|
||||||
<FastImage
|
<FastImage
|
||||||
source={require('../../assets/nuvio-sync-icon-og.png')}
|
source={require('../../assets/nuvio-sync-icon-og.png')}
|
||||||
|
|
@ -754,7 +754,7 @@ const SettingsScreen: React.FC = () => {
|
||||||
{isItemVisible('mal') && (
|
{isItemVisible('mal') && (
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title="MyAnimeList"
|
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" />}
|
customIcon={<Image source={require('../../assets/rating-icons/mal-icon.png')} style={{ width: 20, height: 20, borderRadius: 4 }} resizeMode="contain" />}
|
||||||
renderControl={() => <ChevronRight />}
|
renderControl={() => <ChevronRight />}
|
||||||
onPress={() => navigation.navigate('MalSettings')}
|
onPress={() => navigation.navigate('MalSettings')}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue