2016-01-12 22:02:56 +03:00
# -*- coding: utf-8 -*-
2015-01-09 14:11:21 +03:00
'''
2015-06-30 18:08:57 +03:00
Torrenter v2 plugin for XBMC / Kodi
Copyright ( C ) 2012 - 2015 Vadim Skorba v1 - DiMartino v2
2016-02-13 20:33:16 +03:00
https : / / forums . tvaddons . ag / addon - releases / 29224 - torrenter - v2 . html
2015-01-09 14:11:21 +03:00
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : / / www . gnu . org / licenses / > .
'''
2015-06-30 18:08:57 +03:00
2015-01-09 14:11:21 +03:00
try :
import xbmcaddon
__settings__ = xbmcaddon . Addon ( id = ' plugin.video.torrenter ' )
2016-07-13 15:49:55 +03:00
language = ( ' en ' , ' ru ' , ' uk ' , ' he ' , ' es ' ) [ int ( __settings__ . getSetting ( " language " ) ) ]
2015-01-09 14:11:21 +03:00
except :
2016-01-13 15:17:17 +03:00
language = ' ru '
2015-01-09 14:11:21 +03:00
def localize ( text ) :
2015-06-25 23:03:00 +03:00
dictionary = {
2016-07-13 15:49:55 +03:00
' es ' : {
2017-03-01 21:49:14 +03:00
' Seeds searching. ' : ' Búsqueda de fuentes ' ,
' Please Wait ' : ' Espere ' ,
2016-07-13 15:49:55 +03:00
' Information ' : ' Información ' ,
2017-03-01 21:49:14 +03:00
' Torrent downloading is stopped. ' : ' Se detuvo la descarga del torrent ' ,
2016-07-13 15:49:55 +03:00
' Search ' : ' Buscar ' ,
2017-03-01 21:49:14 +03:00
' Seeds ' : ' Semillas ' ,
' Peers ' : ' Pares ' ,
2017-03-07 21:29:03 +03:00
' Materials are loading now. ' : ' Se están cargando los materiales ' ,
2017-03-01 21:49:14 +03:00
' Search Phrase ' : ' Términos de búsqueda ' ,
' Magnet-link is converting ' : ' Se está convirtiendo el enlace magnet ' ,
2016-07-13 15:49:55 +03:00
' Error ' : ' Error ' ,
2017-03-01 21:49:14 +03:00
' Your library out of date and can \' t save magnet-links. ' : ' Su colección está anticuada y no pueden guardarse enlaces magnet. ' ,
2016-07-13 15:49:55 +03:00
' Bookmarks ' : ' Favoritos ' ,
2017-03-01 21:49:14 +03:00
' Logout ' : ' Cerrar sesión ' ,
' Login ' : ' Iniciar sesión ' ,
2016-07-13 15:49:55 +03:00
' Recent Materials ' : ' Materiales recientes ' ,
' Register ' : ' Registrar ' ,
' Bookmark ' : ' Favorito ' ,
2017-03-01 21:49:14 +03:00
' Item successfully added to Bookmarks ' : ' El elemento se ha añadido a " Favoritos " ' ,
' Item successfully removed from Bookmarks ' : ' El elemento se ha eliminado de " Favoritos " ' ,
' Bookmark not added ' : ' No se ha añadido a " Favoritos " ' ,
' Bookmark not removed ' : ' No se ha eliminado de " Favoritos " ' ,
' Add To Bookmarks ' : ' Añadir a " Favoritos " ' ,
' Remove From Bookmarks ' : ' Eliminar de " Favoritos " ' ,
' Auth ' : ' Validación ' ,
' Already logged in ' : ' Ya se había iniciado sesión ' ,
' Input Email (for password recovery): ' : ' Introduzca correo electrónico (para recuperar contraseña): ' ,
' Input Email: ' : ' Introduzca correo electrónico: ' ,
' Input Password (6+ symbols): ' : ' Introduzca contraseña (más de 6 caracteres): ' ,
' Input Password: ' : ' Introduzca contraseña ' ,
' Login successfull ' : ' Se ha iniciado sesión ' ,
' Login failed ' : ' Falló el inicio de sesión ' ,
' User not logged in ' : ' El usuario no ha iniciado sesión ' ,
' User successfully logged out ' : ' El usuario ha cerrado sesión ' ,
' Preloaded: ' : ' Carga previa: ' ,
' Do you want to STOP torrent downloading and seeding? ' : ' ¿Desea detener la descarga y dejar de compartir el torrent? ' ,
2016-07-13 15:49:55 +03:00
' Torrent Downloading ' : ' Descarga de torrent ' ,
2017-03-07 21:29:03 +03:00
' Auth expired, please relogin ' : ' Expiró la identificación. Vuelva a iniciar sesión ' ,
2017-03-01 21:49:14 +03:00
' Storage ' : ' Almacén ' ,
' Storage has been cleared ' : ' El almacén se ha vaciado ' ,
' Clear Storage ' : ' Vaciar almacén ' ,
2016-07-13 15:49:55 +03:00
' Popular ' : ' Popular ' ,
' Views ' : ' Vistas ' ,
2017-03-01 21:49:14 +03:00
' Uploading ' : ' Subiendo ' ,
' Download ' : ' Descargar ' ,
' Input symbols from CAPTCHA image: ' : ' Introduzca los caracteres que aparecen en la imagen: ' ,
' Please, rate watched video: ' : ' Valore el vídeo que ha visto: ' ,
2016-07-13 15:49:55 +03:00
' Bad ' : ' Malo ' ,
2017-03-01 21:49:14 +03:00
' So-So ' : ' Regular ' ,
2016-07-13 15:49:55 +03:00
' Good ' : ' Bueno ' ,
' Ratings ' : ' Valoraciones ' ,
' Rating ' : ' Valoración ' ,
' Retry ' : ' Reintentar ' ,
2017-03-07 21:29:03 +03:00
' %d s has left ' : ' Ha quedado %d s ' ,
2017-03-01 21:49:14 +03:00
' File failed to play! Do you want to RETRY and buffer more? ' : ' Falló la reproducción del archivo. ¿Desea volver a intentarlo y aumentar el tamaño de búfer? ' ,
' High Priority Files ' : ' Archivos de prioridad alta ' ,
2016-07-13 15:49:55 +03:00
' Skip All Files ' : ' Omitir todos los archivos ' ,
' Start ' : ' Iniciar ' ,
' Stop ' : ' Detener ' ,
' Play ' : ' Reproducir ' ,
2017-03-01 21:49:14 +03:00
' High Priority ' : ' Prioridad alta ' ,
2016-07-13 15:49:55 +03:00
' Skip File ' : ' Omitir archivo ' ,
' Remove ' : ' Eliminar ' ,
2017-03-01 21:49:14 +03:00
' Remove with files ' : ' Eliminar con los archivos ' ,
' Play File ' : ' Reproducir archivo ' ,
2016-07-13 15:49:55 +03:00
' Start All Files ' : ' Iniciar todos los archivos ' ,
' Stop All Files ' : ' Detener todos los archivos ' ,
2017-03-07 21:29:03 +03:00
' Torrent-client Browser ' : ' Explorador de cliente de BitTorrent ' ,
2017-03-01 21:49:14 +03:00
' Remote Torrent-client ' : ' Cliente de BitTorrent remoto ' ,
' You didn \' t set up replacement path in setting. ' : ' No se ha establecido una ruta alternativa en " Ajustes " . ' ,
2017-03-07 21:29:03 +03:00
' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' : ' Por ejemplo, /media/dl_torr/ a smb://SERVER/dl_torr/. ¿Desea establecerla ahora? ' ,
2017-03-01 21:49:14 +03:00
' Manual Torrent-client Path Edit ' : ' Edición manual de la ruta del cliente de BitTorrent ' ,
' Choose .torrent in video library ' : ' Seleccione archivo .torrent en la colección de vídeos ' ,
' .torrent Player ' : ' Gestor de archivo .torrent ' ,
' Choose directory: ' : ' Seleccionar directorio: ' ,
2017-03-07 21:29:03 +03:00
' Starting download next episode! ' : ' Iniciando descarga de episodio siguiente ' ,
2016-07-13 15:49:55 +03:00
' Choose in torrent-client: ' : ' Elija cliente torrent ' ,
2017-03-07 21:29:03 +03:00
' Search Control Window ' : ' Control de búsquedas ' ,
2017-03-01 21:49:14 +03:00
' Magnet-link (magnet:...) ' : ' Enlace magnet (magnet:...) ' ,
' Not a magnet-link! ' : ' No es un enlace magnet ' ,
' Magnet-link Player ' : ' Gestor de enlace magnet ' ,
2016-07-13 15:49:55 +03:00
' UNKNOWN STATUS ' : ' ESTADO DESCONOCIDO ' ,
2017-03-07 21:29:03 +03:00
' Checking preloaded files... ' : ' Comprobando archivos precargados... ' ,
2017-03-01 21:49:14 +03:00
' Waiting for website response... ' : ' Esperando respuesta del sitio web... ' ,
' Search and cache information for: ' : ' Buscar y almacenar datos para: ' ,
' Open Torrent ' : ' Abrir torrent ' ,
2017-03-07 21:29:03 +03:00
' Torrent list is empty. ' : ' La lista de torrents está en blanco ' ,
2017-03-01 21:49:14 +03:00
' Content Lists ' : ' Listas de contenido ' ,
' Canceled by User ' : ' Cancelado por el usuario ' ,
' Do you want to search and cache full metadata + arts? ' : ' ¿Desea buscar y almacenar los metadatos y fan-arts completos? ' ,
2017-03-07 21:29:03 +03:00
' This vastly decreases load speed, but you will be asked to download premade bases! ' : ' Esto reduce considerablemente la velocidad de carga. Pero se le solicitará descargar desde cero ' ,
2017-03-01 21:49:14 +03:00
' Do you want to preload full metadata? ' : ' ¿Desea precargar los metadatos completos? ' ,
2017-03-07 21:29:03 +03:00
' It is highly recommended! ' : ' Altamente recomendado ' ,
2017-03-01 21:49:14 +03:00
' TV Shows ' : ' Series de televisión ' ,
' Cartoons ' : ' Dibujos animados ' ,
2016-07-13 15:49:55 +03:00
' Anime ' : ' Anime ' ,
2017-03-01 21:49:14 +03:00
' Most Recent ' : ' Estrenos ' ,
' Top 250 Movies ' : ' Las 250 mejores películas ' ,
' Top All Time ' : ' Las mejores de todos los tiempos ' ,
2017-03-07 21:29:03 +03:00
' by Genre ' : ' Por género ' ,
' by Year ' : ' Por año ' ,
2016-07-13 15:49:55 +03:00
' Action ' : ' Acción ' ,
2017-03-01 21:49:14 +03:00
' Adventure ' : ' Aventuras ' ,
2016-07-13 15:49:55 +03:00
' Animation ' : ' Animación ' ,
2017-03-01 21:49:14 +03:00
' Biography ' : ' Biografías ' ,
2016-07-13 15:49:55 +03:00
' Comedy ' : ' Comedia ' ,
2017-03-07 21:29:03 +03:00
' Crime ' : ' Policiacas ' ,
2017-03-01 21:49:14 +03:00
' Documentary ' : ' Documentales ' ,
2016-07-13 15:49:55 +03:00
' Drama ' : ' Drama ' ,
2017-03-01 21:49:14 +03:00
' Family ' : ' Todos los públicos ' ,
2017-03-07 21:29:03 +03:00
' Fantasy ' : ' Fantásticas ' ,
2017-03-01 21:49:14 +03:00
' Film-Noir ' : ' Cine negro ' ,
2016-07-13 15:49:55 +03:00
' History ' : ' Historia ' ,
' Horror ' : ' Terror ' ,
' Music ' : ' Música ' ,
2017-03-01 21:49:14 +03:00
' Musical ' : ' Musicales ' ,
2016-07-13 15:49:55 +03:00
' Mystery ' : ' Misterio ' ,
2017-03-01 21:49:14 +03:00
' Romance ' : ' Románticas ' ,
' Sci-Fi ' : ' Ciencia ficción ' ,
2016-07-13 15:49:55 +03:00
' Short ' : ' Cortos ' ,
' Sport ' : ' Deportes ' ,
2017-03-01 21:49:14 +03:00
' Thriller ' : ' Suspense ' ,
2016-07-13 15:49:55 +03:00
' War ' : ' Bélicas ' ,
2017-03-01 21:49:14 +03:00
' Western ' : ' Películas del Oeste ' ,
2017-03-07 21:29:03 +03:00
' [B]by Site[/B] ' : ' [B]Por sitio[/B] ' ,
2017-03-01 21:49:14 +03:00
' Cartoons Series ' : ' Series de dibujos animados ' ,
' Cartoons Short ' : ' Cortos de dibujos animados ' ,
' Male ' : ' Hombre ' ,
' Female ' : ' Mujer ' ,
' Russia & USSR ' : ' Rusia & URSS ' ,
' Next Page ' : ' Página siguiente ' ,
' Previous Page ' : ' Página anterior ' ,
' Russian Movies ' : ' Películas rusas ' ,
' israeli Movies ' : ' Películas israelíes ' ,
' hebdub movies ' : ' Películas dobladas al hebreo ' ,
2016-07-13 15:49:55 +03:00
' Movies ' : ' Películas ' ,
2017-03-07 21:29:03 +03:00
' High Resolution Movies ' : ' Películas en alta resolución ' ,
2016-07-13 15:49:55 +03:00
' 3D Movies ' : ' Películas en 3D ' ,
2017-03-07 21:29:03 +03:00
' Movies [Bluray] ' : ' Películas en formato Blu-ray ' ,
2016-07-13 15:49:55 +03:00
' Anime Film ' : ' Películas Anime ' ,
' Anime Series ' : ' Series Anime ' ,
2017-03-01 21:49:14 +03:00
' Can \' t download torrent, probably no seeds available. ' : ' No se puede descargar el torrent, probablemente no hay fuentes disponibles. ' ,
' Personal List ' : ' Lista personal ' ,
2016-07-13 15:49:55 +03:00
' Add to %s ' : ' Añadir a %s ' ,
' Delete from %s ' : ' Eliminar de %s ' ,
2017-03-07 21:29:03 +03:00
' Added! ' : ' Añadido ' ,
' Deleted! ' : ' Eliminado ' ,
2017-03-01 21:49:14 +03:00
' Search History ' : ' Historial de búsquedas ' ,
2016-07-13 15:49:55 +03:00
' History ' : ' Historial ' ,
2017-03-01 21:49:14 +03:00
' Torrent History ' : ' Historial de archivos torrent ' ,
' Watched History ' : ' Historial de vistos ' ,
2016-07-13 15:49:55 +03:00
' Favourites ' : ' Favoritos ' ,
' Favourites SH ' : ' Favoritos SH ' ,
2017-03-01 21:49:14 +03:00
' Clear %s ' : ' Vaciar %s ' ,
2017-03-07 21:29:03 +03:00
' Clear! ' : ' Vacío ' ,
2017-03-01 21:49:14 +03:00
' kb/s ' : ' kbps ' ,
' Queued ' : ' Situado en cola ' ,
' Checking ' : ' Comprobando ' ,
' Downloading metadata ' : ' Descargando metadatos ' ,
' Downloading ' : ' Descargando ' ,
2016-07-13 15:49:55 +03:00
' Finished ' : ' Finalizado ' ,
' Seeding ' : ' Compartiendo ' ,
2017-03-01 21:49:14 +03:00
' Allocating ' : ' Reservando espacio ' ,
' Allocating file & Checking resume ' : ' Reservando espacio y comprobando reanudación ' ,
' For Kids ' : ' Para niños ' ,
2016-07-13 15:49:55 +03:00
' Adult ' : ' Adultos ' ,
2017-03-07 21:29:03 +03:00
' Does not support magnet links! ' : ' No compatible con enlaces magnet ' ,
2017-03-01 21:49:14 +03:00
' Reset All Cache DBs ' : ' Reiniciar todas las bases de datos de la caché ' ,
2016-07-13 15:49:55 +03:00
' [B]Search[/B] ' : ' [B]Buscar[/B] ' ,
2017-03-07 21:29:03 +03:00
' You can always restart this by deleting DBs via Context Menu ' : ' Siempre se puede reiniciar esto eliminando las bases de datos a través del menú contextual ' ,
' Your preloaded databases are outdated! ' : ' Las bases de datos precargadas son obsoletas ' ,
2017-03-01 21:49:14 +03:00
' Do you want to download new ones right now? ' : ' ¿Desea descargar versiones actualizadas? ' ,
' Individual Tracker Options ' : ' Opciones individuales del rastreador ' ,
' Downloading and copy subtitles. Please wait. ' : ' Descargando y copiando subtítulos. Espere. ' ,
' International Check - First Run ' : ' Comprobación internacional - Primera ejecución. ' ,
' Delete Russian stuff? ' : ' ¿Desea eliminar las cosas de Rusia? ' ,
' Save to path ' : ' Ruta para guardar ' ,
' Return Russian stuff ' : ' Devolver las cosas de Rusia ' ,
' %d files have been returned ' : ' Han vuelto %d archivos ' ,
2017-03-07 21:29:03 +03:00
' Download via T-client ' : ' Descargar a través de cliente BitTorrent ' ,
2017-03-01 21:49:14 +03:00
' Download via Libtorrent ' : ' Descargar a través de Libtorrent ' ,
' Download Status ' : ' Estado de la descarga ' ,
2017-03-07 21:29:03 +03:00
' Download has not finished yet ' : ' La descarga no ha finalizado todavía ' ,
2017-03-01 21:49:14 +03:00
' Stopped and Deleted! ' : ' Detenido y eliminado ' ,
' Unpaused! ' : ' Despausado ' ,
2016-07-13 15:49:55 +03:00
' Paused! ' : ' Pausado ' ,
' Stopped! ' : ' Detenido ' ,
' Started! ' : ' Iniciado ' ,
2017-03-01 21:49:14 +03:00
' Delete and Stop ' : ' Eliminar y detener ' ,
' Unpause ' : ' Despausar ' ,
2016-07-13 15:49:55 +03:00
' Pause ' : ' Pausar ' ,
' Delete ' : ' Eliminar ' ,
2016-11-21 17:50:17 +03:00
' Open ' : ' Abrir ' ,
2017-03-01 21:49:14 +03:00
' Torrent is seeding. To stop it use Download Status. ' : ' El torrent se está compartiendo. Para detenerlo utilice " Estado de la descarga " . ' ,
' Start All ' : ' Iniciar todo ' ,
2017-03-07 21:29:03 +03:00
' Started All! ' : ' Se ha iniciado todo ' ,
' Stopped All! ' : ' Se ha detenido todo ' ,
2016-07-13 15:49:55 +03:00
' Stop All ' : ' Detener todo ' ,
' Keyboard ' : ' Teclado ' ,
2017-03-01 21:49:14 +03:00
' Copy Files in Root ' : ' Copiar archivos en directorio personal de root (/root) ' ,
2017-03-07 21:29:03 +03:00
' Copied %d files! ' : ' Se han copiado %d archivos ' ,
2016-07-13 15:49:55 +03:00
' Add to MyShows.ru ' : ' Añadir a MyShows.ru ' ,
2017-03-01 21:49:14 +03:00
' Return to MyShows.ru ' : ' Volver a MyShows.ru ' ,
' Search results: ' : ' Resultados de la búsqueda ' ,
2017-03-07 21:29:03 +03:00
' by Seeders ' : ' Por fuentes ' ,
' by Date ' : ' Por fecha ' ,
2017-03-01 21:49:14 +03:00
' Sort ' : ' Ordenar ' ,
2016-07-13 15:49:55 +03:00
' Close ' : ' Cerrar ' ,
' Views: ' : ' Vistas: ' ,
' Rating: ' : ' Valoración: ' ,
2017-03-07 21:29:03 +03:00
' Information not found! ' : ' No se han encontrado datos ' ,
2017-03-01 21:49:14 +03:00
' Choose searcher ' : ' Elegir buscador ' ,
' python-libtorrent Not Found ' : ' No se ha encontrado python-libtorrent ' ,
2017-03-07 21:29:03 +03:00
' Windows has static compiled python-libtorrent included. ' : ' Windows incluye una versión de python-libtorrent compilada estáticamente ' ,
' You should install " script.module.libtorrent " from " MyShows.me Kodi Repo " ' : ' Se debe instalar " script.module.libtorrrent " desde el repositorio " MyShows.me " ' ,
' Linux x64 has not static compiled python-libtorrent included. ' : ' Linux x64 no incluye una versión de python-libtorrent compilada estáticamente ' ,
2017-03-01 21:49:14 +03:00
' You should install it by " sudo apt-get install python-libtorrent " ' : ' Se debe instalar con " sudo apt-get install python-libtorrent " ' ,
2017-03-07 21:29:03 +03:00
' Linux has static compiled python-libtorrent included but it didn \' t work. ' : ' Linux incluye una version de python-libtorrent compilada estáticamente, pero no ha funcionado ' ,
' As far as I know you can compile python-libtorrent for ARMv6-7. ' : ' Por lo que yo sé, python-libtorrent se puede compilar para ARMv6-7. ' ,
2017-03-01 21:49:14 +03:00
' You should search for " OneEvil \' s OpenELEC libtorrent " or use Ace Stream. ' : ' Se debe buscar " OpenELEC libtorrent de OneEvil " o utilizar Ace Stream ' ,
' Please use install Ace Stream APK and choose it in Settings. ' : ' Instale APK de Ace Stream y selecciónelo en " Ajustes " ' ,
2017-03-07 21:29:03 +03:00
' It is possible to compile python-libtorrent for Android, but I don \' t know how. ' : ' Es posible compilar python-libtorrent para Android, pero no sé como hacerlo. ' ,
2017-03-01 21:49:14 +03:00
' It is possible to compile python-libtorrent for OS X. ' : ' Es posible compilar python-libtorrent para Mac OS X. ' ,
' But you would have to do it by yourself, there is some info on github.com. ' : ' Pero debe hacerlo por sí mismo. Hay alguna información en github.com. ' ,
2016-07-13 15:49:55 +03:00
' It is NOT possible to compile python-libtorrent for iOS. ' : ' No es posible compilar python-libtorrent para iOS ' ,
2017-03-01 21:49:14 +03:00
' But you can use torrent-client control functions. ' : ' Pero se pueden utilizar las funciones de control del cliente de BitTorrent ' ,
2017-03-07 21:29:03 +03:00
' I added custom searchers to Torrenter v2! ' : ' Se han añadido buscadores personalizados a Torrenter v2 ' ,
' Now you can use your login on trackers or write and install your own searcher! ' : ' Ahora puede identificarse en rastreadores o crear e instalar su propio buscador ' ,
2017-03-01 21:49:14 +03:00
' Would you like to install %s from " MyShows.me Kodi Repo " in Programs section? ' : ' ¿Le gustaría instalar %s desde el repositorio " MyShows.me " , sección Programas? ' ,
2017-03-07 21:29:03 +03:00
' Open installation window? ' : ' ¿Abrir ventana de instalación? ' ,
' Android Support ' : ' Soporte de Android ' ,
2017-03-01 21:49:14 +03:00
' Android has no temprorary folder ' : ' Android no tiene carpeta temporal ' ,
2017-03-07 21:29:03 +03:00
' Please specify storage folder in Settings! ' : ' Especifique la carpeta de almacenamiento en " Ajustes " ' ,
' You have no installed or active searchers! More info in Search Control Window! ' : ' No se han instalado o activado buscadores. Tiene más información en Control de búsquedas ' ,
2017-03-01 21:49:14 +03:00
' Please contact DiMartino on kodi.tv forum. We compiled python-libtorrent for Android, ' : ' Póngase en contacto con DiMartino en el foro de kodi.tv. Hemos compilado python-libtorren para Android, ' ,
2017-03-07 21:29:03 +03:00
' but we need your help with some Torrent is seeding. To stop it use Download Status.s on different processors. ' : ' pero necesitamos su ayuda con algún torrent que se comparte. Para detenerlo utilice Estado de la descarga. En diferentes procesadores. ' ,
' We added Android ARM full support to Torrenter v2! ' : ' Hemos añadido compatibilidad completa para Android ARM a Torrenter v2 ' ,
' I deleted pre-installed ones, install them in Search Control Window! ' : ' Se eliminaron los que estaban preinstalados; instálelos desde Control de búsquedas ' ,
2017-03-01 21:49:14 +03:00
' Torrenter didn \' t find %s searcher ' : ' Torrenter no ha encontrado el buscador %s ' ,
' Torrenter Tracker Install ' : ' Instalación de rastreador de Torrenter ' ,
' Ask to save ' : ' Preguntar para guardar ' ,
' Would you like to save this file? ' : ' ¿Le gustaría guardar este archivo? ' ,
2017-03-07 21:29:03 +03:00
' Your storage path is not writable or not local! Please change it in settings! ' : ' La ruta del almacén está protegida contra escritura o no es local. Cámbiela en " Ajustes " ' ,
2017-03-01 21:49:14 +03:00
' Upgrade advancedsettings.xml ' : ' Actualizar archivo advancedsettings.xml ' ,
2017-03-07 21:29:03 +03:00
' We would like to set some advanced settings for you! ' : ' Nos gustaría efectuar algunos ajustes avanzados por usted ' ,
' Do it! ' : ' Hazlo ' ,
2017-03-01 21:49:14 +03:00
' Please, restart Kodi now! ' : ' Reinicie Kodi ' ,
' ./ (Root folder) ' : ' ./ (Carpeta de root) ' ,
' Opening torrent file ' : ' Abriendo archivo torrent ' ,
2017-03-07 21:29:03 +03:00
' New player to Torrenter v2 - Torrent2HTTP! It should be faster, stable and better with Android, also seeking works in it. ' : ' Nuevo reproductor para Torrenter v2 - Torrent2HTTP. Debe ser más rápido, estable y mejor en Android; además, con él funcionan los intercambios. ' ,
2017-03-01 21:49:14 +03:00
' Would you like to try it? ' : ' ¿Le gustaría probarlo? ' ,
2017-03-07 21:29:03 +03:00
' Torrent2HTTP enabled! Can be changed in Settings. ' : ' Se ha activado Torrent2HTTP. Puede cambiarse en " Ajustes " . ' ,
2017-03-01 21:49:14 +03:00
' Seeking ' : ' Compartiendo ' ,
2017-03-07 21:29:03 +03:00
' Would you like to resume from %s ? ' : ' ¿Le gustaría reanudar desde %s ? ' ,
' Seeking is working only with player Torrent2HTTP. ' : ' Compartir funciona solamente con el reproductor Torrent2HTTP. ' ,
2017-03-01 21:49:14 +03:00
' Play (from %s ) ' : ' Reproducir desde %s ' ,
' Play (from start) ' : ' Reproducir desde el inicio ' ,
2017-03-07 21:29:03 +03:00
} ,
2017-03-01 21:49:14 +03:00
' he ' : {
2016-01-12 22:02:56 +03:00
' Seeds searching. ' : ' חיפוש זורעים ' ,
' Please Wait ' : ' המתן ' ,
' Information ' : ' מידע ' ,
' Torrent downloading is stopped. ' : ' הורדה הופסקה ' ,
' Search ' : ' חפש ' ,
' Seeds ' : ' זורעים ' ,
' Peers ' : ' יונקים ' ,
' Materials are loading now. ' : ' עולה כעת ' ,
' Search Phrase ' : ' חפש ' ,
2016-01-24 08:27:50 +03:00
' Magnet-link is converting ' : ' הקובץ נטען ' ,
2016-01-12 22:02:56 +03:00
' Error ' : ' טעות ' ,
2016-01-24 08:27:50 +03:00
' Your library out of date and can \' t save magnet-links. ' : ' הספריה אינה מעודכנת ' ,
2016-01-12 22:02:56 +03:00
' Bookmarks ' : ' סימניות ' ,
2016-01-24 08:27:50 +03:00
' Logout ' : ' התנתק ' ,
' Login ' : ' התחבר ' ,
' Recent Materials ' : ' חומרים אחרונים ' ,
' Register ' : ' הרשם ' ,
' Bookmark ' : ' סמניות ' ,
' Item successfully added to Bookmarks ' : ' הפריט הוסף לסמניות ' ,
' Item successfully removed from Bookmarks ' : ' הפריט הוסר מהסימניות בהצלחה ' ,
' Bookmark not added ' : ' סימניה לא הוספה ' ,
' Bookmark not removed ' : ' הסימניה לא הוסרה ' ,
' Add To Bookmarks ' : ' הוסף לסימניות ' ,
' Remove From Bookmarks ' : ' הסר מסימניות ' ,
' Auth ' : ' אישור ' ,
' Already logged in ' : ' Already logged in ' ,
' Input Email (for password recovery): ' : ' Input Email (for password recovery): ' ,
' Input Email: ' : ' Input Email: ' ,
' Input Password (6+ symbols): ' : ' Input Password (6+ symbols): ' ,
' Input Password: ' : ' Input Password ' ,
' Login successfull ' : ' Login successfull ' ,
' Login failed ' : ' Login failed ' ,
2016-01-12 22:02:56 +03:00
' User not logged in ' : ' Пользователь не в системе ' ,
2016-01-24 08:27:50 +03:00
' User successfully logged out ' : ' User successfully logged out ' ,
2016-01-25 15:02:11 +03:00
' Preloaded: ' : ' טוען מראש ' ,
2016-01-24 08:27:50 +03:00
' Do you want to STOP torrent downloading and seeding? ' : ' להפסיק הורדת טורנט? ' ,
' Torrent Downloading ' : ' טורנט בהורדה ' ,
' Auth expired, please relogin ' : ' Auth expired, please relogin ' ,
2016-01-12 22:02:56 +03:00
' Storage ' : ' אחסון ' ,
2016-03-22 19:48:48 +03:00
' Storage has been cleared ' : ' אחסון נוקה ' ,
2016-01-12 22:02:56 +03:00
' Clear Storage ' : ' נקה אחסון ' ,
' Popular ' : ' פופולארי ' ,
' Views ' : ' צפיות ' ,
2016-01-25 15:02:11 +03:00
' Uploading ' : ' מעלה ' ,
2016-01-12 22:02:56 +03:00
' Download ' : ' מוריד ' ,
2016-01-24 08:27:50 +03:00
' Input symbols from CAPTCHA image: ' : ' Input symbols from CAPTCHA image: ' ,
' Please, rate watched video: ' : ' Please, rate watched video: ' ,
2016-01-25 15:02:11 +03:00
' Bad ' : ' Bad ' ,
' So-So ' : ' So-So ' ,
' Good ' : ' Good ' ,
' Ratings ' : ' Ratings ' ,
2016-01-12 22:02:56 +03:00
' Rating ' : ' דירוג ' ,
' Retry ' : ' נסה שנית ' ,
2016-01-24 08:27:50 +03:00
' %d s has left ' : ' %d s has left ' ,
2016-01-12 22:02:56 +03:00
' File failed to play! Do you want to RETRY and buffer more? ' : ' הקובץ נכשל האם לנסות שנית? ' ,
' High Priority Files ' : ' קבצים בחשיבות עליונה ' ,
' Skip All Files ' : ' דלג על כל הקבצים ' ,
' Start ' : ' התחל ' ,
' Stop ' : ' עצור ' ,
' Play ' : ' נגן ' ,
' High Priority ' : ' חשיבות גבוהה ' ,
2016-01-24 08:27:50 +03:00
' Skip File ' : ' דלג על הקובץ ' ,
2016-01-12 22:02:56 +03:00
' Remove ' : ' הסר ' ,
' Remove with files ' : ' הסר קבצים ' ,
' Play File ' : ' נגן קובץ ' ,
' Start All Files ' : ' התחל את כל הקבצים ' ,
' Stop All Files ' : ' הפסק את כל הקבצים ' ,
' Torrent-client Browser ' : ' דפדפן טורנט ' ,
' Remote Torrent-client ' : ' טורנט מרוחק ' ,
' You didn \' t set up replacement path in setting. ' : ' נא למלא נתיב לשמירה בהגדרות ' ,
2016-01-24 08:27:50 +03:00
' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' : ' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' ,
2016-01-12 22:02:56 +03:00
' Manual Torrent-client Path Edit ' : ' Manual Torrent-client Path Edit ' ,
' Choose .torrent in video library ' : ' בחר בטורנט מהספריה ' ,
' .torrent Player ' : ' נגן טורנט ' ,
' Choose directory: ' : ' בחר מיקום: ' ,
' Starting download next episode! ' : ' מתחיל להורד בפרק הבא ' ,
' Choose in torrent-client: ' : ' בחר לקוח טורנט ' ,
' Search Control Window ' : ' הגדרת טראקרים ' ,
' Magnet-link (magnet:...) ' : ' (magnet:...)קישור מגנט ' ,
' Not a magnet-link! ' : ' לא קישור מגנט ' ,
' Magnet-link Player ' : ' נגן קישור מגנט ' ,
' UNKNOWN STATUS ' : ' ס ט ט ו ס לא ידוע' ,
' Checking preloaded files... ' : ' בודק קבצים ' ,
' Waiting for website response... ' : ' ממתין לתשובת האתר ' ,
' Search and cache information for: ' : ' תקצירי הסרטים יורדים ' ,
' Open Torrent ' : ' פתח טורנט ' ,
' Torrent list is empty. ' : ' רשימה ריקה ' ,
' Content Lists ' : ' רשימות תוכן ההרחבה ' ,
' Canceled by User ' : ' בוטל ' ,
' Do you want to search and cache full metadata + arts? ' : ' האם תרצה להוריד מידע על הסרטים ' ,
' This vastly decreases load speed, but you will be asked to download premade bases! ' : ' זה יאט את קצב ההעלאה אך יוריד מידע על הסרטים ' ,
' Do you want to preload full metadata? ' : ' האם תרצה להוריד את כל המידע ' ,
' It is highly recommended! ' : ' מומלץ ' ,
' TV Shows ' : ' סדרות ' ,
' Cartoons ' : ' אנימציה ' ,
' Anime ' : ' אנימה ' ,
' Most Recent ' : ' החדשים ביותר ' ,
' Top 250 Movies ' : ' 250 הטובים ביותר ' ,
' Top All Time ' : ' הטובים בכל הזמנים ' ,
' by Genre ' : ' לפי קטגוריה ' ,
' by Year ' : ' לפי שנה ' ,
' Action ' : ' פעולה ' ,
' Adventure ' : ' הרפתקאות ' ,
' Animation ' : ' אנימציה ' ,
2016-01-25 15:02:11 +03:00
' Biography ' : ' ביוגרפי ' ,
2016-01-12 22:02:56 +03:00
' Comedy ' : ' קומדיה ' ,
' Crime ' : ' פשע ' ,
' Documentary ' : ' דוקומנטרי ' ,
' Drama ' : ' דרמה ' ,
' Family ' : ' משפחתי ' ,
' Fantasy ' : ' פנטסיה ' ,
' Film-Noir ' : ' פילם נואר ' ,
' History ' : ' היסטורי ' ,
' Horror ' : ' אימה ' ,
' Music ' : ' מוזיקה ' ,
' Musical ' : ' מחזמר ' ,
' Mystery ' : ' מסתורי ' ,
' Romance ' : ' רומנטי ' ,
' Sci-Fi ' : ' מדע בדיוני ' ,
' Short ' : ' קצר ' ,
' Sport ' : ' ספורט ' ,
' Thriller ' : ' מותחן ' ,
' War ' : ' מלחמתי ' ,
' Western ' : ' מערבון ' ,
' [B]by Site[/B] ' : ' [B]על פי אתר[/B] ' ,
' Cartoons Series ' : ' סדרה מצוירת ' ,
' Cartoons Short ' : ' מצוירים -קצר ' ,
' Male ' : ' גבר ' ,
' Female ' : ' אשה ' ,
' Russia & USSR ' : ' רוסיה ' ,
' Next Page ' : ' הדף הבא ' ,
' Previous Page ' : ' הדף הקודם ' ,
' Russian Movies ' : ' סרטים רוסיים ' ,
2016-01-25 15:02:11 +03:00
' israeli Movies ' : ' סרטים ישראלים ' ,
' hebdub movies ' : ' סרטים מדובבים ' ,
2016-01-12 22:02:56 +03:00
' Movies ' : ' סרטים ' ,
2016-01-25 15:02:11 +03:00
' High Resolution Movies ' : ' סרטים באיכות גבוהה ' ,
' 3D Movies ' : ' 3D סרטי ' ,
' Movies [Bluray] ' : ' [Bluray] סרטים ' ,
2016-01-12 22:02:56 +03:00
' Anime Film ' : ' סרטי אנימה ' ,
' Anime Series ' : ' סדרות אנימה ' ,
' Can \' t download torrent, probably no seeds available. ' : ' לא ניתן להוריד את הטורנט אין מספיק זורעים ' ,
' Personal List ' : ' רשימה אישית ' ,
' Add to %s ' : ' %s הוסף ל ' ,
' Delete from %s ' : ' מחק מ %s ' ,
' Added! ' : ' נוסף! ' ,
' Deleted! ' : ' נמחק ' ,
' Search History ' : ' הסטורית חיפוש ' ,
' History ' : ' הסטוריה ' ,
' Torrent History ' : ' הסטורית טורנט ' ,
' Watched History ' : ' הסטורית צפיה ' ,
' Favourites ' : ' מועדפים ' ,
' Favourites SH ' : ' מועדפי הסטורית חיפוש ' ,
' Clear %s ' : ' נקה %s ' ,
' Clear! ' : ' נקה ' ,
' kb/s ' : ' kb/s ' ,
' Queued ' : ' בתור ' ,
' Checking ' : ' בודק ' ,
' Downloading metadata ' : ' מוריד מידע ' ,
' Downloading ' : ' מוריד ' ,
' Finished ' : ' סיים ' ,
' Seeding ' : ' זורע ' ,
' Allocating ' : ' מאתר ' ,
' Allocating file & Checking resume ' : ' מאתר קובץ ובודק ' ,
' For Kids ' : ' לילדים ' ,
' Adult ' : ' מבוגרים ' ,
' Does not support magnet links! ' : ' לא תומך בקובץ מגנט! ' ,
' Reset All Cache DBs ' : ' רענן מחדש ' ,
' [B]Search[/B] ' : ' [B]חפש[/B] ' ,
' You can always restart this by deleting DBs via Context Menu ' : ' You can always restart this by deleting DBs via Context Menu ' ,
' Your preloaded databases are outdated! ' : ' Your preloaded databases are outdated! ' ,
' Do you want to download new ones right now? ' : ' Do you want to download new ones right now? ' ,
' Individual Tracker Options ' : ' Individual Tracker Options ' ,
' Downloading and copy subtitles. Please wait. ' : ' Downloading and copy subtitles. Please wait. ' ,
' International Check - First Run ' : ' בדיקה אינטרנשיונאלית ' ,
' Delete Russian stuff? ' : ' למחוק תוכן רוסי? ' ,
' Save to path ' : ' שמור בנתיב ' ,
2016-01-24 08:27:50 +03:00
' Return Russian stuff ' : ' להחזיר תוכן רוסי ' ,
2016-01-12 22:02:56 +03:00
' %d files have been returned ' : ' הקובץ הוחזר ' ,
' Download via T-client ' : ' הורד דרך לקוח ט י ' ,
' Download via Libtorrent ' : ' הורד דרך ליבטורנט ' ,
' Download Status ' : ' מצב הורדה ' ,
' Download has not finished yet ' : ' ההורדה לא הסתיימה ' ,
' Stopped and Deleted! ' : ' נעצר ונמחק ' ,
' Unpaused! ' : ' לא נעצר ' ,
' Paused! ' : ' נעצר ' ,
' Stopped! ' : ' הופסק ' ,
' Started! ' : ' התחיל ' ,
' Delete and Stop ' : ' מחק ועצור ' ,
' Unpause ' : ' אל תפסיק ' ,
' Pause ' : ' הפסק ' ,
' Delete ' : ' מחק ' ,
2016-11-21 17:50:17 +03:00
' Open ' : ' פתח ' ,
2016-01-12 22:02:56 +03:00
' Torrent is seeding. To stop it use Download Status. ' : ' Torrent is seeding. To stop it use Download Status. ' ,
' Start All ' : ' התחל הכל ' ,
' Started All! ' : ' מיין הכל ' ,
' Stopped All! ' : ' עצר ' ,
' Stop All ' : ' עצור הכל ' ,
' Keyboard ' : ' מקלדת ' ,
' Copy Files in Root ' : ' Copy Files in Root ' ,
' Copied %d files! ' : ' Copied %d files! ' ,
' Add to MyShows.ru ' : ' Add to MyShows.ru ' ,
' Return to MyShows.ru ' : ' Return to MyShows.ru ' ,
' Search results: ' : ' תוצאות חיפוש ' ,
' by Seeders ' : ' לפי כמות זורעים ' ,
' by Date ' : ' לפי זמן ' ,
' Sort ' : ' סדר ' ,
' Close ' : ' סגור ' ,
' Views: ' : ' צפיות: ' ,
' Rating: ' : ' דירוג: ' ,
' Information not found! ' : ' המידע לא נמצא ' ,
' Choose searcher ' : ' בחר טראקר ' ,
2016-02-09 18:54:06 +03:00
' python-libtorrent Not Found ' : ' לא נמצא ' ,
2016-01-24 08:27:50 +03:00
' Windows has static compiled python-libtorrent included. ' : ' לליבטורנט יש קובץ התקנה עבור ווינדוס ' ,
' You should install " script.module.libtorrent " from " MyShows.me Kodi Repo " ' : ' נא להתקין את הקובץ script.module.libtorrent. מתוך הריפו ' ,
' Linux x64 has not static compiled python-libtorrent included. ' : ' Linux x64 has not static compiled python-libtorrent included. ' ,
2016-01-12 22:02:56 +03:00
' You should install it by " sudo apt-get install python-libtorrent " ' : ' You should install it by " sudo apt-get install python-libtorrent " ' ,
' Linux has static compiled python-libtorrent included but it didn \' t work. ' : ' Н а Linux x86 есть статическая python-libtorrent, но она очевидно не сработала.' ,
2016-01-24 08:27:50 +03:00
' As far as I know you can compile python-libtorrent for ARMv6-7. ' : ' As far as I know you can compile python-libtorrent for ARMv6-7. ' ,
2016-01-12 22:02:56 +03:00
' You should search for " OneEvil \' s OpenELEC libtorrent " or use Ace Stream. ' : ' Поищи " OneEvil \' s OpenELEC libtorrent " или используй Ace Stream ' ,
' Please use install Ace Stream APK and choose it in Settings. ' : ' Установите Ace Stream APK и выберите плеер в Найстройка плагина ' ,
' It is possible to compile python-libtorrent for Android, but I don \' t know how. ' : ' Вообще скомпилировать python-libtorrent на Android можно, но мы не знаем как. ' ,
' It is possible to compile python-libtorrent for OS X. ' : ' Вообще скомпилировать python-libtorrent на OS X можно. ' ,
2016-01-24 08:27:50 +03:00
' But you would have to do it by yourself, there is some info on github.com. ' : ' But you would have to do it by yourself, there is some info on github.com. ' ,
' It is NOT possible to compile python-libtorrent for iOS. ' : ' It is NOT possible to compile python-libtorrent for iOS ' ,
' But you can use torrent-client control functions. ' : ' But you can use torrent-client control functions. ' ,
' I added custom searchers to Torrenter v2! ' : ' I added custom searchers to Torrenter v2! ' ,
' Now you can use your login on trackers or write and install your own searcher! ' : ' Now you can use your login on trackers or write and install your own searcher! ' ,
' Would you like to install %s from " MyShows.me Kodi Repo " in Programs section? ' : ' Would you like to install %s from " MyShows.me Kodi Repo " in Programs section? ' ,
' Open installation window? ' : ' לפתוח את חלון ההתקנה? ' ,
' Android Support ' : ' תמיכה באנדרואיד ' ,
' Android has no temprorary folder ' : ' ' ,
' Please specify storage folder in Settings! ' : ' בחר תיקיה לשמירת הקבצים בהגדרות ' ,
' You have no installed or active searchers! More info in Search Control Window! ' : ' לא קיימים טראקרים פעילים נא להוסיף דרך " הגדרות טראקרים " ' ,
' Please contact DiMartino on kodi.tv forum. We compiled python-libtorrent for Android, ' : ' Please contact DiMartino on kodi.tv forum. We compiled python-libtorrent for Android, ' ,
' but we need your help with some Torrent is seeding. To stop it use Download Status.s on different processors. ' : ' but we need your help with some Torrent is seeding. To stop it use Download Status.s on different processors. ' ,
' We added Android ARM full support to Torrenter v2! ' : ' We added Android ARM full support to Torrenter v2! ' ,
' I deleted pre-installed ones, install them in Search Control Window! ' : ' I deleted pre-installed ones, install them in Search Control Window! ' ,
2016-01-12 22:02:56 +03:00
' Torrenter didn \' t find %s searcher ' : ' טראקר לא נמצא ' ,
' Torrenter Tracker Install ' : ' טראקר הותקן ' ,
' Ask to save ' : ' בקש לשמור ' ,
2016-01-24 08:27:50 +03:00
' Would you like to save this file? ' : ' האם תרצה לשמור קובץ זה? ' ,
' Your storage path is not writable or not local! Please change it in settings! ' : ' שטח אחסון הקבצים לא מקומי או שלא ניתן לכתוב בו ,שנה בהגדרות ' ,
2016-01-12 22:02:56 +03:00
' Upgrade advancedsettings.xml ' : ' Upgrade advancedsettings.xml ' ,
' We would like to set some advanced settings for you! ' : ' We would like to set some advanced settings for you! ' ,
' Do it! ' : ' עשה זאת ' ,
' Please, restart Kodi now! ' : ' התחל מחדש את קודי ' ,
' ./ (Root folder) ' : ' ./ (Root folder) ' ,
' Opening torrent file ' : ' פותח קבצים ' ,
' New player to Torrenter v2 - Torrent2HTTP! It should be faster, stable and better with Android, also seeking works in it. ' : ' נגן חדש (מומלץ) ' ,
' Would you like to try it? ' : ' האם תרצה לנסות ' ,
' Torrent2HTTP enabled! Can be changed in Settings. ' : ' Torrent2HTTP הופעל ' ,
' Seeking ' : ' מחפש ' ,
' Would you like to resume from %s ? ' : ' האם תרצה לחזור מ $? ' ,
' Seeking is working only with player Torrent2HTTP. ' : ' לא עובד עם נגן זה ' ,
' Play (from %s ) ' : ' %s נגן מ ' ,
' Play (from start) ' : ' נגן מהתחלה ' ,
} ,
2016-09-14 20:37:59 +03:00
' hu ' : {
' Seeds searching. ' : ' Seederek keresése. ' ,
' Please Wait ' : ' Kérlek várj ' ,
' Information ' : ' Információ ' ,
' Torrent downloading is stopped. ' : ' A torrent letöltése befejeződött. ' ,
' Search ' : ' Keresés ' ,
' Seeds ' : ' Seederek ' ,
' Peers ' : ' Kapcsolatok ' ,
' Materials are loading now. ' : ' A tartalmak most töltődnek. ' ,
' Search Phrase ' : ' Keresés kifejezésre ' ,
' Magnet-link is converting ' : ' Magnet-link konvertálása ' ,
' Error ' : ' Hiba ' ,
' Your library out of date and can \' t save magnet-links. ' : ' A könyvtár elavult, nem lehet lementeni a magnet-linket. ' ,
' Bookmarks ' : ' Könyvjelzők ' ,
' Logout ' : ' Kijelentkezés ' ,
' Login ' : ' Bejelentkezés ' ,
' Recent Materials ' : ' Jelenlegi tartalmak ' ,
' Register ' : ' Regisztráció ' ,
' Bookmark ' : ' Könyvjelző ' ,
' Item successfully added to Bookmarks ' : ' Az elem sikeresen hozzáadva a Könyvjelzőkhöz ' ,
' Item successfully removed from Bookmarks ' : ' Az elem sikeresen törölve a Könyvjelzőkből ' ,
' Bookmark not added ' : ' A könyvjelző nem lett hozzáadva ' ,
' Bookmark not removed ' : ' A könyvjelző nem lett törölve ' ,
' Add To Bookmarks ' : ' Hozzáadás a Könyvjelzőkhöz ' ,
' Remove From Bookmarks ' : ' Eltávolítás a Könyvjelzőkből ' ,
' Auth ' : ' Hitelesítés ' ,
' Already logged in ' : ' Már be vagy jelentkezve ' ,
' Input Email (for password recovery): ' : ' E-mail bevitel (jelszó helyreállításához): ' ,
' Input Email: ' : ' E-mail bevitel: ' ,
' Input Password (6+ symbols): ' : ' Jelszó bevitel (6+ karakter): ' ,
' Input Password: ' : ' Jelszó bevitel: ' ,
' Login successfull ' : ' Bejelentkezés sikeres ' ,
' Login failed ' : ' Bejelentkezés sikertelen ' ,
' User not logged in ' : ' A felhasználó nincs bejelentkezve ' ,
' User successfully logged out ' : ' A felhasználó sikeresen kijelentkezett ' ,
' Preloaded: ' : ' Előtöltés: ' ,
' Do you want to STOP torrent downloading and seeding? ' : ' Be akarod fejezni a torrent letöltését és seedelését? ' ,
' Torrent Downloading ' : ' Torrent letöltése ' ,
' Auth expired, please relogin ' : ' Hitelesítés lejárt, kérlek jelentkezz be újra ' ,
' Storage ' : ' Tárolóhely ' ,
' Storage has been cleared ' : ' A tárolóhely megtisztítva ' ,
' Clear Storage ' : ' Tárolóhely Megtisztítása ' ,
' Popular ' : ' Népszerű ' ,
' Views ' : ' Nézetek ' ,
' Uploading ' : ' Feltöltés ' ,
' Download ' : ' Letöltés ' ,
' Input symbols from CAPTCHA image: ' : ' Szimbólumok bevitele a CAPTCHA képről: ' ,
' Please, rate watched video: ' : ' Kérlek, értékeld a megnézett videót: ' ,
' Bad ' : ' Rossz ' ,
' So-So ' : ' Elmegy ' ,
' Good ' : ' Jó ' ,
' Ratings ' : ' Értékelések ' ,
' Rating ' : ' Értékelés ' ,
' Retry ' : ' Újra ' ,
' %d s has left ' : ' %d s van hátra ' ,
' File failed to play! Do you want to RETRY and buffer more? ' : ' A fájl lejátszása hibába ütközött. Újra akarod indítani és többet bufferelni? ' ,
' High Priority Files ' : ' Magas prioritású fájlok ' ,
' Skip All Files ' : ' Összes fájl kihagyása ' ,
' Start ' : ' Indít ' ,
' Stop ' : ' Megállít ' ,
' Play ' : ' Lejátszás ' ,
' High Priority ' : ' Magas prioritás ' ,
' Skip File ' : ' Fájl kihagyása ' ,
' Remove ' : ' Eltávolítás ' ,
' Remove with files ' : ' Eltávolítás a fájlokkal együtt ' ,
' Play File ' : ' Fájl lejátszása ' ,
' Start All Files ' : ' Összes fájl elindítása ' ,
' Stop All Files ' : ' Összes fájl megállítása ' ,
' Torrent-client Browser ' : ' Torrentkliens Böngésző ' ,
' Remote Torrent-client ' : ' Távoli torrentkliens ' ,
' You didn \' t set up replacement path in setting. ' : ' Nem állítottál be helyettesítő elérési utat a beállításokban. ' ,
' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' : ' Például /media/dl_torr/ a smb://SERVER/dl_torr/ - hez. Beállítod most? ' ,
' Manual Torrent-client Path Edit ' : ' Kézi torrentkliens elérési út módosítás ' ,
' Choose .torrent in video library ' : ' .torrent kiválasztása a videó könyvtárban ' ,
' .torrent Player ' : ' .torrent Lejátszó ' ,
' Choose directory: ' : ' Könyvtár kiválasztása: ' ,
' Starting download next episode! ' : ' Elindul a következő epizód letöltése! ' ,
' Choose in torrent-client: ' : ' Kiválasztás a torrentkliensben: ' ,
' Search Control Window ' : ' Keresést Kezelő Ablak ' ,
' Magnet-link (magnet:...) ' : ' Magnet-link (magnet:...) ' ,
' Not a magnet-link! ' : ' Ez nem magnet-link! ' ,
' Magnet-link Player ' : ' Magnet-link Lejátszó ' ,
' UNKNOWN STATUS ' : ' ISMERETLEN STÁTUSZ ' ,
' Checking preloaded files... ' : ' Előtöltött fájlok ellenőrzése... ' ,
' Waiting for website response... ' : ' Várakozás a weboldal válaszára... ' ,
' Search and cache information for: ' : ' Információ keresése és gyorsítótárazása: ' ,
' Open Torrent ' : ' Torrent megnyitása ' ,
2016-09-14 21:00:30 +03:00
' Torrent list is empty. ' : ' A torrent lista üres. ' ,
2016-09-14 20:37:59 +03:00
' Content Lists ' : ' Tartalmak Listája ' ,
' Canceled by User ' : ' Leállítva felhasználó által ' ,
' Do you want to search and cache full metadata + arts? ' : ' Szeretnéd lekérni és gyorsítótárazni a metaadatokat és a képeket? ' ,
' This vastly decreases load speed, but you will be asked to download premade bases! ' : ' Ez jelentősen csökkenti a betöltési sebességet, megkérünk, hogy töltsd le az előre elkészített adatbázisokat! ' ,
' Do you want to preload full metadata? ' : ' Előtöltöd a metaadatokat? ' ,
' It is highly recommended! ' : ' Ez erősen ajánlott! ' ,
' TV Shows ' : ' Sorozatok ' ,
' Cartoons ' : ' Rajzfilmek ' ,
' Anime ' : ' Anime ' ,
' Most Recent ' : ' Legújabb ' ,
' Top 250 Movies ' : ' Top 250 Filmek ' ,
' Top All Time ' : ' Top Mindenkori ' ,
' by Genre ' : ' Műfaj alapján ' ,
' by Year ' : ' Évszám alapján ' ,
' Action ' : ' Akció ' ,
' Adventure ' : ' Kaland ' ,
' Animation ' : ' Animációs ' ,
' Biography ' : ' Életrajzi ' ,
' Comedy ' : ' Vígjáték ' ,
' Crime ' : ' Bűnügyi ' ,
' Documentary ' : ' Dokumentum ' ,
' Drama ' : ' Dráma ' ,
' Family ' : ' Családi ' ,
' Fantasy ' : ' Fantasy ' ,
' Film-Noir ' : ' Film-Noir ' ,
' History ' : ' Történelmi ' ,
' Horror ' : ' Horror ' ,
' Music ' : ' Zenei ' ,
' Musical ' : ' Musical ' ,
' Mystery ' : ' Misztikus ' ,
' Romance ' : ' Romantikus ' ,
' Sci-Fi ' : ' Sci-Fi ' ,
' Short ' : ' Rövidfilm ' ,
' Sport ' : ' Sport ' ,
' Thriller ' : ' Thriller ' ,
' War ' : ' Háborús ' ,
' Western ' : ' Western ' ,
' [B]by Site[/B] ' : ' [B]Weboldal alapján[/B] ' ,
' Cartoons Series ' : ' Rajzfilmsorozatok ' ,
' Cartoons Short ' : ' Rövid rajzfilmek ' ,
' Male ' : ' Férfi ' ,
' Female ' : ' Női ' ,
' Russia & USSR ' : ' Oroszország & Szovjetunió ' ,
' Next Page ' : ' Következő oldal ' ,
' Previous Page ' : ' Előző oldal ' ,
' Russian Movies ' : ' Orosz filmek ' ,
' israeli Movies ' : ' Izraeli fimek ' ,
' hebdub movies ' : ' hebdub filmek ' ,
' Movies ' : ' Filmek ' ,
' High Resolution Movies ' : ' HD filmek ' ,
' 3D Movies ' : ' 3D filmek ' ,
' Movies [Bluray] ' : ' Filmek [Bluray] ' ,
' Anime Film ' : ' Anime filmek ' ,
' Anime Series ' : ' Anime sorozatok ' ,
' Can \' t download torrent, probably no seeds available. ' : ' Nem lehet letölteni a torrentet, valószínűleg nincsenek elérhető seederek. ' ,
' Personal List ' : ' Saját lista ' ,
' Add to %s ' : ' Hozzáadás ehhez %s ' ,
' Delete from %s ' : ' Eltávolítás innen %s ' ,
' Added! ' : ' Hozzáadva! ' ,
' Deleted! ' : ' Eltávolítva! ' ,
' Search History ' : ' Keresési Előzmények ' ,
' History ' : ' Előzmények ' ,
' Torrent History ' : ' Torrent Előzmények ' ,
' Watched History ' : ' Megtekintett Előzmények ' ,
' Favourites ' : ' Kedvencek ' ,
' Favourites SH ' : ' Kedvencek SH ' ,
2016-09-14 21:00:30 +03:00
' Clear %s ' : ' Tisztítás %s ' ,
' Clear! ' : ' Tisztítás! ' ,
2016-09-14 20:37:59 +03:00
' kb/s ' : ' kb/s ' ,
' Queued ' : ' Sorba állítva ' ,
' Checking ' : ' Ellenőrzés ' ,
' Downloading metadata ' : ' Metaadatok letöltése ' ,
' Downloading ' : ' Letöltés ' ,
' Finished ' : ' Befejezve ' ,
' Seeding ' : ' Seedelés ' ,
' Allocating ' : ' Összeállítás ' ,
' Allocating file & Checking resume ' : ' Fájl összeállítása és folytatás ellenőrzése ' ,
' For Kids ' : ' Gyerekek számára ' ,
' Adult ' : ' Felnőtt ' ,
' Does not support magnet links! ' : ' Nem támogatja a magnet-linkeket! ' ,
' Reset All Cache DBs ' : ' Összes gyorsítótár adatbázis visszaállítása ' ,
' [B]Search[/B] ' : ' [B]Keresés[/B] ' ,
' You can always restart this by deleting DBs via Context Menu ' : ' Mindig visszaállíthatja az adatbázis törlésével a helyi menün keresztül ' ,
' Your preloaded databases are outdated! ' : ' Az előtöltött adatbázisok elavultak! ' ,
' Do you want to download new ones right now? ' : ' Szeretnéd letölteni az újakat most? ' ,
' Individual Tracker Options ' : ' Egyéni tracker beállítások ' ,
2016-09-14 21:00:30 +03:00
' Downloading and copy subtitles. Please wait. ' : ' Feliratok letöltése és másolása. Kérlek, várj. ' ,
2016-09-14 20:37:59 +03:00
' International Check - First Run ' : ' International ellenőrzés - első futtatás ' ,
' Delete Russian stuff? ' : ' Orosz tartalom törlése? ' ,
' Save to path ' : ' Mentés a mappába ' ,
' Return Russian stuff ' : ' Orosz tartalom visszaállítása ' ,
' %d files have been returned ' : ' %d fájlok visszaállítva ' ,
' Download via T-client ' : ' Letöltés T-kliensen keresztül ' ,
' Download via Libtorrent ' : ' Letöltés Libtorrenten keresztül ' ,
' Download Status ' : ' Letöltési Állapot ' ,
' Download has not finished yet ' : ' A letöltés még nem fejeződött be ' ,
' Stopped and Deleted! ' : ' Leállítva és eltávolítva! ' ,
' Unpaused! ' : ' Újra elindítva! ' ,
' Paused! ' : ' Szünetelve! ' ,
' Stopped! ' : ' Megállítva! ' ,
' Started! ' : ' Elindítva! ' ,
' Delete and Stop ' : ' Megállít és eltávolít ' ,
' Unpause ' : ' Újra elindít ' ,
' Pause ' : ' Szüneteltet ' ,
' Delete ' : ' Eltávolít ' ,
2016-11-21 17:50:17 +03:00
' Open ' : ' Megnyitás ' ,
2016-09-14 20:37:59 +03:00
' Torrent is seeding. To stop it use Download Status. ' : ' Torrent seedelés alatt. Ahhoz, hogy megállítsd használd a Letöltési Állapotot. ' ,
' Start All ' : ' Összes elindítása ' ,
' Started All! ' : ' Összes elindítva! ' ,
' Stopped All! ' : ' Összes megállítva! ' ,
' Stop All ' : ' Összes megállítása ' ,
' Keyboard ' : ' Billentyűzet ' ,
' Copy Files in Root ' : ' Fájlok másolása a Rendszerkönyvtárba ' ,
' Copied %d files! ' : ' %d fájl átmásolva! ' ,
' Add to MyShows.ru ' : ' Hozzáadás MyShows.ru-hoz ' ,
' Return to MyShows.ru ' : ' Visszatérés a MyShows.ru-hoz ' ,
2016-09-14 21:00:30 +03:00
' Search results: ' : ' Keresési eredmények: ' ,
2016-09-14 20:37:59 +03:00
' by Seeders ' : ' Seederek alapján ' ,
' by Date ' : ' Dátum alapján ' ,
' Sort ' : ' Rendezés ' ,
' Close ' : ' Bezár ' ,
' Views: ' : ' Nézetek: ' ,
' Rating: ' : ' Értékelés: ' ,
' Information not found! ' : ' Nem található információ! ' ,
' Choose searcher ' : ' Válassz keresőt ' ,
' python-libtorrent Not Found ' : ' python-libtorrent nem található ' ,
' Windows has static compiled python-libtorrent included. ' : ' A Windows statikusan fordított python-libtorrentet tartalmaz. ' ,
' You should install " script.module.libtorrent " from " MyShows.me Kodi Repo " ' : ' Telepítsd a " script.module.libtorrent " -et a " MyShows.me Kodi Repo " -ból ' ,
' Linux x64 has not static compiled python-libtorrent included. ' : ' A Linux x64 statikusan fordított python-libtorrentet nem tartalmaz. ' ,
' You should install it by " sudo apt-get install python-libtorrent " ' : ' Telepítsd ezzel a paranccsal " sudo apt-get install python-libtorrent " ' ,
' Linux has static compiled python-libtorrent included but it didn \' t work. ' : ' A Linux statikusan fordított python-libtorrentet tartalmaz de nem működik. ' ,
' As far as I know you can compile python-libtorrent for ARMv6-7. ' : ' Ahogy én tudom, le lehet fordítani a python-libtorrentet ARMv6-7-ra ' ,
' You should search for " OneEvil \' s OpenELEC libtorrent " or use Ace Stream. ' : ' Keress rá " OneEvil \' s OpenELEC libtorrent " -re vagy használj Ace Streamet ' ,
' Please use install Ace Stream APK and choose it in Settings. ' : ' Kérlek használj Ace Stream APK-t és válaszd ki a beállításokban. ' ,
' It is possible to compile python-libtorrent for Android, but I don \' t know how. ' : ' Lehetséges, hogy lefordítható a python-libtorrent Android-ra, de nem tudom hogyan. ' ,
' It is possible to compile python-libtorrent for OS X. ' : ' Lehetséges, hogy lefordítható a python-libtorrent OS X-re. ' ,
' But you would have to do it by yourself, there is some info on github.com. ' : ' De ezt magadnak kell megcsinálnod, van néhány infó erről a github.com-on. ' ,
' It is NOT possible to compile python-libtorrent for iOS. ' : ' iOS-re nem lehet lefordítani a python-libtorrentet. ' ,
' But you can use torrent-client control functions. ' : ' De a torrentkliens kezelőt funkciót tudod használni. ' ,
' I added custom searchers to Torrenter v2! ' : ' Hozzáadtam egyéni keresőket a Torrenter v2-höz! ' ,
' Now you can use your login on trackers or write and install your own searcher! ' : ' Most már be tudsz lépni a trackerekre, vagy megírhatod és feltelepítheted a saját keresődet! ' ,
' Would you like to install %s from " MyShows.me Kodi Repo " in Programs section? ' : ' Szeretnéd telepíteni %s a " MyShows.me Kodi Repo " -ból? ' ,
' Open installation window? ' : ' Telepítő ablak megnyitása? ' ,
' Android Support ' : ' Android támogatás ' ,
' Android has no temprorary folder ' : ' Az Android nem rendelkezik ideiglenes mappával ' ,
' Please specify storage folder in Settings! ' : ' Kérlek add meg a tárolóhely mappáját a beállításokban! ' ,
' You have no installed or active searchers! More info in Search Control Window! ' : ' Nincsenek telepített vagy aktív keresők! Több információ a Keresést Kezelő Abalakban. ' ,
' Please contact DiMartino on kodi.tv forum. We compiled python-libtorrent for Android, ' : ' Kérünk lépj kapcsolatba DiMartino-val a kodi.tv fórumon. Lefordítottuk a python-libtorrentet Androidhoz, ' ,
' but we need your help with some tests on different processors. ' : ' de szükségünk lesz még néhány tesztre különböző processzorokon. ' ,
' We added Android ARM full support to Torrenter v2! ' : ' A Torrenter v2 számara teljesen támogatottá tettük az Android ARM-t! ' ,
' I deleted pre-installed ones, install them in Search Control Window! ' : ' Töröltem az összes előre telepítettet, telepítsd őket a Keresést Kezelő Ablakban! ' ,
' Torrenter didn \' t find %s searcher ' : ' A Torrenter nem találja a %s keresőt ' ,
' Torrenter Tracker Install ' : ' Torrent tracker telepítés ' ,
' Ask to save ' : ' Mentés kérése ' ,
' Would you like to save this file? ' : ' El szeretnéd menteni ez a fájlt? ' ,
' Your storage path is not writable or not local! Please change it in settings! ' : ' A tárolóhely elérési útja nem írható vagy nem elérhető! Kérlek változtatsd meg a beállításokban! ' ,
' Upgrade advancedsettings.xml ' : ' advancedsettings.xml frissítése ' ,
' We would like to set some advanced settings for you! ' : ' Be szeretnénk állítani néhány haladó beállítást! ' ,
' Do it! ' : ' Csináld! ' ,
2016-09-14 21:00:30 +03:00
' Please, restart Kodi now! ' : ' Kérlek, indítsd újra a Kodit, most. ' ,
2016-09-14 20:37:59 +03:00
' ./ (Root folder) ' : ' ./ (Rendszerkönyvtár) ' ,
' Opening torrent file ' : ' Torrent fájl megnyitása ' ,
' New player to Torrenter v2 - Torrent2HTTP! It should be faster, stable and better with Android, also seeking works in it. ' : ' Új lejátszó a Torrenter v2-höz - Torrent2HTTP: Gyorsabb, stabilabb és jobb Androiddal, valamint a keresés is működik vele. ' ,
' Would you like to try it? ' : ' Ki szeretnéd próbálni? ' ,
' Torrent2HTTP enabled! Can be changed in Settings. ' : ' Torrent2HTTP engedélyezve! Ezen a beállításokban tudsz változtatni. ' ,
' Seeking ' : ' Keresés ' ,
' Would you like to resume from %s ? ' : ' Szeretnéd folytatni innen: %s ? ' ,
' Seeking is working only with player Torrent2HTTP. ' : ' A keresés csak a Torrent2HTTP lejátszóval működik. ' ,
' Play (from %s ) ' : ' Lejátszás (innen %s ) ' ,
' Play (from start) ' : ' Lejátszás (az elejétől) ' ,
} ,
2015-06-25 23:03:00 +03:00
' ru ' : {
2017-01-07 15:52:57 +03:00
' Torrenter has a better view style for Kodi 17 default skin. ' : ' У Torrenter есть оптимизированный вид под новый скин Kodi 17.' ,
2017-01-06 00:22:10 +03:00
' is recommended for Kodi 17 users and now out of beta. ' : ' рекомендовано пользователям Kodi 17 и вышло из беты. ' ,
' You can disable it usage in Settings. ' : ' Е г о можно отключить в настройках плагина.' ,
2016-12-16 20:17:10 +03:00
' Move Up ' : ' Вверх ' ,
2016-12-15 00:24:21 +03:00
' Torrenter Search Window ' : ' Окно Поиска Torrenter ' ,
2016-12-12 19:28:00 +03:00
' Cancel ' : ' Отмена ' ,
2016-12-11 01:13:58 +03:00
' Clear History ' : ' Очистить Историю ' ,
' Play (with seek) ' : ' Играть (перемотка) ' ,
2016-12-10 01:01:06 +03:00
' Mass Control ' : ' Массовое Управление ' ,
2016-12-09 21:11:23 +03:00
' Info ' : ' Инфо ' ,
' Delete torrent with files? ' : ' Вы уверены, что хотите удалить торрент с файлами? ' ,
' Fav. / Unfav. ' : ' Доб./удал. Избранное ' ,
2016-12-07 16:31:03 +03:00
' Search Window ' : ' Окно поиска ' ,
2016-12-08 18:30:45 +03:00
' Context menu ' : ' Контекстное меню ' ,
2015-06-25 23:03:00 +03:00
' Seeds searching. ' : ' Идёт поиск сидов. ' ,
' Please Wait ' : ' Подождите ' ,
' Information ' : ' Информация ' ,
' Torrent downloading is stopped. ' : ' Загрузка торрента прекращена. ' ,
' Search ' : ' Поиск ' ,
' Seeds ' : ' Сиды ' ,
' Peers ' : ' Пиры ' ,
' Materials are loading now. ' : ' Идёт загрузка материалов. ' ,
' Search Phrase ' : ' Фраза для поиска ' ,
2015-07-19 00:44:38 +03:00
' Magnet-link is converting ' : ' Идёт преобразование magnet-ссылки ' ,
2015-06-25 23:03:00 +03:00
' Error ' : ' Ошибка ' ,
' Your library out of date and can \' t save magnet-links. ' : ' Ваша библиотека устарела и не может сохранять магнет-ссылки. ' ,
' Bookmarks ' : ' Закладки ' ,
' Logout ' : ' Выход ' ,
' Login ' : ' Вход ' ,
' Recent Materials ' : ' Свежие Материалы ' ,
' Register ' : ' Регистрация ' ,
' Bookmark ' : ' Закладка ' ,
' Item successfully added to Bookmarks ' : ' Элемент удачно добавлен в закладки ' ,
' Item successfully removed from Bookmarks ' : ' Элемент удачно удалён из закладок ' ,
' Bookmark not added ' : ' Закладка не добавлена ' ,
' Bookmark not removed ' : ' Закладка не удалена ' ,
' Add To Bookmarks ' : ' Добавить в закладки ' ,
' Remove From Bookmarks ' : ' Удалить из Закладок ' ,
' Auth ' : ' Авторизация ' ,
' Already logged in ' : ' Пользователь уже в системе ' ,
' Input Email (for password recovery): ' : ' Введите E-mail (для восстановления пароля): ' ,
' Input Email: ' : ' Введите E-mail: ' ,
' Input Password (6+ symbols): ' : ' Введите пароль (6+ символов): ' ,
' Input Password: ' : ' Введите пароль: ' ,
' Login successfull ' : ' Вход выполнен успешно ' ,
' Login failed ' : ' Вход не выполнен ' ,
' User not logged in ' : ' Пользователь не в системе ' ,
' User successfully logged out ' : ' Пользователь успешно покинул систему ' ,
' Preloaded: ' : ' Предзагружено: ' ,
' Do you want to STOP torrent downloading and seeding? ' : ' Вы хотите остановить загрузку и раздачу торрента? ' ,
' Torrent Downloading ' : ' Загрузка торрента ' ,
' Auth expired, please relogin ' : ' Авторизация истекла, пожалуйста войдите снова ' ,
' Storage ' : ' Хранилище ' ,
2016-03-22 19:48:48 +03:00
' Storage has been cleared ' : ' Хранилище очищено ' ,
2015-06-25 23:03:00 +03:00
' Clear Storage ' : ' Очистить хранилище ' ,
' Popular ' : ' Популярное ' ,
' Views ' : ' Просмотров ' ,
' Uploading ' : ' Раздача ' ,
' Download ' : ' Скачать ' ,
' Input symbols from CAPTCHA image: ' : ' Введите символы с картинки CAPTCHA: ' ,
' Please, rate watched video: ' : ' Пожалуйста, оцените просмотренное видео: ' ,
' Bad ' : ' Плохо ' ,
' So-So ' : ' Такое... ' ,
' Good ' : ' Отлично ' ,
' Ratings ' : ' Оценки ' ,
' Rating ' : ' Оценка ' ,
' Retry ' : ' Повторная попытка ' ,
' %d s has left ' : ' Осталось %d попыток ' ,
' File failed to play! Do you want to RETRY and buffer more? ' : ' Ошибка проигрывания файла! Хотите предзагрузить больше и повторить? ' ,
' High Priority Files ' : ' Высокий Приоритет Файлам ' ,
' Skip All Files ' : ' Пропустить В с е Файлы ' ,
' Start ' : ' Пуск ' ,
' Stop ' : ' Стоп ' ,
' Play ' : ' Воспроизвести ' ,
' High Priority ' : ' Высокий Приоритет ' ,
' Skip File ' : ' Пропустить Файл ' ,
' Remove ' : ' Удалить ' ,
' Remove with files ' : ' Удалить с файлами ' ,
' Play File ' : ' Проиграть файл ' ,
' Start All Files ' : ' Пуск Всем Файлам ' ,
' Stop All Files ' : ' Стоп Всем Файлам ' ,
' Torrent-client Browser ' : ' Браузер Торрент-клиента ' ,
' Remote Torrent-client ' : ' Удаленный торрент-клиент ' ,
' You didn \' t set up replacement path in setting. ' : ' Вы не настроили замены путей. ' ,
' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' : ' Например /media/dl_torr/ на smb://SERVER/dl_torr/. Настроить? ' ,
' Manual Torrent-client Path Edit ' : ' Вручную изменить папку торрент-клиента по-умолчанию ' ,
' Choose .torrent in video library ' : ' Выберите .torrent в видеобиблиотеке ' ,
' .torrent Player ' : ' .torrent Проигрыватель ' ,
' Choose directory: ' : ' Выберите папку: ' ,
' Starting download next episode! ' : ' Начинаю скачку следующего эпизода! ' ,
' Choose in torrent-client: ' : ' Выберите раздачу: ' ,
' Search Control Window ' : ' Окно Управления Поиском ' ,
' Magnet-link (magnet:...) ' : ' Magnet-ссылка (magnet:...) ' ,
' Not a magnet-link! ' : ' Н е является magnet-ссылкой' ,
' Magnet-link Player ' : ' Проигрыватель Magnet-Ссылок ' ,
' UNKNOWN STATUS ' : ' Неизвестное состояние ' ,
' Checking preloaded files... ' : ' Проверка файлов... ' ,
' Waiting for website response... ' : ' Ожидание ответа сайта... ' ,
' Search and cache information for: ' : ' Поиск и кэширование информации для: ' ,
2016-12-11 01:13:58 +03:00
' Open Torrent ' : ' Открыть Торрент ' ,
2015-06-25 23:03:00 +03:00
' Torrent list is empty. ' : ' Список раздач пуст. ' ,
' Content Lists ' : ' Списки Медиа ' ,
' Canceled by User ' : ' Отменено пользователем ' ,
' Do you want to search and cache full metadata + arts? ' : ' Хотите автоматически получать мета-данные и арты? ' ,
' This vastly decreases load speed, but you will be asked to download premade bases! ' : ' Это существенно снижает скорость загрузки, но Вам предложат скачать готовые базы! ' ,
' Do you want to preload full metadata? ' : ' Хотите готовую загрузить базу данных? ' ,
' It is highly recommended! ' : ' Настоятельно рекомендовано согласиться! ' ,
' TV Shows ' : ' Сериалы ' ,
' Cartoons ' : ' Мультфильмы ' ,
' Anime ' : ' Аниме ' ,
' Most Recent ' : ' Горячие Новинки ' ,
' Top 250 Movies ' : ' Лучшие 250 фильмов ' ,
' Top All Time ' : ' Лучшее за В С Е ВРЕМЯ ' ,
' by Genre ' : ' по Жанру ' ,
' by Year ' : ' по Году ' ,
' Action ' : ' Боевики ' ,
' Adventure ' : ' Приключения ' ,
' Animation ' : ' Анимация ' ,
' Biography ' : ' Биография ' ,
' Comedy ' : ' Комедии ' ,
' Crime ' : ' Детектив ' ,
' Documentary ' : ' Документальное ' ,
' Drama ' : ' Драмы ' ,
' Family ' : ' Семейное ' ,
' Fantasy ' : ' Фэнтази ' ,
' Film-Noir ' : ' Н у а р ' ,
' History ' : ' Историчекие ' ,
' Horror ' : ' Ужасы ' ,
' Music ' : ' Музыкальные ' ,
' Musical ' : ' Мьюзиклы ' ,
' Mystery ' : ' Мистика ' ,
' Romance ' : ' Мелодрамы ' ,
' Sci-Fi ' : ' Фантастика ' ,
' Short ' : ' Короткометражки ' ,
' Sport ' : ' Спортивные ' ,
' Thriller ' : ' Триллеры ' ,
' War ' : ' Военные ' ,
' Western ' : ' Вестерны ' ,
' [B]by Site[/B] ' : ' [B]по Сайту[/B] ' ,
' Cartoons Series ' : ' Мультсериалы ' ,
' Cartoons Short ' : ' Мультфильмы (короткометражки) ' ,
' Male ' : ' Мужские ' ,
' Female ' : ' Женские ' ,
' Russia & USSR ' : ' Россия + С С С Р ' ,
' Next Page ' : ' Следующая Страница ' ,
' Previous Page ' : ' Предыдущая Страница ' ,
2016-01-25 15:02:11 +03:00
' 3D Movies ' : ' Фильмы 3D ' ,
2015-06-25 23:03:00 +03:00
' Russian Movies ' : ' Отечественные Фильмы ' ,
' Movies ' : ' Зарубежные Фильмы ' ,
2016-01-25 15:02:11 +03:00
' israeli Movies ' : ' израильские фильмы ' ,
' hebdub movies ' : ' Фильмы на иврите ' ,
' High Resolution Movies ' : ' высокое разрешение фильма ' ,
' Movies [Bluray] ' : ' Фильмы [Blu-ray] ' ,
2015-06-25 23:03:00 +03:00
' Anime Film ' : ' Полнометражное Аниме ' ,
' Anime Series ' : ' Аниме Сериалы ' ,
' Can \' t download torrent, probably no seeds available. ' : ' Н е могу скачать торрент, скорее всего нет доступных сидов.' ,
' Personal List ' : ' Личный Список ' ,
' Add to %s ' : ' Добавить в %s ' ,
' Delete from %s ' : ' Удалить из %s ' ,
' Added! ' : ' Добавлено ' ,
' Deleted! ' : ' Удалено! ' ,
' Search History ' : ' История Поиска ' ,
2015-12-24 20:17:39 +03:00
' History ' : ' История ' ,
' Torrent History ' : ' История Торрентов ' ,
' Watched History ' : ' История Просмотров ' ,
2015-06-25 23:03:00 +03:00
' Favourites ' : ' Избранное ' ,
' Favourites SH ' : ' Избранное ИП ' ,
' Clear %s ' : ' Очистить %s ' ,
' Clear! ' : ' Очищено! ' ,
2015-12-17 21:43:45 +03:00
' kb/s ' : ' КБ/с ' ,
2015-06-25 23:03:00 +03:00
' Queued ' : ' В очереди' ,
' Checking ' : ' Проверка ' ,
' Downloading metadata ' : ' Скачивание мета-данных ' ,
' Downloading ' : ' Скачивание ' ,
' Finished ' : ' Окончено ' ,
' Seeding ' : ' Раздача (сидирование) ' ,
' Allocating ' : ' Allocating ' ,
' Allocating file & Checking resume ' : ' Allocating file & Checking resume ' ,
' For Kids ' : ' Детское ' ,
' Adult ' : ' Эротика ' ,
' Does not support magnet links! ' : ' Н е поддерживает магнит-ссылки!' ,
' Reset All Cache DBs ' : ' Сбросить Базы Данных ' ,
' [B]Search[/B] ' : ' [B]Поиск[/B] ' ,
' You can always restart this by deleting DBs via Context Menu ' : ' Вы всегда можете перезапустить этот процесс через Контекстное Меню ' ,
' Your preloaded databases are outdated! ' : ' Ваши предзакаченные базы метаданных устарели! ' ,
' Do you want to download new ones right now? ' : ' Хотите прямо сейчас скачать новые? ' ,
' Individual Tracker Options ' : ' Выбор Трекеров ' ,
' Downloading and copy subtitles. Please wait. ' : ' Скачиваю и копирую субтитры. Пожалуйста подождите. ' ,
' International Check - First Run ' : ' International Check - Первый запуск ' ,
' Delete Russian stuff? ' : ' Удалить русские трекеры? ' ,
' Save to path ' : ' Сохранить в папку ' ,
' Return Russian stuff ' : ' Вернуть русские трекеры ' ,
' %d files have been returned ' : ' %d файлов возвращено ' ,
' Download via T-client ' : ' Скачать Т о р р -клиентом ' ,
' Download via Libtorrent ' : ' Скачать Libtorrent \' ом ' ,
' Download Status ' : ' Статус Загрузки ' ,
' Download has not finished yet ' : ' Загрука не завершена ' ,
2015-06-28 18:14:36 +03:00
' Stopped and Deleted! ' : ' Загрузка остановлена и удалена! ' ,
2015-06-25 23:03:00 +03:00
' Unpaused! ' : ' Возобновлено! ' ,
' Paused! ' : ' Приостановлено! ' ,
' Stopped! ' : ' Остановлено! ' ,
' Started! ' : ' Начинается загрузка! ' ,
' Delete and Stop ' : ' Удалить и Остановить ' ,
' Unpause ' : ' Возобновить ' ,
' Pause ' : ' Пауза ' ,
' Delete ' : ' Удалить ' ,
2016-11-21 17:50:17 +03:00
' Open ' : ' Открыть ' ,
2015-06-25 23:03:00 +03:00
' Torrent is seeding. To stop it use Download Status. ' : ' Сидирование. Для остановки используйте Статус Загрузки. ' ,
' Start All ' : ' Запустить В с е ' ,
' Started All! ' : ' В с е Запущены!' ,
' Stopped All! ' : ' В с е Остановлено!' ,
' Stop All ' : ' Остановить В с е ' ,
' Keyboard ' : ' Клавиатура ' ,
' Copy Files in Root ' : ' Скопировать файлы в Корень ' ,
2016-12-09 21:11:23 +03:00
' Copy in Root ' : ' Скопировать в Корень ' ,
2015-06-25 23:03:00 +03:00
' Copied %d files! ' : ' Скопировано %d файлов! ' ,
2016-03-01 19:58:39 +03:00
' Return to %s ' : ' Вернуться в %s ' ,
2015-06-25 23:03:00 +03:00
' Search results: ' : ' Результаты поиска: ' ,
' by Seeders ' : ' по Сидам ' ,
' by Date ' : ' по Дате ' ,
' Sort ' : ' Сортировка ' ,
' Close ' : ' Закрыть окно ' ,
' Views: ' : ' Просм.: ' ,
' Rating: ' : ' Рейтинг: ' ,
' Information not found! ' : ' Информация не найдена! ' ,
' Choose searcher ' : ' Выберите трекер ' ,
2016-02-09 18:54:06 +03:00
' python-libtorrent Not Found ' : ' python-libtorrent не найден ' ,
2015-06-25 23:03:00 +03:00
' Windows has static compiled python-libtorrent included. ' : ' Н а Windows при установке из репозитория к плагину идет python-libtorrent.' ,
' You should install " script.module.libtorrent " from " MyShows.me Kodi Repo " ' : ' Установите " script.module.libtorrent " из " MyShows.me Kodi Repo " ' ,
' Linux x64 has not static compiled python-libtorrent included. ' : ' Н а Linux x64 не смогли собрать статическую python-libtorrent' ,
' You should install it by " sudo apt-get install python-libtorrent " ' : ' Установи коммандой " sudo apt-get install python-libtorrent " ' ,
' Linux has static compiled python-libtorrent included but it didn \' t work. ' : ' Н а Linux x86 есть статическая python-libtorrent, но она очевидно не сработала.' ,
' As far as I know you can compile python-libtorrent for ARMv6-7. ' : ' Н а ARMv6-7 можно скомпилировать python-libtorrent' ,
' You should search for " OneEvil \' s OpenELEC libtorrent " or use Ace Stream. ' : ' Поищи " OneEvil \' s OpenELEC libtorrent " или используй Ace Stream ' ,
' Please use install Ace Stream APK and choose it in Settings. ' : ' Установите Ace Stream APK и выберите плеер в Найстройка плагина ' ,
' It is possible to compile python-libtorrent for Android, but I don \' t know how. ' : ' Вообще скомпилировать python-libtorrent на Android можно, но мы не знаем как. ' ,
' It is possible to compile python-libtorrent for OS X. ' : ' Вообще скомпилировать python-libtorrent на OS X можно. ' ,
' But you would have to do it by yourself, there is some info on github.com. ' : ' Н о придется это тебе делать самому, на гитхабе была инфа' ,
' It is NOT possible to compile python-libtorrent for iOS. ' : ' Под iOS невозможно скомпилировать python-libtorrent ' ,
' But you can use torrent-client control functions. ' : ' Н о все остальные функции кроме прямого стриминга с торрента работают.' ,
2015-07-02 21:47:02 +03:00
' I added custom searchers to Torrenter v2! ' : ' Я добавил внешние серчеры для трекеров в стиле Pulsar! ' ,
2015-07-02 21:46:05 +03:00
' Now you can use your login on trackers or write and install your own searcher! ' : ' Теперь можно использовать свой логин или даже написать и установить свой серчер. ' ,
2015-07-12 16:48:29 +03:00
' Would you like to install %s from " MyShows.me Kodi Repo " in Programs section? ' : ' Хотите установить %s из " MyShows.me Kodi Repo " в Программах? ' ,
2015-07-02 21:46:05 +03:00
' Open installation window? ' : ' Открыть окно установки? ' ,
2015-07-11 12:58:33 +03:00
' Android Support ' : ' Поддержка Android ' ,
' Android has no temprorary folder ' : ' У Android отсутствует стандартная временная папка' ,
' Please specify storage folder in Settings! ' : ' Пожалуйста, укажите папку хранилища файлов! ' ,
2015-07-12 16:14:12 +03:00
' You have no installed or active searchers! More info in Search Control Window! ' : ' У вас нет установленных или активных серчеров. Подробнее в Окне Управления Поиском.' ,
' Please contact DiMartino on kodi.tv forum. We compiled python-libtorrent for Android, ' : ' Свяжитесь с DiMartino на xbmc.ru. Мы собрали python-libtorrent на Android ' ,
' but we need your help with some tests on different processors. ' : ' но нам нужна помощь в тестировании на разные процессоры. ' ,
' We added Android ARM full support to Torrenter v2! ' : ' Мы добавили полную поддержку Android ARM в Torrenter v2! ' ,
2015-07-15 19:14:22 +03:00
' I deleted pre-installed ones, install them in Search Control Window! ' : ' Теперь серчеры нужно устанавливать отдельно в Окне Управления Поиском! ' ,
' Torrenter didn \' t find %s searcher ' : ' Торрентер не нашел серчер трекера %s ' ,
' Torrenter Tracker Install ' : ' Установка трекеров в Torrenter ' ,
2015-07-20 19:31:37 +03:00
' Ask to save ' : ' Спросить о сохранении ' ,
' Would you like to save this file? ' : ' Хотите сохранить данный файл? ' ,
2015-07-26 21:44:46 +03:00
' Your storage path is not writable or not local! Please change it in settings! ' : ' Ваше хранилище не доступно для записи или не локально! Измените в настройках! ' ,
2015-08-06 00:38:19 +03:00
' Upgrade advancedsettings.xml ' : ' Обновление advancedsettings.xml ' ,
' We would like to set some advanced settings for you! ' : ' Нам нужно обновить продвинутые настройки для работы! ' ,
' Do it! ' : ' Скажите " ДА " ! ' ,
' Please, restart Kodi now! ' : ' Теперь перезагрузите Коди, пожалуйста! ' ,
2015-08-09 10:42:22 +03:00
' ./ (Root folder) ' : ' ./ (Корневой каталог) ' ,
2015-12-20 17:57:28 +03:00
' Opening torrent file ' : ' Открытие torrent-файла ' ,
2016-03-07 20:58:43 +03:00
' New player to Torrenter v2 - pyrrent2http! Advantages of Torrent2HTTP but with python-libtorrent library instead of libtorrent-go! ' : ' В Torrenter новый плеер - pyrrent2http! Преимущества Torrent2HTTP, но на библиотеке python-libtorrent вместо libtorrent-go!' ,
2015-12-24 20:17:39 +03:00
' Would you like to try it? ' : ' Хотите е г о попробовать? ' ,
' Torrent2HTTP enabled! Can be changed in Settings. ' : ' Torrent2HTTP включен! Можно изменить в Настройках. ' ,
' Seeking ' : ' Перемотка ' ,
' Would you like to resume from %s ? ' : ' Хотите начать проигрывать с %s ? ' ,
2015-12-25 17:37:37 +03:00
' Seeking is working only with player Torrent2HTTP. ' : ' Перемотка работает только с плеером Torrent2HTTP. ' , \
' Play (from %s ) ' : ' Играть (c %s ) ' ,
' Play (from start) ' : ' Играть (с начала) ' ,
2016-02-09 18:54:06 +03:00
' Edit ' : ' Редактировать ' ,
' Would you like to play next episode? ' : ' Проиграть следующий эпизод? ' ,
2015-12-24 20:17:39 +03:00
2015-06-25 23:03:00 +03:00
} ,
' uk ' : {
' Seeds searching. ' : ' Йде пошук сідів. ' ,
' Please Wait ' : ' Зачекайте ' ,
' Information ' : ' Інформація ' ,
' Torrent downloading is stopped. ' : ' Завантаження торренту зупинено. ' ,
' Search ' : ' Пошук ' ,
' Seeds ' : ' Сіди ' ,
' Peers ' : ' Піри ' ,
' Materials are loading now. ' : ' Йде завантаження матеріалів. ' ,
' Search Phrase ' : ' Фраза для пошуку ' ,
' Magnet-link is converting. ' : ' Йде перетворення магнет-посилання. ' ,
' Error ' : ' Помилка ' ,
' Your library out of date and can \' t save magnet-links. ' : ' Ваша бібліотека застаріла і не може зберігати магнет-посилання. ' ,
' Bookmarks ' : ' Закладки ' ,
' Logout ' : ' Вихід ' ,
' Login ' : ' Вхід ' ,
' Recent Materials ' : ' Свіжі матеріали ' ,
' Register ' : ' Регістрація ' ,
' Bookmark ' : ' Закладка ' ,
' Item successfully added to Bookmarks ' : ' Элемент успішно доданий в закладки ' ,
' Item successfully removed from Bookmarks ' : ' Элемент успішно вилучений из закладок ' ,
' Bookmark not added ' : ' Закладка не додана ' ,
' Bookmark not removed ' : ' Закладка не вилучена ' ,
' Add To Bookmarks ' : ' Додати в закладки ' ,
' Remove From Bookmarks ' : ' Вилучити з закладок ' ,
' Auth ' : ' Авторизація ' ,
' Already logged in ' : ' Користувач вже в системі ' ,
' Input Email (for password recovery): ' : ' Введіть E-mail (для відновлення паролю): ' ,
' Input Email: ' : ' Введіть E-mail: ' ,
' Input Password (6+ symbols): ' : ' Введіть пароль (6+ символів): ' ,
' Input Password: ' : ' Введіть пароль: ' ,
' Login successfull ' : ' Вхід виконаний успішно ' ,
' Login failed ' : ' Вхід не виконаний ' ,
' User not logged in ' : ' Користувач не в системі ' ,
' User successfully logged out ' : ' Користувач успішно залишив систему ' ,
' Preloaded: ' : ' Попередньо завантажено: ' ,
' Do you want to STOP torrent downloading and seeding? ' : ' Ви бажаєте зупинити завантаження і раздачу торренту? ' ,
' Torrent Downloading ' : ' Завантаження торренту ' ,
' Auth expired, please relogin ' : ' Авторизація сплила, будь ласка, увійдіть знову ' ,
' Storage ' : ' Сховище ' ,
2015-08-27 17:17:19 +03:00
' Storage has been cleared ' : ' Сховище очищене ' ,
2015-06-25 23:03:00 +03:00
' Clear Storage ' : ' Очистити сховище ' ,
' Popular ' : ' Популярне ' ,
' Views ' : ' Перегляди ' ,
' Uploading ' : ' Роздача ' ,
' Download ' : ' Завантажити ' ,
' Input symbols from CAPTCHA image: ' : ' Введіть символи з картинки CAPTCHA: ' ,
' Please, rate watched video: ' : ' Будь ласка, оцініть переглянуте відео: ' ,
' Bad ' : ' Погане ' ,
' So-So ' : ' Таке с о б і ... ' ,
' Good ' : ' Добре ' ,
' Ratings ' : ' Оцінки ' ,
' Rating ' : ' Оцінка ' ,
' Retry ' : ' Повторна спроба ' ,
' %d s has left ' : ' Залишилось %d с б р о б ' ,
' File failed to play! Do you want to RETRY and buffer more? ' : ' Помилка відтворення файлу! Бажаєте спробувати знову і завантажити більше? ' ,
' High Priority Files ' : ' Файли високого пріоритету ' ,
' Skip All Files ' : ' Пропустити всі файли ' ,
' Start ' : ' Запустити ' ,
' Stop ' : ' Стоп ' ,
' Play ' : ' Відтворити ' ,
' High Priority ' : ' Високий пріоритет ' ,
' Skip File ' : ' Пропустити файл ' ,
' Remove ' : ' Вилучити ' ,
' Remove with files ' : ' Вилучити з файлами ' ,
' Play File ' : ' Відтворити файл ' ,
' Start All Files ' : ' Запустити всі файли ' ,
' Stop All Files ' : ' Зупинити всі файли ' ,
' Torrent-client Browser ' : ' Браузер торрент-клієнта ' ,
' Remote Torrent-client ' : ' Віддалений торрент-клієнт ' ,
' You didn \' t set up replacement path in setting. ' : ' Вы не налаштували заміну шляху. ' ,
' For example /media/dl_torr/ to smb://SERVER/dl_torr/. Setup now? ' : ' Наприклад, /media/dl_torr/ на smb://SERVER/dl_torr/. Налаштувати? ' ,
' Manual Torrent-client Path Edit ' : ' Змінити вручну каталог торрент-клієнта ' ,
' Choose .torrent in video library ' : ' Виберіть .torrent у відеобібліотеці ' ,
' .torrent Player ' : ' .torrent-програвач ' ,
' Choose directory: ' : ' Виберіть каталог: ' ,
' Starting download next episode! ' : ' Починається завантаження наступного епізоду! ' ,
' Choose in torrent-client: ' : ' Оберіть роздачу: ' ,
' Search Control Window ' : ' Вікно керування пошуком ' ,
' Magnet-link (magnet:...) ' : ' Магнет-посилання (magnet:...) ' ,
' Not a magnet-link! ' : ' Н е є магнет-посиланням' ,
' Magnet-link Player ' : ' Програвач магнет-посилань ' ,
' UNKNOWN STATUS ' : ' Невідомий стан ' ,
' Checking preloaded files... ' : ' Перевірка файлів... ' ,
' Waiting for website response... ' : ' Очікування відповіді сайту... ' ,
' Search and cache information for: ' : ' Пошук і кешування інформації для: ' ,
' Open Torrent ' : ' Відкрити список файлів ' ,
' Torrent list is empty. ' : ' Список роздач порожній. ' ,
' Content Lists ' : ' Списки медіа ' ,
' Canceled by User ' : ' Скасовано користувачем ' ,
' Do you want to search and cache full metadata + arts? ' : ' Бажаєте автоматично отримувати мета-дані та арти? ' ,
' This vastly decreases load speed, but you will be asked to download premade bases! ' : ' Це суттєво знижує швидкість завантаження, але вам буде запропоновано завантажити готові бази! ' ,
' Do you want to preload full metadata? ' : ' Бажаєте завантажити повні мета-дані? ' ,
' It is highly recommended! ' : ' Наполегливо рекомендується погодитись! ' ,
' TV Shows ' : ' Серіали ' ,
' Cartoons ' : ' Мультфільми ' ,
' Anime ' : ' Аніме ' ,
' Most Recent ' : ' Гарячі новинки ' ,
' Top 250 Movies ' : ' Найкращі 250 фільмів ' ,
' Top All Time ' : ' Краще за весь час ' ,
' by Genre ' : ' по Жанру ' ,
' by Year ' : ' по Року ' ,
' Action ' : ' Боєвики ' ,
' Adventure ' : ' Пригоди ' ,
' Animation ' : ' Анімація ' ,
' Biography ' : ' Біографія ' ,
' Comedy ' : ' Комедії ' ,
' Crime ' : ' Детектив ' ,
' Documentary ' : ' Документальне ' ,
' Drama ' : ' Драми ' ,
' Family ' : ' Сімейне ' ,
' Fantasy ' : ' Фентезі ' ,
' Film-Noir ' : ' Н у а р ' ,
' History ' : ' Історичні ' ,
' Horror ' : ' Жахи ' ,
' Music ' : ' Музичні ' ,
' Musical ' : ' М \' юзикли ' ,
' Mystery ' : ' Містика ' ,
' Romance ' : ' Мелодрами ' ,
' Sci-Fi ' : ' Фантастика ' ,
' Short ' : ' Короткометражки ' ,
' Sport ' : ' Спортивні ' ,
' Thriller ' : ' Трилери ' ,
' War ' : ' Військові ' ,
' Western ' : ' Вестерни ' ,
' [B]by Site[/B] ' : ' [B]по Сайту[/B] ' ,
' Cartoons Series ' : ' Мультсеріали ' ,
' Cartoons Short ' : ' Мультфільми (короткометражки) ' ,
' Male ' : ' Чоловічі ' ,
' Female ' : ' Жіночі ' ,
' Russia & USSR ' : ' Росія + С Р С Р ' ,
' Next Page ' : ' Наступна сторінка ' ,
' Previous Page ' : ' Попередня сторінка ' ,
' Russian Movies ' : ' Вітчизняні фільми ' ,
' Movies ' : ' Іноземні фільми ' ,
2016-01-25 15:02:11 +03:00
' 3D Movies ' : ' Фильмы 3D ' ,
' israeli Movies ' : ' израильские фильмы ' ,
' hebdub movies ' : ' Фильмы на иврите ' ,
' High Resolution Movies ' : ' высокое разрешение фильма ' ,
' Movies [Bluray] ' : ' Фильмы [Blu-ray] ' ,
2015-06-25 23:03:00 +03:00
' Anime Film ' : ' Повнометражні аніме ' ,
' Anime Series ' : ' Аніме-серіали ' ,
' Can \' t download torrent, probably no seeds available. ' : ' Н е вдаєть завантажити торрент, мабуть, немає доступних сідів.' ,
' Personal List ' : ' Особистий список ' ,
' Add to %s ' : ' Додати в %s ' ,
' Delete from %s ' : ' Вилучити из %s ' ,
' Added! ' : ' Додано ' ,
' Deleted! ' : ' Вилучено! ' ,
' Search History ' : ' Історія пошуку ' ,
' Favourites ' : ' Вибране ' ,
' Favourites SH ' : ' Вибране SH ' ,
' Clear %s ' : ' Очистити %s ' ,
' Clear! ' : ' Очищено! ' ,
' kb/s ' : ' К б /с ' ,
' Queued ' : ' В черзі' ,
' Checking ' : ' Перевірка ' ,
' Downloading metadata ' : ' Завантаження мета-даних ' ,
' Downloading ' : ' Завантаження ' ,
' Finished ' : ' Завершено ' ,
' Seeding ' : ' Роздача (сідування) ' ,
' Allocating ' : ' Виділення ' ,
' Allocating file & Checking resume ' : ' Виділення файлу і перевірка резюме ' ,
' For Kids ' : ' Дитяче ' ,
' Adult ' : ' Еротика ' ,
' Does not support magnet links! ' : ' Н е підтримує магнет-посилання!' ,
' Reset All Cache DBs ' : ' Зкинути у с і закешовані бази ' ,
' [B]Search[/B] ' : ' [B]Пошук[/B] ' ,
' You can always restart this by deleting DBs via Context Menu ' : ' Ви завжди можете перезапустити, вилучивши бази через контекстне меню ' ,
' Your preloaded databases are outdated! ' : ' Ваші завантажені бази мета-даних застаріли! ' ,
' Do you want to download new ones right now? ' : ' Бажаєте завантажити нові прямо зараз? ' ,
' Individual Tracker Options ' : ' Вибір трекерів ' ,
' Downloading and copy subtitles. Please wait. ' : ' Завантаження та копіювання субтитрів. Будь ласка, зачекайте. ' ,
' International Check - First Run ' : ' Міжнародна перевірка - перший запуск ' ,
' Delete Russian stuff? ' : ' Вилучити російські трекери? ' ,
' Save to path ' : ' Зберегти в каталог ' ,
' Return Russian stuff ' : ' Повернути російські трекери ' ,
' %d files have been returned ' : ' %d файлів повернуто ' ,
' Download via T-client ' : ' Завантажити торрент-клієнтом ' ,
' Download via Libtorrent ' : ' Завантажити Libtorrent \' ом ' ,
' Download Status ' : ' Статус завантаження ' ,
' Download has not finished yet ' : ' Завантаження не завершене ' ,
2015-06-28 18:14:36 +03:00
' Stopped and Deleted! ' : ' Зупинено та Вилучено! ' ,
2015-06-25 23:03:00 +03:00
' Unpaused! ' : ' Відновлено! ' ,
' Paused! ' : ' Призупинено! ' ,
' Stopped! ' : ' Зупинено! ' ,
' Started! ' : ' Запущено! ' ,
' Delete and Stop ' : ' Вилучити та зупинити ' ,
' Unpause ' : ' Відновити ' ,
' Pause ' : ' Пауза ' ,
' Delete ' : ' Видалити ' ,
2016-11-21 17:50:17 +03:00
' Open ' : ' Відкрити ' ,
2015-06-25 23:03:00 +03:00
' Torrent is seeding. To stop it use Download Status. ' : ' Сідування. Для зупинки використовуйте Статус завантаження. ' ,
' Start All ' : ' Запустити все ' ,
' Started All! ' : ' В с е запущене!' ,
' Stopped All! ' : ' В с е зупинене!' ,
' Stop All ' : ' Зупинити все ' ,
' Keyboard ' : ' Клавіатура ' ,
' Copy Files in Root ' : ' Зкопіювати файли в корінь ' ,
' Copied %d files! ' : ' Зкопійовано %d файлів! ' ,
2016-03-01 19:58:39 +03:00
' Return to %s ' : ' Повернутись в %s ' ,
2015-06-25 23:03:00 +03:00
' Search results: ' : ' Результати пошуку: ' ,
' by Seeders ' : ' по сідам ' ,
' by Date ' : ' по даті ' ,
' Sort ' : ' сортування ' ,
' Close ' : ' Закрити вікно ' ,
' Views: ' : ' Перегляди.: ' ,
' Rating: ' : ' Рейтинг: ' ,
' Information not found! ' : ' Інформація не знайдена! ' ,
' Choose searcher ' : ' Оберіть трекер ' ,
2016-02-09 18:54:06 +03:00
' python-libtorrent Not Found ' : ' python-libtorrent не знайдено ' ,
2015-06-25 23:03:00 +03:00
' Windows has static compiled python-libtorrent included. ' : ' Н а Windows при встановленні з репозиторію разом з плагіном йде python-libtorrent.' ,
' You should install " script.module.libtorrent " from " MyShows.me Kodi Repo " ' : ' Встановіть " script.module.libtorrent " з " MyShows.me Kodi Repo " ' ,
' Linux x64 has not static compiled python-libtorrent included. ' : ' Н а Linux x64 не змогли зібрати статичну версію python-libtorrent' ,
' You should install it by " sudo apt-get install python-libtorrent " ' : ' Встановіть командою " sudo apt-get install python-libtorrent " ' ,
' Linux has static compiled python-libtorrent included but it didn \' t work. ' : ' Н а Linux x86 є статична версія python-libtorrent, але вона не спрацювала.' ,
' As far as I know you can compile python-libtorrent for ARMv6-7. ' : ' Н а ARMv6-7 можно скомпілювати python-libtorrent' ,
' You should search for " OneEvil \' s OpenELEC libtorrent " or use Ace Stream. ' : ' Пошукайте " OneEvil \' s OpenELEC libtorrent " а б о використовуйте Ace Stream ' ,
' Please use install Ace Stream APK and choose it in Settings. ' : ' Встановіть Ace Stream APK і оберіть плеєр в Налаштуваннях ' ,
' It is possible to compile python-libtorrent for Android, but I don \' t know how. ' : ' Скомпілювати python-libtorrent на Android можливо, але ми не знаємо як. ' ,
' It is possible to compile python-libtorrent for OS X. ' : ' Скомпілювати python-libtorrent на OS X можливо. ' ,
' But you would have to do it by yourself, there is some info on github.com. ' : ' Але це доведеться робити самому, на гітхабі була інформація ' ,
' It is NOT possible to compile python-libtorrent for iOS. ' : ' Під iOS неможливо скомпілювати python-libtorrent ' ,
' But you can use torrent-client control functions. ' : ' Але всі решта функцій, крім прямого стрімінгу, працюють. ' ,
}
}
2015-01-09 14:11:21 +03:00
try :
return dictionary [ language ] [ text ]
except :
2015-06-28 13:25:15 +03:00
if language == ' uk ' :
try :
return dictionary [ ' ru ' ] [ text ]
except :
return text
else :
return text