diff --git a/locale/default/translations.ts b/locale/default/translations.ts index 82f9c282..030625ae 100644 --- a/locale/default/translations.ts +++ b/locale/default/translations.ts @@ -301,4 +301,16 @@ Menu option for showing Live TV Guide / Schedule + + + + Message displayed in Item Grid when no item to display. %1 is container type (e.g. Boxset, Collection, Folder, etc) + NO_ITEMS + This %1 contains no items + + + Add User + Add User + + diff --git a/locale/it_IT/translations.ts b/locale/it_IT/translations.ts index dc392c43..eddeca56 100644 --- a/locale/it_IT/translations.ts +++ b/locale/it_IT/translations.ts @@ -269,5 +269,202 @@ Si è verificato un errore durante la riproduzione di questo elemento. Dialog detail when error occurs during playback + + TV Guide + Guida TV + Menu option for showing Live TV Guide / Schedule + + + Channels + Canali + Menu option for showing Live TV Channel List + + + Repeat + Ripeti + If TV Shows has previously been broadcasted + + + Live + Dal vivo + If TV Show is being broadcast live (not pre-recorded) + + + Ends at + Terminato + (Past Tense) For defining a day and time when a program ended (e.g. Ended Wednesday, 08:00) + + + Ended at + Terminato alle + (Past Tense) For defining time when a program will ended (e.g. Ended at 08:00) + + + Starts + Inizierà + (Future Tense) For defining a day and time when a program will start (e.g. Starts Wednesday, 08:00) + + + Starts at + Inizierà alle + (Future Tense) For defining time when a program will start today (e.g. Starts at 08:00) + + + Started + Iniziato + (Past Tense) For defining a day and time when a program started (e.g. Started Wednesday, 08:00) + + + Started at + Iniziato alle + (Past Tense) For defining time when a program started today (e.g. Started at 08:00) + + + Saturday + Sabato + Day of Week + + + Friday + Venerdì + Day of Week + + + Thursday + Giovedì + Day of Week + + + Wednesday + Mercoledì + Day of Week + + + Tuesday + Martedì + Day of Week + + + Monday + Lunedì + Day of Week + + + Sunday + Domenica + Day of Week + + + tomorrow + domani + Next day + + + yesterday + ieri + Previous day + + + today + oggi + Current day + + + Title of Tab for options to filter library content + TAB_FILTER + Filtra + + + Title of Tab for options to sort library content + TAB_SORT + Ordina + + + Title of Tab for switching "views" when looking at a library + TAB_VIEW + Vista + + + RUNTIME + Tempo trascorso + + + RELEASE_DATE + Data di rilascio + + + PLAY_COUNT + Numero di riproduzioni + + + OFFICIAL_RATING + Valutazione parentale + + + DATE_PLAYED + Data di riproduzione + + + DATE_ADDED + Data di aggiunta + + + CRITIC_RATING + Valutazione critica + + + IMDB_RATING + Valutazione IMDb + + + Name or Title field of media item + TITLE + Nome + + + Message displayed in Item Grid when no item to display. %1 is container type (e.g. Boxset, Collection, Folder, etc) + NO_ITEMS + Questo %1 non contiene elementi + + + Unable to load Channel Data from the server + Impossibile ottenere dati del canale dal server + + + Error loading Channel Data + Errore nel caricamento dei dati del canale + + + Loading Channel Data + Caricamento dati del canale + + + An error was encountered while playing this item. + C'è stato un errore nella riproduzione di questo elemento. + Dialog detail when error occurs during playback + + + There was an error retrieving the data for this item from the server. + C'è stato un errore nell'ottenimento di informazioni dal sever per questo elemento. + Dialog detail when unable to load Content from Server + + + Error During Playback + Errore durante la riproduzione + Dialog title when error occurs during playback + + + Error Retrieving Content + Errore nell'ottenimento del contenuto + Dialog title when unable to load Content from Server + + + Sign Out + Esci + + + Change Server + Cambia Server + diff --git a/source/VideoPlayer.brs b/source/VideoPlayer.brs index f77acedd..9ac12cf6 100644 --- a/source/VideoPlayer.brs +++ b/source/VideoPlayer.brs @@ -198,7 +198,7 @@ function sortSubtitles(id as string, MediaStreams) 'Documentation lists that srt, ttml, and dfxp can be sideloaded but only srt was working in my testing, 'forcing srt for all text subtitles url = Substitute("{0}/Videos/{1}/{2}/Subtitles/{3}/0/", get_url(), dashedid, id, stream.index.tostr()) - url = url + Substitute("Stream.js?api_key={0}&format=srt", get_setting("active_user")) + url = url + Substitute("Stream.srt?api_key={0}", get_setting("active_user")) stream = { "Track": { "Language" : stream.language, "Description": stream.displaytitle , "TrackName": url }, "IsTextSubtitleStream": stream.IsTextSubtitleStream,