mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Merge pull request #2641 from Teekeks/year-review-translation
feat(i18n): made "Year in Review" UI elements translatable and added german translation for those
This commit is contained in:
		
						commit
						d8b9f08e5a
					
				| @ -7,9 +7,10 @@ | |||||||
|     </div> |     </div> | ||||||
| 
 | 
 | ||||||
|     <div class="flex items-center"> |     <div class="flex items-center"> | ||||||
|       <p class="hidden md:block text-xl font-semibold">{{ yearInReviewYear }} Year in Review</p> |       <p class="hidden md:block text-xl font-semibold">{{ $getString('HeaderYearReview', [yearInReviewYear]) }}</p> | ||||||
|       <div class="hidden md:block flex-grow" /> |       <div class="hidden md:block flex-grow" /> | ||||||
|       <ui-btn class="w-full md:w-auto" @click.stop="clickShowYearInReview">{{ showYearInReview ? 'Hide Year in Review' : 'See Year in Review' }}</ui-btn> |       <ui-btn class="w-full md:w-auto" @click.stop="clickShowYearInReview">{{ showYearInReview ? $strings.LabelYearReviewHide : | ||||||
|  |         $strings.LabelYearReviewShow }}</ui-btn> | ||||||
|     </div> |     </div> | ||||||
| 
 | 
 | ||||||
|     <!-- your year in review --> |     <!-- your year in review --> | ||||||
| @ -20,24 +21,27 @@ | |||||||
|         <!-- previous button --> |         <!-- previous button --> | ||||||
|         <ui-btn small :disabled="!yearInReviewVariant || processingYearInReview" class="inline-flex items-center font-semibold" @click="yearInReviewVariant--"> |         <ui-btn small :disabled="!yearInReviewVariant || processingYearInReview" class="inline-flex items-center font-semibold" @click="yearInReviewVariant--"> | ||||||
|           <span class="material-icons text-lg sm:pr-1 py-px sm:py-0">chevron_left</span> |           <span class="material-icons text-lg sm:pr-1 py-px sm:py-0">chevron_left</span> | ||||||
|           <span class="hidden sm:inline-block pr-2">Previous</span> |           <span class="hidden sm:inline-block pr-2">{{ $strings.ButtonPrevious }}</span> | ||||||
|         </ui-btn> |         </ui-btn> | ||||||
|         <!-- share button --> |         <!-- share button --> | ||||||
|         <ui-btn v-if="showShareButton" small :disabled="processingYearInReview" class="inline-flex sm:hidden items-center font-semibold ml-1 sm:ml-2" @click="shareYearInReview"> Share </ui-btn> |         <ui-btn v-if="showShareButton" small :disabled="processingYearInReview" class="inline-flex sm:hidden items-center font-semibold ml-1 sm:ml-2" @click="shareYearInReview">{{ | ||||||
|  |           $strings.ButtonShare }} | ||||||
|  |         </ui-btn> | ||||||
| 
 | 
 | ||||||
|         <div class="flex-grow" /> |         <div class="flex-grow" /> | ||||||
|         <p class="hidden sm:block text-lg font-semibold">Your Year in Review ({{ yearInReviewVariant + 1 }})</p> |         <p class="hidden sm:block text-lg font-semibold">{{ $getString('LabelPersonalYearReview', [yearInReviewVariant + 1]) }} | ||||||
|  |         </p> | ||||||
|         <p class="block sm:hidden text-lg font-semibold">{{ yearInReviewVariant + 1 }}</p> |         <p class="block sm:hidden text-lg font-semibold">{{ yearInReviewVariant + 1 }}</p> | ||||||
|         <div class="flex-grow" /> |         <div class="flex-grow" /> | ||||||
| 
 | 
 | ||||||
|         <!-- refresh button --> |         <!-- refresh button --> | ||||||
|         <ui-btn small :disabled="processingYearInReview" class="inline-flex items-center font-semibold mr-1 sm:mr-2" @click="refreshYearInReview"> |         <ui-btn small :disabled="processingYearInReview" class="inline-flex items-center font-semibold mr-1 sm:mr-2" @click="refreshYearInReview"> | ||||||
|           <span class="hidden sm:inline-block">Refresh</span> |           <span class="hidden sm:inline-block">{{ $strings.ButtonRefresh }}</span> | ||||||
|           <span class="material-icons sm:!hidden text-lg py-px">refresh</span> |           <span class="material-icons sm:!hidden text-lg py-px">refresh</span> | ||||||
|         </ui-btn> |         </ui-btn> | ||||||
|         <!-- next button --> |         <!-- next button --> | ||||||
|         <ui-btn small :disabled="yearInReviewVariant >= 2 || processingYearInReview" class="inline-flex items-center font-semibold" @click="yearInReviewVariant++"> |         <ui-btn small :disabled="yearInReviewVariant >= 2 || processingYearInReview" class="inline-flex items-center font-semibold" @click="yearInReviewVariant++"> | ||||||
|           <span class="hidden sm:inline-block pl-2">Next</span> |           <span class="hidden sm:inline-block pl-2">{{ $strings.ButtonNext }}</span> | ||||||
|           <span class="material-icons-outlined text-lg sm:pl-1 py-px sm:py-0">chevron_right</span> |           <span class="material-icons-outlined text-lg sm:pl-1 py-px sm:py-0">chevron_right</span> | ||||||
|         </ui-btn> |         </ui-btn> | ||||||
|       </div> |       </div> | ||||||
| @ -46,7 +50,7 @@ | |||||||
|       <!-- your year in review short --> |       <!-- your year in review short --> | ||||||
|       <div class="w-full max-w-[800px] mx-auto my-4"> |       <div class="w-full max-w-[800px] mx-auto my-4"> | ||||||
|         <!-- share button --> |         <!-- share button --> | ||||||
|         <ui-btn v-if="showShareButton" small :disabled="processingYearInReviewShort" class="inline-flex sm:hidden items-center font-semibold mb-1" @click="shareYearInReviewShort"> Share </ui-btn> |         <ui-btn v-if="showShareButton" small :disabled="processingYearInReviewShort" class="inline-flex sm:hidden items-center font-semibold mb-1" @click="shareYearInReviewShort">{{ $strings.ButtonShare }}</ui-btn> | ||||||
|         <stats-year-in-review-short ref="yearInReviewShort" :year="yearInReviewYear" :processing.sync="processingYearInReviewShort" /> |         <stats-year-in-review-short ref="yearInReviewShort" :year="yearInReviewYear" :processing.sync="processingYearInReviewShort" /> | ||||||
|       </div> |       </div> | ||||||
| 
 | 
 | ||||||
| @ -56,24 +60,25 @@ | |||||||
|           <!-- previous button --> |           <!-- previous button --> | ||||||
|           <ui-btn small :disabled="!yearInReviewServerVariant || processingYearInReviewServer" class="inline-flex items-center font-semibold" @click="yearInReviewServerVariant--"> |           <ui-btn small :disabled="!yearInReviewServerVariant || processingYearInReviewServer" class="inline-flex items-center font-semibold" @click="yearInReviewServerVariant--"> | ||||||
|             <span class="material-icons text-lg sm:pr-1 py-px sm:py-0">chevron_left</span> |             <span class="material-icons text-lg sm:pr-1 py-px sm:py-0">chevron_left</span> | ||||||
|             <span class="hidden sm:inline-block pr-2">Previous</span> |             <span class="hidden sm:inline-block pr-2">{{ $strings.ButtonPrevious }}</span> | ||||||
|           </ui-btn> |           </ui-btn> | ||||||
|           <!-- share button --> |           <!-- share button --> | ||||||
|           <ui-btn v-if="showShareButton" small :disabled="processingYearInReviewServer" class="inline-flex sm:hidden items-center font-semibold ml-1 sm:ml-2" @click="shareYearInReviewServer"> Share </ui-btn> |           <ui-btn v-if="showShareButton" small :disabled="processingYearInReviewServer" class="inline-flex sm:hidden items-center font-semibold ml-1 sm:ml-2" @click="shareYearInReviewServer">{{ $strings.ButtonShare }} | ||||||
|  |           </ui-btn> | ||||||
| 
 | 
 | ||||||
|           <div class="flex-grow" /> |           <div class="flex-grow" /> | ||||||
|           <p class="hidden sm:block text-lg font-semibold">Server Year in Review ({{ yearInReviewServerVariant + 1 }})</p> |           <p class="hidden sm:block text-lg font-semibold">{{ $getString('LabelServerYearReview', [yearInReviewServerVariant + 1]) }}</p> | ||||||
|           <p class="block sm:hidden text-lg font-semibold">{{ yearInReviewServerVariant + 1 }}</p> |           <p class="block sm:hidden text-lg font-semibold">{{ yearInReviewServerVariant + 1 }}</p> | ||||||
|           <div class="flex-grow" /> |           <div class="flex-grow" /> | ||||||
| 
 | 
 | ||||||
|           <!-- refresh button --> |           <!-- refresh button --> | ||||||
|           <ui-btn small :disabled="processingYearInReviewServer" class="inline-flex items-center font-semibold mr-1 sm:mr-2" @click="refreshYearInReviewServer"> |           <ui-btn small :disabled="processingYearInReviewServer" class="inline-flex items-center font-semibold mr-1 sm:mr-2" @click="refreshYearInReviewServer"> | ||||||
|             <span class="hidden sm:inline-block">Refresh</span> |             <span class="hidden sm:inline-block">{{ $strings.ButtonRefresh }}</span> | ||||||
|             <span class="material-icons sm:!hidden text-lg py-px">refresh</span> |             <span class="material-icons sm:!hidden text-lg py-px">refresh</span> | ||||||
|           </ui-btn> |           </ui-btn> | ||||||
|           <!-- next button --> |           <!-- next button --> | ||||||
|           <ui-btn small :disabled="yearInReviewServerVariant >= 2 || processingYearInReviewServer" class="inline-flex items-center font-semibold" @click="yearInReviewServerVariant++"> |           <ui-btn small :disabled="yearInReviewServerVariant >= 2 || processingYearInReviewServer" class="inline-flex items-center font-semibold" @click="yearInReviewServerVariant++"> | ||||||
|             <span class="hidden sm:inline-block pl-2">Next</span> |             <span class="hidden sm:inline-block pl-2">{{ $strings.ButtonNext }}</span> | ||||||
|             <span class="material-icons-outlined text-lg sm:pl-1 py-px sm:py-0">chevron_right</span> |             <span class="material-icons-outlined text-lg sm:pl-1 py-px sm:py-0">chevron_right</span> | ||||||
|           </ui-btn> |           </ui-btn> | ||||||
|         </div> |         </div> | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Spárovat všechny autory", |   "ButtonMatchAllAuthors": "Spárovat všechny autory", | ||||||
|   "ButtonMatchBooks": "Spárovat Knihy", |   "ButtonMatchBooks": "Spárovat Knihy", | ||||||
|   "ButtonNevermind": "Nevadí", |   "ButtonNevermind": "Nevadí", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Otevřít kanál", |   "ButtonOpenFeed": "Otevřít kanál", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Přehrát", |   "ButtonPlay": "Přehrát", | ||||||
|   "ButtonPlaying": "Hraje", |   "ButtonPlaying": "Hraje", | ||||||
|   "ButtonPlaylists": "Seznamy skladeb", |   "ButtonPlaylists": "Seznamy skladeb", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Vyčistit veškerou mezipaměť", |   "ButtonPurgeAllCache": "Vyčistit veškerou mezipaměť", | ||||||
|   "ButtonPurgeItemsCache": "Vyčistit mezipaměť položek", |   "ButtonPurgeItemsCache": "Vyčistit mezipaměť položek", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Odstranit z fronty", |   "ButtonQueueRemoveItem": "Odstranit z fronty", | ||||||
|   "ButtonQuickMatch": "Rychlé přiřazení", |   "ButtonQuickMatch": "Rychlé přiřazení", | ||||||
|   "ButtonRead": "Číst", |   "ButtonRead": "Číst", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Odstranit", |   "ButtonRemove": "Odstranit", | ||||||
|   "ButtonRemoveAll": "Odstranit vše", |   "ButtonRemoveAll": "Odstranit vše", | ||||||
|   "ButtonRemoveAllLibraryItems": "Odstranit všechny položky knihovny", |   "ButtonRemoveAllLibraryItems": "Odstranit všechny položky knihovny", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Vybrat cestu ke složce", |   "ButtonSelectFolderPath": "Vybrat cestu ke složce", | ||||||
|   "ButtonSeries": "Série", |   "ButtonSeries": "Série", | ||||||
|   "ButtonSetChaptersFromTracks": "Nastavit kapitoly ze stop", |   "ButtonSetChaptersFromTracks": "Nastavit kapitoly ze stop", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Časy posunu", |   "ButtonShiftTimes": "Časy posunu", | ||||||
|   "ButtonShow": "Zobrazit", |   "ButtonShow": "Zobrazit", | ||||||
|   "ButtonStartM4BEncode": "Spustit kódování M4B", |   "ButtonStartM4BEncode": "Spustit kódování M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Aktualizovat podrobnosti", |   "HeaderUpdateDetails": "Aktualizovat podrobnosti", | ||||||
|   "HeaderUpdateLibrary": "Aktualizovat knihovnu", |   "HeaderUpdateLibrary": "Aktualizovat knihovnu", | ||||||
|   "HeaderUsers": "Uživatelé", |   "HeaderUsers": "Uživatelé", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Vaše statistiky", |   "HeaderYourStats": "Vaše statistiky", | ||||||
|   "LabelAbridged": "Zkráceno", |   "LabelAbridged": "Zkráceno", | ||||||
|   "LabelAccountType": "Typ účtu", |   "LabelAccountType": "Typ účtu", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Může stahovat", |   "LabelPermissionsDownload": "Může stahovat", | ||||||
|   "LabelPermissionsUpdate": "Může aktualizovat", |   "LabelPermissionsUpdate": "Může aktualizovat", | ||||||
|   "LabelPermissionsUpload": "Může nahrávat", |   "LabelPermissionsUpload": "Může nahrávat", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Cesta k fotografii/URL", |   "LabelPhotoPathURL": "Cesta k fotografii/URL", | ||||||
|   "LabelPlaylists": "Seznamy skladeb", |   "LabelPlaylists": "Seznamy skladeb", | ||||||
|   "LabelPlayMethod": "Metoda přehrávání", |   "LabelPlayMethod": "Metoda přehrávání", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Série", |   "LabelSeries": "Série", | ||||||
|   "LabelSeriesName": "Název série", |   "LabelSeriesName": "Název série", | ||||||
|   "LabelSeriesProgress": "Průběh série", |   "LabelSeriesProgress": "Průběh série", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Nastavit jako primární", |   "LabelSetEbookAsPrimary": "Nastavit jako primární", | ||||||
|   "LabelSetEbookAsSupplementary": "Nastavit jako doplňkové", |   "LabelSetEbookAsSupplementary": "Nastavit jako doplňkové", | ||||||
|   "LabelSettingsAudiobooksOnly": "Pouze audioknihy", |   "LabelSettingsAudiobooksOnly": "Pouze audioknihy", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Zobrazit frontu přehrávače", |   "LabelViewQueue": "Zobrazit frontu přehrávače", | ||||||
|   "LabelVolume": "Hlasitost", |   "LabelVolume": "Hlasitost", | ||||||
|   "LabelWeekdaysToRun": "Dny v týdnu ke spuštění", |   "LabelWeekdaysToRun": "Dny v týdnu ke spuštění", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Doba trvání vaší audioknihy", |   "LabelYourAudiobookDuration": "Doba trvání vaší audioknihy", | ||||||
|   "LabelYourBookmarks": "Vaše záložky", |   "LabelYourBookmarks": "Vaše záložky", | ||||||
|   "LabelYourPlaylists": "Vaše seznamy přehrávání", |   "LabelYourPlaylists": "Vaše seznamy přehrávání", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Match alle forfattere", |   "ButtonMatchAllAuthors": "Match alle forfattere", | ||||||
|   "ButtonMatchBooks": "Match bøger", |   "ButtonMatchBooks": "Match bøger", | ||||||
|   "ButtonNevermind": "Glem det", |   "ButtonNevermind": "Glem det", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "OK", |   "ButtonOk": "OK", | ||||||
|   "ButtonOpenFeed": "Åbn feed", |   "ButtonOpenFeed": "Åbn feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Afspil", |   "ButtonPlay": "Afspil", | ||||||
|   "ButtonPlaying": "Afspiller", |   "ButtonPlaying": "Afspiller", | ||||||
|   "ButtonPlaylists": "Afspilningslister", |   "ButtonPlaylists": "Afspilningslister", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Ryd al cache", |   "ButtonPurgeAllCache": "Ryd al cache", | ||||||
|   "ButtonPurgeItemsCache": "Ryd elementcache", |   "ButtonPurgeItemsCache": "Ryd elementcache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Fjern fra kø", |   "ButtonQueueRemoveItem": "Fjern fra kø", | ||||||
|   "ButtonQuickMatch": "Hurtig Match", |   "ButtonQuickMatch": "Hurtig Match", | ||||||
|   "ButtonRead": "Læs", |   "ButtonRead": "Læs", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Fjern", |   "ButtonRemove": "Fjern", | ||||||
|   "ButtonRemoveAll": "Fjern Alle", |   "ButtonRemoveAll": "Fjern Alle", | ||||||
|   "ButtonRemoveAllLibraryItems": "Fjern Alle Bibliotekselementer", |   "ButtonRemoveAllLibraryItems": "Fjern Alle Bibliotekselementer", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Vælg Mappen Sti", |   "ButtonSelectFolderPath": "Vælg Mappen Sti", | ||||||
|   "ButtonSeries": "Serie", |   "ButtonSeries": "Serie", | ||||||
|   "ButtonSetChaptersFromTracks": "Sæt kapitler fra spor", |   "ButtonSetChaptersFromTracks": "Sæt kapitler fra spor", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Skift Tider", |   "ButtonShiftTimes": "Skift Tider", | ||||||
|   "ButtonShow": "Vis", |   "ButtonShow": "Vis", | ||||||
|   "ButtonStartM4BEncode": "Start M4B Kode", |   "ButtonStartM4BEncode": "Start M4B Kode", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Opdater Detaljer", |   "HeaderUpdateDetails": "Opdater Detaljer", | ||||||
|   "HeaderUpdateLibrary": "Opdater Bibliotek", |   "HeaderUpdateLibrary": "Opdater Bibliotek", | ||||||
|   "HeaderUsers": "Brugere", |   "HeaderUsers": "Brugere", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Dine Statistikker", |   "HeaderYourStats": "Dine Statistikker", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Kontotype", |   "LabelAccountType": "Kontotype", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Kan downloade", |   "LabelPermissionsDownload": "Kan downloade", | ||||||
|   "LabelPermissionsUpdate": "Kan opdatere", |   "LabelPermissionsUpdate": "Kan opdatere", | ||||||
|   "LabelPermissionsUpload": "Kan uploade", |   "LabelPermissionsUpload": "Kan uploade", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Foto sti/URL", |   "LabelPhotoPathURL": "Foto sti/URL", | ||||||
|   "LabelPlaylists": "Afspilningslister", |   "LabelPlaylists": "Afspilningslister", | ||||||
|   "LabelPlayMethod": "Afspilningsmetode", |   "LabelPlayMethod": "Afspilningsmetode", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serie", |   "LabelSeries": "Serie", | ||||||
|   "LabelSeriesName": "Serienavn", |   "LabelSeriesName": "Serienavn", | ||||||
|   "LabelSeriesProgress": "Seriefremskridt", |   "LabelSeriesProgress": "Seriefremskridt", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Indstil som primær", |   "LabelSetEbookAsPrimary": "Indstil som primær", | ||||||
|   "LabelSetEbookAsSupplementary": "Indstil som supplerende", |   "LabelSetEbookAsSupplementary": "Indstil som supplerende", | ||||||
|   "LabelSettingsAudiobooksOnly": "Kun lydbøger", |   "LabelSettingsAudiobooksOnly": "Kun lydbøger", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Se afspilningskø", |   "LabelViewQueue": "Se afspilningskø", | ||||||
|   "LabelVolume": "Volumen", |   "LabelVolume": "Volumen", | ||||||
|   "LabelWeekdaysToRun": "Ugedage til kørsel", |   "LabelWeekdaysToRun": "Ugedage til kørsel", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Din lydbogsvarighed", |   "LabelYourAudiobookDuration": "Din lydbogsvarighed", | ||||||
|   "LabelYourBookmarks": "Dine bogmærker", |   "LabelYourBookmarks": "Dine bogmærker", | ||||||
|   "LabelYourPlaylists": "Dine spillelister", |   "LabelYourPlaylists": "Dine spillelister", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Online Metadaten-Abgleich (alle Autoren)", |   "ButtonMatchAllAuthors": "Online Metadaten-Abgleich (alle Autoren)", | ||||||
|   "ButtonMatchBooks": "Online Metadaten-Abgleich (alle Medien)", |   "ButtonMatchBooks": "Online Metadaten-Abgleich (alle Medien)", | ||||||
|   "ButtonNevermind": "Abbrechen", |   "ButtonNevermind": "Abbrechen", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Nächstes Kapitel", |   "ButtonNextChapter": "Nächstes Kapitel", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Feed öffnen", |   "ButtonOpenFeed": "Feed öffnen", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Abspielen", |   "ButtonPlay": "Abspielen", | ||||||
|   "ButtonPlaying": "Spielt", |   "ButtonPlaying": "Spielt", | ||||||
|   "ButtonPlaylists": "Wiedergabelisten", |   "ButtonPlaylists": "Wiedergabelisten", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Vorheriges Kapitel", |   "ButtonPreviousChapter": "Vorheriges Kapitel", | ||||||
|   "ButtonPurgeAllCache": "Cache leeren", |   "ButtonPurgeAllCache": "Cache leeren", | ||||||
|   "ButtonPurgeItemsCache": "Lösche Medien-Cache", |   "ButtonPurgeItemsCache": "Lösche Medien-Cache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Aus der Warteschlange entfernen", |   "ButtonQueueRemoveItem": "Aus der Warteschlange entfernen", | ||||||
|   "ButtonQuickMatch": "Schnellabgleich", |   "ButtonQuickMatch": "Schnellabgleich", | ||||||
|   "ButtonRead": "Lesen", |   "ButtonRead": "Lesen", | ||||||
|  |   "ButtonRefresh": "Neu Laden", | ||||||
|   "ButtonRemove": "Löschen", |   "ButtonRemove": "Löschen", | ||||||
|   "ButtonRemoveAll": "Alles löschen", |   "ButtonRemoveAll": "Alles löschen", | ||||||
|   "ButtonRemoveAllLibraryItems": "Lösche alle Bibliothekseinträge", |   "ButtonRemoveAllLibraryItems": "Lösche alle Bibliothekseinträge", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Ordnerpfad auswählen", |   "ButtonSelectFolderPath": "Ordnerpfad auswählen", | ||||||
|   "ButtonSeries": "Serien", |   "ButtonSeries": "Serien", | ||||||
|   "ButtonSetChaptersFromTracks": "Kapitelerstellung aus Audiodateien", |   "ButtonSetChaptersFromTracks": "Kapitelerstellung aus Audiodateien", | ||||||
|  |   "ButtonShare": "Teilen", | ||||||
|   "ButtonShiftTimes": "Zeitverschiebung", |   "ButtonShiftTimes": "Zeitverschiebung", | ||||||
|   "ButtonShow": "Anzeigen", |   "ButtonShow": "Anzeigen", | ||||||
|   "ButtonStartM4BEncode": "M4B-Kodierung starten", |   "ButtonStartM4BEncode": "M4B-Kodierung starten", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Details aktualisieren", |   "HeaderUpdateDetails": "Details aktualisieren", | ||||||
|   "HeaderUpdateLibrary": "Bibliothek aktualisieren", |   "HeaderUpdateLibrary": "Bibliothek aktualisieren", | ||||||
|   "HeaderUsers": "Benutzer", |   "HeaderUsers": "Benutzer", | ||||||
|  |   "HeaderYearReview": "Jahr {0} in Übersicht", | ||||||
|   "HeaderYourStats": "Eigene Statistiken", |   "HeaderYourStats": "Eigene Statistiken", | ||||||
|   "LabelAbridged": "Gekürzt", |   "LabelAbridged": "Gekürzt", | ||||||
|   "LabelAccountType": "Kontoart", |   "LabelAccountType": "Kontoart", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Herunterladen", |   "LabelPermissionsDownload": "Herunterladen", | ||||||
|   "LabelPermissionsUpdate": "Aktualisieren", |   "LabelPermissionsUpdate": "Aktualisieren", | ||||||
|   "LabelPermissionsUpload": "Hochladen", |   "LabelPermissionsUpload": "Hochladen", | ||||||
|  |   "LabelPersonalYearReview": "Dein Jahr in Übersicht ({0})", | ||||||
|   "LabelPhotoPathURL": "Foto Pfad/URL", |   "LabelPhotoPathURL": "Foto Pfad/URL", | ||||||
|   "LabelPlaylists": "Wiedergabelisten", |   "LabelPlaylists": "Wiedergabelisten", | ||||||
|   "LabelPlayMethod": "Abspielmethode", |   "LabelPlayMethod": "Abspielmethode", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serien", |   "LabelSeries": "Serien", | ||||||
|   "LabelSeriesName": "Serienname", |   "LabelSeriesName": "Serienname", | ||||||
|   "LabelSeriesProgress": "Serienfortschritt", |   "LabelSeriesProgress": "Serienfortschritt", | ||||||
|  |   "LabelServerYearReview": "Server Jahr in Übersicht ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Als Hauptbuch setzen", |   "LabelSetEbookAsPrimary": "Als Hauptbuch setzen", | ||||||
|   "LabelSetEbookAsSupplementary": "Als Ergänzung setzen", |   "LabelSetEbookAsSupplementary": "Als Ergänzung setzen", | ||||||
|   "LabelSettingsAudiobooksOnly": "Nur Hörbücher", |   "LabelSettingsAudiobooksOnly": "Nur Hörbücher", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Player-Warteschlange anzeigen", |   "LabelViewQueue": "Player-Warteschlange anzeigen", | ||||||
|   "LabelVolume": "Lautstärke", |   "LabelVolume": "Lautstärke", | ||||||
|   "LabelWeekdaysToRun": "Wochentage für die Ausführung", |   "LabelWeekdaysToRun": "Wochentage für die Ausführung", | ||||||
|  |   "LabelYearReviewHide": "Verstecke Jahr in Übersicht", | ||||||
|  |   "LabelYearReviewShow": "Zeige Jahr in Übersicht", | ||||||
|   "LabelYourAudiobookDuration": "Laufzeit deines Mediums", |   "LabelYourAudiobookDuration": "Laufzeit deines Mediums", | ||||||
|   "LabelYourBookmarks": "Lesezeichen", |   "LabelYourBookmarks": "Lesezeichen", | ||||||
|   "LabelYourPlaylists": "Eigene Wiedergabelisten", |   "LabelYourPlaylists": "Eigene Wiedergabelisten", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Match All Authors", |   "ButtonMatchAllAuthors": "Match All Authors", | ||||||
|   "ButtonMatchBooks": "Match Books", |   "ButtonMatchBooks": "Match Books", | ||||||
|   "ButtonNevermind": "Nevermind", |   "ButtonNevermind": "Nevermind", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Open Feed", |   "ButtonOpenFeed": "Open Feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Play", |   "ButtonPlay": "Play", | ||||||
|   "ButtonPlaying": "Playing", |   "ButtonPlaying": "Playing", | ||||||
|   "ButtonPlaylists": "Playlists", |   "ButtonPlaylists": "Playlists", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Purge All Cache", |   "ButtonPurgeAllCache": "Purge All Cache", | ||||||
|   "ButtonPurgeItemsCache": "Purge Items Cache", |   "ButtonPurgeItemsCache": "Purge Items Cache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Remove from queue", |   "ButtonQueueRemoveItem": "Remove from queue", | ||||||
|   "ButtonQuickMatch": "Quick Match", |   "ButtonQuickMatch": "Quick Match", | ||||||
|   "ButtonRead": "Read", |   "ButtonRead": "Read", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Remove", |   "ButtonRemove": "Remove", | ||||||
|   "ButtonRemoveAll": "Remove All", |   "ButtonRemoveAll": "Remove All", | ||||||
|   "ButtonRemoveAllLibraryItems": "Remove All Library Items", |   "ButtonRemoveAllLibraryItems": "Remove All Library Items", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Select Folder Path", |   "ButtonSelectFolderPath": "Select Folder Path", | ||||||
|   "ButtonSeries": "Series", |   "ButtonSeries": "Series", | ||||||
|   "ButtonSetChaptersFromTracks": "Set chapters from tracks", |   "ButtonSetChaptersFromTracks": "Set chapters from tracks", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Shift Times", |   "ButtonShiftTimes": "Shift Times", | ||||||
|   "ButtonShow": "Show", |   "ButtonShow": "Show", | ||||||
|   "ButtonStartM4BEncode": "Start M4B Encode", |   "ButtonStartM4BEncode": "Start M4B Encode", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Update Details", |   "HeaderUpdateDetails": "Update Details", | ||||||
|   "HeaderUpdateLibrary": "Update Library", |   "HeaderUpdateLibrary": "Update Library", | ||||||
|   "HeaderUsers": "Users", |   "HeaderUsers": "Users", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Your Stats", |   "HeaderYourStats": "Your Stats", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Account Type", |   "LabelAccountType": "Account Type", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Can Download", |   "LabelPermissionsDownload": "Can Download", | ||||||
|   "LabelPermissionsUpdate": "Can Update", |   "LabelPermissionsUpdate": "Can Update", | ||||||
|   "LabelPermissionsUpload": "Can Upload", |   "LabelPermissionsUpload": "Can Upload", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Photo Path/URL", |   "LabelPhotoPathURL": "Photo Path/URL", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Play Method", |   "LabelPlayMethod": "Play Method", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Series", |   "LabelSeries": "Series", | ||||||
|   "LabelSeriesName": "Series Name", |   "LabelSeriesName": "Series Name", | ||||||
|   "LabelSeriesProgress": "Series Progress", |   "LabelSeriesProgress": "Series Progress", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Set as primary", |   "LabelSetEbookAsPrimary": "Set as primary", | ||||||
|   "LabelSetEbookAsSupplementary": "Set as supplementary", |   "LabelSetEbookAsSupplementary": "Set as supplementary", | ||||||
|   "LabelSettingsAudiobooksOnly": "Audiobooks only", |   "LabelSettingsAudiobooksOnly": "Audiobooks only", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "View player queue", |   "LabelViewQueue": "View player queue", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Weekdays to run", |   "LabelWeekdaysToRun": "Weekdays to run", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Your audiobook duration", |   "LabelYourAudiobookDuration": "Your audiobook duration", | ||||||
|   "LabelYourBookmarks": "Your Bookmarks", |   "LabelYourBookmarks": "Your Bookmarks", | ||||||
|   "LabelYourPlaylists": "Your Playlists", |   "LabelYourPlaylists": "Your Playlists", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Encontrar Todos los Autores", |   "ButtonMatchAllAuthors": "Encontrar Todos los Autores", | ||||||
|   "ButtonMatchBooks": "Encontrar Libros", |   "ButtonMatchBooks": "Encontrar Libros", | ||||||
|   "ButtonNevermind": "Olvidar", |   "ButtonNevermind": "Olvidar", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Siguiente Capítulo", |   "ButtonNextChapter": "Siguiente Capítulo", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Abrir Fuente", |   "ButtonOpenFeed": "Abrir Fuente", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Reproducir", |   "ButtonPlay": "Reproducir", | ||||||
|   "ButtonPlaying": "Reproduciendo", |   "ButtonPlaying": "Reproduciendo", | ||||||
|   "ButtonPlaylists": "Listas de Reproducción", |   "ButtonPlaylists": "Listas de Reproducción", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Capítulo Anterior", |   "ButtonPreviousChapter": "Capítulo Anterior", | ||||||
|   "ButtonPurgeAllCache": "Purgar Todo el Cache", |   "ButtonPurgeAllCache": "Purgar Todo el Cache", | ||||||
|   "ButtonPurgeItemsCache": "Purgar Elementos de Cache", |   "ButtonPurgeItemsCache": "Purgar Elementos de Cache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Remover de la Fila", |   "ButtonQueueRemoveItem": "Remover de la Fila", | ||||||
|   "ButtonQuickMatch": "Encontrar Rápido", |   "ButtonQuickMatch": "Encontrar Rápido", | ||||||
|   "ButtonRead": "Leer", |   "ButtonRead": "Leer", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Remover", |   "ButtonRemove": "Remover", | ||||||
|   "ButtonRemoveAll": "Remover Todos", |   "ButtonRemoveAll": "Remover Todos", | ||||||
|   "ButtonRemoveAllLibraryItems": "Remover Todos los Elementos de la Biblioteca", |   "ButtonRemoveAllLibraryItems": "Remover Todos los Elementos de la Biblioteca", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Seleccionar Ruta de Carpeta", |   "ButtonSelectFolderPath": "Seleccionar Ruta de Carpeta", | ||||||
|   "ButtonSeries": "Series", |   "ButtonSeries": "Series", | ||||||
|   "ButtonSetChaptersFromTracks": "Seleccionar Capítulos Según las Pistas", |   "ButtonSetChaptersFromTracks": "Seleccionar Capítulos Según las Pistas", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Desplazar Tiempos", |   "ButtonShiftTimes": "Desplazar Tiempos", | ||||||
|   "ButtonShow": "Mostrar", |   "ButtonShow": "Mostrar", | ||||||
|   "ButtonStartM4BEncode": "Iniciar Codificación M4B", |   "ButtonStartM4BEncode": "Iniciar Codificación M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Actualizar Detalles", |   "HeaderUpdateDetails": "Actualizar Detalles", | ||||||
|   "HeaderUpdateLibrary": "Actualizar Biblioteca", |   "HeaderUpdateLibrary": "Actualizar Biblioteca", | ||||||
|   "HeaderUsers": "Usuarios", |   "HeaderUsers": "Usuarios", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Tus Estadísticas", |   "HeaderYourStats": "Tus Estadísticas", | ||||||
|   "LabelAbridged": "Abreviado", |   "LabelAbridged": "Abreviado", | ||||||
|   "LabelAccountType": "Tipo de Cuenta", |   "LabelAccountType": "Tipo de Cuenta", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Puede Descargar", |   "LabelPermissionsDownload": "Puede Descargar", | ||||||
|   "LabelPermissionsUpdate": "Puede Actualizar", |   "LabelPermissionsUpdate": "Puede Actualizar", | ||||||
|   "LabelPermissionsUpload": "Puede Subir", |   "LabelPermissionsUpload": "Puede Subir", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Ruta de Acceso/URL de Foto", |   "LabelPhotoPathURL": "Ruta de Acceso/URL de Foto", | ||||||
|   "LabelPlaylists": "Lista de Reproducción", |   "LabelPlaylists": "Lista de Reproducción", | ||||||
|   "LabelPlayMethod": "Método de Reproducción", |   "LabelPlayMethod": "Método de Reproducción", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Series", |   "LabelSeries": "Series", | ||||||
|   "LabelSeriesName": "Nombre de la Serie", |   "LabelSeriesName": "Nombre de la Serie", | ||||||
|   "LabelSeriesProgress": "Progreso de la Serie", |   "LabelSeriesProgress": "Progreso de la Serie", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Establecer como primario", |   "LabelSetEbookAsPrimary": "Establecer como primario", | ||||||
|   "LabelSetEbookAsSupplementary": "Establecer como suplementario", |   "LabelSetEbookAsSupplementary": "Establecer como suplementario", | ||||||
|   "LabelSettingsAudiobooksOnly": "Sólo Audiolibros", |   "LabelSettingsAudiobooksOnly": "Sólo Audiolibros", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Ver Fila del Reproductor", |   "LabelViewQueue": "Ver Fila del Reproductor", | ||||||
|   "LabelVolume": "Volumen", |   "LabelVolume": "Volumen", | ||||||
|   "LabelWeekdaysToRun": "Correr en Días de la Semana", |   "LabelWeekdaysToRun": "Correr en Días de la Semana", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Duración de tu Audiolibro", |   "LabelYourAudiobookDuration": "Duración de tu Audiolibro", | ||||||
|   "LabelYourBookmarks": "Tus Marcadores", |   "LabelYourBookmarks": "Tus Marcadores", | ||||||
|   "LabelYourPlaylists": "Tus Listas", |   "LabelYourPlaylists": "Tus Listas", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Sobita kõik autorid", |   "ButtonMatchAllAuthors": "Sobita kõik autorid", | ||||||
|   "ButtonMatchBooks": "Sobita raamatud", |   "ButtonMatchBooks": "Sobita raamatud", | ||||||
|   "ButtonNevermind": "Pole tähtis", |   "ButtonNevermind": "Pole tähtis", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Järgmine peatükk", |   "ButtonNextChapter": "Järgmine peatükk", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Ava voog", |   "ButtonOpenFeed": "Ava voog", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Mängi", |   "ButtonPlay": "Mängi", | ||||||
|   "ButtonPlaying": "Mängib", |   "ButtonPlaying": "Mängib", | ||||||
|   "ButtonPlaylists": "Esitusloendid", |   "ButtonPlaylists": "Esitusloendid", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Eelmine peatükk", |   "ButtonPreviousChapter": "Eelmine peatükk", | ||||||
|   "ButtonPurgeAllCache": "Tühjenda kogu vahemälu", |   "ButtonPurgeAllCache": "Tühjenda kogu vahemälu", | ||||||
|   "ButtonPurgeItemsCache": "Tühjenda esemete vahemälu", |   "ButtonPurgeItemsCache": "Tühjenda esemete vahemälu", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Eemalda järjekorrast", |   "ButtonQueueRemoveItem": "Eemalda järjekorrast", | ||||||
|   "ButtonQuickMatch": "Kiire sobitamine", |   "ButtonQuickMatch": "Kiire sobitamine", | ||||||
|   "ButtonRead": "Loe", |   "ButtonRead": "Loe", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Eemalda", |   "ButtonRemove": "Eemalda", | ||||||
|   "ButtonRemoveAll": "Eemalda kõik", |   "ButtonRemoveAll": "Eemalda kõik", | ||||||
|   "ButtonRemoveAllLibraryItems": "Eemalda kõik raamatukogu esemed", |   "ButtonRemoveAllLibraryItems": "Eemalda kõik raamatukogu esemed", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Vali kaustatee", |   "ButtonSelectFolderPath": "Vali kaustatee", | ||||||
|   "ButtonSeries": "Sarjad", |   "ButtonSeries": "Sarjad", | ||||||
|   "ButtonSetChaptersFromTracks": "Määra peatükid lugudest", |   "ButtonSetChaptersFromTracks": "Määra peatükid lugudest", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Nihke ajad", |   "ButtonShiftTimes": "Nihke ajad", | ||||||
|   "ButtonShow": "Näita", |   "ButtonShow": "Näita", | ||||||
|   "ButtonStartM4BEncode": "Alusta M4B kodeerimist", |   "ButtonStartM4BEncode": "Alusta M4B kodeerimist", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Uuenda detaile", |   "HeaderUpdateDetails": "Uuenda detaile", | ||||||
|   "HeaderUpdateLibrary": "Uuenda raamatukogu", |   "HeaderUpdateLibrary": "Uuenda raamatukogu", | ||||||
|   "HeaderUsers": "Kasutajad", |   "HeaderUsers": "Kasutajad", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Sinu statistika", |   "HeaderYourStats": "Sinu statistika", | ||||||
|   "LabelAbridged": "Kärbitud", |   "LabelAbridged": "Kärbitud", | ||||||
|   "LabelAccountType": "Konto tüüp", |   "LabelAccountType": "Konto tüüp", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Saab alla laadida", |   "LabelPermissionsDownload": "Saab alla laadida", | ||||||
|   "LabelPermissionsUpdate": "Saab uuendada", |   "LabelPermissionsUpdate": "Saab uuendada", | ||||||
|   "LabelPermissionsUpload": "Saab üles laadida", |   "LabelPermissionsUpload": "Saab üles laadida", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Foto tee/URL", |   "LabelPhotoPathURL": "Foto tee/URL", | ||||||
|   "LabelPlaylists": "Mänguloendid", |   "LabelPlaylists": "Mänguloendid", | ||||||
|   "LabelPlayMethod": "Esitusmeetod", |   "LabelPlayMethod": "Esitusmeetod", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Seeria", |   "LabelSeries": "Seeria", | ||||||
|   "LabelSeriesName": "Seeria nimi", |   "LabelSeriesName": "Seeria nimi", | ||||||
|   "LabelSeriesProgress": "Seeria edenemine", |   "LabelSeriesProgress": "Seeria edenemine", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Määra peamiseks", |   "LabelSetEbookAsPrimary": "Määra peamiseks", | ||||||
|   "LabelSetEbookAsSupplementary": "Määra täiendavaks", |   "LabelSetEbookAsSupplementary": "Määra täiendavaks", | ||||||
|   "LabelSettingsAudiobooksOnly": "Ainult heliraamatud", |   "LabelSettingsAudiobooksOnly": "Ainult heliraamatud", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Vaata esitusjärjekorda", |   "LabelViewQueue": "Vaata esitusjärjekorda", | ||||||
|   "LabelVolume": "Heli tugevus", |   "LabelVolume": "Heli tugevus", | ||||||
|   "LabelWeekdaysToRun": "Päevad nädalas käivitamiseks", |   "LabelWeekdaysToRun": "Päevad nädalas käivitamiseks", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Teie heliraamatu kestus", |   "LabelYourAudiobookDuration": "Teie heliraamatu kestus", | ||||||
|   "LabelYourBookmarks": "Teie järjehoidjad", |   "LabelYourBookmarks": "Teie järjehoidjad", | ||||||
|   "LabelYourPlaylists": "Teie esitusloendid", |   "LabelYourPlaylists": "Teie esitusloendid", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Chercher tous les auteurs", |   "ButtonMatchAllAuthors": "Chercher tous les auteurs", | ||||||
|   "ButtonMatchBooks": "Chercher les livres", |   "ButtonMatchBooks": "Chercher les livres", | ||||||
|   "ButtonNevermind": "Non merci", |   "ButtonNevermind": "Non merci", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Ouvrir le flux", |   "ButtonOpenFeed": "Ouvrir le flux", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Écouter", |   "ButtonPlay": "Écouter", | ||||||
|   "ButtonPlaying": "En lecture", |   "ButtonPlaying": "En lecture", | ||||||
|   "ButtonPlaylists": "Listes de lecture", |   "ButtonPlaylists": "Listes de lecture", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Purger le cache", |   "ButtonPurgeAllCache": "Purger le cache", | ||||||
|   "ButtonPurgeItemsCache": "Purger le cache des articles", |   "ButtonPurgeItemsCache": "Purger le cache des articles", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Supprimer de la liste de lecture", |   "ButtonQueueRemoveItem": "Supprimer de la liste de lecture", | ||||||
|   "ButtonQuickMatch": "Recherche rapide", |   "ButtonQuickMatch": "Recherche rapide", | ||||||
|   "ButtonRead": "Lire", |   "ButtonRead": "Lire", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Supprimer", |   "ButtonRemove": "Supprimer", | ||||||
|   "ButtonRemoveAll": "Supprimer tout", |   "ButtonRemoveAll": "Supprimer tout", | ||||||
|   "ButtonRemoveAllLibraryItems": "Supprimer tous les articles de la bibliothèque", |   "ButtonRemoveAllLibraryItems": "Supprimer tous les articles de la bibliothèque", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Sélectionner le chemin du dossier", |   "ButtonSelectFolderPath": "Sélectionner le chemin du dossier", | ||||||
|   "ButtonSeries": "Séries", |   "ButtonSeries": "Séries", | ||||||
|   "ButtonSetChaptersFromTracks": "Positionner les chapitres par rapports aux pistes", |   "ButtonSetChaptersFromTracks": "Positionner les chapitres par rapports aux pistes", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Décaler l’horodatage du livre", |   "ButtonShiftTimes": "Décaler l’horodatage du livre", | ||||||
|   "ButtonShow": "Afficher", |   "ButtonShow": "Afficher", | ||||||
|   "ButtonStartM4BEncode": "Démarrer l’encodage M4B", |   "ButtonStartM4BEncode": "Démarrer l’encodage M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Mettre à jour les détails", |   "HeaderUpdateDetails": "Mettre à jour les détails", | ||||||
|   "HeaderUpdateLibrary": "Mettre à jour la bibliothèque", |   "HeaderUpdateLibrary": "Mettre à jour la bibliothèque", | ||||||
|   "HeaderUsers": "Utilisateurs", |   "HeaderUsers": "Utilisateurs", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Vos statistiques", |   "HeaderYourStats": "Vos statistiques", | ||||||
|   "LabelAbridged": "Version courte", |   "LabelAbridged": "Version courte", | ||||||
|   "LabelAccountType": "Type de compte", |   "LabelAccountType": "Type de compte", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Peut télécharger", |   "LabelPermissionsDownload": "Peut télécharger", | ||||||
|   "LabelPermissionsUpdate": "Peut mettre à jour", |   "LabelPermissionsUpdate": "Peut mettre à jour", | ||||||
|   "LabelPermissionsUpload": "Peut téléverser", |   "LabelPermissionsUpload": "Peut téléverser", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Chemin / URL des photos", |   "LabelPhotoPathURL": "Chemin / URL des photos", | ||||||
|   "LabelPlaylists": "Listes de lecture", |   "LabelPlaylists": "Listes de lecture", | ||||||
|   "LabelPlayMethod": "Méthode d’écoute", |   "LabelPlayMethod": "Méthode d’écoute", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Séries", |   "LabelSeries": "Séries", | ||||||
|   "LabelSeriesName": "Nom de la série", |   "LabelSeriesName": "Nom de la série", | ||||||
|   "LabelSeriesProgress": "Progression de séries", |   "LabelSeriesProgress": "Progression de séries", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Définir comme principale", |   "LabelSetEbookAsPrimary": "Définir comme principale", | ||||||
|   "LabelSetEbookAsSupplementary": "Définir comme supplémentaire", |   "LabelSetEbookAsSupplementary": "Définir comme supplémentaire", | ||||||
|   "LabelSettingsAudiobooksOnly": "Livres audios seulement", |   "LabelSettingsAudiobooksOnly": "Livres audios seulement", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Afficher la liste de lecture", |   "LabelViewQueue": "Afficher la liste de lecture", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Jours de la semaine à exécuter", |   "LabelWeekdaysToRun": "Jours de la semaine à exécuter", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Durée de vos livres audios", |   "LabelYourAudiobookDuration": "Durée de vos livres audios", | ||||||
|   "LabelYourBookmarks": "Vos signets", |   "LabelYourBookmarks": "Vos signets", | ||||||
|   "LabelYourPlaylists": "Vos listes de lecture", |   "LabelYourPlaylists": "Vos listes de lecture", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "બધા મેળ ખાતા લેખકો શોધો", |   "ButtonMatchAllAuthors": "બધા મેળ ખાતા લેખકો શોધો", | ||||||
|   "ButtonMatchBooks": "મેળ ખાતી પુસ્તકો શોધો", |   "ButtonMatchBooks": "મેળ ખાતી પુસ્તકો શોધો", | ||||||
|   "ButtonNevermind": "કંઈ વાંધો નહીં", |   "ButtonNevermind": "કંઈ વાંધો નહીં", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "ઓકે", |   "ButtonOk": "ઓકે", | ||||||
|   "ButtonOpenFeed": "ફીડ ખોલો", |   "ButtonOpenFeed": "ફીડ ખોલો", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "ચલાવો", |   "ButtonPlay": "ચલાવો", | ||||||
|   "ButtonPlaying": "ચલાવી રહ્યું છે", |   "ButtonPlaying": "ચલાવી રહ્યું છે", | ||||||
|   "ButtonPlaylists": "પ્લેલિસ્ટ", |   "ButtonPlaylists": "પ્લેલિસ્ટ", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "બધો Cache કાઢી નાખો", |   "ButtonPurgeAllCache": "બધો Cache કાઢી નાખો", | ||||||
|   "ButtonPurgeItemsCache": "વસ્તુઓનો Cache કાઢી નાખો", |   "ButtonPurgeItemsCache": "વસ્તુઓનો Cache કાઢી નાખો", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "કતારથી કાઢી નાખો", |   "ButtonQueueRemoveItem": "કતારથી કાઢી નાખો", | ||||||
|   "ButtonQuickMatch": "ઝડપી મેળ ખવડાવો", |   "ButtonQuickMatch": "ઝડપી મેળ ખવડાવો", | ||||||
|   "ButtonRead": "વાંચો", |   "ButtonRead": "વાંચો", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "કાઢી નાખો", |   "ButtonRemove": "કાઢી નાખો", | ||||||
|   "ButtonRemoveAll": "બધું કાઢી નાખો", |   "ButtonRemoveAll": "બધું કાઢી નાખો", | ||||||
|   "ButtonRemoveAllLibraryItems": "બધું પુસ્તકાલય વસ્તુઓ કાઢી નાખો", |   "ButtonRemoveAllLibraryItems": "બધું પુસ્તકાલય વસ્તુઓ કાઢી નાખો", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "ફોલ્ડર પથ પસંદ કરો", |   "ButtonSelectFolderPath": "ફોલ્ડર પથ પસંદ કરો", | ||||||
|   "ButtonSeries": "સિરીઝ", |   "ButtonSeries": "સિરીઝ", | ||||||
|   "ButtonSetChaptersFromTracks": "ટ્રેક્સથી પ્રકરણો સેટ કરો", |   "ButtonSetChaptersFromTracks": "ટ્રેક્સથી પ્રકરણો સેટ કરો", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "સમય શિફ્ટ કરો", |   "ButtonShiftTimes": "સમય શિફ્ટ કરો", | ||||||
|   "ButtonShow": "બતાવો", |   "ButtonShow": "બતાવો", | ||||||
|   "ButtonStartM4BEncode": "M4B એન્કોડ શરૂ કરો", |   "ButtonStartM4BEncode": "M4B એન્કોડ શરૂ કરો", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Update Details", |   "HeaderUpdateDetails": "Update Details", | ||||||
|   "HeaderUpdateLibrary": "Update Library", |   "HeaderUpdateLibrary": "Update Library", | ||||||
|   "HeaderUsers": "Users", |   "HeaderUsers": "Users", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Your Stats", |   "HeaderYourStats": "Your Stats", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Account Type", |   "LabelAccountType": "Account Type", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Can Download", |   "LabelPermissionsDownload": "Can Download", | ||||||
|   "LabelPermissionsUpdate": "Can Update", |   "LabelPermissionsUpdate": "Can Update", | ||||||
|   "LabelPermissionsUpload": "Can Upload", |   "LabelPermissionsUpload": "Can Upload", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Photo Path/URL", |   "LabelPhotoPathURL": "Photo Path/URL", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Play Method", |   "LabelPlayMethod": "Play Method", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Series", |   "LabelSeries": "Series", | ||||||
|   "LabelSeriesName": "Series Name", |   "LabelSeriesName": "Series Name", | ||||||
|   "LabelSeriesProgress": "Series Progress", |   "LabelSeriesProgress": "Series Progress", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Set as primary", |   "LabelSetEbookAsPrimary": "Set as primary", | ||||||
|   "LabelSetEbookAsSupplementary": "Set as supplementary", |   "LabelSetEbookAsSupplementary": "Set as supplementary", | ||||||
|   "LabelSettingsAudiobooksOnly": "Audiobooks only", |   "LabelSettingsAudiobooksOnly": "Audiobooks only", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "View player queue", |   "LabelViewQueue": "View player queue", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Weekdays to run", |   "LabelWeekdaysToRun": "Weekdays to run", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Your audiobook duration", |   "LabelYourAudiobookDuration": "Your audiobook duration", | ||||||
|   "LabelYourBookmarks": "Your Bookmarks", |   "LabelYourBookmarks": "Your Bookmarks", | ||||||
|   "LabelYourPlaylists": "Your Playlists", |   "LabelYourPlaylists": "Your Playlists", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "सभी लेखकों को तलाश करें", |   "ButtonMatchAllAuthors": "सभी लेखकों को तलाश करें", | ||||||
|   "ButtonMatchBooks": "संबंधित पुस्तकों का मिलान करें", |   "ButtonMatchBooks": "संबंधित पुस्तकों का मिलान करें", | ||||||
|   "ButtonNevermind": "कोई बात नहीं", |   "ButtonNevermind": "कोई बात नहीं", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "ठीक है", |   "ButtonOk": "ठीक है", | ||||||
|   "ButtonOpenFeed": "फ़ीड खोलें", |   "ButtonOpenFeed": "फ़ीड खोलें", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "चलाएँ", |   "ButtonPlay": "चलाएँ", | ||||||
|   "ButtonPlaying": "चल रही है", |   "ButtonPlaying": "चल रही है", | ||||||
|   "ButtonPlaylists": "प्लेलिस्ट्स", |   "ButtonPlaylists": "प्लेलिस्ट्स", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "सभी Cache मिटाएं", |   "ButtonPurgeAllCache": "सभी Cache मिटाएं", | ||||||
|   "ButtonPurgeItemsCache": "आइटम Cache मिटाएं", |   "ButtonPurgeItemsCache": "आइटम Cache मिटाएं", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "कतार से हटाएं", |   "ButtonQueueRemoveItem": "कतार से हटाएं", | ||||||
|   "ButtonQuickMatch": "जल्दी से समानता की तलाश करें", |   "ButtonQuickMatch": "जल्दी से समानता की तलाश करें", | ||||||
|   "ButtonRead": "पढ़ लिया", |   "ButtonRead": "पढ़ लिया", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "हटाएं", |   "ButtonRemove": "हटाएं", | ||||||
|   "ButtonRemoveAll": "सभी हटाएं", |   "ButtonRemoveAll": "सभी हटाएं", | ||||||
|   "ButtonRemoveAllLibraryItems": "पुस्तकालय की सभी आइटम हटाएं", |   "ButtonRemoveAllLibraryItems": "पुस्तकालय की सभी आइटम हटाएं", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "फ़ोल्डर का पथ चुनें", |   "ButtonSelectFolderPath": "फ़ोल्डर का पथ चुनें", | ||||||
|   "ButtonSeries": "सीरीज", |   "ButtonSeries": "सीरीज", | ||||||
|   "ButtonSetChaptersFromTracks": "ट्रैक्स से अध्याय बनाएं", |   "ButtonSetChaptersFromTracks": "ट्रैक्स से अध्याय बनाएं", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "समय खिसकाए", |   "ButtonShiftTimes": "समय खिसकाए", | ||||||
|   "ButtonShow": "दिखाएं", |   "ButtonShow": "दिखाएं", | ||||||
|   "ButtonStartM4BEncode": "M4B एन्कोडिंग शुरू करें", |   "ButtonStartM4BEncode": "M4B एन्कोडिंग शुरू करें", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Update Details", |   "HeaderUpdateDetails": "Update Details", | ||||||
|   "HeaderUpdateLibrary": "Update Library", |   "HeaderUpdateLibrary": "Update Library", | ||||||
|   "HeaderUsers": "Users", |   "HeaderUsers": "Users", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Your Stats", |   "HeaderYourStats": "Your Stats", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Account Type", |   "LabelAccountType": "Account Type", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Can Download", |   "LabelPermissionsDownload": "Can Download", | ||||||
|   "LabelPermissionsUpdate": "Can Update", |   "LabelPermissionsUpdate": "Can Update", | ||||||
|   "LabelPermissionsUpload": "Can Upload", |   "LabelPermissionsUpload": "Can Upload", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Photo Path/URL", |   "LabelPhotoPathURL": "Photo Path/URL", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Play Method", |   "LabelPlayMethod": "Play Method", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Series", |   "LabelSeries": "Series", | ||||||
|   "LabelSeriesName": "Series Name", |   "LabelSeriesName": "Series Name", | ||||||
|   "LabelSeriesProgress": "Series Progress", |   "LabelSeriesProgress": "Series Progress", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Set as primary", |   "LabelSetEbookAsPrimary": "Set as primary", | ||||||
|   "LabelSetEbookAsSupplementary": "Set as supplementary", |   "LabelSetEbookAsSupplementary": "Set as supplementary", | ||||||
|   "LabelSettingsAudiobooksOnly": "Audiobooks only", |   "LabelSettingsAudiobooksOnly": "Audiobooks only", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "View player queue", |   "LabelViewQueue": "View player queue", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Weekdays to run", |   "LabelWeekdaysToRun": "Weekdays to run", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Your audiobook duration", |   "LabelYourAudiobookDuration": "Your audiobook duration", | ||||||
|   "LabelYourBookmarks": "Your Bookmarks", |   "LabelYourBookmarks": "Your Bookmarks", | ||||||
|   "LabelYourPlaylists": "Your Playlists", |   "LabelYourPlaylists": "Your Playlists", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Matchaj sve autore", |   "ButtonMatchAllAuthors": "Matchaj sve autore", | ||||||
|   "ButtonMatchBooks": "Matchaj knjige", |   "ButtonMatchBooks": "Matchaj knjige", | ||||||
|   "ButtonNevermind": "Nije bitno", |   "ButtonNevermind": "Nije bitno", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Otvori feed", |   "ButtonOpenFeed": "Otvori feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Pokreni", |   "ButtonPlay": "Pokreni", | ||||||
|   "ButtonPlaying": "Playing", |   "ButtonPlaying": "Playing", | ||||||
|   "ButtonPlaylists": "Playlists", |   "ButtonPlaylists": "Playlists", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Isprazni sav cache", |   "ButtonPurgeAllCache": "Isprazni sav cache", | ||||||
|   "ButtonPurgeItemsCache": "Isprazni Items Cache", |   "ButtonPurgeItemsCache": "Isprazni Items Cache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Remove from queue", |   "ButtonQueueRemoveItem": "Remove from queue", | ||||||
|   "ButtonQuickMatch": "Brzi match", |   "ButtonQuickMatch": "Brzi match", | ||||||
|   "ButtonRead": "Pročitaj", |   "ButtonRead": "Pročitaj", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Ukloni", |   "ButtonRemove": "Ukloni", | ||||||
|   "ButtonRemoveAll": "Ukloni sve", |   "ButtonRemoveAll": "Ukloni sve", | ||||||
|   "ButtonRemoveAllLibraryItems": "Ukloni sve stvari iz biblioteke", |   "ButtonRemoveAllLibraryItems": "Ukloni sve stvari iz biblioteke", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Odaberi putanju do folder", |   "ButtonSelectFolderPath": "Odaberi putanju do folder", | ||||||
|   "ButtonSeries": "Serije", |   "ButtonSeries": "Serije", | ||||||
|   "ButtonSetChaptersFromTracks": "Set chapters from tracks", |   "ButtonSetChaptersFromTracks": "Set chapters from tracks", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Pomakni vremena", |   "ButtonShiftTimes": "Pomakni vremena", | ||||||
|   "ButtonShow": "Prikaži", |   "ButtonShow": "Prikaži", | ||||||
|   "ButtonStartM4BEncode": "Pokreni M4B kodiranje", |   "ButtonStartM4BEncode": "Pokreni M4B kodiranje", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Aktualiziraj detalje", |   "HeaderUpdateDetails": "Aktualiziraj detalje", | ||||||
|   "HeaderUpdateLibrary": "Aktualiziraj biblioteku", |   "HeaderUpdateLibrary": "Aktualiziraj biblioteku", | ||||||
|   "HeaderUsers": "Korinici", |   "HeaderUsers": "Korinici", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Tvoja statistika", |   "HeaderYourStats": "Tvoja statistika", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Vrsta korisničkog računa", |   "LabelAccountType": "Vrsta korisničkog računa", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Smije preuzimati", |   "LabelPermissionsDownload": "Smije preuzimati", | ||||||
|   "LabelPermissionsUpdate": "Smije aktualizirati", |   "LabelPermissionsUpdate": "Smije aktualizirati", | ||||||
|   "LabelPermissionsUpload": "Smije uploadati", |   "LabelPermissionsUpload": "Smije uploadati", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Slika putanja/URL", |   "LabelPhotoPathURL": "Slika putanja/URL", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Vrsta reprodukcije", |   "LabelPlayMethod": "Vrsta reprodukcije", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serije", |   "LabelSeries": "Serije", | ||||||
|   "LabelSeriesName": "Ime serije", |   "LabelSeriesName": "Ime serije", | ||||||
|   "LabelSeriesProgress": "Series Progress", |   "LabelSeriesProgress": "Series Progress", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Set as primary", |   "LabelSetEbookAsPrimary": "Set as primary", | ||||||
|   "LabelSetEbookAsSupplementary": "Set as supplementary", |   "LabelSetEbookAsSupplementary": "Set as supplementary", | ||||||
|   "LabelSettingsAudiobooksOnly": "Audiobooks only", |   "LabelSettingsAudiobooksOnly": "Audiobooks only", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "View player queue", |   "LabelViewQueue": "View player queue", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Radnih dana da radi", |   "LabelWeekdaysToRun": "Radnih dana da radi", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Tvoje trajanje audiobooka", |   "LabelYourAudiobookDuration": "Tvoje trajanje audiobooka", | ||||||
|   "LabelYourBookmarks": "Tvoje knjižne oznake", |   "LabelYourBookmarks": "Tvoje knjižne oznake", | ||||||
|   "LabelYourPlaylists": "Your Playlists", |   "LabelYourPlaylists": "Your Playlists", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Minden szerző egyeztetése", |   "ButtonMatchAllAuthors": "Minden szerző egyeztetése", | ||||||
|   "ButtonMatchBooks": "Könyvek egyeztetése", |   "ButtonMatchBooks": "Könyvek egyeztetése", | ||||||
|   "ButtonNevermind": "Mindegy", |   "ButtonNevermind": "Mindegy", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Következő fejezet", |   "ButtonNextChapter": "Következő fejezet", | ||||||
|   "ButtonOk": "Oké", |   "ButtonOk": "Oké", | ||||||
|   "ButtonOpenFeed": "Hírcsatorna megnyitása", |   "ButtonOpenFeed": "Hírcsatorna megnyitása", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Lejátszás", |   "ButtonPlay": "Lejátszás", | ||||||
|   "ButtonPlaying": "Lejátszás folyamatban", |   "ButtonPlaying": "Lejátszás folyamatban", | ||||||
|   "ButtonPlaylists": "Lejátszási listák", |   "ButtonPlaylists": "Lejátszási listák", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Előző fejezet", |   "ButtonPreviousChapter": "Előző fejezet", | ||||||
|   "ButtonPurgeAllCache": "Összes gyorsítótár törlése", |   "ButtonPurgeAllCache": "Összes gyorsítótár törlése", | ||||||
|   "ButtonPurgeItemsCache": "Elemek gyorsítótárának törlése", |   "ButtonPurgeItemsCache": "Elemek gyorsítótárának törlése", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Eltávolítás a sorból", |   "ButtonQueueRemoveItem": "Eltávolítás a sorból", | ||||||
|   "ButtonQuickMatch": "Gyors egyeztetés", |   "ButtonQuickMatch": "Gyors egyeztetés", | ||||||
|   "ButtonRead": "Olvasás", |   "ButtonRead": "Olvasás", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Eltávolítás", |   "ButtonRemove": "Eltávolítás", | ||||||
|   "ButtonRemoveAll": "Összes eltávolítása", |   "ButtonRemoveAll": "Összes eltávolítása", | ||||||
|   "ButtonRemoveAllLibraryItems": "Összes könyvtárelem eltávolítása", |   "ButtonRemoveAllLibraryItems": "Összes könyvtárelem eltávolítása", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Mappa útvonalának kiválasztása", |   "ButtonSelectFolderPath": "Mappa útvonalának kiválasztása", | ||||||
|   "ButtonSeries": "Sorozatok", |   "ButtonSeries": "Sorozatok", | ||||||
|   "ButtonSetChaptersFromTracks": "Fejezetek beállítása sávokból", |   "ButtonSetChaptersFromTracks": "Fejezetek beállítása sávokból", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Idők eltolása", |   "ButtonShiftTimes": "Idők eltolása", | ||||||
|   "ButtonShow": "Megjelenítés", |   "ButtonShow": "Megjelenítés", | ||||||
|   "ButtonStartM4BEncode": "M4B kódolás indítása", |   "ButtonStartM4BEncode": "M4B kódolás indítása", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Részletek frissítése", |   "HeaderUpdateDetails": "Részletek frissítése", | ||||||
|   "HeaderUpdateLibrary": "Könyvtár frissítése", |   "HeaderUpdateLibrary": "Könyvtár frissítése", | ||||||
|   "HeaderUsers": "Felhasználók", |   "HeaderUsers": "Felhasználók", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Saját statisztikák", |   "HeaderYourStats": "Saját statisztikák", | ||||||
|   "LabelAbridged": "Tömörített", |   "LabelAbridged": "Tömörített", | ||||||
|   "LabelAccountType": "Fióktípus", |   "LabelAccountType": "Fióktípus", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Letölthet", |   "LabelPermissionsDownload": "Letölthet", | ||||||
|   "LabelPermissionsUpdate": "Frissíthet", |   "LabelPermissionsUpdate": "Frissíthet", | ||||||
|   "LabelPermissionsUpload": "Feltölthet", |   "LabelPermissionsUpload": "Feltölthet", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Fénykép útvonal/URL", |   "LabelPhotoPathURL": "Fénykép útvonal/URL", | ||||||
|   "LabelPlaylists": "Lejátszási listák", |   "LabelPlaylists": "Lejátszási listák", | ||||||
|   "LabelPlayMethod": "Lejátszási módszer", |   "LabelPlayMethod": "Lejátszási módszer", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Sorozat", |   "LabelSeries": "Sorozat", | ||||||
|   "LabelSeriesName": "Sorozat neve", |   "LabelSeriesName": "Sorozat neve", | ||||||
|   "LabelSeriesProgress": "Sorozat haladása", |   "LabelSeriesProgress": "Sorozat haladása", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Beállítás elsődlegesként", |   "LabelSetEbookAsPrimary": "Beállítás elsődlegesként", | ||||||
|   "LabelSetEbookAsSupplementary": "Beállítás kiegészítőként", |   "LabelSetEbookAsSupplementary": "Beállítás kiegészítőként", | ||||||
|   "LabelSettingsAudiobooksOnly": "Csak hangoskönyvek", |   "LabelSettingsAudiobooksOnly": "Csak hangoskönyvek", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Lejátszó sor megtekintése", |   "LabelViewQueue": "Lejátszó sor megtekintése", | ||||||
|   "LabelVolume": "Hangerő", |   "LabelVolume": "Hangerő", | ||||||
|   "LabelWeekdaysToRun": "Futás napjai", |   "LabelWeekdaysToRun": "Futás napjai", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Hangoskönyv időtartama", |   "LabelYourAudiobookDuration": "Hangoskönyv időtartama", | ||||||
|   "LabelYourBookmarks": "Könyvjelzőid", |   "LabelYourBookmarks": "Könyvjelzőid", | ||||||
|   "LabelYourPlaylists": "Lejátszási listáid", |   "LabelYourPlaylists": "Lejátszási listáid", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Aggiungi metadata agli Autori", |   "ButtonMatchAllAuthors": "Aggiungi metadata agli Autori", | ||||||
|   "ButtonMatchBooks": "Aggiungi metadata della Libreria", |   "ButtonMatchBooks": "Aggiungi metadata della Libreria", | ||||||
|   "ButtonNevermind": "Nevermind", |   "ButtonNevermind": "Nevermind", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Prossimo Capitolo", |   "ButtonNextChapter": "Prossimo Capitolo", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Apri Feed", |   "ButtonOpenFeed": "Apri Feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Play", |   "ButtonPlay": "Play", | ||||||
|   "ButtonPlaying": "In Riproduzione", |   "ButtonPlaying": "In Riproduzione", | ||||||
|   "ButtonPlaylists": "Playlists", |   "ButtonPlaylists": "Playlists", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Capitolo Precendente", |   "ButtonPreviousChapter": "Capitolo Precendente", | ||||||
|   "ButtonPurgeAllCache": "Elimina tutta la Cache", |   "ButtonPurgeAllCache": "Elimina tutta la Cache", | ||||||
|   "ButtonPurgeItemsCache": "Elimina la Cache selezionata", |   "ButtonPurgeItemsCache": "Elimina la Cache selezionata", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Rimuovi dalla Coda", |   "ButtonQueueRemoveItem": "Rimuovi dalla Coda", | ||||||
|   "ButtonQuickMatch": "Controlla Metadata Auto", |   "ButtonQuickMatch": "Controlla Metadata Auto", | ||||||
|   "ButtonRead": "Leggi", |   "ButtonRead": "Leggi", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Rimuovi", |   "ButtonRemove": "Rimuovi", | ||||||
|   "ButtonRemoveAll": "Rimuovi Tutto", |   "ButtonRemoveAll": "Rimuovi Tutto", | ||||||
|   "ButtonRemoveAllLibraryItems": "Rimuovi tutto il contenuto della libreria", |   "ButtonRemoveAllLibraryItems": "Rimuovi tutto il contenuto della libreria", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Seleziona percorso cartella", |   "ButtonSelectFolderPath": "Seleziona percorso cartella", | ||||||
|   "ButtonSeries": "Serie", |   "ButtonSeries": "Serie", | ||||||
|   "ButtonSetChaptersFromTracks": "Impostare i capitoli dalle tracce", |   "ButtonSetChaptersFromTracks": "Impostare i capitoli dalle tracce", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Ricerca veloce", |   "ButtonShiftTimes": "Ricerca veloce", | ||||||
|   "ButtonShow": "Mostra", |   "ButtonShow": "Mostra", | ||||||
|   "ButtonStartM4BEncode": "Inizia L'Encode del M4B", |   "ButtonStartM4BEncode": "Inizia L'Encode del M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Aggiorna Dettagli", |   "HeaderUpdateDetails": "Aggiorna Dettagli", | ||||||
|   "HeaderUpdateLibrary": "Aggiorna Libreria", |   "HeaderUpdateLibrary": "Aggiorna Libreria", | ||||||
|   "HeaderUsers": "Utenti", |   "HeaderUsers": "Utenti", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Statistiche Personali", |   "HeaderYourStats": "Statistiche Personali", | ||||||
|   "LabelAbridged": "Abbreviato", |   "LabelAbridged": "Abbreviato", | ||||||
|   "LabelAccountType": "Tipo di Account", |   "LabelAccountType": "Tipo di Account", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Può Scaricare", |   "LabelPermissionsDownload": "Può Scaricare", | ||||||
|   "LabelPermissionsUpdate": "Può Aggiornare", |   "LabelPermissionsUpdate": "Può Aggiornare", | ||||||
|   "LabelPermissionsUpload": "Può caricare", |   "LabelPermissionsUpload": "Può caricare", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "foto Path/URL", |   "LabelPhotoPathURL": "foto Path/URL", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Metodo di riproduzione", |   "LabelPlayMethod": "Metodo di riproduzione", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serie", |   "LabelSeries": "Serie", | ||||||
|   "LabelSeriesName": "Nome Serie", |   "LabelSeriesName": "Nome Serie", | ||||||
|   "LabelSeriesProgress": "Cominciato", |   "LabelSeriesProgress": "Cominciato", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Immposta come Primario", |   "LabelSetEbookAsPrimary": "Immposta come Primario", | ||||||
|   "LabelSetEbookAsSupplementary": "Imposta come Suplementare", |   "LabelSetEbookAsSupplementary": "Imposta come Suplementare", | ||||||
|   "LabelSettingsAudiobooksOnly": "Solo Audiolibri", |   "LabelSettingsAudiobooksOnly": "Solo Audiolibri", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Visualizza coda", |   "LabelViewQueue": "Visualizza coda", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Giorni feriali da eseguire", |   "LabelWeekdaysToRun": "Giorni feriali da eseguire", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "La durata dell'audiolibro", |   "LabelYourAudiobookDuration": "La durata dell'audiolibro", | ||||||
|   "LabelYourBookmarks": "I tuoi Preferiti", |   "LabelYourBookmarks": "I tuoi Preferiti", | ||||||
|   "LabelYourPlaylists": "le tue Playlist", |   "LabelYourPlaylists": "le tue Playlist", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Pritaikyti visus autorius", |   "ButtonMatchAllAuthors": "Pritaikyti visus autorius", | ||||||
|   "ButtonMatchBooks": "Pritaikyti knygas", |   "ButtonMatchBooks": "Pritaikyti knygas", | ||||||
|   "ButtonNevermind": "Nesvarbu", |   "ButtonNevermind": "Nesvarbu", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Atidaryti srautą", |   "ButtonOpenFeed": "Atidaryti srautą", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Groti", |   "ButtonPlay": "Groti", | ||||||
|   "ButtonPlaying": "Grojama", |   "ButtonPlaying": "Grojama", | ||||||
|   "ButtonPlaylists": "Grojaraščiai", |   "ButtonPlaylists": "Grojaraščiai", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Valyti visą saugyklą", |   "ButtonPurgeAllCache": "Valyti visą saugyklą", | ||||||
|   "ButtonPurgeItemsCache": "Valyti elementų saugyklą", |   "ButtonPurgeItemsCache": "Valyti elementų saugyklą", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Pašalinti iš eilės", |   "ButtonQueueRemoveItem": "Pašalinti iš eilės", | ||||||
|   "ButtonQuickMatch": "Greitas pritaikymas", |   "ButtonQuickMatch": "Greitas pritaikymas", | ||||||
|   "ButtonRead": "Skaityti", |   "ButtonRead": "Skaityti", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Pašalinti", |   "ButtonRemove": "Pašalinti", | ||||||
|   "ButtonRemoveAll": "Pašalinti viską", |   "ButtonRemoveAll": "Pašalinti viską", | ||||||
|   "ButtonRemoveAllLibraryItems": "Pašalinti visus bibliotekos elementus", |   "ButtonRemoveAllLibraryItems": "Pašalinti visus bibliotekos elementus", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Pasirinkti aplanko kelią", |   "ButtonSelectFolderPath": "Pasirinkti aplanko kelią", | ||||||
|   "ButtonSeries": "Serijos", |   "ButtonSeries": "Serijos", | ||||||
|   "ButtonSetChaptersFromTracks": "Nustatyti skyrius iš takelių", |   "ButtonSetChaptersFromTracks": "Nustatyti skyrius iš takelių", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Perstumti laikus", |   "ButtonShiftTimes": "Perstumti laikus", | ||||||
|   "ButtonShow": "Rodyti", |   "ButtonShow": "Rodyti", | ||||||
|   "ButtonStartM4BEncode": "Pradėti M4B kodavimą", |   "ButtonStartM4BEncode": "Pradėti M4B kodavimą", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Atnaujinti informaciją", |   "HeaderUpdateDetails": "Atnaujinti informaciją", | ||||||
|   "HeaderUpdateLibrary": "Atnaujinti biblioteką", |   "HeaderUpdateLibrary": "Atnaujinti biblioteką", | ||||||
|   "HeaderUsers": "Naudotojai", |   "HeaderUsers": "Naudotojai", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Jūsų statistika", |   "HeaderYourStats": "Jūsų statistika", | ||||||
|   "LabelAbridged": "Santrauka", |   "LabelAbridged": "Santrauka", | ||||||
|   "LabelAccountType": "Paskyros tipas", |   "LabelAccountType": "Paskyros tipas", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Gali atsisiųsti", |   "LabelPermissionsDownload": "Gali atsisiųsti", | ||||||
|   "LabelPermissionsUpdate": "Gali atnaujinti", |   "LabelPermissionsUpdate": "Gali atnaujinti", | ||||||
|   "LabelPermissionsUpload": "Gali įkelti", |   "LabelPermissionsUpload": "Gali įkelti", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Nuotraukos kelias/URL", |   "LabelPhotoPathURL": "Nuotraukos kelias/URL", | ||||||
|   "LabelPlaylists": "Grojaraščiai", |   "LabelPlaylists": "Grojaraščiai", | ||||||
|   "LabelPlayMethod": "Grojimo metodas", |   "LabelPlayMethod": "Grojimo metodas", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serija", |   "LabelSeries": "Serija", | ||||||
|   "LabelSeriesName": "Serijos pavadinimas", |   "LabelSeriesName": "Serijos pavadinimas", | ||||||
|   "LabelSeriesProgress": "Serijos progresas", |   "LabelSeriesProgress": "Serijos progresas", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Nustatyti kaip pagrindinę", |   "LabelSetEbookAsPrimary": "Nustatyti kaip pagrindinę", | ||||||
|   "LabelSetEbookAsSupplementary": "Nustatyti kaip papildomą", |   "LabelSetEbookAsSupplementary": "Nustatyti kaip papildomą", | ||||||
|   "LabelSettingsAudiobooksOnly": "Tik garso knygos", |   "LabelSettingsAudiobooksOnly": "Tik garso knygos", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Peržiūrėti grotuvo eilę", |   "LabelViewQueue": "Peržiūrėti grotuvo eilę", | ||||||
|   "LabelVolume": "Garsumas", |   "LabelVolume": "Garsumas", | ||||||
|   "LabelWeekdaysToRun": "Dienos, kuriomis vykdyti", |   "LabelWeekdaysToRun": "Dienos, kuriomis vykdyti", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Jūsų garso knygos trukmė", |   "LabelYourAudiobookDuration": "Jūsų garso knygos trukmė", | ||||||
|   "LabelYourBookmarks": "Jūsų skirtukai", |   "LabelYourBookmarks": "Jūsų skirtukai", | ||||||
|   "LabelYourPlaylists": "Jūsų grojaraščiai", |   "LabelYourPlaylists": "Jūsų grojaraščiai", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Alle auteurs matchen", |   "ButtonMatchAllAuthors": "Alle auteurs matchen", | ||||||
|   "ButtonMatchBooks": "Alle boeken matchen", |   "ButtonMatchBooks": "Alle boeken matchen", | ||||||
|   "ButtonNevermind": "Laat maar", |   "ButtonNevermind": "Laat maar", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Feed openen", |   "ButtonOpenFeed": "Feed openen", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Afspelen", |   "ButtonPlay": "Afspelen", | ||||||
|   "ButtonPlaying": "Speelt", |   "ButtonPlaying": "Speelt", | ||||||
|   "ButtonPlaylists": "Afspeellijsten", |   "ButtonPlaylists": "Afspeellijsten", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Volledige cache legen", |   "ButtonPurgeAllCache": "Volledige cache legen", | ||||||
|   "ButtonPurgeItemsCache": "Onderdelen-cache legen", |   "ButtonPurgeItemsCache": "Onderdelen-cache legen", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Uit wachtrij verwijderen", |   "ButtonQueueRemoveItem": "Uit wachtrij verwijderen", | ||||||
|   "ButtonQuickMatch": "Snelle match", |   "ButtonQuickMatch": "Snelle match", | ||||||
|   "ButtonRead": "Lees", |   "ButtonRead": "Lees", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Verwijder", |   "ButtonRemove": "Verwijder", | ||||||
|   "ButtonRemoveAll": "Alles verwijderen", |   "ButtonRemoveAll": "Alles verwijderen", | ||||||
|   "ButtonRemoveAllLibraryItems": "Verwijder volledige bibliotheekinhoud", |   "ButtonRemoveAllLibraryItems": "Verwijder volledige bibliotheekinhoud", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Maplocatie selecteren", |   "ButtonSelectFolderPath": "Maplocatie selecteren", | ||||||
|   "ButtonSeries": "Series", |   "ButtonSeries": "Series", | ||||||
|   "ButtonSetChaptersFromTracks": "Maak hoofdstukken op basis van tracks", |   "ButtonSetChaptersFromTracks": "Maak hoofdstukken op basis van tracks", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Tijden verschuiven", |   "ButtonShiftTimes": "Tijden verschuiven", | ||||||
|   "ButtonShow": "Toon", |   "ButtonShow": "Toon", | ||||||
|   "ButtonStartM4BEncode": "Start M4B-encoding", |   "ButtonStartM4BEncode": "Start M4B-encoding", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Details bijwerken", |   "HeaderUpdateDetails": "Details bijwerken", | ||||||
|   "HeaderUpdateLibrary": "Bibliotheek bijwerken", |   "HeaderUpdateLibrary": "Bibliotheek bijwerken", | ||||||
|   "HeaderUsers": "Gebruikers", |   "HeaderUsers": "Gebruikers", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Je statistieken", |   "HeaderYourStats": "Je statistieken", | ||||||
|   "LabelAbridged": "Verkort", |   "LabelAbridged": "Verkort", | ||||||
|   "LabelAccountType": "Accounttype", |   "LabelAccountType": "Accounttype", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Kan downloaden", |   "LabelPermissionsDownload": "Kan downloaden", | ||||||
|   "LabelPermissionsUpdate": "Kan bijwerken", |   "LabelPermissionsUpdate": "Kan bijwerken", | ||||||
|   "LabelPermissionsUpload": "Kan uploaden", |   "LabelPermissionsUpload": "Kan uploaden", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Foto pad/URL", |   "LabelPhotoPathURL": "Foto pad/URL", | ||||||
|   "LabelPlaylists": "Afspeellijsten", |   "LabelPlaylists": "Afspeellijsten", | ||||||
|   "LabelPlayMethod": "Afspeelwijze", |   "LabelPlayMethod": "Afspeelwijze", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serie", |   "LabelSeries": "Serie", | ||||||
|   "LabelSeriesName": "Naam serie", |   "LabelSeriesName": "Naam serie", | ||||||
|   "LabelSeriesProgress": "Voortgang serie", |   "LabelSeriesProgress": "Voortgang serie", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Stel in als primair", |   "LabelSetEbookAsPrimary": "Stel in als primair", | ||||||
|   "LabelSetEbookAsSupplementary": "Stel in als supplementair", |   "LabelSetEbookAsSupplementary": "Stel in als supplementair", | ||||||
|   "LabelSettingsAudiobooksOnly": "Alleen audiobooks", |   "LabelSettingsAudiobooksOnly": "Alleen audiobooks", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Bekijk afspeelwachtrij", |   "LabelViewQueue": "Bekijk afspeelwachtrij", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Weekdagen om te draaien", |   "LabelWeekdaysToRun": "Weekdagen om te draaien", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Je audioboekduur", |   "LabelYourAudiobookDuration": "Je audioboekduur", | ||||||
|   "LabelYourBookmarks": "Je boekwijzers", |   "LabelYourBookmarks": "Je boekwijzers", | ||||||
|   "LabelYourPlaylists": "Je afspeellijsten", |   "LabelYourPlaylists": "Je afspeellijsten", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Søk opp alle forfattere", |   "ButtonMatchAllAuthors": "Søk opp alle forfattere", | ||||||
|   "ButtonMatchBooks": "Søk opp bøker", |   "ButtonMatchBooks": "Søk opp bøker", | ||||||
|   "ButtonNevermind": "Avbryt", |   "ButtonNevermind": "Avbryt", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Åpne Feed", |   "ButtonOpenFeed": "Åpne Feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Spill av", |   "ButtonPlay": "Spill av", | ||||||
|   "ButtonPlaying": "Spiller av", |   "ButtonPlaying": "Spiller av", | ||||||
|   "ButtonPlaylists": "Spilleliste", |   "ButtonPlaylists": "Spilleliste", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Tøm alle mellomlager", |   "ButtonPurgeAllCache": "Tøm alle mellomlager", | ||||||
|   "ButtonPurgeItemsCache": "Tøm mellomlager", |   "ButtonPurgeItemsCache": "Tøm mellomlager", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Fjern fra kø", |   "ButtonQueueRemoveItem": "Fjern fra kø", | ||||||
|   "ButtonQuickMatch": "Kjapt søk", |   "ButtonQuickMatch": "Kjapt søk", | ||||||
|   "ButtonRead": "Les", |   "ButtonRead": "Les", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Fjern", |   "ButtonRemove": "Fjern", | ||||||
|   "ButtonRemoveAll": "Fjern alle", |   "ButtonRemoveAll": "Fjern alle", | ||||||
|   "ButtonRemoveAllLibraryItems": "Fjern alle bibliotekobjekter", |   "ButtonRemoveAllLibraryItems": "Fjern alle bibliotekobjekter", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Velg mappe", |   "ButtonSelectFolderPath": "Velg mappe", | ||||||
|   "ButtonSeries": "Serier", |   "ButtonSeries": "Serier", | ||||||
|   "ButtonSetChaptersFromTracks": "Sett kapittel fra spor", |   "ButtonSetChaptersFromTracks": "Sett kapittel fra spor", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Forskyv tider", |   "ButtonShiftTimes": "Forskyv tider", | ||||||
|   "ButtonShow": "Vis", |   "ButtonShow": "Vis", | ||||||
|   "ButtonStartM4BEncode": "Start M4B Koding", |   "ButtonStartM4BEncode": "Start M4B Koding", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Oppdater detaljer", |   "HeaderUpdateDetails": "Oppdater detaljer", | ||||||
|   "HeaderUpdateLibrary": "Oppdater bibliotek", |   "HeaderUpdateLibrary": "Oppdater bibliotek", | ||||||
|   "HeaderUsers": "Brukere", |   "HeaderUsers": "Brukere", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Din statistikk", |   "HeaderYourStats": "Din statistikk", | ||||||
|   "LabelAbridged": "Forkortet", |   "LabelAbridged": "Forkortet", | ||||||
|   "LabelAccountType": "Kontotype", |   "LabelAccountType": "Kontotype", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Kan laste ned", |   "LabelPermissionsDownload": "Kan laste ned", | ||||||
|   "LabelPermissionsUpdate": "Kan oppdatere", |   "LabelPermissionsUpdate": "Kan oppdatere", | ||||||
|   "LabelPermissionsUpload": "Kan laste opp", |   "LabelPermissionsUpload": "Kan laste opp", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Bilde sti/URL", |   "LabelPhotoPathURL": "Bilde sti/URL", | ||||||
|   "LabelPlaylists": "Spilleliste", |   "LabelPlaylists": "Spilleliste", | ||||||
|   "LabelPlayMethod": "Avspillingsmetode", |   "LabelPlayMethod": "Avspillingsmetode", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serier", |   "LabelSeries": "Serier", | ||||||
|   "LabelSeriesName": "Serier Navn", |   "LabelSeriesName": "Serier Navn", | ||||||
|   "LabelSeriesProgress": "Serier fremgang", |   "LabelSeriesProgress": "Serier fremgang", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Sett som primær", |   "LabelSetEbookAsPrimary": "Sett som primær", | ||||||
|   "LabelSetEbookAsSupplementary": "Sett som supplerende", |   "LabelSetEbookAsSupplementary": "Sett som supplerende", | ||||||
|   "LabelSettingsAudiobooksOnly": "Kun lydbøker", |   "LabelSettingsAudiobooksOnly": "Kun lydbøker", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Vis spillerkø", |   "LabelViewQueue": "Vis spillerkø", | ||||||
|   "LabelVolume": "Volum", |   "LabelVolume": "Volum", | ||||||
|   "LabelWeekdaysToRun": "Ukedager å kjøre", |   "LabelWeekdaysToRun": "Ukedager å kjøre", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Din lydbok lengde", |   "LabelYourAudiobookDuration": "Din lydbok lengde", | ||||||
|   "LabelYourBookmarks": "Dine bokmerker", |   "LabelYourBookmarks": "Dine bokmerker", | ||||||
|   "LabelYourPlaylists": "Dine spillelister", |   "LabelYourPlaylists": "Dine spillelister", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Dopasuj wszystkich autorów", |   "ButtonMatchAllAuthors": "Dopasuj wszystkich autorów", | ||||||
|   "ButtonMatchBooks": "Dopasuj książki", |   "ButtonMatchBooks": "Dopasuj książki", | ||||||
|   "ButtonNevermind": "Anuluj", |   "ButtonNevermind": "Anuluj", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Otwórz feed", |   "ButtonOpenFeed": "Otwórz feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Odtwarzaj", |   "ButtonPlay": "Odtwarzaj", | ||||||
|   "ButtonPlaying": "Odtwarzane", |   "ButtonPlaying": "Odtwarzane", | ||||||
|   "ButtonPlaylists": "Playlists", |   "ButtonPlaylists": "Playlists", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Wyczyść dane tymczasowe", |   "ButtonPurgeAllCache": "Wyczyść dane tymczasowe", | ||||||
|   "ButtonPurgeItemsCache": "Wyczyść dane tymczasowe pozycji", |   "ButtonPurgeItemsCache": "Wyczyść dane tymczasowe pozycji", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Usuń z kolejki", |   "ButtonQueueRemoveItem": "Usuń z kolejki", | ||||||
|   "ButtonQuickMatch": "Szybkie dopasowanie", |   "ButtonQuickMatch": "Szybkie dopasowanie", | ||||||
|   "ButtonRead": "Czytaj", |   "ButtonRead": "Czytaj", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Usuń", |   "ButtonRemove": "Usuń", | ||||||
|   "ButtonRemoveAll": "Usuń wszystko", |   "ButtonRemoveAll": "Usuń wszystko", | ||||||
|   "ButtonRemoveAllLibraryItems": "Usuń wszystkie elementy z biblioteki", |   "ButtonRemoveAllLibraryItems": "Usuń wszystkie elementy z biblioteki", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Wybierz ścieżkę folderu", |   "ButtonSelectFolderPath": "Wybierz ścieżkę folderu", | ||||||
|   "ButtonSeries": "Seria", |   "ButtonSeries": "Seria", | ||||||
|   "ButtonSetChaptersFromTracks": "Set chapters from tracks", |   "ButtonSetChaptersFromTracks": "Set chapters from tracks", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Przesunięcie czasowe", |   "ButtonShiftTimes": "Przesunięcie czasowe", | ||||||
|   "ButtonShow": "Pokaż", |   "ButtonShow": "Pokaż", | ||||||
|   "ButtonStartM4BEncode": "Eksportuj jako plik M4B", |   "ButtonStartM4BEncode": "Eksportuj jako plik M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Zaktualizuj szczegóły", |   "HeaderUpdateDetails": "Zaktualizuj szczegóły", | ||||||
|   "HeaderUpdateLibrary": "Zaktualizuj bibliotekę", |   "HeaderUpdateLibrary": "Zaktualizuj bibliotekę", | ||||||
|   "HeaderUsers": "Użytkownicy", |   "HeaderUsers": "Użytkownicy", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Twoje statystyki", |   "HeaderYourStats": "Twoje statystyki", | ||||||
|   "LabelAbridged": "Abridged", |   "LabelAbridged": "Abridged", | ||||||
|   "LabelAccountType": "Typ konta", |   "LabelAccountType": "Typ konta", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Ma możliwość pobierania", |   "LabelPermissionsDownload": "Ma możliwość pobierania", | ||||||
|   "LabelPermissionsUpdate": "Ma możliwość aktualizowania", |   "LabelPermissionsUpdate": "Ma możliwość aktualizowania", | ||||||
|   "LabelPermissionsUpload": "Ma możliwość dodawania", |   "LabelPermissionsUpload": "Ma możliwość dodawania", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Scieżka/URL do zdjęcia", |   "LabelPhotoPathURL": "Scieżka/URL do zdjęcia", | ||||||
|   "LabelPlaylists": "Playlists", |   "LabelPlaylists": "Playlists", | ||||||
|   "LabelPlayMethod": "Metoda odtwarzania", |   "LabelPlayMethod": "Metoda odtwarzania", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serie", |   "LabelSeries": "Serie", | ||||||
|   "LabelSeriesName": "Nazwy serii", |   "LabelSeriesName": "Nazwy serii", | ||||||
|   "LabelSeriesProgress": "Postęp w serii", |   "LabelSeriesProgress": "Postęp w serii", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Set as primary", |   "LabelSetEbookAsPrimary": "Set as primary", | ||||||
|   "LabelSetEbookAsSupplementary": "Set as supplementary", |   "LabelSetEbookAsSupplementary": "Set as supplementary", | ||||||
|   "LabelSettingsAudiobooksOnly": "Audiobooks only", |   "LabelSettingsAudiobooksOnly": "Audiobooks only", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Wyświetlaj kolejkę odtwarzania", |   "LabelViewQueue": "Wyświetlaj kolejkę odtwarzania", | ||||||
|   "LabelVolume": "Głośność", |   "LabelVolume": "Głośność", | ||||||
|   "LabelWeekdaysToRun": "Dni tygodnia", |   "LabelWeekdaysToRun": "Dni tygodnia", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Czas trwania audiobooka", |   "LabelYourAudiobookDuration": "Czas trwania audiobooka", | ||||||
|   "LabelYourBookmarks": "Twoje zakładki", |   "LabelYourBookmarks": "Twoje zakładki", | ||||||
|   "LabelYourPlaylists": "Your Playlists", |   "LabelYourPlaylists": "Your Playlists", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Consultar Todos os Autores", |   "ButtonMatchAllAuthors": "Consultar Todos os Autores", | ||||||
|   "ButtonMatchBooks": "Consultar Livros", |   "ButtonMatchBooks": "Consultar Livros", | ||||||
|   "ButtonNevermind": "Cancelar", |   "ButtonNevermind": "Cancelar", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Próximo Capítulo", |   "ButtonNextChapter": "Próximo Capítulo", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Abrir Feed", |   "ButtonOpenFeed": "Abrir Feed", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Reproduzir", |   "ButtonPlay": "Reproduzir", | ||||||
|   "ButtonPlaying": "Reproduzindo", |   "ButtonPlaying": "Reproduzindo", | ||||||
|   "ButtonPlaylists": "Lista de Reprodução", |   "ButtonPlaylists": "Lista de Reprodução", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Capítulo Anterior", |   "ButtonPreviousChapter": "Capítulo Anterior", | ||||||
|   "ButtonPurgeAllCache": "Apagar Todo o Cache", |   "ButtonPurgeAllCache": "Apagar Todo o Cache", | ||||||
|   "ButtonPurgeItemsCache": "Apagar o Cache de Itens", |   "ButtonPurgeItemsCache": "Apagar o Cache de Itens", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Remover da Lista", |   "ButtonQueueRemoveItem": "Remover da Lista", | ||||||
|   "ButtonQuickMatch": "Consulta rápida", |   "ButtonQuickMatch": "Consulta rápida", | ||||||
|   "ButtonRead": "Ler", |   "ButtonRead": "Ler", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Remover", |   "ButtonRemove": "Remover", | ||||||
|   "ButtonRemoveAll": "Remover Todos", |   "ButtonRemoveAll": "Remover Todos", | ||||||
|   "ButtonRemoveAllLibraryItems": "Remover Todos os Itens da Biblioteca", |   "ButtonRemoveAllLibraryItems": "Remover Todos os Itens da Biblioteca", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Selecionar Caminho da Pasta", |   "ButtonSelectFolderPath": "Selecionar Caminho da Pasta", | ||||||
|   "ButtonSeries": "Séries", |   "ButtonSeries": "Séries", | ||||||
|   "ButtonSetChaptersFromTracks": "Definir Capítulos Segundo Faixas", |   "ButtonSetChaptersFromTracks": "Definir Capítulos Segundo Faixas", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Deslocar tempos", |   "ButtonShiftTimes": "Deslocar tempos", | ||||||
|   "ButtonShow": "Exibir", |   "ButtonShow": "Exibir", | ||||||
|   "ButtonStartM4BEncode": "Iniciar Codificação M4B", |   "ButtonStartM4BEncode": "Iniciar Codificação M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Atualizar Detalhes", |   "HeaderUpdateDetails": "Atualizar Detalhes", | ||||||
|   "HeaderUpdateLibrary": "Atualizar Biblioteca", |   "HeaderUpdateLibrary": "Atualizar Biblioteca", | ||||||
|   "HeaderUsers": "Usuários", |   "HeaderUsers": "Usuários", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Suas Estatísticas", |   "HeaderYourStats": "Suas Estatísticas", | ||||||
|   "LabelAbridged": "Versão Abreviada", |   "LabelAbridged": "Versão Abreviada", | ||||||
|   "LabelAccountType": "Tipo de Conta", |   "LabelAccountType": "Tipo de Conta", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Pode Fazer Download", |   "LabelPermissionsDownload": "Pode Fazer Download", | ||||||
|   "LabelPermissionsUpdate": "Pode Atualizar", |   "LabelPermissionsUpdate": "Pode Atualizar", | ||||||
|   "LabelPermissionsUpload": "Pode Fazer Upload", |   "LabelPermissionsUpload": "Pode Fazer Upload", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Caminho/URL para Foto", |   "LabelPhotoPathURL": "Caminho/URL para Foto", | ||||||
|   "LabelPlaylists": "Listas de Reprodução", |   "LabelPlaylists": "Listas de Reprodução", | ||||||
|   "LabelPlayMethod": "Método de Reprodução", |   "LabelPlayMethod": "Método de Reprodução", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Série", |   "LabelSeries": "Série", | ||||||
|   "LabelSeriesName": "Nome da Série", |   "LabelSeriesName": "Nome da Série", | ||||||
|   "LabelSeriesProgress": "Progresso da Série", |   "LabelSeriesProgress": "Progresso da Série", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Definir como principal", |   "LabelSetEbookAsPrimary": "Definir como principal", | ||||||
|   "LabelSetEbookAsSupplementary": "Definir como complementar", |   "LabelSetEbookAsSupplementary": "Definir como complementar", | ||||||
|   "LabelSettingsAudiobooksOnly": "Apenas Audiobooks", |   "LabelSettingsAudiobooksOnly": "Apenas Audiobooks", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Ver fila do reprodutor", |   "LabelViewQueue": "Ver fila do reprodutor", | ||||||
|   "LabelVolume": "Volume", |   "LabelVolume": "Volume", | ||||||
|   "LabelWeekdaysToRun": "Dias da semana para executar", |   "LabelWeekdaysToRun": "Dias da semana para executar", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Duração do seu audiobook", |   "LabelYourAudiobookDuration": "Duração do seu audiobook", | ||||||
|   "LabelYourBookmarks": "Seus Marcadores", |   "LabelYourBookmarks": "Seus Marcadores", | ||||||
|   "LabelYourPlaylists": "Suas Listas de Reprodução", |   "LabelYourPlaylists": "Suas Listas de Reprodução", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Найти всех авторов", |   "ButtonMatchAllAuthors": "Найти всех авторов", | ||||||
|   "ButtonMatchBooks": "Найти книги", |   "ButtonMatchBooks": "Найти книги", | ||||||
|   "ButtonNevermind": "Не важно", |   "ButtonNevermind": "Не важно", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Ok", |   "ButtonOk": "Ok", | ||||||
|   "ButtonOpenFeed": "Открыть канал", |   "ButtonOpenFeed": "Открыть канал", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Слушать", |   "ButtonPlay": "Слушать", | ||||||
|   "ButtonPlaying": "Проигрывается", |   "ButtonPlaying": "Проигрывается", | ||||||
|   "ButtonPlaylists": "Плейлисты", |   "ButtonPlaylists": "Плейлисты", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Очистить весь кэш", |   "ButtonPurgeAllCache": "Очистить весь кэш", | ||||||
|   "ButtonPurgeItemsCache": "Очистить кэш элементов", |   "ButtonPurgeItemsCache": "Очистить кэш элементов", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Удалить из очереди", |   "ButtonQueueRemoveItem": "Удалить из очереди", | ||||||
|   "ButtonQuickMatch": "Быстрый поиск", |   "ButtonQuickMatch": "Быстрый поиск", | ||||||
|   "ButtonRead": "Читать", |   "ButtonRead": "Читать", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Удалить", |   "ButtonRemove": "Удалить", | ||||||
|   "ButtonRemoveAll": "Удалить всё", |   "ButtonRemoveAll": "Удалить всё", | ||||||
|   "ButtonRemoveAllLibraryItems": "Удалить все элементы библиотеки", |   "ButtonRemoveAllLibraryItems": "Удалить все элементы библиотеки", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Выберите путь папки", |   "ButtonSelectFolderPath": "Выберите путь папки", | ||||||
|   "ButtonSeries": "Серии", |   "ButtonSeries": "Серии", | ||||||
|   "ButtonSetChaptersFromTracks": "Установить главы из треков", |   "ButtonSetChaptersFromTracks": "Установить главы из треков", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Смещение", |   "ButtonShiftTimes": "Смещение", | ||||||
|   "ButtonShow": "Показать", |   "ButtonShow": "Показать", | ||||||
|   "ButtonStartM4BEncode": "Начать кодирование M4B", |   "ButtonStartM4BEncode": "Начать кодирование M4B", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Обновить детали", |   "HeaderUpdateDetails": "Обновить детали", | ||||||
|   "HeaderUpdateLibrary": "Обновить библиотеку", |   "HeaderUpdateLibrary": "Обновить библиотеку", | ||||||
|   "HeaderUsers": "Пользователи", |   "HeaderUsers": "Пользователи", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Ваша статистика", |   "HeaderYourStats": "Ваша статистика", | ||||||
|   "LabelAbridged": "Сокращенное издание", |   "LabelAbridged": "Сокращенное издание", | ||||||
|   "LabelAccountType": "Тип учетной записи", |   "LabelAccountType": "Тип учетной записи", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Может скачивать", |   "LabelPermissionsDownload": "Может скачивать", | ||||||
|   "LabelPermissionsUpdate": "Может обновлять", |   "LabelPermissionsUpdate": "Может обновлять", | ||||||
|   "LabelPermissionsUpload": "Может закачивать", |   "LabelPermissionsUpload": "Может закачивать", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Путь к фото/URL", |   "LabelPhotoPathURL": "Путь к фото/URL", | ||||||
|   "LabelPlaylists": "Плейлисты", |   "LabelPlaylists": "Плейлисты", | ||||||
|   "LabelPlayMethod": "Метод воспроизведения", |   "LabelPlayMethod": "Метод воспроизведения", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Серия", |   "LabelSeries": "Серия", | ||||||
|   "LabelSeriesName": "Имя серии", |   "LabelSeriesName": "Имя серии", | ||||||
|   "LabelSeriesProgress": "Прогресс серии", |   "LabelSeriesProgress": "Прогресс серии", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Установить как основную", |   "LabelSetEbookAsPrimary": "Установить как основную", | ||||||
|   "LabelSetEbookAsSupplementary": "Установить как дополнительную", |   "LabelSetEbookAsSupplementary": "Установить как дополнительную", | ||||||
|   "LabelSettingsAudiobooksOnly": "Только аудиокниги", |   "LabelSettingsAudiobooksOnly": "Только аудиокниги", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Очередь воспроизведения", |   "LabelViewQueue": "Очередь воспроизведения", | ||||||
|   "LabelVolume": "Громкость", |   "LabelVolume": "Громкость", | ||||||
|   "LabelWeekdaysToRun": "Дни недели для запуска", |   "LabelWeekdaysToRun": "Дни недели для запуска", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Продолжительность Вашей книги", |   "LabelYourAudiobookDuration": "Продолжительность Вашей книги", | ||||||
|   "LabelYourBookmarks": "Ваши закладки", |   "LabelYourBookmarks": "Ваши закладки", | ||||||
|   "LabelYourPlaylists": "Ваши плейлисты", |   "LabelYourPlaylists": "Ваши плейлисты", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "Matcha alla författare", |   "ButtonMatchAllAuthors": "Matcha alla författare", | ||||||
|   "ButtonMatchBooks": "Matcha böcker", |   "ButtonMatchBooks": "Matcha böcker", | ||||||
|   "ButtonNevermind": "Glöm det", |   "ButtonNevermind": "Glöm det", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "Okej", |   "ButtonOk": "Okej", | ||||||
|   "ButtonOpenFeed": "Öppna flöde", |   "ButtonOpenFeed": "Öppna flöde", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "Spela", |   "ButtonPlay": "Spela", | ||||||
|   "ButtonPlaying": "Spelar", |   "ButtonPlaying": "Spelar", | ||||||
|   "ButtonPlaylists": "Spellistor", |   "ButtonPlaylists": "Spellistor", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "Rensa all cache", |   "ButtonPurgeAllCache": "Rensa all cache", | ||||||
|   "ButtonPurgeItemsCache": "Rensa föremåls-cache", |   "ButtonPurgeItemsCache": "Rensa föremåls-cache", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "Ta bort från kön", |   "ButtonQueueRemoveItem": "Ta bort från kön", | ||||||
|   "ButtonQuickMatch": "Snabb matchning", |   "ButtonQuickMatch": "Snabb matchning", | ||||||
|   "ButtonRead": "Läs", |   "ButtonRead": "Läs", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "Ta bort", |   "ButtonRemove": "Ta bort", | ||||||
|   "ButtonRemoveAll": "Ta bort alla", |   "ButtonRemoveAll": "Ta bort alla", | ||||||
|   "ButtonRemoveAllLibraryItems": "Ta bort alla biblioteksobjekt", |   "ButtonRemoveAllLibraryItems": "Ta bort alla biblioteksobjekt", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "Välj mappens sökväg", |   "ButtonSelectFolderPath": "Välj mappens sökväg", | ||||||
|   "ButtonSeries": "Serie", |   "ButtonSeries": "Serie", | ||||||
|   "ButtonSetChaptersFromTracks": "Ställ in kapitel från spår", |   "ButtonSetChaptersFromTracks": "Ställ in kapitel från spår", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "Förskjut tider", |   "ButtonShiftTimes": "Förskjut tider", | ||||||
|   "ButtonShow": "Visa", |   "ButtonShow": "Visa", | ||||||
|   "ButtonStartM4BEncode": "Starta M4B-kodning", |   "ButtonStartM4BEncode": "Starta M4B-kodning", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "Uppdatera detaljer", |   "HeaderUpdateDetails": "Uppdatera detaljer", | ||||||
|   "HeaderUpdateLibrary": "Uppdatera bibliotek", |   "HeaderUpdateLibrary": "Uppdatera bibliotek", | ||||||
|   "HeaderUsers": "Användare", |   "HeaderUsers": "Användare", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "Dina statistik", |   "HeaderYourStats": "Dina statistik", | ||||||
|   "LabelAbridged": "Förkortad", |   "LabelAbridged": "Förkortad", | ||||||
|   "LabelAccountType": "Kontotyp", |   "LabelAccountType": "Kontotyp", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "Kan ladda ner", |   "LabelPermissionsDownload": "Kan ladda ner", | ||||||
|   "LabelPermissionsUpdate": "Kan uppdatera", |   "LabelPermissionsUpdate": "Kan uppdatera", | ||||||
|   "LabelPermissionsUpload": "Kan ladda upp", |   "LabelPermissionsUpload": "Kan ladda upp", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "Bildsökväg/URL", |   "LabelPhotoPathURL": "Bildsökväg/URL", | ||||||
|   "LabelPlaylists": "Spellistor", |   "LabelPlaylists": "Spellistor", | ||||||
|   "LabelPlayMethod": "Spelläge", |   "LabelPlayMethod": "Spelläge", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "Serie", |   "LabelSeries": "Serie", | ||||||
|   "LabelSeriesName": "Serienamn", |   "LabelSeriesName": "Serienamn", | ||||||
|   "LabelSeriesProgress": "Serieframsteg", |   "LabelSeriesProgress": "Serieframsteg", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "Ange som primär", |   "LabelSetEbookAsPrimary": "Ange som primär", | ||||||
|   "LabelSetEbookAsSupplementary": "Ange som kompletterande", |   "LabelSetEbookAsSupplementary": "Ange som kompletterande", | ||||||
|   "LabelSettingsAudiobooksOnly": "Endast ljudböcker", |   "LabelSettingsAudiobooksOnly": "Endast ljudböcker", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "Visa spellista", |   "LabelViewQueue": "Visa spellista", | ||||||
|   "LabelVolume": "Volym", |   "LabelVolume": "Volym", | ||||||
|   "LabelWeekdaysToRun": "Vardagar att köra", |   "LabelWeekdaysToRun": "Vardagar att köra", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "Din ljudboks varaktighet", |   "LabelYourAudiobookDuration": "Din ljudboks varaktighet", | ||||||
|   "LabelYourBookmarks": "Dina bokmärken", |   "LabelYourBookmarks": "Dina bokmärken", | ||||||
|   "LabelYourPlaylists": "Dina spellistor", |   "LabelYourPlaylists": "Dina spellistor", | ||||||
|  | |||||||
| @ -43,6 +43,7 @@ | |||||||
|   "ButtonMatchAllAuthors": "匹配所有作者", |   "ButtonMatchAllAuthors": "匹配所有作者", | ||||||
|   "ButtonMatchBooks": "匹配图书", |   "ButtonMatchBooks": "匹配图书", | ||||||
|   "ButtonNevermind": "没有关系", |   "ButtonNevermind": "没有关系", | ||||||
|  |   "ButtonNext": "Next", | ||||||
|   "ButtonNextChapter": "Next Chapter", |   "ButtonNextChapter": "Next Chapter", | ||||||
|   "ButtonOk": "确定", |   "ButtonOk": "确定", | ||||||
|   "ButtonOpenFeed": "打开源", |   "ButtonOpenFeed": "打开源", | ||||||
| @ -51,6 +52,7 @@ | |||||||
|   "ButtonPlay": "播放", |   "ButtonPlay": "播放", | ||||||
|   "ButtonPlaying": "正在播放", |   "ButtonPlaying": "正在播放", | ||||||
|   "ButtonPlaylists": "播放列表", |   "ButtonPlaylists": "播放列表", | ||||||
|  |   "ButtonPrevious": "Previous", | ||||||
|   "ButtonPreviousChapter": "Previous Chapter", |   "ButtonPreviousChapter": "Previous Chapter", | ||||||
|   "ButtonPurgeAllCache": "清理所有缓存", |   "ButtonPurgeAllCache": "清理所有缓存", | ||||||
|   "ButtonPurgeItemsCache": "清理项目缓存", |   "ButtonPurgeItemsCache": "清理项目缓存", | ||||||
| @ -59,6 +61,7 @@ | |||||||
|   "ButtonQueueRemoveItem": "从队列中移除", |   "ButtonQueueRemoveItem": "从队列中移除", | ||||||
|   "ButtonQuickMatch": "快速匹配", |   "ButtonQuickMatch": "快速匹配", | ||||||
|   "ButtonRead": "读取", |   "ButtonRead": "读取", | ||||||
|  |   "ButtonRefresh": "Refresh", | ||||||
|   "ButtonRemove": "移除", |   "ButtonRemove": "移除", | ||||||
|   "ButtonRemoveAll": "移除所有", |   "ButtonRemoveAll": "移除所有", | ||||||
|   "ButtonRemoveAllLibraryItems": "移除所有媒体库项目", |   "ButtonRemoveAllLibraryItems": "移除所有媒体库项目", | ||||||
| @ -78,6 +81,7 @@ | |||||||
|   "ButtonSelectFolderPath": "选择文件夹路径", |   "ButtonSelectFolderPath": "选择文件夹路径", | ||||||
|   "ButtonSeries": "系列", |   "ButtonSeries": "系列", | ||||||
|   "ButtonSetChaptersFromTracks": "将音轨设置为章节", |   "ButtonSetChaptersFromTracks": "将音轨设置为章节", | ||||||
|  |   "ButtonShare": "Share", | ||||||
|   "ButtonShiftTimes": "快速调整时间", |   "ButtonShiftTimes": "快速调整时间", | ||||||
|   "ButtonShow": "显示", |   "ButtonShow": "显示", | ||||||
|   "ButtonStartM4BEncode": "开始 M4B 编码", |   "ButtonStartM4BEncode": "开始 M4B 编码", | ||||||
| @ -180,6 +184,7 @@ | |||||||
|   "HeaderUpdateDetails": "更新详情", |   "HeaderUpdateDetails": "更新详情", | ||||||
|   "HeaderUpdateLibrary": "更新媒体库", |   "HeaderUpdateLibrary": "更新媒体库", | ||||||
|   "HeaderUsers": "用户", |   "HeaderUsers": "用户", | ||||||
|  |   "HeaderYearReview": "Year {0} in Review", | ||||||
|   "HeaderYourStats": "你的统计数据", |   "HeaderYourStats": "你的统计数据", | ||||||
|   "LabelAbridged": "概要", |   "LabelAbridged": "概要", | ||||||
|   "LabelAccountType": "帐户类型", |   "LabelAccountType": "帐户类型", | ||||||
| @ -391,6 +396,7 @@ | |||||||
|   "LabelPermissionsDownload": "可以下载", |   "LabelPermissionsDownload": "可以下载", | ||||||
|   "LabelPermissionsUpdate": "可以更新", |   "LabelPermissionsUpdate": "可以更新", | ||||||
|   "LabelPermissionsUpload": "可以上传", |   "LabelPermissionsUpload": "可以上传", | ||||||
|  |   "LabelPersonalYearReview": "Your Year in Review ({0})", | ||||||
|   "LabelPhotoPathURL": "图片路径或 URL", |   "LabelPhotoPathURL": "图片路径或 URL", | ||||||
|   "LabelPlaylists": "播放列表", |   "LabelPlaylists": "播放列表", | ||||||
|   "LabelPlayMethod": "播放方法", |   "LabelPlayMethod": "播放方法", | ||||||
| @ -436,6 +442,7 @@ | |||||||
|   "LabelSeries": "系列", |   "LabelSeries": "系列", | ||||||
|   "LabelSeriesName": "系列名称", |   "LabelSeriesName": "系列名称", | ||||||
|   "LabelSeriesProgress": "系列进度", |   "LabelSeriesProgress": "系列进度", | ||||||
|  |   "LabelServerYearReview": "Server Year in Review ({0})", | ||||||
|   "LabelSetEbookAsPrimary": "设置为主", |   "LabelSetEbookAsPrimary": "设置为主", | ||||||
|   "LabelSetEbookAsSupplementary": "设置为补充", |   "LabelSetEbookAsSupplementary": "设置为补充", | ||||||
|   "LabelSettingsAudiobooksOnly": "只有有声读物", |   "LabelSettingsAudiobooksOnly": "只有有声读物", | ||||||
| @ -552,6 +559,8 @@ | |||||||
|   "LabelViewQueue": "查看播放列表", |   "LabelViewQueue": "查看播放列表", | ||||||
|   "LabelVolume": "音量", |   "LabelVolume": "音量", | ||||||
|   "LabelWeekdaysToRun": "工作日运行", |   "LabelWeekdaysToRun": "工作日运行", | ||||||
|  |   "LabelYearReviewHide": "Hide Year in Review", | ||||||
|  |   "LabelYearReviewShow": "See Year in Review", | ||||||
|   "LabelYourAudiobookDuration": "你的有声读物持续时间", |   "LabelYourAudiobookDuration": "你的有声读物持续时间", | ||||||
|   "LabelYourBookmarks": "你的书签", |   "LabelYourBookmarks": "你的书签", | ||||||
|   "LabelYourPlaylists": "你的播放列表", |   "LabelYourPlaylists": "你的播放列表", | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user