mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
Improved Localization in Addons Screen
This commit is contained in:
parent
821a6b864f
commit
07542d2838
3 changed files with 5 additions and 3 deletions
|
|
@ -494,7 +494,8 @@
|
|||
"no_description": "No description available",
|
||||
"overview": "OVERVIEW",
|
||||
"no_categories": "No categories",
|
||||
"pre_installed": "PRE-INSTALLED"
|
||||
"pre_installed": "PRE-INSTALLED",
|
||||
"already_installed":"This addon is already installed. Multiple installations are only allowed for stream providers."
|
||||
},
|
||||
"trakt": {
|
||||
"title": "Trakt Settings",
|
||||
|
|
|
|||
|
|
@ -509,7 +509,8 @@
|
|||
"no_description": "Nessuna descrizione disponibile",
|
||||
"overview": "PANORAMICA",
|
||||
"no_categories": "Nessuna categoria",
|
||||
"pre_installed": "PRE-INSTALLATO"
|
||||
"pre_installed": "PRE-INSTALLATO",
|
||||
"already_installed":"Questo addon è già installato. Installazioni multiple sono permesse solo per addon che aggiungono provider di flussi video."
|
||||
},
|
||||
"trakt": {
|
||||
"title": "Impostazioni Trakt",
|
||||
|
|
|
|||
|
|
@ -643,7 +643,7 @@ const AddonsScreen = () => {
|
|||
|
||||
if (isAlreadyInstalled && !providesStreams) {
|
||||
setAlertTitle(t('common.error'));
|
||||
setAlertMessage('This addon is already installed. Multiple installations are only allowed for stream providers.');
|
||||
setAlertMessage(t('addons.already_installed'));
|
||||
setAlertActions([{ label: t('common.ok'), onPress: () => setAlertVisible(false) }]);
|
||||
setAlertVisible(true);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue