New Translation
This commit is contained in:
@@ -32,7 +32,7 @@
|
|||||||
{
|
{
|
||||||
"id": "perfil",
|
"id": "perfil",
|
||||||
"type": "list",
|
"type": "list",
|
||||||
"label": "Perfil de color",
|
"label": "@60666",
|
||||||
"default": 0,
|
"default": 0,
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"visible": true,
|
"visible": true,
|
||||||
|
|||||||
@@ -176,19 +176,20 @@ def setting_channel_new(item):
|
|||||||
# Diálogo para pre-seleccionar
|
# Diálogo para pre-seleccionar
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
preselecciones = [
|
preselecciones = [
|
||||||
'Buscar con la selección actual',
|
config.get_localized_string(70570),
|
||||||
'Modificar selección actual',
|
config.get_localized_string(70571),
|
||||||
'Modificar partiendo de Todos',
|
config.get_localized_string(70572),
|
||||||
'Modificar partiendo de Ninguno',
|
config.get_localized_string(70573),
|
||||||
'Modificar partiendo de Castellano',
|
config.get_localized_string(70574),
|
||||||
'Modificar partiendo de Latino'
|
config.get_localized_string(70575),
|
||||||
|
config.get_localized_string(70576)
|
||||||
]
|
]
|
||||||
presel_values = ['skip', 'actual', 'all', 'none', 'cast', 'lat']
|
presel_values = ['skip', 'actual', 'all', 'none', 'cast', 'lat', 'ita']
|
||||||
|
|
||||||
categs = ['movie', 'tvshow', 'documentary', 'anime', 'vos', 'direct', 'torrent']
|
categs = ['movie', 'tvshow', 'documentary', 'anime', 'vos', 'direct', 'torrent']
|
||||||
if config.get_setting('adult_mode') > 0: categs.append('adult')
|
if config.get_setting('adult_mode') > 0: categs.append('adult')
|
||||||
for c in categs:
|
for c in categs:
|
||||||
preselecciones.append('Modificar partiendo de %s' % config.get_localized_category(c))
|
preselecciones.append(config.get_localized_string(70577) + config.get_localized_category(c))
|
||||||
presel_values.append(c)
|
presel_values.append(c)
|
||||||
|
|
||||||
if item.action == 'setting_channel': # Configuración de los canales incluídos en la búsqueda
|
if item.action == 'setting_channel': # Configuración de los canales incluídos en la búsqueda
|
||||||
@@ -206,6 +207,11 @@ def setting_channel_new(item):
|
|||||||
for i, lg in enumerate(lista_lang):
|
for i, lg in enumerate(lista_lang):
|
||||||
if presel_values[ret] in lg or '*' in lg:
|
if presel_values[ret] in lg or '*' in lg:
|
||||||
preselect.append(i)
|
preselect.append(i)
|
||||||
|
elif presel_values[ret] in ['ita']:
|
||||||
|
preselect = []
|
||||||
|
for i, lg in enumerate(lista_lang):
|
||||||
|
if presel_values[ret] in lg or '*' in lg:
|
||||||
|
preselect.append(i)
|
||||||
elif presel_values[ret] == 'actual':
|
elif presel_values[ret] == 'actual':
|
||||||
preselect = []
|
preselect = []
|
||||||
for i, canal in enumerate(ids):
|
for i, canal in enumerate(ids):
|
||||||
|
|||||||
@@ -225,7 +225,7 @@ def servers_favorites(item):
|
|||||||
if dict_values['favorites_servers'] == None:
|
if dict_values['favorites_servers'] == None:
|
||||||
dict_values['favorites_servers'] = False
|
dict_values['favorites_servers'] = False
|
||||||
|
|
||||||
server_names = ['Ninguno']
|
server_names = [config.get_localized_string(59992)]
|
||||||
|
|
||||||
for server in sorted(server_list.keys()):
|
for server in sorted(server_list.keys()):
|
||||||
if config.get_setting("black_list", server=server):
|
if config.get_setting("black_list", server=server):
|
||||||
@@ -299,9 +299,9 @@ def submenu_tools(item):
|
|||||||
|
|
||||||
|
|
||||||
itemlist.append(Item(channel=CHANNELNAME, action="check_quickfixes", folder=False,
|
itemlist.append(Item(channel=CHANNELNAME, action="check_quickfixes", folder=False,
|
||||||
title="Comprobar actualizaciones urgentes", plot="Versión actual: %s" % config.get_addon_version() ))
|
title=config.get_localized_string(30001), plot="Versión actual: %s" % config.get_addon_version() ))
|
||||||
itemlist.append(Item(channel=CHANNELNAME, action="update_quasar", folder=False,
|
itemlist.append(Item(channel=CHANNELNAME, action="update_quasar", folder=False,
|
||||||
title="Actualizar addon externo Quasar"))
|
title=config.get_localized_string(70569)))
|
||||||
itemlist.append(Item(channel=CHANNELNAME, action="", title="", folder=False,
|
itemlist.append(Item(channel=CHANNELNAME, action="", title="", folder=False,
|
||||||
thumbnail=get_thumb("setting_0.png")))
|
thumbnail=get_thumb("setting_0.png")))
|
||||||
|
|
||||||
|
|||||||
@@ -319,7 +319,7 @@
|
|||||||
{
|
{
|
||||||
"id": "verify_playcount",
|
"id": "verify_playcount",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"label": "Verificación de los contadores de vídeos vistos/no vistos (desmarcar para verificar)",
|
"label": "@70526",
|
||||||
"default": false
|
"default": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -4954,3 +4954,39 @@ msgstr ""
|
|||||||
msgctxt "#70568"
|
msgctxt "#70568"
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70569"
|
||||||
|
msgid "Update external addon Quasar:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70570"
|
||||||
|
msgid "Search with current selection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70571"
|
||||||
|
msgid "Modify current selection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70572"
|
||||||
|
msgid "Modify from All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70573"
|
||||||
|
msgid "Modify starting from None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70574"
|
||||||
|
msgid "Modify starting from Castellano"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70575"
|
||||||
|
msgid "Modify starting from Latino"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70576"
|
||||||
|
msgid "Modify starting from Italian"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgctxt "#70577"
|
||||||
|
msgid "Modify starting from "
|
||||||
|
msgstr ""
|
||||||
@@ -2627,7 +2627,7 @@ msgstr "Possibilità di includere altri canali, attraverso la configurazione"
|
|||||||
|
|
||||||
msgctxt "#60666"
|
msgctxt "#60666"
|
||||||
msgid "Color Profile"
|
msgid "Color Profile"
|
||||||
msgstr "Profilo di colore"
|
msgstr "Profilo Colore"
|
||||||
|
|
||||||
msgctxt "#60667"
|
msgctxt "#60667"
|
||||||
msgid "Cold"
|
msgid "Cold"
|
||||||
@@ -4939,4 +4939,43 @@ msgstr "Tipo di contenuto:"
|
|||||||
msgctxt "#70568"
|
msgctxt "#70568"
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr "Lingue"
|
msgstr "Lingue"
|
||||||
|
<<<<<<< HEAD
|
||||||
>>>>>>> a2ca6152... Languages fix, and more efficent thumb function
|
>>>>>>> a2ca6152... Languages fix, and more efficent thumb function
|
||||||
|
=======
|
||||||
|
|
||||||
|
msgctxt "#70569"
|
||||||
|
msgid "Update external addon Quasar:"
|
||||||
|
msgstr "Aggiorna L'addon esterno Quasar:"
|
||||||
|
|
||||||
|
msgctxt "#70570"
|
||||||
|
msgid "Search with current selection"
|
||||||
|
msgstr "Cerca con la selezione corrente"
|
||||||
|
|
||||||
|
msgctxt "#70571"
|
||||||
|
msgid "Modify current selection"
|
||||||
|
msgstr "Modifica la selezione corrente"
|
||||||
|
|
||||||
|
msgctxt "#70572"
|
||||||
|
msgid "Modify from All"
|
||||||
|
msgstr "Modifica partendo da Tutto"
|
||||||
|
|
||||||
|
msgctxt "#70573"
|
||||||
|
msgid "Modify starting from None"
|
||||||
|
msgstr "Modifica partendo da Nessuno"
|
||||||
|
|
||||||
|
msgctxt "#70574"
|
||||||
|
msgid "Modify starting from Castellano"
|
||||||
|
msgstr "Modifica partendo da Castellano"
|
||||||
|
|
||||||
|
msgctxt "#70575"
|
||||||
|
msgid "Modify starting from Latino"
|
||||||
|
msgstr "Modifica partendo da Latino"
|
||||||
|
|
||||||
|
msgctxt "#70576"
|
||||||
|
msgid "Modify starting from Italian"
|
||||||
|
msgstr "Modifica partendo da Italiano"
|
||||||
|
|
||||||
|
msgctxt "#70577"
|
||||||
|
msgid "Modify starting from "
|
||||||
|
msgstr "Modifica partendo da "
|
||||||
|
>>>>>>> 0e06f469... New Translation
|
||||||
|
|||||||
@@ -4954,3 +4954,39 @@ msgstr "Tipo de contenido:"
|
|||||||
msgctxt "#70568"
|
msgctxt "#70568"
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr "Idiomas"
|
msgstr "Idiomas"
|
||||||
|
|
||||||
|
msgctxt "#70569"
|
||||||
|
msgid "Update external addon Quasar:"
|
||||||
|
msgstr "Actualizar addon externo Quasar:"
|
||||||
|
|
||||||
|
msgctxt "#70570"
|
||||||
|
msgid "Search with current selection"
|
||||||
|
msgstr "Buscar con la selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70571"
|
||||||
|
msgid "Modify current selection"
|
||||||
|
msgstr "Modificar selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70572"
|
||||||
|
msgid "Modify from All"
|
||||||
|
msgstr "Modificar partiendo de Todos"
|
||||||
|
|
||||||
|
msgctxt "#70573"
|
||||||
|
msgid "Modify starting from None"
|
||||||
|
msgstr "Modificar partiendo de Ninguno"
|
||||||
|
|
||||||
|
msgctxt "#70574"
|
||||||
|
msgid "Modify starting from Castellano"
|
||||||
|
msgstr "Modificar partiendo de Castellano"
|
||||||
|
|
||||||
|
msgctxt "#70575"
|
||||||
|
msgid "Modify starting from Latino"
|
||||||
|
msgstr "Modificar partiendo de Latino"
|
||||||
|
|
||||||
|
msgctxt "#70576"
|
||||||
|
msgid "Modify starting from Italian"
|
||||||
|
msgstr "Modificar partiendo de Italiano"
|
||||||
|
|
||||||
|
msgctxt "#70577"
|
||||||
|
msgid "Modify starting from "
|
||||||
|
msgstr "Modificar partiendo de "
|
||||||
@@ -4954,3 +4954,39 @@ msgstr "Tipo de contenido:"
|
|||||||
msgctxt "#70568"
|
msgctxt "#70568"
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr "Idiomas"
|
msgstr "Idiomas"
|
||||||
|
|
||||||
|
msgctxt "#70569"
|
||||||
|
msgid "Update external addon Quasar:"
|
||||||
|
msgstr "Actualizar addon externo Quasar:"
|
||||||
|
|
||||||
|
msgctxt "#70570"
|
||||||
|
msgid "Search with current selection"
|
||||||
|
msgstr "Buscar con la selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70571"
|
||||||
|
msgid "Modify current selection"
|
||||||
|
msgstr "Modificar selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70572"
|
||||||
|
msgid "Modify from All"
|
||||||
|
msgstr "Modificar partiendo de Todos"
|
||||||
|
|
||||||
|
msgctxt "#70573"
|
||||||
|
msgid "Modify starting from None"
|
||||||
|
msgstr "Modificar partiendo de Ninguno"
|
||||||
|
|
||||||
|
msgctxt "#70574"
|
||||||
|
msgid "Modify starting from Castellano"
|
||||||
|
msgstr "Modificar partiendo de Castellano"
|
||||||
|
|
||||||
|
msgctxt "#70575"
|
||||||
|
msgid "Modify starting from Latino"
|
||||||
|
msgstr "Modificar partiendo de Latino"
|
||||||
|
|
||||||
|
msgctxt "#70576"
|
||||||
|
msgid "Modify starting from Italian"
|
||||||
|
msgstr "Modificar partiendo de Italiano"
|
||||||
|
|
||||||
|
msgctxt "#70577"
|
||||||
|
msgid "Modify starting from "
|
||||||
|
msgstr "Modificar partiendo de "
|
||||||
@@ -4954,3 +4954,39 @@ msgstr "Tipo de contenido:"
|
|||||||
msgctxt "#70568"
|
msgctxt "#70568"
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr "Idiomas"
|
msgstr "Idiomas"
|
||||||
|
|
||||||
|
msgctxt "#70569"
|
||||||
|
msgid "Update external addon Quasar:"
|
||||||
|
msgstr "Actualizar addon externo Quasar:"
|
||||||
|
|
||||||
|
msgctxt "#70570"
|
||||||
|
msgid "Search with current selection"
|
||||||
|
msgstr "Buscar con la selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70571"
|
||||||
|
msgid "Modify current selection"
|
||||||
|
msgstr "Modificar selección actual"
|
||||||
|
|
||||||
|
msgctxt "#70572"
|
||||||
|
msgid "Modify from All"
|
||||||
|
msgstr "Modificar partiendo de Todos"
|
||||||
|
|
||||||
|
msgctxt "#70573"
|
||||||
|
msgid "Modify starting from None"
|
||||||
|
msgstr "Modificar partiendo de Ninguno"
|
||||||
|
|
||||||
|
msgctxt "#70574"
|
||||||
|
msgid "Modify starting from Castellano"
|
||||||
|
msgstr "Modificar partiendo de Castellano"
|
||||||
|
|
||||||
|
msgctxt "#70575"
|
||||||
|
msgid "Modify starting from Latino"
|
||||||
|
msgstr "Modificar partiendo de Latino"
|
||||||
|
|
||||||
|
msgctxt "#70576"
|
||||||
|
msgid "Modify starting from Italian"
|
||||||
|
msgstr "Modificar partiendo de Italiano"
|
||||||
|
|
||||||
|
msgctxt "#70577"
|
||||||
|
msgid "Modify starting from "
|
||||||
|
msgstr "Modificar partiendo de "
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
"default": false,
|
"default": false,
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"id": "premium",
|
"id": "premium",
|
||||||
"label": "Activar cuenta premium",
|
"label": "@70272",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"visible": true
|
"visible": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user