Merge pull request #1540 from croneter/python3-beta
Bump python3 master
This commit is contained in:
commit
cc543d4af3
30 changed files with 363 additions and 7 deletions
17
addon.xml
17
addon.xml
|
@ -1,11 +1,11 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="3.3.0" provider-name="croneter">
|
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="3.3.2" provider-name="croneter">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="3.0.0"/>
|
<import addon="xbmc.python" version="3.0.0"/>
|
||||||
<import addon="script.module.requests" version="2.22.0+matrix.1" />
|
<import addon="script.module.requests" version="2.22.0+matrix.1" />
|
||||||
<import addon="script.module.defusedxml" version="0.6.0+matrix.1"/>
|
<import addon="script.module.defusedxml" version="0.6.0+matrix.1"/>
|
||||||
<import addon="plugin.video.plexkodiconnect.movies" version="3.0.0" />
|
<import addon="plugin.video.plexkodiconnect.movies" version="3.0.1" />
|
||||||
<import addon="plugin.video.plexkodiconnect.tvshows" version="3.0.0" />
|
<import addon="plugin.video.plexkodiconnect.tvshows" version="3.0.1" />
|
||||||
<import addon="metadata.themoviedb.org.python" version="1.3.1+matrix.1" />
|
<import addon="metadata.themoviedb.org.python" version="1.3.1+matrix.1" />
|
||||||
</requires>
|
</requires>
|
||||||
<extension point="xbmc.python.pluginsource" library="default.py">
|
<extension point="xbmc.python.pluginsource" library="default.py">
|
||||||
|
@ -92,7 +92,16 @@
|
||||||
<summary lang="ko_KR">Plex를 Kodi에 기본 통합</summary>
|
<summary lang="ko_KR">Plex를 Kodi에 기본 통합</summary>
|
||||||
<description lang="ko_KR">Kodi를 Plex Media Server에 연결합니다. 이 플러그인은 Plex로 모든 비디오를 관리하고 Kodi로는 관리하지 않는다고 가정합니다. Kodi 비디오 및 음악 데이터베이스에 이미 저장된 데이터가 손실 될 수 있습니다 (이 플러그인이 직접 변경하므로). 자신의 책임하에 사용하십시오!</description>
|
<description lang="ko_KR">Kodi를 Plex Media Server에 연결합니다. 이 플러그인은 Plex로 모든 비디오를 관리하고 Kodi로는 관리하지 않는다고 가정합니다. Kodi 비디오 및 음악 데이터베이스에 이미 저장된 데이터가 손실 될 수 있습니다 (이 플러그인이 직접 변경하므로). 자신의 책임하에 사용하십시오!</description>
|
||||||
<disclaimer lang="ko_KR">자신의 책임하에 사용</disclaimer>
|
<disclaimer lang="ko_KR">자신의 책임하에 사용</disclaimer>
|
||||||
<news>version 3.3.0:
|
<news>version 3.3.2:
|
||||||
|
- version 3.3.1 for everyone
|
||||||
|
|
||||||
|
version 3.3.1 (beta only):
|
||||||
|
- Add an additional Plex Hub "PKC Continue Watching" that merges the Plex Continue Watching with On Deck
|
||||||
|
- Fix auto-picking of video stream if several video versions are available
|
||||||
|
- Make PKC compatible with Kodi 20 N* by using xbmcvfs for translatePath
|
||||||
|
- Update translations
|
||||||
|
|
||||||
|
version 3.3.0:
|
||||||
WARNING: Database reset and full resync required
|
WARNING: Database reset and full resync required
|
||||||
- versions 3.2.1-3.2.4 for everyone
|
- versions 3.2.1-3.2.4 for everyone
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
version 3.3.2:
|
||||||
|
- version 3.3.1 for everyone
|
||||||
|
|
||||||
|
version 3.3.1 (beta only):
|
||||||
|
- Add an additional Plex Hub "PKC Continue Watching" that merges the Plex Continue Watching with On Deck
|
||||||
|
- Fix auto-picking of video stream if several video versions are available
|
||||||
|
- Make PKC compatible with Kodi 20 N* by using xbmcvfs for translatePath
|
||||||
|
- Update translations
|
||||||
|
|
||||||
version 3.3.0:
|
version 3.3.0:
|
||||||
WARNING: Database reset and full resync required
|
WARNING: Database reset and full resync required
|
||||||
- versions 3.2.1-3.2.4 for everyone
|
- versions 3.2.1-3.2.4 for everyone
|
||||||
|
|
|
@ -168,6 +168,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Stahování obrázků PKC dokončeno"
|
msgstr "Stahování obrázků PKC dokončeno"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Číslo portu"
|
msgstr "Číslo portu"
|
||||||
|
@ -1165,6 +1173,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Seriály"
|
msgstr "Seriály"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -168,6 +168,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC billede caching er færdiggjort"
|
msgstr "PKC billede caching er færdiggjort"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Portnummer"
|
msgstr "Portnummer"
|
||||||
|
@ -1168,6 +1176,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV-udsendelser"
|
msgstr "TV-udsendelser"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -170,6 +170,17 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC Bilder-Caching beendet"
|
msgstr "PKC Bilder-Caching beendet"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
"Um ein reibungsloses PlexKodiConnect-Erlebnis zu gewährleisten, wird "
|
||||||
|
"DRINGEND empfohlen, für die Ersteinrichtung und für mögliche Datenbank-"
|
||||||
|
"Resets den Standard-Skin \"Estuary\" von Kodi zu verwenden. Weiterfahren?"
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Portnummer"
|
msgstr "Portnummer"
|
||||||
|
@ -1186,6 +1197,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Serien"
|
msgstr "Serien"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr "Zugriff auf Mediendateien während der Synchronisierung überprüfen"
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -164,6 +164,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Αριθμός θύρας"
|
msgstr "Αριθμός θύρας"
|
||||||
|
@ -1128,6 +1136,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -665,6 +665,11 @@ msgctxt "#30545"
|
||||||
msgid "Force transcode pictures"
|
msgid "Force transcode pictures"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# PKC Settings - Playback
|
||||||
|
msgctxt "#30546"
|
||||||
|
msgid "Pick the first video if several versions are present"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Welcome to Plex notification
|
# Welcome to Plex notification
|
||||||
msgctxt "#33000"
|
msgctxt "#33000"
|
||||||
msgid "Welcome"
|
msgid "Welcome"
|
||||||
|
|
|
@ -171,6 +171,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "El caché de imágenes solo-PKC fue completado"
|
msgstr "El caché de imágenes solo-PKC fue completado"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Número de puerto"
|
msgstr "Número de puerto"
|
||||||
|
@ -1181,6 +1189,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Series"
|
msgstr "Series"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -173,6 +173,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "El caché de imágenes solo-PKC fue completado"
|
msgstr "El caché de imágenes solo-PKC fue completado"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Número de puerto"
|
msgstr "Número de puerto"
|
||||||
|
@ -1183,6 +1191,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Series"
|
msgstr "Series"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -171,6 +171,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "El caché de imágenes solo-PKC fue completado"
|
msgstr "El caché de imágenes solo-PKC fue completado"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Número de puerto"
|
msgstr "Número de puerto"
|
||||||
|
@ -1181,6 +1189,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Series"
|
msgstr "Series"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -172,6 +172,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Mise en cache de images pour PKC-seulement terminée"
|
msgstr "Mise en cache de images pour PKC-seulement terminée"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Numéro de port"
|
msgstr "Numéro de port"
|
||||||
|
@ -1195,6 +1203,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Séries TV"
|
msgstr "Séries TV"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -176,6 +176,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Mise en cache de images pour PKC-seulement terminée"
|
msgstr "Mise en cache de images pour PKC-seulement terminée"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Numéro de port"
|
msgstr "Numéro de port"
|
||||||
|
@ -1199,6 +1207,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Séries TV"
|
msgstr "Séries TV"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -173,6 +173,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC képek gyorsítótárazása befejeződött"
|
msgstr "PKC képek gyorsítótárazása befejeződött"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Portszám"
|
msgstr "Portszám"
|
||||||
|
@ -1189,6 +1197,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV sorozatok"
|
msgstr "TV sorozatok"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -171,6 +171,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Cache delle immagini di PKC completato"
|
msgstr "Cache delle immagini di PKC completato"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Porta"
|
msgstr "Porta"
|
||||||
|
@ -1184,6 +1192,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Serie TV"
|
msgstr "Serie TV"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# yun changwon <ycw98@hanmail.net>, 2020
|
# yun changwon <ycw98@hanmail.net>, 2020
|
||||||
# k irbymaker <hun010811@naver.com>, 2020
|
# k irbymaker <hun010811@naver.com>, 2020
|
||||||
# Croneter None <croneter@gmail.com>, 2021
|
# Croneter None <croneter@gmail.com>, 2021
|
||||||
# jaemin kwak <cjhamo@naver.com>, 2021
|
# so.o.bima <cjhamo@naver.com>, 2021
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -14,7 +14,7 @@ msgstr ""
|
||||||
"Report-Msgid-Bugs-To: croneter@gmail.com\n"
|
"Report-Msgid-Bugs-To: croneter@gmail.com\n"
|
||||||
"POT-Creation-Date: 2017-04-15 13:13+0000\n"
|
"POT-Creation-Date: 2017-04-15 13:13+0000\n"
|
||||||
"PO-Revision-Date: 2017-04-30 08:30+0000\n"
|
"PO-Revision-Date: 2017-04-30 08:30+0000\n"
|
||||||
"Last-Translator: jaemin kwak <cjhamo@naver.com>, 2021\n"
|
"Last-Translator: so.o.bima <cjhamo@naver.com>, 2021\n"
|
||||||
"Language-Team: Korean (Korea) (https://www.transifex.com/croneter/teams/73837/ko_KR/)\n"
|
"Language-Team: Korean (Korea) (https://www.transifex.com/croneter/teams/73837/ko_KR/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -174,6 +174,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC 전용 이미지 캐싱 완료"
|
msgstr "PKC 전용 이미지 캐싱 완료"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "포트 번호"
|
msgstr "포트 번호"
|
||||||
|
@ -1148,6 +1156,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV 프로그램"
|
msgstr "TV 프로그램"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -171,6 +171,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "„PKC“-baigtas tik atvaizdžių podėliavimas"
|
msgstr "„PKC“-baigtas tik atvaizdžių podėliavimas"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Prievado numeris"
|
msgstr "Prievado numeris"
|
||||||
|
@ -1177,6 +1185,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV Laidos"
|
msgstr "TV Laidos"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -166,6 +166,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Tikai-PKC attēlu kešošana pabeigta"
|
msgstr "Tikai-PKC attēlu kešošana pabeigta"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Porta Numurs"
|
msgstr "Porta Numurs"
|
||||||
|
@ -1159,6 +1167,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Seriāli"
|
msgstr "Seriāli"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -170,6 +170,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC afbeelding caching voltooid"
|
msgstr "PKC afbeelding caching voltooid"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Poortnummer"
|
msgstr "Poortnummer"
|
||||||
|
@ -1171,6 +1179,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV series"
|
msgstr "TV series"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -172,6 +172,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "PKC mellomlagring av bilder gjennomført"
|
msgstr "PKC mellomlagring av bilder gjennomført"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Portnummer"
|
msgstr "Portnummer"
|
||||||
|
@ -1164,6 +1172,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV-show"
|
msgstr "TV-show"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -170,6 +170,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Numer portu"
|
msgstr "Numer portu"
|
||||||
|
@ -1133,6 +1141,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -169,6 +169,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Armazenamento PKC somente imagens finalizado"
|
msgstr "Armazenamento PKC somente imagens finalizado"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Número da Porta"
|
msgstr "Número da Porta"
|
||||||
|
@ -1160,6 +1168,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Programas de TV"
|
msgstr "Programas de TV"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -170,6 +170,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Número da Porta"
|
msgstr "Número da Porta"
|
||||||
|
@ -1163,6 +1171,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Programas de TV"
|
msgstr "Programas de TV"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -173,6 +173,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Кеширование изображений PKC завершено"
|
msgstr "Кеширование изображений PKC завершено"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Порт"
|
msgstr "Порт"
|
||||||
|
@ -1176,6 +1184,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Сериалы"
|
msgstr "Сериалы"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -173,6 +173,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Cachelagring av PKC-bilder färdig"
|
msgstr "Cachelagring av PKC-bilder färdig"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Portnummer"
|
msgstr "Portnummer"
|
||||||
|
@ -1171,6 +1179,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "TV-Serier"
|
msgstr "TV-Serier"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -167,6 +167,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr "Кешування зображень PKC завершено"
|
msgstr "Кешування зображень PKC завершено"
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "Номер порту"
|
msgstr "Номер порту"
|
||||||
|
@ -1173,6 +1181,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "Серіали"
|
msgstr "Серіали"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -166,6 +166,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "端口号"
|
msgstr "端口号"
|
||||||
|
@ -1129,6 +1137,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "电视节目"
|
msgstr "电视节目"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -164,6 +164,14 @@ msgctxt "#30028"
|
||||||
msgid "PKC-only image caching completed"
|
msgid "PKC-only image caching completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Warning shown when PKC switches to the Kodi default skin Estuary
|
||||||
|
msgctxt "#30029"
|
||||||
|
msgid ""
|
||||||
|
"To ensure a smooth PlexKodiConnect experience, it is HIGHLY recommended to "
|
||||||
|
"use Kodi's default skin \"Estuary\" for initial set-up and for possible "
|
||||||
|
"database resets. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30030"
|
msgctxt "#30030"
|
||||||
msgid "Port Number"
|
msgid "Port Number"
|
||||||
msgstr "埠號"
|
msgstr "埠號"
|
||||||
|
@ -1125,6 +1133,11 @@ msgctxt "#39074"
|
||||||
msgid "TV Shows"
|
msgid "TV Shows"
|
||||||
msgstr "電視節目"
|
msgstr "電視節目"
|
||||||
|
|
||||||
|
# PKC Settings - Sync
|
||||||
|
msgctxt "#39075"
|
||||||
|
msgid "Verify access to media files while synching"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
# Pop-up during initial sync
|
# Pop-up during initial sync
|
||||||
msgctxt "#39076"
|
msgctxt "#39076"
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
@ -6,6 +6,7 @@ e.g. plugin://... calls. Hence be careful to only rely on window variables.
|
||||||
"""
|
"""
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
import sys
|
import sys
|
||||||
|
import copy
|
||||||
|
|
||||||
import xbmc
|
import xbmc
|
||||||
import xbmcplugin
|
import xbmcplugin
|
||||||
|
@ -416,6 +417,7 @@ def hub(content_type):
|
||||||
# We need to make sure that only entries that WORK are displayed
|
# We need to make sure that only entries that WORK are displayed
|
||||||
# WARNING: using xml.remove(child) in for-loop requires traversing from
|
# WARNING: using xml.remove(child) in for-loop requires traversing from
|
||||||
# the end!
|
# the end!
|
||||||
|
pkc_cont_watching = None
|
||||||
for entry in reversed(xml):
|
for entry in reversed(xml):
|
||||||
api = API(entry)
|
api = API(entry)
|
||||||
append = False
|
append = False
|
||||||
|
@ -432,6 +434,21 @@ def hub(content_type):
|
||||||
append = True
|
append = True
|
||||||
if not append:
|
if not append:
|
||||||
xml.remove(entry)
|
xml.remove(entry)
|
||||||
|
|
||||||
|
# HACK ##################
|
||||||
|
# Merge Plex's "Continue watching" with "On deck"
|
||||||
|
if entry.get('key') == '/hubs/home/continueWatching':
|
||||||
|
pkc_cont_watching = copy.deepcopy(entry)
|
||||||
|
pkc_cont_watching.set('key', '/hubs/continueWatching')
|
||||||
|
title = pkc_cont_watching.get('title') or 'Continue Watching'
|
||||||
|
pkc_cont_watching.set('title', 'PKC %s' % title)
|
||||||
|
if pkc_cont_watching:
|
||||||
|
for i, entry in enumerate(xml):
|
||||||
|
if entry.get('key') == '/hubs/home/continueWatching':
|
||||||
|
xml.insert(i + 1, pkc_cont_watching)
|
||||||
|
break
|
||||||
|
# END HACK ##################
|
||||||
|
|
||||||
show_listing(xml)
|
show_listing(xml)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -205,7 +205,7 @@ class Media(object):
|
||||||
count += 1
|
count += 1
|
||||||
if (count > 1 and (
|
if (count > 1 and (
|
||||||
(self.plex_type != v.PLEX_TYPE_CLIP and
|
(self.plex_type != v.PLEX_TYPE_CLIP and
|
||||||
utils.settings('bestQuality') == 'false')
|
utils.settings('firstVideoStream') == 'false')
|
||||||
or
|
or
|
||||||
(self.plex_type == v.PLEX_TYPE_CLIP and
|
(self.plex_type == v.PLEX_TYPE_CLIP and
|
||||||
utils.settings('bestTrailer') == 'false'))):
|
utils.settings('bestTrailer') == 'false'))):
|
||||||
|
|
|
@ -114,6 +114,7 @@
|
||||||
<setting id="askCinema" type="bool" label="30519" default="false" visible="eq(-1,true)" subsetting="true" />
|
<setting id="askCinema" type="bool" label="30519" default="false" visible="eq(-1,true)" subsetting="true" />
|
||||||
<setting id="trailerNumber" type="slider" label="39000" default="3" visible="eq(-2,true)" range="1,1,15" option="int" />
|
<setting id="trailerNumber" type="slider" label="39000" default="3" visible="eq(-2,true)" range="1,1,15" option="int" />
|
||||||
<setting id="enableSkipIntro" type="bool" label="30525" default="true" /><!-- Enable skipping of intros -->
|
<setting id="enableSkipIntro" type="bool" label="30525" default="true" /><!-- Enable skipping of intros -->
|
||||||
|
<setting id="firstVideoStream" type="bool" label="30546" default="false" /><!-- Pick the first video if several versions are present -->
|
||||||
<setting id="ignoreSpecialsNextEpisodes" type="bool" label="30527" default="false" />
|
<setting id="ignoreSpecialsNextEpisodes" type="bool" label="30527" default="false" />
|
||||||
<setting id="resumeJumpBack" type="slider" label="30521" default="10" range="0,1,120" option="int" visible="false"/>
|
<setting id="resumeJumpBack" type="slider" label="30521" default="10" range="0,1,120" option="int" visible="false"/>
|
||||||
<setting type="sep" />
|
<setting type="sep" />
|
||||||
|
|
Loading…
Reference in a new issue