mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Add:Help icon buttons for libraries, rss feeds and users config pages, table add new buttons updated
This commit is contained in:
		
							parent
							
								
									1df4dca4bb
								
							
						
					
					
						commit
						61f2fb28e0
					
				@ -3,9 +3,7 @@
 | 
				
			|||||||
    <div class="flex items-center mb-2">
 | 
					    <div class="flex items-center mb-2">
 | 
				
			||||||
      <h1 class="text-xl">{{ headerText }}</h1>
 | 
					      <h1 class="text-xl">{{ headerText }}</h1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      <div v-if="showAddButton" class="mx-2 w-7 h-7 flex items-center justify-center rounded-full cursor-pointer hover:bg-white hover:bg-opacity-10 text-center" @click="clicked">
 | 
					      <slot name="header-items"></slot>
 | 
				
			||||||
        <button type="button" class="material-icons" :aria-label="$strings.ButtonAdd + ': ' + headerText" style="font-size: 1.4rem">add</button>
 | 
					 | 
				
			||||||
      </div>
 | 
					 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <p v-if="description" id="settings-description" class="mb-6 text-gray-200" v-html="description" />
 | 
					    <p v-if="description" id="settings-description" class="mb-6 text-gray-200" v-html="description" />
 | 
				
			||||||
@ -19,14 +17,9 @@ export default {
 | 
				
			|||||||
  props: {
 | 
					  props: {
 | 
				
			||||||
    headerText: String,
 | 
					    headerText: String,
 | 
				
			||||||
    description: String,
 | 
					    description: String,
 | 
				
			||||||
    note: String,
 | 
					    note: String
 | 
				
			||||||
    showAddButton: Boolean
 | 
					 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  methods: {
 | 
					  methods: {}
 | 
				
			||||||
    clicked() {
 | 
					 | 
				
			||||||
      this.$emit('clicked')
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -329,6 +329,7 @@ export default {
 | 
				
			|||||||
    init() {
 | 
					    init() {
 | 
				
			||||||
      this.fetchAllTags()
 | 
					      this.fetchAllTags()
 | 
				
			||||||
      this.isNew = !this.account
 | 
					      this.isNew = !this.account
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      if (this.account) {
 | 
					      if (this.account) {
 | 
				
			||||||
        this.newUser = {
 | 
					        this.newUser = {
 | 
				
			||||||
          username: this.account.username,
 | 
					          username: this.account.username,
 | 
				
			||||||
 | 
				
			|||||||
@ -52,8 +52,6 @@
 | 
				
			|||||||
        </tr>
 | 
					        </tr>
 | 
				
			||||||
      </table>
 | 
					      </table>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					 | 
				
			||||||
    <modals-account-modal ref="accountModal" v-model="showAccountModal" :account="selectedAccount" />
 | 
					 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -62,8 +60,6 @@ export default {
 | 
				
			|||||||
  data() {
 | 
					  data() {
 | 
				
			||||||
    return {
 | 
					    return {
 | 
				
			||||||
      users: [],
 | 
					      users: [],
 | 
				
			||||||
      selectedAccount: null,
 | 
					 | 
				
			||||||
      showAccountModal: false,
 | 
					 | 
				
			||||||
      isDeletingUser: false
 | 
					      isDeletingUser: false
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@ -114,13 +110,8 @@ export default {
 | 
				
			|||||||
          })
 | 
					          })
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    clickAddUser() {
 | 
					 | 
				
			||||||
      this.selectedAccount = null
 | 
					 | 
				
			||||||
      this.showAccountModal = true
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    editUser(user) {
 | 
					    editUser(user) {
 | 
				
			||||||
      this.selectedAccount = user
 | 
					      this.$emit('edit', user)
 | 
				
			||||||
      this.showAccountModal = true
 | 
					 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    loadUsers() {
 | 
					    loadUsers() {
 | 
				
			||||||
      this.$axios
 | 
					      this.$axios
 | 
				
			||||||
 | 
				
			|||||||
@ -51,8 +51,14 @@
 | 
				
			|||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    </app-settings-content>
 | 
					    </app-settings-content>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <app-settings-content :header-text="$strings.HeaderEreaderDevices" showAddButton :description="''" @clicked="addNewDeviceClick">
 | 
					    <app-settings-content :header-text="$strings.HeaderEreaderDevices" :description="''">
 | 
				
			||||||
      <table v-if="existingEReaderDevices.length" class="tracksTable my-4">
 | 
					      <template #header-items>
 | 
				
			||||||
 | 
					        <div class="flex-grow" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <ui-btn color="primary" small @click="addNewDeviceClick">{{ $strings.ButtonAddDevice }}</ui-btn>
 | 
				
			||||||
 | 
					      </template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <table v-if="existingEReaderDevices.length" class="tracksTable mt-4">
 | 
				
			||||||
        <tr>
 | 
					        <tr>
 | 
				
			||||||
          <th class="text-left">{{ $strings.LabelName }}</th>
 | 
					          <th class="text-left">{{ $strings.LabelName }}</th>
 | 
				
			||||||
          <th class="text-left">{{ $strings.LabelEmail }}</th>
 | 
					          <th class="text-left">{{ $strings.LabelEmail }}</th>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,18 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
  <div>
 | 
					  <div>
 | 
				
			||||||
    <app-settings-content :header-text="$strings.HeaderLibraries" show-add-button @clicked="setShowLibraryModal">
 | 
					    <app-settings-content :header-text="$strings.HeaderLibraries">
 | 
				
			||||||
      <tables-library-libraries-table @showLibraryModal="setShowLibraryModal" />
 | 
					      <template #header-items>
 | 
				
			||||||
 | 
					        <ui-tooltip :text="$strings.LabelClickForMoreInfo" class="inline-flex ml-2">
 | 
				
			||||||
 | 
					          <a href="https://www.audiobookshelf.org/guides/library_creation" target="_blank" class="inline-flex">
 | 
				
			||||||
 | 
					            <span class="material-icons text-xl w-5 text-gray-200">help_outline</span>
 | 
				
			||||||
 | 
					          </a>
 | 
				
			||||||
 | 
					        </ui-tooltip>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <div class="flex-grow" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <ui-btn color="primary" small @click="setShowLibraryModal()">{{ $strings.ButtonAddLibrary }}</ui-btn>
 | 
				
			||||||
 | 
					      </template>
 | 
				
			||||||
 | 
					      <tables-library-libraries-table @showLibraryModal="setShowLibraryModal" class="pt-2" />
 | 
				
			||||||
    </app-settings-content>
 | 
					    </app-settings-content>
 | 
				
			||||||
    <modals-libraries-edit-modal v-model="showLibraryModal" :library="selectedLibrary" />
 | 
					    <modals-libraries-edit-modal v-model="showLibraryModal" :library="selectedLibrary" />
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,15 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
  <div>
 | 
					  <div>
 | 
				
			||||||
    <app-settings-content :header-text="$strings.HeaderRSSFeeds">
 | 
					    <app-settings-content :header-text="$strings.HeaderRSSFeeds">
 | 
				
			||||||
      <div v-if="feeds.length" class="block max-w-full">
 | 
					      <template #header-items>
 | 
				
			||||||
 | 
					        <ui-tooltip :text="$strings.LabelClickForMoreInfo" class="inline-flex ml-2">
 | 
				
			||||||
 | 
					          <a href="https://www.audiobookshelf.org/guides/rss_feeds" target="_blank" class="inline-flex">
 | 
				
			||||||
 | 
					            <span class="material-icons text-xl w-5 text-gray-200">help_outline</span>
 | 
				
			||||||
 | 
					          </a>
 | 
				
			||||||
 | 
					        </ui-tooltip>
 | 
				
			||||||
 | 
					      </template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <div v-if="feeds.length" class="block max-w-full pt-2">
 | 
				
			||||||
        <table class="rssFeedsTable text-xs">
 | 
					        <table class="rssFeedsTable text-xs">
 | 
				
			||||||
          <tr class="bg-primary bg-opacity-40 h-12">
 | 
					          <tr class="bg-primary bg-opacity-40 h-12">
 | 
				
			||||||
            <th class="w-16 min-w-16"></th>
 | 
					            <th class="w-16 min-w-16"></th>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,19 @@
 | 
				
			|||||||
<template>
 | 
					<template>
 | 
				
			||||||
  <div>
 | 
					  <div>
 | 
				
			||||||
    <app-settings-content :header-text="$strings.HeaderUsers" show-add-button @clicked="setShowUserModal">
 | 
					    <app-settings-content :header-text="$strings.HeaderUsers">
 | 
				
			||||||
      <tables-users-table />
 | 
					      <template #header-items>
 | 
				
			||||||
 | 
					        <ui-tooltip :text="$strings.LabelClickForMoreInfo" class="inline-flex ml-2">
 | 
				
			||||||
 | 
					          <a href="https://www.audiobookshelf.org/guides/users" target="_blank" class="inline-flex">
 | 
				
			||||||
 | 
					            <span class="material-icons text-xl w-5 text-gray-200">help_outline</span>
 | 
				
			||||||
 | 
					          </a>
 | 
				
			||||||
 | 
					        </ui-tooltip>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <div class="flex-grow" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <ui-btn color="primary" small @click="setShowUserModal()">{{ $strings.ButtonAddUser }}</ui-btn>
 | 
				
			||||||
 | 
					      </template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <tables-users-table class="pt-2" @edit="setShowUserModal" />
 | 
				
			||||||
    </app-settings-content>
 | 
					    </app-settings-content>
 | 
				
			||||||
    <modals-account-modal ref="accountModal" v-model="showAccountModal" :account="selectedAccount" />
 | 
					    <modals-account-modal ref="accountModal" v-model="showAccountModal" :account="selectedAccount" />
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Tilføj",
 | 
					  "ButtonAdd": "Tilføj",
 | 
				
			||||||
  "ButtonAddChapters": "Tilføj kapitler",
 | 
					  "ButtonAddChapters": "Tilføj kapitler",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Tilføj podcasts",
 | 
					  "ButtonAddPodcasts": "Tilføj podcasts",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Tilføj din første bibliotek",
 | 
					  "ButtonAddYourFirstLibrary": "Tilføj din første bibliotek",
 | 
				
			||||||
  "ButtonApply": "Anvend",
 | 
					  "ButtonApply": "Anvend",
 | 
				
			||||||
  "ButtonApplyChapters": "Anvend kapitler",
 | 
					  "ButtonApplyChapters": "Anvend kapitler",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Hinzufügen",
 | 
					  "ButtonAdd": "Hinzufügen",
 | 
				
			||||||
  "ButtonAddChapters": "Kapitel hinzufügen",
 | 
					  "ButtonAddChapters": "Kapitel hinzufügen",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Podcasts hinzufügen",
 | 
					  "ButtonAddPodcasts": "Podcasts hinzufügen",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Erstelle deine erste Bibliothek",
 | 
					  "ButtonAddYourFirstLibrary": "Erstelle deine erste Bibliothek",
 | 
				
			||||||
  "ButtonApply": "Übernehmen",
 | 
					  "ButtonApply": "Übernehmen",
 | 
				
			||||||
  "ButtonApplyChapters": "Kapitel anwenden",
 | 
					  "ButtonApplyChapters": "Kapitel anwenden",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Add",
 | 
					  "ButtonAdd": "Add",
 | 
				
			||||||
  "ButtonAddChapters": "Add Chapters",
 | 
					  "ButtonAddChapters": "Add Chapters",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Add Podcasts",
 | 
					  "ButtonAddPodcasts": "Add Podcasts",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Add your first library",
 | 
					  "ButtonAddYourFirstLibrary": "Add your first library",
 | 
				
			||||||
  "ButtonApply": "Apply",
 | 
					  "ButtonApply": "Apply",
 | 
				
			||||||
  "ButtonApplyChapters": "Apply Chapters",
 | 
					  "ButtonApplyChapters": "Apply Chapters",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Agregar",
 | 
					  "ButtonAdd": "Agregar",
 | 
				
			||||||
  "ButtonAddChapters": "Agregar Capitulo",
 | 
					  "ButtonAddChapters": "Agregar Capitulo",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Agregar Podcasts",
 | 
					  "ButtonAddPodcasts": "Agregar Podcasts",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Agrega tu Primera Biblioteca",
 | 
					  "ButtonAddYourFirstLibrary": "Agrega tu Primera Biblioteca",
 | 
				
			||||||
  "ButtonApply": "Aplicar",
 | 
					  "ButtonApply": "Aplicar",
 | 
				
			||||||
  "ButtonApplyChapters": "Aplicar Capítulos",
 | 
					  "ButtonApplyChapters": "Aplicar Capítulos",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Ajouter",
 | 
					  "ButtonAdd": "Ajouter",
 | 
				
			||||||
  "ButtonAddChapters": "Ajouter le chapitre",
 | 
					  "ButtonAddChapters": "Ajouter le chapitre",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Ajouter des podcasts",
 | 
					  "ButtonAddPodcasts": "Ajouter des podcasts",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Ajouter votre première bibliothèque",
 | 
					  "ButtonAddYourFirstLibrary": "Ajouter votre première bibliothèque",
 | 
				
			||||||
  "ButtonApply": "Appliquer",
 | 
					  "ButtonApply": "Appliquer",
 | 
				
			||||||
  "ButtonApplyChapters": "Appliquer les chapitres",
 | 
					  "ButtonApplyChapters": "Appliquer les chapitres",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "ઉમેરો",
 | 
					  "ButtonAdd": "ઉમેરો",
 | 
				
			||||||
  "ButtonAddChapters": "પ્રકરણો ઉમેરો",
 | 
					  "ButtonAddChapters": "પ્રકરણો ઉમેરો",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "પોડકાસ્ટ ઉમેરો",
 | 
					  "ButtonAddPodcasts": "પોડકાસ્ટ ઉમેરો",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "તમારી પ્રથમ પુસ્તકાલય ઉમેરો",
 | 
					  "ButtonAddYourFirstLibrary": "તમારી પ્રથમ પુસ્તકાલય ઉમેરો",
 | 
				
			||||||
  "ButtonApply": "લાગુ કરો",
 | 
					  "ButtonApply": "લાગુ કરો",
 | 
				
			||||||
  "ButtonApplyChapters": "પ્રકરણો લાગુ કરો",
 | 
					  "ButtonApplyChapters": "પ્રકરણો લાગુ કરો",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "जोड़ें",
 | 
					  "ButtonAdd": "जोड़ें",
 | 
				
			||||||
  "ButtonAddChapters": "अध्याय जोड़ें",
 | 
					  "ButtonAddChapters": "अध्याय जोड़ें",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "पॉडकास्ट जोड़ें",
 | 
					  "ButtonAddPodcasts": "पॉडकास्ट जोड़ें",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "अपनी पहली पुस्तकालय जोड़ें",
 | 
					  "ButtonAddYourFirstLibrary": "अपनी पहली पुस्तकालय जोड़ें",
 | 
				
			||||||
  "ButtonApply": "लागू करें",
 | 
					  "ButtonApply": "लागू करें",
 | 
				
			||||||
  "ButtonApplyChapters": "अध्यायों में परिवर्तन लागू करें",
 | 
					  "ButtonApplyChapters": "अध्यायों में परिवर्तन लागू करें",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Dodaj",
 | 
					  "ButtonAdd": "Dodaj",
 | 
				
			||||||
  "ButtonAddChapters": "Dodaj poglavlja",
 | 
					  "ButtonAddChapters": "Dodaj poglavlja",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Dodaj podcaste",
 | 
					  "ButtonAddPodcasts": "Dodaj podcaste",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Dodaj svoju prvu biblioteku",
 | 
					  "ButtonAddYourFirstLibrary": "Dodaj svoju prvu biblioteku",
 | 
				
			||||||
  "ButtonApply": "Primijeni",
 | 
					  "ButtonApply": "Primijeni",
 | 
				
			||||||
  "ButtonApplyChapters": "Primijeni poglavlja",
 | 
					  "ButtonApplyChapters": "Primijeni poglavlja",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Aggiungi",
 | 
					  "ButtonAdd": "Aggiungi",
 | 
				
			||||||
  "ButtonAddChapters": "Aggiungi Capitoli",
 | 
					  "ButtonAddChapters": "Aggiungi Capitoli",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Aggiungi Podcast",
 | 
					  "ButtonAddPodcasts": "Aggiungi Podcast",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Aggiungi la tua prima libreria",
 | 
					  "ButtonAddYourFirstLibrary": "Aggiungi la tua prima libreria",
 | 
				
			||||||
  "ButtonApply": "Applica",
 | 
					  "ButtonApply": "Applica",
 | 
				
			||||||
  "ButtonApplyChapters": "Applica",
 | 
					  "ButtonApplyChapters": "Applica",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Pridėti",
 | 
					  "ButtonAdd": "Pridėti",
 | 
				
			||||||
  "ButtonAddChapters": "Pridėti skyrius",
 | 
					  "ButtonAddChapters": "Pridėti skyrius",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Pridėti tinklalaides",
 | 
					  "ButtonAddPodcasts": "Pridėti tinklalaides",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Pridėkite savo pirmąją biblioteką",
 | 
					  "ButtonAddYourFirstLibrary": "Pridėkite savo pirmąją biblioteką",
 | 
				
			||||||
  "ButtonApply": "Taikyti",
 | 
					  "ButtonApply": "Taikyti",
 | 
				
			||||||
  "ButtonApplyChapters": "Taikyti skyrius",
 | 
					  "ButtonApplyChapters": "Taikyti skyrius",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Toevoegen",
 | 
					  "ButtonAdd": "Toevoegen",
 | 
				
			||||||
  "ButtonAddChapters": "Hoofdstukken toevoegen",
 | 
					  "ButtonAddChapters": "Hoofdstukken toevoegen",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Podcasts toevoegen",
 | 
					  "ButtonAddPodcasts": "Podcasts toevoegen",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Voeg je eerste bibliotheek toe",
 | 
					  "ButtonAddYourFirstLibrary": "Voeg je eerste bibliotheek toe",
 | 
				
			||||||
  "ButtonApply": "Pas toe",
 | 
					  "ButtonApply": "Pas toe",
 | 
				
			||||||
  "ButtonApplyChapters": "Hoofdstukken toepassen",
 | 
					  "ButtonApplyChapters": "Hoofdstukken toepassen",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Legg til",
 | 
					  "ButtonAdd": "Legg til",
 | 
				
			||||||
  "ButtonAddChapters": "Legg til kapittel",
 | 
					  "ButtonAddChapters": "Legg til kapittel",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Legg til podcast",
 | 
					  "ButtonAddPodcasts": "Legg til podcast",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Legg til ditt første bibliotek",
 | 
					  "ButtonAddYourFirstLibrary": "Legg til ditt første bibliotek",
 | 
				
			||||||
  "ButtonApply": "Bruk",
 | 
					  "ButtonApply": "Bruk",
 | 
				
			||||||
  "ButtonApplyChapters": "Bruk kapittel",
 | 
					  "ButtonApplyChapters": "Bruk kapittel",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Dodaj",
 | 
					  "ButtonAdd": "Dodaj",
 | 
				
			||||||
  "ButtonAddChapters": "Dodaj rozdziały",
 | 
					  "ButtonAddChapters": "Dodaj rozdziały",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Dodaj podcasty",
 | 
					  "ButtonAddPodcasts": "Dodaj podcasty",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Dodaj swoją pierwszą bibliotekę",
 | 
					  "ButtonAddYourFirstLibrary": "Dodaj swoją pierwszą bibliotekę",
 | 
				
			||||||
  "ButtonApply": "Zatwierdź",
 | 
					  "ButtonApply": "Zatwierdź",
 | 
				
			||||||
  "ButtonApplyChapters": "Zatwierdź rozdziały",
 | 
					  "ButtonApplyChapters": "Zatwierdź rozdziały",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "Добавить",
 | 
					  "ButtonAdd": "Добавить",
 | 
				
			||||||
  "ButtonAddChapters": "Добавить главы",
 | 
					  "ButtonAddChapters": "Добавить главы",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "Добавить подкасты",
 | 
					  "ButtonAddPodcasts": "Добавить подкасты",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "Добавьте Вашу первую библиотеку",
 | 
					  "ButtonAddYourFirstLibrary": "Добавьте Вашу первую библиотеку",
 | 
				
			||||||
  "ButtonApply": "Применить",
 | 
					  "ButtonApply": "Применить",
 | 
				
			||||||
  "ButtonApplyChapters": "Применить главы",
 | 
					  "ButtonApplyChapters": "Применить главы",
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,10 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "ButtonAdd": "增加",
 | 
					  "ButtonAdd": "增加",
 | 
				
			||||||
  "ButtonAddChapters": "添加章节",
 | 
					  "ButtonAddChapters": "添加章节",
 | 
				
			||||||
 | 
					  "ButtonAddDevice": "Add Device",
 | 
				
			||||||
 | 
					  "ButtonAddLibrary": "Add Library",
 | 
				
			||||||
  "ButtonAddPodcasts": "添加播客",
 | 
					  "ButtonAddPodcasts": "添加播客",
 | 
				
			||||||
 | 
					  "ButtonAddUser": "Add User",
 | 
				
			||||||
  "ButtonAddYourFirstLibrary": "添加第一个媒体库",
 | 
					  "ButtonAddYourFirstLibrary": "添加第一个媒体库",
 | 
				
			||||||
  "ButtonApply": "应用",
 | 
					  "ButtonApply": "应用",
 | 
				
			||||||
  "ButtonApplyChapters": "应用到章节",
 | 
					  "ButtonApplyChapters": "应用到章节",
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user