mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-18 07:51:46 +00:00
Plugin Tester Description Localization Support
This commit is contained in:
parent
37be9732ff
commit
99dbcb44c9
4 changed files with 4 additions and 2 deletions
|
|
@ -773,6 +773,7 @@
|
||||||
"developer_tools": "Developer Tools",
|
"developer_tools": "Developer Tools",
|
||||||
"developer_tools_desc": "Testing and debug options",
|
"developer_tools_desc": "Testing and debug options",
|
||||||
"test_onboarding": "Test Onboarding",
|
"test_onboarding": "Test Onboarding",
|
||||||
|
"plugin_tester_desc":"Run a plugin and inspect logs/streams",
|
||||||
"reset_onboarding": "Reset Onboarding",
|
"reset_onboarding": "Reset Onboarding",
|
||||||
"test_announcement": "Test Announcement",
|
"test_announcement": "Test Announcement",
|
||||||
"test_announcement_desc": "Show what's new overlay",
|
"test_announcement_desc": "Show what's new overlay",
|
||||||
|
|
|
||||||
|
|
@ -758,6 +758,7 @@
|
||||||
"developer_tools": "Strumenti di Sviluppo",
|
"developer_tools": "Strumenti di Sviluppo",
|
||||||
"developer_tools_desc": "Opzioni di test e debug",
|
"developer_tools_desc": "Opzioni di test e debug",
|
||||||
"test_onboarding": "Test Introduzione",
|
"test_onboarding": "Test Introduzione",
|
||||||
|
"plugin_tester_desc":"Esegui un plugin e visualizza log e flusso",
|
||||||
"reset_onboarding": "Ripristina Introduzione",
|
"reset_onboarding": "Ripristina Introduzione",
|
||||||
"test_announcement": "Test Annuncio",
|
"test_announcement": "Test Annuncio",
|
||||||
"test_announcement_desc": "Mostra l'overlay 'novità'",
|
"test_announcement_desc": "Mostra l'overlay 'novità'",
|
||||||
|
|
|
||||||
|
|
@ -477,7 +477,7 @@ const SettingsScreen: React.FC = () => {
|
||||||
/>
|
/>
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title={'Plugin Tester'}
|
title={'Plugin Tester'}
|
||||||
description={'Run a plugin and inspect logs/streams'}
|
description={t('settings.items.plugin_tester_desc')}
|
||||||
icon="terminal"
|
icon="terminal"
|
||||||
onPress={() => navigation.navigate('PluginTester')}
|
onPress={() => navigation.navigate('PluginTester')}
|
||||||
renderControl={() => <ChevronRight />}
|
renderControl={() => <ChevronRight />}
|
||||||
|
|
|
||||||
|
|
@ -117,7 +117,7 @@ const DeveloperSettingsScreen: React.FC = () => {
|
||||||
<SettingsCard title={t('settings.sections.testing')}>
|
<SettingsCard title={t('settings.sections.testing')}>
|
||||||
<SettingItem
|
<SettingItem
|
||||||
title={'Plugin Tester'}
|
title={'Plugin Tester'}
|
||||||
description={'Run a plugin and inspect logs/streams'}
|
description={t('settings.items.plugin_tester_desc')}
|
||||||
icon="terminal"
|
icon="terminal"
|
||||||
onPress={() => navigation.navigate('PluginTester')}
|
onPress={() => navigation.navigate('PluginTester')}
|
||||||
renderControl={() => <ChevronRight />}
|
renderControl={() => <ChevronRight />}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue