mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Merge pull request #2471 from Bnyro/user-playlist-description
Support editing playlist descriptions
This commit is contained in:
		
						commit
						5360458a6d
					
				
					 41 changed files with 72 additions and 66 deletions
				
			
		| 
						 | 
					@ -39,8 +39,26 @@
 | 
				
			||||||
                    v-text="playlist.name"
 | 
					                    v-text="playlist.name"
 | 
				
			||||||
                />
 | 
					                />
 | 
				
			||||||
            </router-link>
 | 
					            </router-link>
 | 
				
			||||||
            <button class="btn h-auto" @click="renamePlaylist(playlist.id)" v-t="'actions.rename_playlist'" />
 | 
					            <button class="btn h-auto" @click="showPlaylistEditModal(playlist)" v-t="'actions.edit_playlist'" />
 | 
				
			||||||
            <button class="btn h-auto ml-2" @click="deletePlaylist(playlist.id)" v-t="'actions.delete_playlist'" />
 | 
					            <button class="btn h-auto ml-2" @click="deletePlaylist(playlist.id)" v-t="'actions.delete_playlist'" />
 | 
				
			||||||
 | 
					            <ModalComponent v-if="playlist.id == playlistToEdit" @close="playlistToEdit = null">
 | 
				
			||||||
 | 
					                <div class="flex flex-col gap-2">
 | 
				
			||||||
 | 
					                    <h2 v-t="'actions.edit_playlist'" />
 | 
				
			||||||
 | 
					                    <input
 | 
				
			||||||
 | 
					                        class="input"
 | 
				
			||||||
 | 
					                        type="text"
 | 
				
			||||||
 | 
					                        v-model="newPlaylistName"
 | 
				
			||||||
 | 
					                        :placeholder="$t('actions.playlist_name')"
 | 
				
			||||||
 | 
					                    />
 | 
				
			||||||
 | 
					                    <input
 | 
				
			||||||
 | 
					                        class="input"
 | 
				
			||||||
 | 
					                        type="text"
 | 
				
			||||||
 | 
					                        v-model="newPlaylistDescription"
 | 
				
			||||||
 | 
					                        :placeholder="$t('actions.playlist_description')"
 | 
				
			||||||
 | 
					                    />
 | 
				
			||||||
 | 
					                    <button class="btn ml-auto" @click="editPlaylist(playlist)" v-t="'actions.okay'" />
 | 
				
			||||||
 | 
					                </div>
 | 
				
			||||||
 | 
					            </ModalComponent>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <hr />
 | 
					    <hr />
 | 
				
			||||||
| 
						 | 
					@ -76,11 +94,16 @@
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<script>
 | 
					<script>
 | 
				
			||||||
 | 
					import ModalComponent from "./ModalComponent.vue";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default {
 | 
					export default {
 | 
				
			||||||
    data() {
 | 
					    data() {
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            playlists: [],
 | 
					            playlists: [],
 | 
				
			||||||
            bookmarks: [],
 | 
					            bookmarks: [],
 | 
				
			||||||
 | 
					            playlistToEdit: null,
 | 
				
			||||||
 | 
					            newPlaylistName: "",
 | 
				
			||||||
 | 
					            newPlaylistDescription: "",
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    mounted() {
 | 
					    mounted() {
 | 
				
			||||||
| 
						 | 
					@ -100,13 +123,20 @@ export default {
 | 
				
			||||||
                this.playlists = json;
 | 
					                this.playlists = json;
 | 
				
			||||||
            });
 | 
					            });
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        renamePlaylist(id) {
 | 
					        showPlaylistEditModal(playlist) {
 | 
				
			||||||
            const newName = prompt(this.$t("actions.new_playlist_name"));
 | 
					            this.newPlaylistName = playlist.name;
 | 
				
			||||||
            if (!newName) return;
 | 
					            this.newPlaylistDescription = playlist.description;
 | 
				
			||||||
 | 
					            this.playlistToEdit = playlist.id;
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        editPlaylist(selectedPlaylist) {
 | 
				
			||||||
 | 
					            // save the new name and description since they could be overwritten during the http request
 | 
				
			||||||
 | 
					            const newName = this.newPlaylistName;
 | 
				
			||||||
 | 
					            const newDescription = this.newPlaylistDescription;
 | 
				
			||||||
 | 
					            if (newName != selectedPlaylist.name) {
 | 
				
			||||||
                this.fetchJson(this.authApiUrl() + "/user/playlists/rename", null, {
 | 
					                this.fetchJson(this.authApiUrl() + "/user/playlists/rename", null, {
 | 
				
			||||||
                    method: "POST",
 | 
					                    method: "POST",
 | 
				
			||||||
                    body: JSON.stringify({
 | 
					                    body: JSON.stringify({
 | 
				
			||||||
                    playlistId: id,
 | 
					                        playlistId: selectedPlaylist.id,
 | 
				
			||||||
                        newName: newName,
 | 
					                        newName: newName,
 | 
				
			||||||
                    }),
 | 
					                    }),
 | 
				
			||||||
                    headers: {
 | 
					                    headers: {
 | 
				
			||||||
| 
						 | 
					@ -115,15 +145,26 @@ export default {
 | 
				
			||||||
                    },
 | 
					                    },
 | 
				
			||||||
                }).then(json => {
 | 
					                }).then(json => {
 | 
				
			||||||
                    if (json.error) alert(json.error);
 | 
					                    if (json.error) alert(json.error);
 | 
				
			||||||
                else {
 | 
					                    else selectedPlaylist.name = newName;
 | 
				
			||||||
                    this.playlists.forEach((playlist, index) => {
 | 
					 | 
				
			||||||
                        if (playlist.id == id) {
 | 
					 | 
				
			||||||
                            this.playlists[index].name = newName;
 | 
					 | 
				
			||||||
                            return;
 | 
					 | 
				
			||||||
                        }
 | 
					 | 
				
			||||||
                });
 | 
					                });
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					            if (newDescription != selectedPlaylist.description) {
 | 
				
			||||||
 | 
					                this.fetchJson(this.authApiUrl() + "/user/playlists/description", null, {
 | 
				
			||||||
 | 
					                    method: "PATCH",
 | 
				
			||||||
 | 
					                    body: JSON.stringify({
 | 
				
			||||||
 | 
					                        playlistId: selectedPlaylist.id,
 | 
				
			||||||
 | 
					                        description: newDescription,
 | 
				
			||||||
 | 
					                    }),
 | 
				
			||||||
 | 
					                    headers: {
 | 
				
			||||||
 | 
					                        Authorization: this.getAuthToken(),
 | 
				
			||||||
 | 
					                        "Content-Type": "application/json",
 | 
				
			||||||
 | 
					                    },
 | 
				
			||||||
 | 
					                }).then(json => {
 | 
				
			||||||
 | 
					                    if (json.error) alert(json.error);
 | 
				
			||||||
 | 
					                    else selectedPlaylist.description = newDescription;
 | 
				
			||||||
                });
 | 
					                });
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					            this.playlistToEdit = null;
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        deletePlaylist(id) {
 | 
					        deletePlaylist(id) {
 | 
				
			||||||
            if (confirm(this.$t("actions.delete_playlist_confirm")))
 | 
					            if (confirm(this.$t("actions.delete_playlist_confirm")))
 | 
				
			||||||
| 
						 | 
					@ -262,5 +303,6 @@ export default {
 | 
				
			||||||
            this.bookmarks.splice(index, 1);
 | 
					            this.bookmarks.splice(index, 1);
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    components: { ModalComponent },
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -107,7 +107,6 @@
 | 
				
			||||||
        "follow_link": "اتبع الرابط",
 | 
					        "follow_link": "اتبع الرابط",
 | 
				
			||||||
        "copy_link": "نسخ الرابط",
 | 
					        "copy_link": "نسخ الرابط",
 | 
				
			||||||
        "time_code": "رمز الوقت (بالثواني)",
 | 
					        "time_code": "رمز الوقت (بالثواني)",
 | 
				
			||||||
        "rename_playlist": "إعادة تسمية قائمة التشغيل",
 | 
					 | 
				
			||||||
        "new_playlist_name": "اسم قائمة تشغيل جديد",
 | 
					        "new_playlist_name": "اسم قائمة تشغيل جديد",
 | 
				
			||||||
        "show_chapters": "الفصول",
 | 
					        "show_chapters": "الفصول",
 | 
				
			||||||
        "store_search_history": "حفظ سجل البحث",
 | 
					        "store_search_history": "حفظ سجل البحث",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -100,7 +100,6 @@
 | 
				
			||||||
        "instance_auth_selection": "Təsdiqləmə Nümunəsi Seçimi",
 | 
					        "instance_auth_selection": "Təsdiqləmə Nümunəsi Seçimi",
 | 
				
			||||||
        "clone_playlist": "Oynatma Siyahısın Klonla",
 | 
					        "clone_playlist": "Oynatma Siyahısın Klonla",
 | 
				
			||||||
        "clone_playlist_success": "Uğurla klonlandı!",
 | 
					        "clone_playlist_success": "Uğurla klonlandı!",
 | 
				
			||||||
        "rename_playlist": "Oynatma siyahısın yenidən adlandır",
 | 
					 | 
				
			||||||
        "time_code": "Vaxt kodu (saniyələrlə)",
 | 
					        "time_code": "Vaxt kodu (saniyələrlə)",
 | 
				
			||||||
        "store_search_history": "Axtarış tarixçəsini saxla",
 | 
					        "store_search_history": "Axtarış tarixçəsini saxla",
 | 
				
			||||||
        "documentation": "Sənədləşdirmə",
 | 
					        "documentation": "Sənədləşdirmə",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -99,7 +99,6 @@
 | 
				
			||||||
        "clone_playlist": "Клониране на плейлист",
 | 
					        "clone_playlist": "Клониране на плейлист",
 | 
				
			||||||
        "clone_playlist_success": "Успешно клониране!",
 | 
					        "clone_playlist_success": "Успешно клониране!",
 | 
				
			||||||
        "backup_preferences": "Архивиране на настройките",
 | 
					        "backup_preferences": "Архивиране на настройките",
 | 
				
			||||||
        "rename_playlist": "Преименуване на плейлиста",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Ново име на плейлиста",
 | 
					        "new_playlist_name": "Ново име на плейлиста",
 | 
				
			||||||
        "back_to_home": "Обратно към начална страница",
 | 
					        "back_to_home": "Обратно към начална страница",
 | 
				
			||||||
        "status_page": "Статус",
 | 
					        "status_page": "Статус",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -77,7 +77,6 @@
 | 
				
			||||||
        "minimize_chapters_default": "Smanjite poglavlja po zadanom",
 | 
					        "minimize_chapters_default": "Smanjite poglavlja po zadanom",
 | 
				
			||||||
        "show_watch_on_youtube": "Prikaži „Gledaj na YouTube-u” dugme",
 | 
					        "show_watch_on_youtube": "Prikaži „Gledaj na YouTube-u” dugme",
 | 
				
			||||||
        "different_auth_instance": "Koristite drugu instancu za autentifikaciju",
 | 
					        "different_auth_instance": "Koristite drugu instancu za autentifikaciju",
 | 
				
			||||||
        "rename_playlist": "Preimenuj listu izvođenja",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Novi naziv liste izvođenja",
 | 
					        "new_playlist_name": "Novi naziv liste izvođenja",
 | 
				
			||||||
        "with_timecode": "Podijelite s vremenskim kodom",
 | 
					        "with_timecode": "Podijelite s vremenskim kodom",
 | 
				
			||||||
        "piped_link": "Piped poveznica",
 | 
					        "piped_link": "Piped poveznica",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -103,7 +103,6 @@
 | 
				
			||||||
        "time_code": "Moment (en segons)",
 | 
					        "time_code": "Moment (en segons)",
 | 
				
			||||||
        "copy_link": "Copiar l'enllaç",
 | 
					        "copy_link": "Copiar l'enllaç",
 | 
				
			||||||
        "follow_link": "Vés a l'enllaç",
 | 
					        "follow_link": "Vés a l'enllaç",
 | 
				
			||||||
        "rename_playlist": "Canviar el nom de la llista de reproducció",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nom nou de la llista de reproducció",
 | 
					        "new_playlist_name": "Nom nou de la llista de reproducció",
 | 
				
			||||||
        "store_search_history": "Emmagatzema l'historial de cerca",
 | 
					        "store_search_history": "Emmagatzema l'historial de cerca",
 | 
				
			||||||
        "instance_donations": "Donacions a instàncies",
 | 
					        "instance_donations": "Donacions a instàncies",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -104,7 +104,6 @@
 | 
				
			||||||
        "follow_link": "Otevřít odkaz",
 | 
					        "follow_link": "Otevřít odkaz",
 | 
				
			||||||
        "copy_link": "Kopírovat odkaz",
 | 
					        "copy_link": "Kopírovat odkaz",
 | 
				
			||||||
        "time_code": "Časový kód (v sekundách)",
 | 
					        "time_code": "Časový kód (v sekundách)",
 | 
				
			||||||
        "rename_playlist": "Přejmenovat playlist",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nový název playlistu",
 | 
					        "new_playlist_name": "Nový název playlistu",
 | 
				
			||||||
        "show_chapters": "Kapitoly",
 | 
					        "show_chapters": "Kapitoly",
 | 
				
			||||||
        "store_search_history": "Ukládat historii vyhledávání",
 | 
					        "store_search_history": "Ukládat historii vyhledávání",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -75,7 +75,6 @@
 | 
				
			||||||
        "instance_auth_selection": "Auswahl der Autentifizierungsinstanz",
 | 
					        "instance_auth_selection": "Auswahl der Autentifizierungsinstanz",
 | 
				
			||||||
        "clone_playlist": "Playlist duplizieren",
 | 
					        "clone_playlist": "Playlist duplizieren",
 | 
				
			||||||
        "clone_playlist_success": "Erfolgreich dupliziert!",
 | 
					        "clone_playlist_success": "Erfolgreich dupliziert!",
 | 
				
			||||||
        "rename_playlist": "Playlist umbenennen",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Neuer Name der Playlist",
 | 
					        "new_playlist_name": "Neuer Name der Playlist",
 | 
				
			||||||
        "piped_link": "Piped-Link",
 | 
					        "piped_link": "Piped-Link",
 | 
				
			||||||
        "download_as_txt": "Als .txt herunterladen",
 | 
					        "download_as_txt": "Als .txt herunterladen",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -111,7 +111,9 @@
 | 
				
			||||||
        "backup_preferences": "Backup preferences",
 | 
					        "backup_preferences": "Backup preferences",
 | 
				
			||||||
        "restore_preferences": "Restore preferences",
 | 
					        "restore_preferences": "Restore preferences",
 | 
				
			||||||
        "back_to_home": "Back to home",
 | 
					        "back_to_home": "Back to home",
 | 
				
			||||||
        "rename_playlist": "Rename playlist",
 | 
					        "edit_playlist": "Edit playlist",
 | 
				
			||||||
 | 
					        "playlist_name": "Playlist name",
 | 
				
			||||||
 | 
					        "playlist_description": "Playlist description",
 | 
				
			||||||
        "new_playlist_name": "New playlist name",
 | 
					        "new_playlist_name": "New playlist name",
 | 
				
			||||||
        "share": "Share",
 | 
					        "share": "Share",
 | 
				
			||||||
        "with_timecode": "Share with time code",
 | 
					        "with_timecode": "Share with time code",
 | 
				
			||||||
| 
						 | 
					@ -135,7 +137,8 @@
 | 
				
			||||||
        "show_more": "Show more",
 | 
					        "show_more": "Show more",
 | 
				
			||||||
        "show_less": "Show less",
 | 
					        "show_less": "Show less",
 | 
				
			||||||
        "create_group": "Create group",
 | 
					        "create_group": "Create group",
 | 
				
			||||||
        "group_name": "Group name"
 | 
					        "group_name": "Group name",
 | 
				
			||||||
 | 
					        "okay": "Okay"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "comment": {
 | 
					    "comment": {
 | 
				
			||||||
        "pinned_by": "Pinned by {author}",
 | 
					        "pinned_by": "Pinned by {author}",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -55,7 +55,6 @@
 | 
				
			||||||
        "hide_replies": "Kaŝi Respondojn",
 | 
					        "hide_replies": "Kaŝi Respondojn",
 | 
				
			||||||
        "add_to_playlist": "Aldoni al ludlisto",
 | 
					        "add_to_playlist": "Aldoni al ludlisto",
 | 
				
			||||||
        "delete_playlist": "Forigi Ludliston",
 | 
					        "delete_playlist": "Forigi Ludliston",
 | 
				
			||||||
        "rename_playlist": "Renomi ludliston",
 | 
					 | 
				
			||||||
        "download_as_txt": "Elŝuti kiel .txt",
 | 
					        "download_as_txt": "Elŝuti kiel .txt",
 | 
				
			||||||
        "piped_link": "Piped-ligilo",
 | 
					        "piped_link": "Piped-ligilo",
 | 
				
			||||||
        "copy_link": "Kopii ligilon",
 | 
					        "copy_link": "Kopii ligilon",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -103,7 +103,6 @@
 | 
				
			||||||
        "invalidate_session": "Cerrar sesión en todos los dispositivos",
 | 
					        "invalidate_session": "Cerrar sesión en todos los dispositivos",
 | 
				
			||||||
        "instance_auth_selection": "Selección de la Instancia de Autentificación",
 | 
					        "instance_auth_selection": "Selección de la Instancia de Autentificación",
 | 
				
			||||||
        "download_as_txt": "Descargar como .txt",
 | 
					        "download_as_txt": "Descargar como .txt",
 | 
				
			||||||
        "rename_playlist": "Cambiar el nombre de la lista de reproducción",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nuevo nombre de la lista de reproducción",
 | 
					        "new_playlist_name": "Nuevo nombre de la lista de reproducción",
 | 
				
			||||||
        "share": "Compartir",
 | 
					        "share": "Compartir",
 | 
				
			||||||
        "with_timecode": "Compartir con código de tiempo",
 | 
					        "with_timecode": "Compartir con código de tiempo",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -101,7 +101,6 @@
 | 
				
			||||||
        "show_watch_on_youtube": "Näytä Katso YouTubessa -painike",
 | 
					        "show_watch_on_youtube": "Näytä Katso YouTubessa -painike",
 | 
				
			||||||
        "different_auth_instance": "Käytä eri instanssia todennukseen",
 | 
					        "different_auth_instance": "Käytä eri instanssia todennukseen",
 | 
				
			||||||
        "download_as_txt": "Lataa .txt-tiedostona",
 | 
					        "download_as_txt": "Lataa .txt-tiedostona",
 | 
				
			||||||
        "rename_playlist": "Nimeä soittolista uudelleen",
 | 
					 | 
				
			||||||
        "show_chapters": "Luvut",
 | 
					        "show_chapters": "Luvut",
 | 
				
			||||||
        "minimize_comments": "Minimoi kommentit",
 | 
					        "minimize_comments": "Minimoi kommentit",
 | 
				
			||||||
        "minimize_comments_default": "Minimoi kommentit oletusarvoisesti",
 | 
					        "minimize_comments_default": "Minimoi kommentit oletusarvoisesti",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -103,7 +103,6 @@
 | 
				
			||||||
        "piped_link": "Lien vers Piped",
 | 
					        "piped_link": "Lien vers Piped",
 | 
				
			||||||
        "follow_link": "Ouvrir le lien",
 | 
					        "follow_link": "Ouvrir le lien",
 | 
				
			||||||
        "time_code": "Horodatage (en secondes)",
 | 
					        "time_code": "Horodatage (en secondes)",
 | 
				
			||||||
        "rename_playlist": "Renommer la liste de lecture",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nouveau nom de la liste de lecture",
 | 
					        "new_playlist_name": "Nouveau nom de la liste de lecture",
 | 
				
			||||||
        "show_chapters": "Chapitres",
 | 
					        "show_chapters": "Chapitres",
 | 
				
			||||||
        "store_search_history": "Mémoriser l'historique de recherche",
 | 
					        "store_search_history": "Mémoriser l'historique de recherche",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -104,7 +104,6 @@
 | 
				
			||||||
        "search": "חיפוש (Ctrl+K)",
 | 
					        "search": "חיפוש (Ctrl+K)",
 | 
				
			||||||
        "loop_this_video": "ניגון הסרטון בלולאה",
 | 
					        "loop_this_video": "ניגון הסרטון בלולאה",
 | 
				
			||||||
        "minimize_recommendations": "מזעור המלצות",
 | 
					        "minimize_recommendations": "מזעור המלצות",
 | 
				
			||||||
        "rename_playlist": "שינוי שם רשימת נגינה",
 | 
					 | 
				
			||||||
        "new_playlist_name": "שם לרשימת נגינה חדשה",
 | 
					        "new_playlist_name": "שם לרשימת נגינה חדשה",
 | 
				
			||||||
        "show_chapters": "פרקים",
 | 
					        "show_chapters": "פרקים",
 | 
				
			||||||
        "skip_intro": "דילוג על הפוגה/הנפשת הקדמה",
 | 
					        "skip_intro": "דילוג על הפוגה/הנפשת הקדמה",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -113,7 +113,6 @@
 | 
				
			||||||
        "confirm_reset_preferences": "Stvarno želiš resetirati tvoje postavke?",
 | 
					        "confirm_reset_preferences": "Stvarno želiš resetirati tvoje postavke?",
 | 
				
			||||||
        "backup_preferences": "Spremi sigurnosnu kopiju postavki",
 | 
					        "backup_preferences": "Spremi sigurnosnu kopiju postavki",
 | 
				
			||||||
        "with_timecode": "Dijeli s vremenskim kodom",
 | 
					        "with_timecode": "Dijeli s vremenskim kodom",
 | 
				
			||||||
        "rename_playlist": "Preimenuj popis snimaka",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Ime novog popisa snimaka",
 | 
					        "new_playlist_name": "Ime novog popisa snimaka",
 | 
				
			||||||
        "share": "Dijeli",
 | 
					        "share": "Dijeli",
 | 
				
			||||||
        "show_chapters": "Poglavlja",
 | 
					        "show_chapters": "Poglavlja",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -92,7 +92,6 @@
 | 
				
			||||||
        "clone_playlist_success": "Sikeresen klónozva!",
 | 
					        "clone_playlist_success": "Sikeresen klónozva!",
 | 
				
			||||||
        "reset_preferences": "Alaphelyzetbe állítás",
 | 
					        "reset_preferences": "Alaphelyzetbe állítás",
 | 
				
			||||||
        "restore_preferences": "Beállítások betöltése fájlból",
 | 
					        "restore_preferences": "Beállítások betöltése fájlból",
 | 
				
			||||||
        "rename_playlist": "Átnevez",
 | 
					 | 
				
			||||||
        "instance_donations": "Szerver adományozások",
 | 
					        "instance_donations": "Szerver adományozások",
 | 
				
			||||||
        "piped_link": "Piped link",
 | 
					        "piped_link": "Piped link",
 | 
				
			||||||
        "time_code": "Idő kód (másodpercekben)",
 | 
					        "time_code": "Idő kód (másodpercekben)",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -76,7 +76,6 @@
 | 
				
			||||||
        "confirm_reset_preferences": "Իսկապե՞ս ուզում եք վերակայել ձեր նախապատվությունները:",
 | 
					        "confirm_reset_preferences": "Իսկապե՞ս ուզում եք վերակայել ձեր նախապատվությունները:",
 | 
				
			||||||
        "backup_preferences": "Պահուստային նախապատվություններ",
 | 
					        "backup_preferences": "Պահուստային նախապատվություններ",
 | 
				
			||||||
        "restore_preferences": "Վերականգնել նախապատվությունները",
 | 
					        "restore_preferences": "Վերականգնել նախապատվությունները",
 | 
				
			||||||
        "rename_playlist": "Վերանվանել տեսացանկը",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Տեսացանկի նոր անվանում",
 | 
					        "new_playlist_name": "Տեսացանկի նոր անվանում",
 | 
				
			||||||
        "follow_link": "Հետևել հղմանը",
 | 
					        "follow_link": "Հետևել հղմանը",
 | 
				
			||||||
        "instance_donations": "Օրինակների նվիրատվություններ",
 | 
					        "instance_donations": "Օրինակների նվիրատվություններ",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -100,7 +100,6 @@
 | 
				
			||||||
        "restore_preferences": "Pulihkan preferensi",
 | 
					        "restore_preferences": "Pulihkan preferensi",
 | 
				
			||||||
        "confirm_reset_preferences": "Apakah Anda yakin ingin mengatur ulang preferensi Anda?",
 | 
					        "confirm_reset_preferences": "Apakah Anda yakin ingin mengatur ulang preferensi Anda?",
 | 
				
			||||||
        "backup_preferences": "Cadangkan preferensi",
 | 
					        "backup_preferences": "Cadangkan preferensi",
 | 
				
			||||||
        "rename_playlist": "Ubah nama daftar putar",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nama daftar putar baru",
 | 
					        "new_playlist_name": "Nama daftar putar baru",
 | 
				
			||||||
        "share": "Bagikan",
 | 
					        "share": "Bagikan",
 | 
				
			||||||
        "with_timecode": "Bagikan dengan kode waktu",
 | 
					        "with_timecode": "Bagikan dengan kode waktu",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -96,7 +96,6 @@
 | 
				
			||||||
        "instance_donations": "Framlög til netþjóns",
 | 
					        "instance_donations": "Framlög til netþjóns",
 | 
				
			||||||
        "status_page": "Staða",
 | 
					        "status_page": "Staða",
 | 
				
			||||||
        "source_code": "Frumkóði",
 | 
					        "source_code": "Frumkóði",
 | 
				
			||||||
        "rename_playlist": "Endurnefna spilunarlista",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nýtt heiti spilunarlista",
 | 
					        "new_playlist_name": "Nýtt heiti spilunarlista",
 | 
				
			||||||
        "share": "Deila",
 | 
					        "share": "Deila",
 | 
				
			||||||
        "with_timecode": "Deilа með tímakóða",
 | 
					        "with_timecode": "Deilа með tímakóða",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -88,7 +88,6 @@
 | 
				
			||||||
        "follow_link": "Apri il collegamento",
 | 
					        "follow_link": "Apri il collegamento",
 | 
				
			||||||
        "with_timecode": "Condividi con marca temporale",
 | 
					        "with_timecode": "Condividi con marca temporale",
 | 
				
			||||||
        "new_playlist_name": "Nuovo nome dalla playlist",
 | 
					        "new_playlist_name": "Nuovo nome dalla playlist",
 | 
				
			||||||
        "rename_playlist": "Rinomina la playlist",
 | 
					 | 
				
			||||||
        "show_chapters": "Capitoli",
 | 
					        "show_chapters": "Capitoli",
 | 
				
			||||||
        "store_search_history": "Memorizza la cronologia delle ricerche",
 | 
					        "store_search_history": "Memorizza la cronologia delle ricerche",
 | 
				
			||||||
        "status_page": "Stato",
 | 
					        "status_page": "Stato",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -114,7 +114,6 @@
 | 
				
			||||||
        "documentation": "ドキュメント",
 | 
					        "documentation": "ドキュメント",
 | 
				
			||||||
        "reset_preferences": "設定を初期化",
 | 
					        "reset_preferences": "設定を初期化",
 | 
				
			||||||
        "confirm_reset_preferences": "設定をリセットしますか?",
 | 
					        "confirm_reset_preferences": "設定をリセットしますか?",
 | 
				
			||||||
        "rename_playlist": "再生リスト名を変更",
 | 
					 | 
				
			||||||
        "piped_link": "Pipedリンク",
 | 
					        "piped_link": "Pipedリンク",
 | 
				
			||||||
        "new_playlist_name": "新しい再生リスト名",
 | 
					        "new_playlist_name": "新しい再生リスト名",
 | 
				
			||||||
        "follow_link": "リンクを開く",
 | 
					        "follow_link": "リンクを開く",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -98,7 +98,6 @@
 | 
				
			||||||
        "backup_preferences": "Ḥrez ismenyifen",
 | 
					        "backup_preferences": "Ḥrez ismenyifen",
 | 
				
			||||||
        "restore_preferences": "Err-d ismenyifen",
 | 
					        "restore_preferences": "Err-d ismenyifen",
 | 
				
			||||||
        "back_to_home": "Uɣal ɣer ugejdan",
 | 
					        "back_to_home": "Uɣal ɣer ugejdan",
 | 
				
			||||||
        "rename_playlist": "Beddel isem i tebdart n tɣuri",
 | 
					 | 
				
			||||||
        "follow_link": "Ḍfer aseɣwen",
 | 
					        "follow_link": "Ḍfer aseɣwen",
 | 
				
			||||||
        "show_chapters": "Ixfawen",
 | 
					        "show_chapters": "Ixfawen",
 | 
				
			||||||
        "show_watch_on_youtube": "Sken taqeffalt Wali ɣef YouTube",
 | 
					        "show_watch_on_youtube": "Sken taqeffalt Wali ɣef YouTube",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -70,7 +70,6 @@
 | 
				
			||||||
        "show_chapters": "챕터",
 | 
					        "show_chapters": "챕터",
 | 
				
			||||||
        "download_as_txt": ".txt로 다운로드",
 | 
					        "download_as_txt": ".txt로 다운로드",
 | 
				
			||||||
        "new_playlist_name": "새 재생목록 이름",
 | 
					        "new_playlist_name": "새 재생목록 이름",
 | 
				
			||||||
        "rename_playlist": "재생목록 이름 변경",
 | 
					 | 
				
			||||||
        "share": "공유",
 | 
					        "share": "공유",
 | 
				
			||||||
        "copy_link": "링크 복사",
 | 
					        "copy_link": "링크 복사",
 | 
				
			||||||
        "time_code": "시작 시간 (초)",
 | 
					        "time_code": "시작 시간 (초)",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -80,7 +80,6 @@
 | 
				
			||||||
        "reply_count": "{count} atsakymai",
 | 
					        "reply_count": "{count} atsakymai",
 | 
				
			||||||
        "show_chapters": "Skirsniai",
 | 
					        "show_chapters": "Skirsniai",
 | 
				
			||||||
        "piped_link": "Piped nuoroda",
 | 
					        "piped_link": "Piped nuoroda",
 | 
				
			||||||
        "rename_playlist": "Pervardyti grojaraštį",
 | 
					 | 
				
			||||||
        "follow_link": "Sekti nuorodą",
 | 
					        "follow_link": "Sekti nuorodą",
 | 
				
			||||||
        "store_search_history": "Išsaugoti paieškos istoriją",
 | 
					        "store_search_history": "Išsaugoti paieškos istoriją",
 | 
				
			||||||
        "hide_watched": "Slėpti žiūrėtus vaizdo įrašus sklaidos kanale",
 | 
					        "hide_watched": "Slėpti žiūrėtus vaizdo įrašus sklaidos kanale",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -81,7 +81,6 @@
 | 
				
			||||||
        "confirm_reset_preferences": "Tilbakestill alle innstillingene?",
 | 
					        "confirm_reset_preferences": "Tilbakestill alle innstillingene?",
 | 
				
			||||||
        "restore_preferences": "Gjenopprett innstillinger",
 | 
					        "restore_preferences": "Gjenopprett innstillinger",
 | 
				
			||||||
        "show_chapters": "Kapitler",
 | 
					        "show_chapters": "Kapitler",
 | 
				
			||||||
        "rename_playlist": "Gi spillelisten ny navn",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nytt spillelistenavn",
 | 
					        "new_playlist_name": "Nytt spillelistenavn",
 | 
				
			||||||
        "share": "Del",
 | 
					        "share": "Del",
 | 
				
			||||||
        "with_timecode": "Del med tidskode",
 | 
					        "with_timecode": "Del med tidskode",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -80,7 +80,6 @@
 | 
				
			||||||
        "instance_auth_selection": "Selectie authenticatie-instantie",
 | 
					        "instance_auth_selection": "Selectie authenticatie-instantie",
 | 
				
			||||||
        "clone_playlist": "Afspeellijst dupliceren",
 | 
					        "clone_playlist": "Afspeellijst dupliceren",
 | 
				
			||||||
        "download_as_txt": "Downloaden als .txt",
 | 
					        "download_as_txt": "Downloaden als .txt",
 | 
				
			||||||
        "rename_playlist": "Afspeellijst hernoemen",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nieuwe afspeellijstnaam",
 | 
					        "new_playlist_name": "Nieuwe afspeellijstnaam",
 | 
				
			||||||
        "share": "Delen",
 | 
					        "share": "Delen",
 | 
				
			||||||
        "documentation": "Documentatie",
 | 
					        "documentation": "Documentatie",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -98,7 +98,6 @@
 | 
				
			||||||
        "invalidate_session": "Se desconnectar de totes los aparelhs",
 | 
					        "invalidate_session": "Se desconnectar de totes los aparelhs",
 | 
				
			||||||
        "different_auth_instance": "Utilizar una instància diferenta per l’autentificacion",
 | 
					        "different_auth_instance": "Utilizar una instància diferenta per l’autentificacion",
 | 
				
			||||||
        "back_to_home": "Tornar a l’acuèlh",
 | 
					        "back_to_home": "Tornar a l’acuèlh",
 | 
				
			||||||
        "rename_playlist": "Renomenar la lista de lectura",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nom novèl de la lista de lectura",
 | 
					        "new_playlist_name": "Nom novèl de la lista de lectura",
 | 
				
			||||||
        "with_timecode": "Partejar amb còdi orari",
 | 
					        "with_timecode": "Partejar amb còdi orari",
 | 
				
			||||||
        "piped_link": "Ligam cap a Piped",
 | 
					        "piped_link": "Ligam cap a Piped",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -35,7 +35,6 @@
 | 
				
			||||||
        "show_recommendations": "ସୁପାରିଶଗୁଡିକ ଦେଖାନ୍ତୁ",
 | 
					        "show_recommendations": "ସୁପାରିଶଗୁଡିକ ଦେଖାନ୍ତୁ",
 | 
				
			||||||
        "disable_lbry": "ଷ୍ଟ୍ରିମିଂ ପାଇଁ LBRY ଅକ୍ଷମ କରନ୍ତୁ",
 | 
					        "disable_lbry": "ଷ୍ଟ୍ରିମିଂ ପାଇଁ LBRY ଅକ୍ଷମ କରନ୍ତୁ",
 | 
				
			||||||
        "search": "ସନ୍ଧାନ କରନ୍ତୁ (Ctrl+K)",
 | 
					        "search": "ସନ୍ଧାନ କରନ୍ତୁ (Ctrl+K)",
 | 
				
			||||||
        "rename_playlist": "ପ୍ଲେ ଲିଷ୍ଟର ନାମ ପରିବର୍ତ୍ତନ କରନ୍ତୁ",
 | 
					 | 
				
			||||||
        "new_playlist_name": "ନୂତନ ପ୍ଲେଲିଷ୍ଟ ନାମ",
 | 
					        "new_playlist_name": "ନୂତନ ପ୍ଲେଲିଷ୍ଟ ନାମ",
 | 
				
			||||||
        "channel_name_asc": "ସ୍ରୋତ ର ନାମ (A-Z)",
 | 
					        "channel_name_asc": "ସ୍ରୋତ ର ନାମ (A-Z)",
 | 
				
			||||||
        "least_recent": "ସର୍ବନିମ୍ନ ସାମ୍ପ୍ରତିକ",
 | 
					        "least_recent": "ସର୍ବନିମ୍ନ ସାମ୍ପ୍ରତିକ",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -102,7 +102,6 @@
 | 
				
			||||||
        "source_code": "Kod źródłowy",
 | 
					        "source_code": "Kod źródłowy",
 | 
				
			||||||
        "show_chapters": "Rozdziały",
 | 
					        "show_chapters": "Rozdziały",
 | 
				
			||||||
        "minimize_chapters_default": "Ukryj rozdziały",
 | 
					        "minimize_chapters_default": "Ukryj rozdziały",
 | 
				
			||||||
        "rename_playlist": "Zmień nazwę playlisty",
 | 
					 | 
				
			||||||
        "follow_link": "Otwórz link",
 | 
					        "follow_link": "Otwórz link",
 | 
				
			||||||
        "minimize_comments_default": "Ukryj sekcję komentarzy",
 | 
					        "minimize_comments_default": "Ukryj sekcję komentarzy",
 | 
				
			||||||
        "minimize_comments": "Ukryj komentarze",
 | 
					        "minimize_comments": "Ukryj komentarze",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -110,7 +110,6 @@
 | 
				
			||||||
        "new_playlist_name": "Novo nome da lista de reprodução",
 | 
					        "new_playlist_name": "Novo nome da lista de reprodução",
 | 
				
			||||||
        "minimize_comments": "Minimizar Comentários",
 | 
					        "minimize_comments": "Minimizar Comentários",
 | 
				
			||||||
        "back_to_home": "Voltar ao início",
 | 
					        "back_to_home": "Voltar ao início",
 | 
				
			||||||
        "rename_playlist": "Renomear",
 | 
					 | 
				
			||||||
        "copy_link": "Copiar ligação",
 | 
					        "copy_link": "Copiar ligação",
 | 
				
			||||||
        "time_code": "Código de tempo (em segundos)",
 | 
					        "time_code": "Código de tempo (em segundos)",
 | 
				
			||||||
        "minimize_comments_default": "Minimizar Comentários por defeito",
 | 
					        "minimize_comments_default": "Minimizar Comentários por defeito",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -87,7 +87,6 @@
 | 
				
			||||||
        "restore_preferences": "Restaurar preferências",
 | 
					        "restore_preferences": "Restaurar preferências",
 | 
				
			||||||
        "back_to_home": "Voltar ao início",
 | 
					        "back_to_home": "Voltar ao início",
 | 
				
			||||||
        "share": "Compartilhar",
 | 
					        "share": "Compartilhar",
 | 
				
			||||||
        "rename_playlist": "Renomear playlist",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Novo nome da playlist",
 | 
					        "new_playlist_name": "Novo nome da playlist",
 | 
				
			||||||
        "with_timecode": "Compartilhar com código de tempo",
 | 
					        "with_timecode": "Compartilhar com código de tempo",
 | 
				
			||||||
        "piped_link": "Link do Piped",
 | 
					        "piped_link": "Link do Piped",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -93,7 +93,6 @@
 | 
				
			||||||
        "invalidate_session": "Terminar sessão em todos os aparelhos",
 | 
					        "invalidate_session": "Terminar sessão em todos os aparelhos",
 | 
				
			||||||
        "clone_playlist": "Clonar Lista de Reprodução",
 | 
					        "clone_playlist": "Clonar Lista de Reprodução",
 | 
				
			||||||
        "clone_playlist_success": "Clonada com sucesso!",
 | 
					        "clone_playlist_success": "Clonada com sucesso!",
 | 
				
			||||||
        "rename_playlist": "Renomear",
 | 
					 | 
				
			||||||
        "restore_preferences": "Restaurar configurações",
 | 
					        "restore_preferences": "Restaurar configurações",
 | 
				
			||||||
        "confirm_reset_preferences": "Tem a certeza que quer redefinir as suas configurações?",
 | 
					        "confirm_reset_preferences": "Tem a certeza que quer redefinir as suas configurações?",
 | 
				
			||||||
        "new_playlist_name": "Novo nome da lista de reprodução",
 | 
					        "new_playlist_name": "Novo nome da lista de reprodução",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -59,7 +59,6 @@
 | 
				
			||||||
        "clone_playlist_success": "Clonată cu succes!",
 | 
					        "clone_playlist_success": "Clonată cu succes!",
 | 
				
			||||||
        "reset_preferences": "Resetați preferințele",
 | 
					        "reset_preferences": "Resetați preferințele",
 | 
				
			||||||
        "confirm_reset_preferences": "Sunteți sigur că doriți să vă resetați preferințele?",
 | 
					        "confirm_reset_preferences": "Sunteți sigur că doriți să vă resetați preferințele?",
 | 
				
			||||||
        "rename_playlist": "Redenumiți playlist-ul",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Numele playlist-ului nou",
 | 
					        "new_playlist_name": "Numele playlist-ului nou",
 | 
				
			||||||
        "share": "Distribuiți",
 | 
					        "share": "Distribuiți",
 | 
				
			||||||
        "follow_link": "Urmați link-ul",
 | 
					        "follow_link": "Urmați link-ul",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -97,7 +97,6 @@
 | 
				
			||||||
        "clone_playlist": "Клонировать плейлист",
 | 
					        "clone_playlist": "Клонировать плейлист",
 | 
				
			||||||
        "clone_playlist_success": "Успешно клонировано!",
 | 
					        "clone_playlist_success": "Успешно клонировано!",
 | 
				
			||||||
        "show_chapters": "Главы",
 | 
					        "show_chapters": "Главы",
 | 
				
			||||||
        "rename_playlist": "Переименовать плейлист",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Новое название плейлиста",
 | 
					        "new_playlist_name": "Новое название плейлиста",
 | 
				
			||||||
        "share": "Поделиться",
 | 
					        "share": "Поделиться",
 | 
				
			||||||
        "with_timecode": "Поделиться с таймкодом",
 | 
					        "with_timecode": "Поделиться с таймкодом",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -81,7 +81,6 @@
 | 
				
			||||||
        "backup_preferences": "සැකසුම් උපස්ථ කරන්න",
 | 
					        "backup_preferences": "සැකසුම් උපස්ථ කරන්න",
 | 
				
			||||||
        "restore_preferences": "සැකසුම් නැවත පිහිටුවන්න",
 | 
					        "restore_preferences": "සැකසුම් නැවත පිහිටුවන්න",
 | 
				
			||||||
        "back_to_home": "ආපසු මුල් පිටුවට",
 | 
					        "back_to_home": "ආපසු මුල් පිටුවට",
 | 
				
			||||||
        "rename_playlist": "වාදන ලැයිස්තුව නැවත නම් කරන්න",
 | 
					 | 
				
			||||||
        "share": "බෙදාගන්න",
 | 
					        "share": "බෙදාගන්න",
 | 
				
			||||||
        "with_timecode": "කාල කේතය සමඟ බෙදා ගන්න",
 | 
					        "with_timecode": "කාල කේතය සමඟ බෙදා ගන්න",
 | 
				
			||||||
        "piped_link": "පයිප්ඩ් සබැඳිය",
 | 
					        "piped_link": "පයිප්ඩ් සබැඳිය",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -72,7 +72,6 @@
 | 
				
			||||||
        "view_ssl_score": "Zobraziť SSL skóre",
 | 
					        "view_ssl_score": "Zobraziť SSL skóre",
 | 
				
			||||||
        "filter": "Filter",
 | 
					        "filter": "Filter",
 | 
				
			||||||
        "delete_playlist_video_confirm": "Odstrániť video zo zoznamu?",
 | 
					        "delete_playlist_video_confirm": "Odstrániť video zo zoznamu?",
 | 
				
			||||||
        "rename_playlist": "Premenovať zoznam skladieb",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Nový názov zoznamu skladieb",
 | 
					        "new_playlist_name": "Nový názov zoznamu skladieb",
 | 
				
			||||||
        "share": "Zdieľať",
 | 
					        "share": "Zdieľať",
 | 
				
			||||||
        "follow_link": "Nasledujte odkaz",
 | 
					        "follow_link": "Nasledujte odkaz",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -100,7 +100,6 @@
 | 
				
			||||||
        "status_page": "Статус",
 | 
					        "status_page": "Статус",
 | 
				
			||||||
        "instance_donations": "Донације инстанци",
 | 
					        "instance_donations": "Донације инстанци",
 | 
				
			||||||
        "show_chapters": "Поглавља",
 | 
					        "show_chapters": "Поглавља",
 | 
				
			||||||
        "rename_playlist": "Преименуј плејлисту",
 | 
					 | 
				
			||||||
        "with_timecode": "Подели са временским кодом",
 | 
					        "with_timecode": "Подели са временским кодом",
 | 
				
			||||||
        "piped_link": "Piped веза",
 | 
					        "piped_link": "Piped веза",
 | 
				
			||||||
        "back_to_home": "Врати се на почетну",
 | 
					        "back_to_home": "Врати се на почетну",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -87,7 +87,6 @@
 | 
				
			||||||
        "with_timecode": "Zaman Koduyla Paylaş",
 | 
					        "with_timecode": "Zaman Koduyla Paylaş",
 | 
				
			||||||
        "piped_link": "Piped Bağlantısı",
 | 
					        "piped_link": "Piped Bağlantısı",
 | 
				
			||||||
        "share": "Paylaş",
 | 
					        "share": "Paylaş",
 | 
				
			||||||
        "rename_playlist": "Oynatma Listesini Yeniden Adlandır",
 | 
					 | 
				
			||||||
        "new_playlist_name": "Yeni Oynatma Listesi Adı",
 | 
					        "new_playlist_name": "Yeni Oynatma Listesi Adı",
 | 
				
			||||||
        "show_chapters": "Bölümler",
 | 
					        "show_chapters": "Bölümler",
 | 
				
			||||||
        "store_search_history": "Arama Geçmişini Sakla",
 | 
					        "store_search_history": "Arama Geçmişini Sakla",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -79,7 +79,6 @@
 | 
				
			||||||
        "logout": "Вийти з цього пристрою",
 | 
					        "logout": "Вийти з цього пристрою",
 | 
				
			||||||
        "backup_preferences": "Налаштування резервного копіювання",
 | 
					        "backup_preferences": "Налаштування резервного копіювання",
 | 
				
			||||||
        "download_as_txt": "Завантажити як .txt",
 | 
					        "download_as_txt": "Завантажити як .txt",
 | 
				
			||||||
        "rename_playlist": "Перейменувати список відтворення",
 | 
					 | 
				
			||||||
        "show_chapters": "Розділи",
 | 
					        "show_chapters": "Розділи",
 | 
				
			||||||
        "invalidate_session": "Вийти з усіх пристроїв",
 | 
					        "invalidate_session": "Вийти з усіх пристроїв",
 | 
				
			||||||
        "clone_playlist": "Клонувати список відтворення",
 | 
					        "clone_playlist": "Клонувати список відтворення",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -87,7 +87,6 @@
 | 
				
			||||||
        "share": "分享",
 | 
					        "share": "分享",
 | 
				
			||||||
        "with_timecode": "用时间码分享",
 | 
					        "with_timecode": "用时间码分享",
 | 
				
			||||||
        "time_code": "时间码(单位:秒)",
 | 
					        "time_code": "时间码(单位:秒)",
 | 
				
			||||||
        "rename_playlist": "重命名播放列表",
 | 
					 | 
				
			||||||
        "new_playlist_name": "新播放列表名",
 | 
					        "new_playlist_name": "新播放列表名",
 | 
				
			||||||
        "show_chapters": "章节",
 | 
					        "show_chapters": "章节",
 | 
				
			||||||
        "store_search_history": "保存搜索历史",
 | 
					        "store_search_history": "保存搜索历史",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -64,7 +64,6 @@
 | 
				
			||||||
        "download_as_txt": "以 .txt 下載",
 | 
					        "download_as_txt": "以 .txt 下載",
 | 
				
			||||||
        "share": "分享",
 | 
					        "share": "分享",
 | 
				
			||||||
        "new_playlist_name": "播放清單的新名稱",
 | 
					        "new_playlist_name": "播放清單的新名稱",
 | 
				
			||||||
        "rename_playlist": "重新命名播放清單",
 | 
					 | 
				
			||||||
        "reset_preferences": "重設偏好設定",
 | 
					        "reset_preferences": "重設偏好設定",
 | 
				
			||||||
        "confirm_reset_preferences": "確定要重設偏好設定嗎?",
 | 
					        "confirm_reset_preferences": "確定要重設偏好設定嗎?",
 | 
				
			||||||
        "backup_preferences": "備份偏好設定",
 | 
					        "backup_preferences": "備份偏好設定",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue