Merge master

This commit is contained in:
advplyr
2024-06-10 16:32:09 -05:00
39 changed files with 745 additions and 310 deletions
+12 -10
View File
@@ -1,17 +1,17 @@
name: 🐞 ABS App Bug Report name: 🐞 ABS App Bug Report
description: File a bug/issue and help us improve the Audiobookshelf mobile apps. description: File a bug/issue and help us improve the Audiobookshelf mobile apps.
title: '[Bug]: ' title: "[Bug]: "
labels: ['bug', 'triage'] labels: ["bug", "triage"]
body: body:
- type: markdown - type: markdown
attributes: attributes:
value: '## App Bug Description' value: "## App Bug Description"
- type: markdown - type: markdown
attributes: attributes:
value: 'Thank you for filing a bug report! 🐛' value: "Thank you for filing a bug report! 🐛"
- type: markdown - type: markdown
attributes: attributes:
value: 'Join the [discord server](https://discord.gg/HQgCbd6E75) for questions or if you are not sure about a bug.' value: "Join the [discord server](https://discord.gg/HQgCbd6E75) for questions or if you are not sure about a bug."
- type: textarea - type: textarea
id: what-happened id: what-happened
attributes: attributes:
@@ -25,7 +25,7 @@ body:
attributes: attributes:
label: Steps to Reproduce the Issue label: Steps to Reproduce the Issue
description: Please help us understand how we can reliably reproduce the issue. description: Please help us understand how we can reliably reproduce the issue.
placeholder: '1. Go to the library page of a Podcast library and...' placeholder: "1. Go to the library page of a Podcast library and..."
validations: validations:
required: true required: true
- type: textarea - type: textarea
@@ -38,7 +38,7 @@ body:
required: true required: true
- type: markdown - type: markdown
attributes: attributes:
value: '## Mobile Environment' value: "## Mobile Environment"
- type: input - type: input
id: phone-model id: phone-model
attributes: attributes:
@@ -62,8 +62,10 @@ body:
description: Please ensure your app is up to date. *If you are using a 3rd-party app, please reach out to them directly.* description: Please ensure your app is up to date. *If you are using a 3rd-party app, please reach out to them directly.*
multiple: true multiple: true
options: options:
- Android App - 0.9.63 - Android App - 0.9.74
- iOS App - 0.9.63 - iOS App - 0.9.74
- Android App - 0.9.73
- iOS App - 0.9.73
validations: validations:
required: true required: true
- type: dropdown - type: dropdown
@@ -83,4 +85,4 @@ body:
attributes: attributes:
label: Additional Notes label: Additional Notes
description: Anything else you want to add? description: Anything else you want to add?
placeholder: 'e.g. I have tried X, Y, and Z.' placeholder: "e.g. I have tried X, Y, and Z."
+9 -7
View File
@@ -1,14 +1,14 @@
name: 🚀 App Feature Request name: 🚀 App Feature Request
description: Request a feature/enhancement description: Request a feature/enhancement
title: '[Enhancement]: ' title: "[Enhancement]: "
labels: ['enhancement'] labels: ["enhancement"]
body: body:
- type: markdown - type: markdown
attributes: attributes:
value: '## App Feature Request Description' value: "## App Feature Request Description"
- type: markdown - type: markdown
attributes: attributes:
value: 'Please first search in both issues & discussions for your enhancement and make sure your app is up to date.' value: "Please first search in both issues & discussions for your enhancement and make sure your app is up to date."
- type: textarea - type: textarea
id: describe id: describe
attributes: attributes:
@@ -35,7 +35,7 @@ body:
required: true required: true
- type: markdown - type: markdown
attributes: attributes:
value: '## App Current Implementation' value: "## App Current Implementation"
- type: dropdown - type: dropdown
id: version id: version
attributes: attributes:
@@ -43,8 +43,10 @@ body:
description: Please ensure your app is up to date. *If you are using a 3rd-party app, please reach out to them directly.* description: Please ensure your app is up to date. *If you are using a 3rd-party app, please reach out to them directly.*
multiple: true multiple: true
options: options:
- Android App - 0.9.63 - Android App - 0.9.74
- iOS App - 0.9.63 - iOS App - 0.9.74
- Android App - 0.9.73
- iOS App - 0.9.73
validations: validations:
required: true required: true
- type: textarea - type: textarea
@@ -20,6 +20,14 @@ enum class ShakeSensitivitySetting {
VERY_LOW, LOW, MEDIUM, HIGH, VERY_HIGH VERY_LOW, LOW, MEDIUM, HIGH, VERY_HIGH
} }
enum class DownloadUsingCellularSetting {
ASK, ALWAYS, NEVER
}
enum class StreamingUsingCellularSetting {
ASK, ALWAYS, NEVER
}
data class ServerConnectionConfig( data class ServerConnectionConfig(
var id:String, var id:String,
var index:Int, var index:Int,
@@ -123,7 +131,9 @@ data class DeviceSettings(
var sleepTimerLength: Long, // Time in milliseconds var sleepTimerLength: Long, // Time in milliseconds
var disableSleepTimerFadeOut: Boolean, var disableSleepTimerFadeOut: Boolean,
var disableSleepTimerResetFeedback: Boolean, var disableSleepTimerResetFeedback: Boolean,
var languageCode: String var languageCode: String,
var downloadUsingCellular: DownloadUsingCellularSetting,
var streamingUsingCellular: StreamingUsingCellularSetting
) { ) {
companion object { companion object {
// Static method to get default device settings // Static method to get default device settings
@@ -147,7 +157,9 @@ data class DeviceSettings(
autoSleepTimerAutoRewindTime = 300000L, // 5 minutes autoSleepTimerAutoRewindTime = 300000L, // 5 minutes
disableSleepTimerFadeOut = false, disableSleepTimerFadeOut = false,
disableSleepTimerResetFeedback = false, disableSleepTimerResetFeedback = false,
languageCode = "en-us" languageCode = "en-us",
downloadUsingCellular = DownloadUsingCellularSetting.ALWAYS,
streamingUsingCellular = StreamingUsingCellularSetting.ALWAYS
) )
} }
} }
@@ -53,6 +53,14 @@ object DeviceManager {
if (deviceData.deviceSettings?.languageCode == null) { if (deviceData.deviceSettings?.languageCode == null) {
deviceData.deviceSettings?.languageCode = "en-us" deviceData.deviceSettings?.languageCode = "en-us"
} }
if (deviceData.deviceSettings?.downloadUsingCellular == null) {
deviceData.deviceSettings?.downloadUsingCellular = DownloadUsingCellularSetting.ALWAYS
}
if (deviceData.deviceSettings?.streamingUsingCellular == null) {
deviceData.deviceSettings?.streamingUsingCellular = StreamingUsingCellularSetting.ALWAYS
}
} }
fun getBase64Id(id:String):String { fun getBase64Id(id:String):String {
+12 -1
View File
@@ -11,6 +11,7 @@
<script> <script>
import { AbsAudioPlayer } from '@/plugins/capacitor' import { AbsAudioPlayer } from '@/plugins/capacitor'
import { Dialog } from '@capacitor/dialog' import { Dialog } from '@capacitor/dialog'
import CellularPermissionHelpers from '@/mixins/cellularPermissionHelpers'
export default { export default {
data() { data() {
@@ -39,6 +40,7 @@ export default {
serverEpisodeId: null serverEpisodeId: null
} }
}, },
mixins: [CellularPermissionHelpers],
computed: { computed: {
bookmarks() { bookmarks() {
if (!this.serverLibraryItemId) return [] if (!this.serverLibraryItemId) return []
@@ -193,12 +195,21 @@ export default {
const startTime = payload.startTime const startTime = payload.startTime
const startWhenReady = !payload.paused const startWhenReady = !payload.paused
const isLocal = libraryItemId.startsWith('local')
if (!isLocal) {
const hasPermission = await this.checkCellularPermission('streaming')
if (!hasPermission) {
this.$store.commit('setPlayerDoneStartingPlayback')
return
}
}
// When playing local library item and can also play this item from the server // When playing local library item and can also play this item from the server
// then store the server library item id so it can be used if a cast is made // then store the server library item id so it can be used if a cast is made
const serverLibraryItemId = payload.serverLibraryItemId || null const serverLibraryItemId = payload.serverLibraryItemId || null
const serverEpisodeId = payload.serverEpisodeId || null const serverEpisodeId = payload.serverEpisodeId || null
if (libraryItemId.startsWith('local') && this.$store.state.isCasting) { if (isLocal && this.$store.state.isCasting) {
const { value } = await Dialog.confirm({ const { value } = await Dialog.confirm({
title: 'Warning', title: 'Warning',
message: `Cannot cast downloaded media items. Confirm to close cast and play on your device.` message: `Cannot cast downloaded media items. Confirm to close cast and play on your device.`
+5
View File
@@ -58,6 +58,7 @@
<script> <script>
import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor' import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor'
import cellularPermissionHelpers from '@/mixins/cellularPermissionHelpers'
export default { export default {
props: { props: {
@@ -73,6 +74,7 @@ export default {
}, },
isLocal: Boolean isLocal: Boolean
}, },
mixins: [cellularPermissionHelpers],
data() { data() {
return { return {
isProcessingReadUpdate: false, isProcessingReadUpdate: false,
@@ -180,6 +182,9 @@ export default {
async downloadClick() { async downloadClick() {
if (this.downloadItem || this.startingDownload) return if (this.downloadItem || this.startingDownload) return
const hasPermission = await this.checkCellularPermission('download')
if (!hasPermission) return
this.startingDownload = true this.startingDownload = true
setTimeout(() => { setTimeout(() => {
this.startingDownload = false this.startingDownload = false
+11 -2
View File
@@ -61,6 +61,7 @@
<script> <script>
import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor' import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor'
import CellularPermissionHelpers from '@/mixins/cellularPermissionHelpers'
export default { export default {
props: { props: {
@@ -83,6 +84,7 @@ export default {
processing: false processing: false
} }
}, },
mixins: [CellularPermissionHelpers],
computed: { computed: {
bookCoverAspectRatio() { bookCoverAspectRatio() {
return this.$store.getters['libraries/getBookCoverAspectRatio'] return this.$store.getters['libraries/getBookCoverAspectRatio']
@@ -187,6 +189,10 @@ export default {
}, },
async downloadClick() { async downloadClick() {
if (this.downloadItem || this.pendingDownload) return if (this.downloadItem || this.pendingDownload) return
const hasPermission = await this.checkCellularPermission('download')
if (!hasPermission) return
this.pendingDownload = true this.pendingDownload = true
await this.$hapticsImpact() await this.$hapticsImpact()
if (this.isIos) { if (this.isIos) {
@@ -262,7 +268,6 @@ export default {
if (this.localEpisode && this.localLibraryItemId) { if (this.localEpisode && this.localLibraryItemId) {
console.log('Play local episode', this.localEpisode.id, this.localLibraryItemId) console.log('Play local episode', this.localEpisode.id, this.localLibraryItemId)
this.$eventBus.$emit('play-item', { this.$eventBus.$emit('play-item', {
libraryItemId: this.localLibraryItemId, libraryItemId: this.localLibraryItemId,
episodeId: this.localEpisode.id, episodeId: this.localEpisode.id,
@@ -285,7 +290,11 @@ export default {
const isFinished = !this.userIsFinished const isFinished = !this.userIsFinished
const localLibraryItemId = this.isLocal ? this.libraryItemId : this.localLibraryItemId const localLibraryItemId = this.isLocal ? this.libraryItemId : this.localLibraryItemId
const localEpisodeId = this.isLocal ? this.episode.id : this.localEpisode.id const localEpisodeId = this.isLocal ? this.episode.id : this.localEpisode.id
const payload = await this.$db.updateLocalMediaProgressFinished({ localLibraryItemId, localEpisodeId, isFinished }) const payload = await this.$db.updateLocalMediaProgressFinished({
localLibraryItemId,
localEpisodeId,
isFinished
})
console.log('toggleFinished payload', JSON.stringify(payload)) console.log('toggleFinished payload', JSON.stringify(payload))
if (payload?.error) { if (payload?.error) {
this.$toast.error(payload?.error || 'Unknown error') this.$toast.error(payload?.error || 'Unknown error')
+8 -1
View File
@@ -14,7 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// Override point for customization after application launch. // Override point for customization after application launch.
let configuration = Realm.Configuration( let configuration = Realm.Configuration(
schemaVersion: 17, schemaVersion: 18,
migrationBlock: { [weak self] migration, oldSchemaVersion in migrationBlock: { [weak self] migration, oldSchemaVersion in
if (oldSchemaVersion < 1) { if (oldSchemaVersion < 1) {
self?.logger.log("Realm schema version was \(oldSchemaVersion)") self?.logger.log("Realm schema version was \(oldSchemaVersion)")
@@ -54,6 +54,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
newObject?["chapterTrack"] = false newObject?["chapterTrack"] = false
} }
} }
if (oldSchemaVersion < 17) {
self?.logger.log("Realm schema version was \(oldSchemaVersion)... Adding downloadUsingCellular and streamingUsingCellular settings")
migration.enumerateObjects(ofType: PlayerSettings.className()) { oldObject, newObject in
newObject?["downloadUsingCellular"] = "ALWAYS"
newObject?["streamingUsingCellular"] = "ALWAYS"
}
}
} }
) )
+27
View File
@@ -8,12 +8,15 @@
import Foundation import Foundation
import Capacitor import Capacitor
import RealmSwift import RealmSwift
import Network
@objc(AbsAudioPlayer) @objc(AbsAudioPlayer)
public class AbsAudioPlayer: CAPPlugin { public class AbsAudioPlayer: CAPPlugin {
private let logger = AppLogger(category: "AbsAudioPlayer") private let logger = AppLogger(category: "AbsAudioPlayer")
private var initialPlayWhenReady = false private var initialPlayWhenReady = false
private var monitor: NWPathMonitor?
private let queue = DispatchQueue.global(qos: .background)
override public func load() { override public func load() {
NotificationCenter.default.addObserver(self, selector: #selector(sendMetadata), name: NSNotification.Name(PlayerEvents.update.rawValue), object: nil) NotificationCenter.default.addObserver(self, selector: #selector(sendMetadata), name: NSNotification.Name(PlayerEvents.update.rawValue), object: nil)
@@ -28,6 +31,11 @@ public class AbsAudioPlayer: CAPPlugin {
self.bridge?.webView?.allowsBackForwardNavigationGestures = true; self.bridge?.webView?.allowsBackForwardNavigationGestures = true;
self.bridge?.webView?.scrollView.alwaysBounceVertical = false; self.bridge?.webView?.scrollView.alwaysBounceVertical = false;
setupNetworkMonitor()
}
deinit {
monitor?.cancel()
} }
@objc func onReady(_ call: CAPPluginCall) { @objc func onReady(_ call: CAPPluginCall) {
@@ -275,6 +283,25 @@ public class AbsAudioPlayer: CAPPlugin {
@objc func sendPlaybackSession(session: [String: Any]) { @objc func sendPlaybackSession(session: [String: Any]) {
self.notifyListeners("onPlaybackSession", data: session) self.notifyListeners("onPlaybackSession", data: session)
} }
private func setupNetworkMonitor() {
monitor = NWPathMonitor()
monitor?.pathUpdateHandler = { [weak self] path in
guard let self = self else { return }
let isUnmetered = !path.isExpensive && !path.isConstrained
DispatchQueue.main.async {
self.notifyNetworkMeteredChanged(isUnmetered: isUnmetered)
}
}
monitor?.start(queue: queue)
}
private func notifyNetworkMeteredChanged(isUnmetered: Bool) {
let data: [String: Any] = ["value": isUnmetered]
self.notifyListeners("onNetworkMeteredChanged", data: data)
}
} }
enum PlayerError: String, Error { enum PlayerError: String, Error {
+4
View File
@@ -244,6 +244,8 @@ public class AbsDatabase: CAPPlugin {
let lockOrientation = call.getString("lockOrientation") ?? "NONE" let lockOrientation = call.getString("lockOrientation") ?? "NONE"
let hapticFeedback = call.getString("hapticFeedback") ?? "LIGHT" let hapticFeedback = call.getString("hapticFeedback") ?? "LIGHT"
let languageCode = call.getString("languageCode") ?? "en-us" let languageCode = call.getString("languageCode") ?? "en-us"
let downloadUsingCellular = call.getString("downloadUsingCellular") ?? "ALWAYS"
let streamingUsingCellular = call.getString("streamingUsingCellular") ?? "ALWAYS"
let settings = DeviceSettings() let settings = DeviceSettings()
settings.disableAutoRewind = disableAutoRewind settings.disableAutoRewind = disableAutoRewind
settings.enableAltView = enableAltView settings.enableAltView = enableAltView
@@ -253,6 +255,8 @@ public class AbsDatabase: CAPPlugin {
settings.lockOrientation = lockOrientation settings.lockOrientation = lockOrientation
settings.hapticFeedback = hapticFeedback settings.hapticFeedback = hapticFeedback
settings.languageCode = languageCode settings.languageCode = languageCode
settings.downloadUsingCellular = downloadUsingCellular
settings.streamingUsingCellular = streamingUsingCellular
Database.shared.setDeviceSettings(deviceSettings: settings) Database.shared.setDeviceSettings(deviceSettings: settings)
+5 -1
View File
@@ -17,6 +17,8 @@ class DeviceSettings: Object {
@Persisted var lockOrientation: String = "NONE" @Persisted var lockOrientation: String = "NONE"
@Persisted var hapticFeedback: String = "LIGHT" @Persisted var hapticFeedback: String = "LIGHT"
@Persisted var languageCode: String = "en-us" @Persisted var languageCode: String = "en-us"
@Persisted var downloadUsingCellular: String = "ALWAYS"
@Persisted var streamingUsingCellular: String = "ALWAYS"
} }
func getDefaultDeviceSettings() -> DeviceSettings { func getDefaultDeviceSettings() -> DeviceSettings {
@@ -32,6 +34,8 @@ func deviceSettingsToJSON(settings: DeviceSettings) -> Dictionary<String, Any> {
"jumpForwardTime": settings.jumpForwardTime, "jumpForwardTime": settings.jumpForwardTime,
"lockOrientation": settings.lockOrientation, "lockOrientation": settings.lockOrientation,
"hapticFeedback": settings.hapticFeedback, "hapticFeedback": settings.hapticFeedback,
"languageCode": settings.languageCode "languageCode": settings.languageCode,
"downloadUsingCellular": settings.downloadUsingCellular,
"streamingUsingCellular": settings.streamingUsingCellular
] ]
} }
+42
View File
@@ -0,0 +1,42 @@
import { Dialog } from '@capacitor/dialog';
export default {
methods: {
async checkCellularPermission(actionType) {
if (this.$store.state.networkConnectionType !== 'cellular') return true
let permission;
if (actionType === 'download') {
permission = this.$store.getters['getCanDownloadUsingCellular']
if (permission === 'NEVER') {
this.$toast.error(this.$strings.ToastDownloadNotAllowedOnCellular)
return false
}
} else if (actionType === 'streaming') {
permission = this.$store.getters['getCanStreamingUsingCellular']
if (permission === 'NEVER') {
this.$toast.error(this.$strings.ToastStreamingNotAllowedOnCellular)
return false
}
}
if (permission === 'ASK') {
const confirmed = await this.confirmAction(actionType)
return confirmed
}
return true
},
async confirmAction(actionType) {
const message = actionType === 'download' ?
this.$strings.MessageConfirmDownloadUsingCellular :
this.$strings.MessageConfirmStreamingUsingCellular
const { value } = await Dialog.confirm({
title: 'Confirm',
message
})
return value
}
}
}
+5 -3
View File
@@ -3,7 +3,7 @@
<h1 class="text-xl mb-2 font-semibold">{{ $strings.HeaderLatestEpisodes }}</h1> <h1 class="text-xl mb-2 font-semibold">{{ $strings.HeaderLatestEpisodes }}</h1>
<template v-for="episode in recentEpisodes"> <template v-for="episode in recentEpisodes">
<tables-podcast-latest-episode-row :episode="episode" :local-episode="localEpisodeMap[episode.id]" :library-item-id="episode.libraryItemId" :local-library-item-id="null" :is-local="isLocal" :key="episode.id" @addToPlaylist="addEpisodeToPlaylist" /> <tables-podcast-latest-episode-row :episode="episode" :local-episode="localEpisodeMap[episode.id]" :library-item-id="episode.libraryItemId" :local-library-item-id="localEpisodeMap[episode.id]?.localLibraryItemId" :key="episode.id" @addToPlaylist="addEpisodeToPlaylist" />
</template> </template>
</div> </div>
</template> </template>
@@ -17,7 +17,6 @@ export default {
totalEpisodes: 0, totalEpisodes: 0,
currentPage: 0, currentPage: 0,
localLibraryItems: [], localLibraryItems: [],
isLocal: false,
loadedLibraryId: null loadedLibraryId: null
} }
}, },
@@ -30,7 +29,10 @@ export default {
const episodes = [] const episodes = []
this.localLibraryItems.forEach((li) => { this.localLibraryItems.forEach((li) => {
if (li.media.episodes?.length) { if (li.media.episodes?.length) {
episodes.push(...li.media.episodes) li.media.episodes.map((ep) => {
ep.localLibraryItemId = li.id
episodes.push(ep)
})
} }
}) })
return episodes return episodes
+5
View File
@@ -56,6 +56,7 @@
import { Capacitor } from '@capacitor/core' import { Capacitor } from '@capacitor/core'
import { Dialog } from '@capacitor/dialog' import { Dialog } from '@capacitor/dialog'
import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor' import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor'
import cellularPermissionHelpers from '@/mixins/cellularPermissionHelpers'
export default { export default {
async asyncData({ store, params, redirect, app }) { async asyncData({ store, params, redirect, app }) {
@@ -115,6 +116,7 @@ export default {
startingDownload: false startingDownload: false
} }
}, },
mixins: [cellularPermissionHelpers],
computed: { computed: {
transformedDescription() { transformedDescription() {
return this.parseDescription(this.description) return this.parseDescription(this.description)
@@ -419,6 +421,9 @@ export default {
async downloadClick() { async downloadClick() {
if (this.downloadItem || this.startingDownload) return if (this.downloadItem || this.startingDownload) return
const hasPermission = await this.checkCellularPermission('download')
if (!hasPermission) return
this.startingDownload = true this.startingDownload = true
setTimeout(() => { setTimeout(() => {
this.startingDownload = false this.startingDownload = false
+7 -3
View File
@@ -171,6 +171,7 @@
import { Dialog } from '@capacitor/dialog' import { Dialog } from '@capacitor/dialog'
import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor' import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor'
import { FastAverageColor } from 'fast-average-color' import { FastAverageColor } from 'fast-average-color'
import cellularPermissionHelpers from '@/mixins/cellularPermissionHelpers'
export default { export default {
async asyncData({ store, params, redirect, app, query }) { async asyncData({ store, params, redirect, app, query }) {
@@ -221,6 +222,7 @@ export default {
startingDownload: false startingDownload: false
} }
}, },
mixins: [cellularPermissionHelpers],
computed: { computed: {
isIos() { isIos() {
return this.$platform === 'ios' return this.$platform === 'ios'
@@ -607,9 +609,11 @@ export default {
this.download(localFolder) this.download(localFolder)
}, },
async downloadClick() { async downloadClick() {
if (this.downloadItem || this.startingDownload) { if (this.downloadItem || this.startingDownload) return
return
} const hasPermission = await this.checkCellularPermission('download')
if (!hasPermission) return
this.startingDownload = true this.startingDownload = true
setTimeout(() => { setTimeout(() => {
this.startingDownload = false this.startingDownload = false
+73 -1
View File
@@ -135,6 +135,21 @@
</div> </div>
</div> </div>
<!-- Data settings -->
<p class="uppercase text-xs font-semibold text-fg-muted mb-2 mt-10">{{ $strings.HeaderDataSettings }}</p>
<div class="py-3 flex items-center">
<p class="pr-4 w-36">{{ $strings.LabelDownloadUsingCellular }}</p>
<div @click.stop="showDownloadUsingCellularOptions">
<ui-text-input :value="downloadUsingCellularOption" readonly append-icon="expand_more" style="max-width: 200px" />
</div>
</div>
<div class="py-3 flex items-center">
<p class="pr-4 w-36">{{ $strings.LabelStreamingUsingCellular }}</p>
<div @click.stop="showStreamingUsingCellularOptions">
<ui-text-input :value="streamingUsingCellularOption" readonly append-icon="expand_more" style="max-width: 200px" />
</div>
</div>
<div v-show="loading" class="w-full h-full absolute top-0 left-0 flex items-center justify-center z-10"> <div v-show="loading" class="w-full h-full absolute top-0 left-0 flex items-center justify-center z-10">
<ui-loading-indicator /> <ui-loading-indicator />
</div> </div>
@@ -176,7 +191,9 @@ export default {
disableSleepTimerResetFeedback: false, disableSleepTimerResetFeedback: false,
autoSleepTimerAutoRewind: false, autoSleepTimerAutoRewind: false,
autoSleepTimerAutoRewindTime: 300000, // 5 minutes autoSleepTimerAutoRewindTime: 300000, // 5 minutes
languageCode: 'en-us' languageCode: 'en-us',
downloadUsingCellular: 'ALWAYS',
streamingUsingCellular: 'ALWAYS'
}, },
theme: 'dark', theme: 'dark',
lockCurrentOrientation: false, lockCurrentOrientation: false,
@@ -245,6 +262,34 @@ export default {
text: this.$strings.LabelVeryHigh, text: this.$strings.LabelVeryHigh,
value: 'VERY_HIGH' value: 'VERY_HIGH'
} }
],
downloadUsingCellularItems: [
{
text: this.$strings.LabelAskConfirmation,
value: 'ASK'
},
{
text: this.$strings.LabelAlways,
value: 'ALWAYS'
},
{
text: this.$strings.LabelNever,
value: 'NEVER'
}
],
streamingUsingCellularItems: [
{
text: this.$strings.LabelAskConfirmation,
value: 'ASK'
},
{
text: this.$strings.LabelAlways,
value: 'ALWAYS'
},
{
text: this.$strings.LabelNever,
value: 'NEVER'
}
] ]
} }
}, },
@@ -319,11 +364,21 @@ export default {
const minutes = Number(this.settings.autoSleepTimerAutoRewindTime) / 1000 / 60 const minutes = Number(this.settings.autoSleepTimerAutoRewindTime) / 1000 / 60
return `${minutes} min` return `${minutes} min`
}, },
downloadUsingCellularOption() {
const item = this.downloadUsingCellularItems.find((i) => i.value === this.settings.downloadUsingCellular)
return item?.text || 'Error'
},
streamingUsingCellularOption() {
const item = this.streamingUsingCellularItems.find((i) => i.value === this.settings.streamingUsingCellular)
return item?.text || 'Error'
},
moreMenuItems() { moreMenuItems() {
if (this.moreMenuSetting === 'shakeSensitivity') return this.shakeSensitivityItems if (this.moreMenuSetting === 'shakeSensitivity') return this.shakeSensitivityItems
else if (this.moreMenuSetting === 'hapticFeedback') return this.hapticFeedbackItems else if (this.moreMenuSetting === 'hapticFeedback') return this.hapticFeedbackItems
else if (this.moreMenuSetting === 'language') return this.languageOptionItems else if (this.moreMenuSetting === 'language') return this.languageOptionItems
else if (this.moreMenuSetting === 'theme') return this.themeOptionItems else if (this.moreMenuSetting === 'theme') return this.themeOptionItems
else if (this.moreMenuSetting === 'downloadUsingCellular') return this.downloadUsingCellularItems
else if (this.moreMenuSetting === 'streamingUsingCellular') return this.streamingUsingCellularItems
return [] return []
} }
}, },
@@ -358,6 +413,14 @@ export default {
this.moreMenuSetting = 'theme' this.moreMenuSetting = 'theme'
this.showMoreMenuDialog = true this.showMoreMenuDialog = true
}, },
showDownloadUsingCellularOptions() {
this.moreMenuSetting = 'downloadUsingCellular'
this.showMoreMenuDialog = true
},
showStreamingUsingCellularOptions() {
this.moreMenuSetting = 'streamingUsingCellular'
this.showMoreMenuDialog = true
},
clickMenuAction(action) { clickMenuAction(action) {
this.showMoreMenuDialog = false this.showMoreMenuDialog = false
if (this.moreMenuSetting === 'shakeSensitivity') { if (this.moreMenuSetting === 'shakeSensitivity') {
@@ -372,6 +435,12 @@ export default {
} else if (this.moreMenuSetting === 'theme') { } else if (this.moreMenuSetting === 'theme') {
this.theme = action this.theme = action
this.saveTheme(action) this.saveTheme(action)
} else if (this.moreMenuSetting === 'downloadUsingCellular') {
this.settings.downloadUsingCellular = action
this.saveSettings()
} else if (this.moreMenuSetting === 'streamingUsingCellular') {
this.settings.streamingUsingCellular = action
this.saveSettings()
} }
}, },
saveTheme(theme) { saveTheme(theme) {
@@ -504,6 +573,9 @@ export default {
this.settings.autoSleepTimerAutoRewindTime = !isNaN(deviceSettings.autoSleepTimerAutoRewindTime) ? deviceSettings.autoSleepTimerAutoRewindTime : 300000 // 5 minutes this.settings.autoSleepTimerAutoRewindTime = !isNaN(deviceSettings.autoSleepTimerAutoRewindTime) ? deviceSettings.autoSleepTimerAutoRewindTime : 300000 // 5 minutes
this.settings.languageCode = deviceSettings.languageCode || 'en-us' this.settings.languageCode = deviceSettings.languageCode || 'en-us'
this.settings.downloadUsingCellular = deviceSettings.downloadUsingCellular || 'ALWAYS'
this.settings.streamingUsingCellular = deviceSettings.streamingUsingCellular || 'ALWAYS'
}, },
async init() { async init() {
this.loading = true this.loading = true
+8
View File
@@ -77,6 +77,14 @@ export const getters = {
}, },
getOrientationLockSetting: state => { getOrientationLockSetting: state => {
return state.deviceData?.deviceSettings?.lockOrientation return state.deviceData?.deviceSettings?.lockOrientation
},
getCanDownloadUsingCellular: state => {
if (!state.deviceData?.deviceSettings?.downloadUsingCellular) return 'ALWAYS'
return state.deviceData.deviceSettings.downloadUsingCellular || 'ALWAYS'
},
getCanStreamingUsingCellular: state => {
if (!state.deviceData?.deviceSettings?.streamingUsingCellular) return 'ALWAYS'
return state.deviceData.deviceSettings.streamingUsingCellular || 'ALWAYS'
} }
} }
+1
View File
@@ -0,0 +1 @@
{}
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Kolekce", "HeaderCollection": "Kolekce",
"HeaderCollectionItems": "Položky kolekce", "HeaderCollectionItems": "Položky kolekce",
"HeaderConnectionStatus": "Stav připojení", "HeaderConnectionStatus": "Stav připojení",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Podrobnosti", "HeaderDetails": "Podrobnosti",
"HeaderDownloads": "Stahování", "HeaderDownloads": "Stahování",
"HeaderEbookFiles": "Soubory e-knih", "HeaderEbookFiles": "Soubory e-knih",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Obsah", "HeaderTableOfContents": "Obsah",
"HeaderUserInterfaceSettings": "Nastavení uživatelského rozhraní", "HeaderUserInterfaceSettings": "Nastavení uživatelského rozhraní",
"HeaderYourStats": "Vaše statistiky", "HeaderYourStats": "Vaše statistiky",
"LabelAddToPlaylist": "Přidat do seznamu skladeb",
"LabelAdded": "Přidáno", "LabelAdded": "Přidáno",
"LabelAddedAt": "Přidáno v", "LabelAddedAt": "Přidáno v",
"LabelAddToPlaylist": "Přidat do seznamu skladeb",
"LabelAll": "Vše", "LabelAll": "Vše",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Autor (jméno a příjmení)", "LabelAuthorFirstLast": "Autor (jméno a příjmení)",
"LabelAuthorLastFirst": "Autor (příjmení a jméno)", "LabelAuthorLastFirst": "Autor (příjmení a jméno)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Když dojde k uspání automatickým časovačem spánku, pozice přehrávání je posunuta zpět o vybraný čas.", "LabelAutoSleepTimerAutoRewindHelp": "Když dojde k uspání automatickým časovačem spánku, pozice přehrávání je posunuta zpět o vybraný čas.",
"LabelAutoSleepTimerHelp": "Během přehrávání média v časovém rozmezí \"Od\" a \"Do\" se automaticky spustí časovač spánku.", "LabelAutoSleepTimerHelp": "Během přehrávání média v časovém rozmezí \"Od\" a \"Do\" se automaticky spustí časovač spánku.",
"LabelBooks": "Knihy", "LabelBooks": "Knihy",
"LabelChapters": "Kapitoly",
"LabelChapterTrack": "Stopa kapitoly", "LabelChapterTrack": "Stopa kapitoly",
"LabelChapters": "Kapitoly",
"LabelClosePlayer": "Zavřít přehrávač", "LabelClosePlayer": "Zavřít přehrávač",
"LabelCollapseSeries": "Sbalit sérii", "LabelCollapseSeries": "Sbalit sérii",
"LabelComplete": "Dokončeno", "LabelComplete": "Dokončeno",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Když je časovač spánku resetován, zařízení zavibruje. Tuto možnost povolte, pokud nechcete, aby zařízení vibrace provádělo při resetování časovače spánku.", "LabelDisableVibrateOnResetHelp": "Když je časovač spánku resetován, zařízení zavibruje. Tuto možnost povolte, pokud nechcete, aby zařízení vibrace provádělo při resetování časovače spánku.",
"LabelDiscover": "Objevit", "LabelDiscover": "Objevit",
"LabelDownload": "Stáhnout", "LabelDownload": "Stáhnout",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Staženo", "LabelDownloaded": "Staženo",
"LabelDuration": "Trvání", "LabelDuration": "Trvání",
"LabelEbook": "E-kniha", "LabelEbook": "E-kniha",
@@ -146,8 +150,8 @@
"LabelHeavy": "Těžké", "LabelHeavy": "Těžké",
"LabelHigh": "Vysoké", "LabelHigh": "Vysoké",
"LabelHost": "Hostitel", "LabelHost": "Hostitel",
"LabelIncomplete": "Neúplné",
"LabelInProgress": "Probíhá", "LabelInProgress": "Probíhá",
"LabelIncomplete": "Neúplné",
"LabelInternalAppStorage": "Interní úložiště aplikace", "LabelInternalAppStorage": "Interní úložiště aplikace",
"LabelJumpBackwardsTime": "Délka skoku zpět v čase", "LabelJumpBackwardsTime": "Délka skoku zpět v čase",
"LabelJumpForwardsTime": "Délka skoku vpřed v čase", "LabelJumpForwardsTime": "Délka skoku vpřed v čase",
@@ -170,6 +174,7 @@
"LabelName": "Jméno", "LabelName": "Jméno",
"LabelNarrator": "Vypravěč", "LabelNarrator": "Vypravěč",
"LabelNarrators": "Vypravěči", "LabelNarrators": "Vypravěči",
"LabelNever": "Never",
"LabelNewestAuthors": "Nejnovější autoři", "LabelNewestAuthors": "Nejnovější autoři",
"LabelNewestEpisodes": "Nejnovější epizody", "LabelNewestEpisodes": "Nejnovější epizody",
"LabelNo": "Ne", "LabelNo": "Ne",
@@ -188,15 +193,15 @@
"LabelProgress": "Průběh", "LabelProgress": "Průběh",
"LabelPubDate": "Datum vydání", "LabelPubDate": "Datum vydání",
"LabelPublishYear": "Rok vydání", "LabelPublishYear": "Rok vydání",
"LabelRead": "Číst",
"LabelReadAgain": "Číst znovu",
"LabelRecentlyAdded": "Nedávno přidáno",
"LabelRecentSeries": "Nedávné série",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Vlastní e-mail vlastníka", "LabelRSSFeedCustomOwnerEmail": "Vlastní e-mail vlastníka",
"LabelRSSFeedCustomOwnerName": "Vlastní jméno vlastníka", "LabelRSSFeedCustomOwnerName": "Vlastní jméno vlastníka",
"LabelRSSFeedPreventIndexing": "Zabránit indexování", "LabelRSSFeedPreventIndexing": "Zabránit indexování",
"LabelRSSFeedSlug": "Klíčové slovo kanálu RSS", "LabelRSSFeedSlug": "Klíčové slovo kanálu RSS",
"LabelRead": "Číst",
"LabelReadAgain": "Číst znovu",
"LabelRecentSeries": "Nedávné série",
"LabelRecentlyAdded": "Nedávno přidáno",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Škálovat uplynulý čas podle rychlosti", "LabelScaleElapsedTimeBySpeed": "Škálovat uplynulý čas podle rychlosti",
"LabelSeason": "Sezóna", "LabelSeason": "Sezóna",
"LabelSelectADevice": "Vyberte zařízení", "LabelSelectADevice": "Vyberte zařízení",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minut", "LabelStatsMinutes": "minut",
"LabelStatsMinutesListening": "Minuty poslechu", "LabelStatsMinutesListening": "Minuty poslechu",
"LabelStatsWeekListening": "Za týden", "LabelStatsWeekListening": "Za týden",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Štítek", "LabelTag": "Štítek",
"LabelTags": "Štítky", "LabelTags": "Štítky",
"LabelTheme": "Téma", "LabelTheme": "Téma",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Odebrat místní epizodu „{0}“ ze zařízení? Soubor na serveru zůstane nezměněný.", "MessageConfirmDeleteLocalEpisode": "Odebrat místní epizodu „{0}“ ze zařízení? Soubor na serveru zůstane nezměněný.",
"MessageConfirmDeleteLocalFiles": "Odebrat místní soubory této položky ze zařízení? Soubory na serveru a váš pokrok nebudou ovlivněny.", "MessageConfirmDeleteLocalFiles": "Odebrat místní soubory této položky ze zařízení? Soubory na serveru a váš pokrok nebudou ovlivněny.",
"MessageConfirmDiscardProgress": "Opravdu chcete zahodit svůj pokrok?", "MessageConfirmDiscardProgress": "Opravdu chcete zahodit svůj pokrok?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Opravdu chcete tuto položku označit jako dokončenou?", "MessageConfirmMarkAsFinished": "Opravdu chcete tuto položku označit jako dokončenou?",
"MessageConfirmRemoveBookmark": "Opravdu chcete odebrat záložku?", "MessageConfirmRemoveBookmark": "Opravdu chcete odebrat záložku?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Zahodit pokrok", "MessageDiscardProgress": "Zahodit pokrok",
"MessageDownloadCompleteProcessing": "Stahování dokončeno. Zpracovává se...", "MessageDownloadCompleteProcessing": "Stahování dokončeno. Zpracovává se...",
"MessageDownloading": "Stahuje se...", "MessageDownloading": "Stahuje se...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Vytvoření záložky se nezdařilo", "ToastBookmarkCreateFailed": "Vytvoření záložky se nezdařilo",
"ToastBookmarkRemoveFailed": "Nepodařilo se odstranit záložku", "ToastBookmarkRemoveFailed": "Nepodařilo se odstranit záložku",
"ToastBookmarkUpdateFailed": "Aktualizace záložky se nezdařila", "ToastBookmarkUpdateFailed": "Aktualizace záložky se nezdařila",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Nepodařilo se označit jako dokončené", "ToastItemMarkedAsFinishedFailed": "Nepodařilo se označit jako dokončené",
"ToastItemMarkedAsNotFinishedFailed": "Nepodařilo se označit jako nedokončené", "ToastItemMarkedAsNotFinishedFailed": "Nepodařilo se označit jako nedokončené",
"ToastPlaylistCreateFailed": "Vytvoření seznamu přehrávání se nezdařilo", "ToastPlaylistCreateFailed": "Vytvoření seznamu přehrávání se nezdařilo",
"ToastPodcastCreateFailed": "Vytvoření podcastu se nezdařilo", "ToastPodcastCreateFailed": "Vytvoření podcastu se nezdařilo",
"ToastPodcastCreateSuccess": "Podcast byl úspěšně vytvořen", "ToastPodcastCreateSuccess": "Podcast byl úspěšně vytvořen",
"ToastRSSFeedCloseFailed": "Nepodařilo se zavřít RSS kanál", "ToastRSSFeedCloseFailed": "Nepodařilo se zavřít RSS kanál",
"ToastRSSFeedCloseSuccess": "RSS kanál uzavřen" "ToastRSSFeedCloseSuccess": "RSS kanál uzavřen",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Samling", "HeaderCollection": "Samling",
"HeaderCollectionItems": "Samlingselementer", "HeaderCollectionItems": "Samlingselementer",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detaljer", "HeaderDetails": "Detaljer",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "E-bogsfiler", "HeaderEbookFiles": "E-bogsfiler",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Indholdsfortegnelse", "HeaderTableOfContents": "Indholdsfortegnelse",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Dine Statistikker", "HeaderYourStats": "Dine Statistikker",
"LabelAddToPlaylist": "Tilføj til Afspilningsliste",
"LabelAdded": "Tilføjet", "LabelAdded": "Tilføjet",
"LabelAddedAt": "Tilføjet Kl.", "LabelAddedAt": "Tilføjet Kl.",
"LabelAddToPlaylist": "Tilføj til Afspilningsliste",
"LabelAll": "Alle", "LabelAll": "Alle",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Forfatter", "LabelAuthor": "Forfatter",
"LabelAuthorFirstLast": "Forfatter (Fornavn Efternavn)", "LabelAuthorFirstLast": "Forfatter (Fornavn Efternavn)",
"LabelAuthorLastFirst": "Forfatter (Efternavn, Fornavn)", "LabelAuthorLastFirst": "Forfatter (Efternavn, Fornavn)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Bøger", "LabelBooks": "Bøger",
"LabelChapters": "Kapitler",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Kapitler",
"LabelClosePlayer": "Luk afspiller", "LabelClosePlayer": "Luk afspiller",
"LabelCollapseSeries": "Fold Serie Sammen", "LabelCollapseSeries": "Fold Serie Sammen",
"LabelComplete": "Fuldfør", "LabelComplete": "Fuldfør",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Varighed", "LabelDuration": "Varighed",
"LabelEbook": "E-bog", "LabelEbook": "E-bog",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Vært", "LabelHost": "Vært",
"LabelIncomplete": "Ufuldstændig",
"LabelInProgress": "I gang", "LabelInProgress": "I gang",
"LabelIncomplete": "Ufuldstændig",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Navn", "LabelName": "Navn",
"LabelNarrator": "Fortæller", "LabelNarrator": "Fortæller",
"LabelNarrators": "Fortællere", "LabelNarrators": "Fortællere",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Fremskridt", "LabelProgress": "Fremskridt",
"LabelPubDate": "Udgivelsesdato", "LabelPubDate": "Udgivelsesdato",
"LabelPublishYear": "Udgivelsesår", "LabelPublishYear": "Udgivelsesår",
"LabelRead": "Læst",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Brugerdefineret ejerens e-mail", "LabelRSSFeedCustomOwnerEmail": "Brugerdefineret ejerens e-mail",
"LabelRSSFeedCustomOwnerName": "Brugerdefineret ejerens navn", "LabelRSSFeedCustomOwnerName": "Brugerdefineret ejerens navn",
"LabelRSSFeedPreventIndexing": "Forhindrer indeksering", "LabelRSSFeedPreventIndexing": "Forhindrer indeksering",
"LabelRSSFeedSlug": "RSS-feed-slug", "LabelRSSFeedSlug": "RSS-feed-slug",
"LabelRead": "Læst",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Sæson", "LabelSeason": "Sæson",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutter", "LabelStatsMinutes": "minutter",
"LabelStatsMinutesListening": "Minutter hørt", "LabelStatsMinutesListening": "Minutter hørt",
"LabelStatsWeekListening": "Ugens lytning", "LabelStatsWeekListening": "Ugens lytning",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Mærke", "LabelTag": "Mærke",
"LabelTags": "Mærker", "LabelTags": "Mærker",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Mislykkedes oprettelse af bogmærke", "ToastBookmarkCreateFailed": "Mislykkedes oprettelse af bogmærke",
"ToastBookmarkRemoveFailed": "Mislykkedes fjernelse af bogmærke", "ToastBookmarkRemoveFailed": "Mislykkedes fjernelse af bogmærke",
"ToastBookmarkUpdateFailed": "Mislykkedes opdatering af bogmærke", "ToastBookmarkUpdateFailed": "Mislykkedes opdatering af bogmærke",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Mislykkedes markering som afsluttet", "ToastItemMarkedAsFinishedFailed": "Mislykkedes markering som afsluttet",
"ToastItemMarkedAsNotFinishedFailed": "Mislykkedes markering som ikke afsluttet", "ToastItemMarkedAsNotFinishedFailed": "Mislykkedes markering som ikke afsluttet",
"ToastPlaylistCreateFailed": "Mislykkedes oprettelse af afspilningsliste", "ToastPlaylistCreateFailed": "Mislykkedes oprettelse af afspilningsliste",
"ToastPodcastCreateFailed": "Mislykkedes oprettelse af podcast", "ToastPodcastCreateFailed": "Mislykkedes oprettelse af podcast",
"ToastPodcastCreateSuccess": "Podcast oprettet med succes", "ToastPodcastCreateSuccess": "Podcast oprettet med succes",
"ToastRSSFeedCloseFailed": "Mislykkedes lukning af RSS-feed", "ToastRSSFeedCloseFailed": "Mislykkedes lukning af RSS-feed",
"ToastRSSFeedCloseSuccess": "RSS-feed lukket" "ToastRSSFeedCloseSuccess": "RSS-feed lukket",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Sammlungen", "HeaderCollection": "Sammlungen",
"HeaderCollectionItems": "Sammlungseinträge", "HeaderCollectionItems": "Sammlungseinträge",
"HeaderConnectionStatus": "Verbindungsstatus", "HeaderConnectionStatus": "Verbindungsstatus",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Details", "HeaderDetails": "Details",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "E-Book Dateien", "HeaderEbookFiles": "E-Book Dateien",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Inhaltsverzeichnis", "HeaderTableOfContents": "Inhaltsverzeichnis",
"HeaderUserInterfaceSettings": "Einstellungen der Benutzeroberfläche", "HeaderUserInterfaceSettings": "Einstellungen der Benutzeroberfläche",
"HeaderYourStats": "Eigene Statistiken", "HeaderYourStats": "Eigene Statistiken",
"LabelAddToPlaylist": "Zur Wiedergabeliste hinzufügen",
"LabelAdded": "Hinzugefügt", "LabelAdded": "Hinzugefügt",
"LabelAddedAt": "Hinzugefügt am", "LabelAddedAt": "Hinzugefügt am",
"LabelAddToPlaylist": "Zur Wiedergabeliste hinzufügen",
"LabelAll": "Alle", "LabelAll": "Alle",
"LabelAllowSeekingOnMediaControls": "Erlaube Vor- und Zurückspulen auf dem Medienkontrollelement bei den Benachrichtigungen", "LabelAllowSeekingOnMediaControls": "Erlaube Vor- und Zurückspulen auf dem Medienkontrollelement bei den Benachrichtigungen",
"LabelAlways": "Immer",
"LabelAskConfirmation": "Bestätigung anfordern",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Autor (Vorname Nachname)", "LabelAuthorFirstLast": "Autor (Vorname Nachname)",
"LabelAuthorLastFirst": "Autor (Nachname, Vorname)", "LabelAuthorLastFirst": "Autor (Nachname, Vorname)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Wenn die Schlummerfunktion abgelaufen ist, wird bei der erneuten Wiedergabe des Titels die Position automatisch zurückgespult.", "LabelAutoSleepTimerAutoRewindHelp": "Wenn die Schlummerfunktion abgelaufen ist, wird bei der erneuten Wiedergabe des Titels die Position automatisch zurückgespult.",
"LabelAutoSleepTimerHelp": "Bei der Wiedergabe von Medien zwischen der angegebenen Start- und Endzeit wird automatisch eine Schlummerfunktion gestartet.", "LabelAutoSleepTimerHelp": "Bei der Wiedergabe von Medien zwischen der angegebenen Start- und Endzeit wird automatisch eine Schlummerfunktion gestartet.",
"LabelBooks": "Bücher", "LabelBooks": "Bücher",
"LabelChapters": "Kapitel",
"LabelChapterTrack": "Kapitel Spur", "LabelChapterTrack": "Kapitel Spur",
"LabelChapters": "Kapitel",
"LabelClosePlayer": "Player schließen", "LabelClosePlayer": "Player schließen",
"LabelCollapseSeries": "Serien zusammenfassen", "LabelCollapseSeries": "Serien zusammenfassen",
"LabelComplete": "Vollständig", "LabelComplete": "Vollständig",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Wenn der Sleep-Timer zurückgesetzt wird, vibriert dein Gerät. Aktiviere diese Einstellung, um nicht zu vibrieren, wenn der Sleep-Timer zurückgesetzt wird.", "LabelDisableVibrateOnResetHelp": "Wenn der Sleep-Timer zurückgesetzt wird, vibriert dein Gerät. Aktiviere diese Einstellung, um nicht zu vibrieren, wenn der Sleep-Timer zurückgesetzt wird.",
"LabelDiscover": "Entdecken", "LabelDiscover": "Entdecken",
"LabelDownload": "Herunterladen", "LabelDownload": "Herunterladen",
"LabelDownloadUsingCellular": "Über mobile Daten herunterladen",
"LabelDownloaded": "Heruntergeladen", "LabelDownloaded": "Heruntergeladen",
"LabelDuration": "Laufzeit", "LabelDuration": "Laufzeit",
"LabelEbook": "E-Book", "LabelEbook": "E-Book",
@@ -146,8 +150,8 @@
"LabelHeavy": "Stark", "LabelHeavy": "Stark",
"LabelHigh": "Hoch", "LabelHigh": "Hoch",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Unvollständig",
"LabelInProgress": "In Bearbeitung", "LabelInProgress": "In Bearbeitung",
"LabelIncomplete": "Unvollständig",
"LabelInternalAppStorage": "Interner App Speicher", "LabelInternalAppStorage": "Interner App Speicher",
"LabelJumpBackwardsTime": "Rückspulzeit", "LabelJumpBackwardsTime": "Rückspulzeit",
"LabelJumpForwardsTime": "Vorwärtsspulzeit", "LabelJumpForwardsTime": "Vorwärtsspulzeit",
@@ -170,6 +174,7 @@
"LabelName": "Name", "LabelName": "Name",
"LabelNarrator": "Erzähler", "LabelNarrator": "Erzähler",
"LabelNarrators": "Erzähler", "LabelNarrators": "Erzähler",
"LabelNever": "Never",
"LabelNewestAuthors": "Neueste Autoren", "LabelNewestAuthors": "Neueste Autoren",
"LabelNewestEpisodes": "Neueste Episoden", "LabelNewestEpisodes": "Neueste Episoden",
"LabelNo": "Nein", "LabelNo": "Nein",
@@ -188,15 +193,15 @@
"LabelProgress": "Fortschritt", "LabelProgress": "Fortschritt",
"LabelPubDate": "Veröffentlichungsdatum", "LabelPubDate": "Veröffentlichungsdatum",
"LabelPublishYear": "Jahr", "LabelPublishYear": "Jahr",
"LabelRead": "Lesen",
"LabelReadAgain": "Erneut lesen",
"LabelRecentlyAdded": "Kürzlich hinzugefügt",
"LabelRecentSeries": "Aktuelle Serien",
"LabelRemoveFromPlaylist": "Von Wiedergabeliste entfernen",
"LabelRSSFeedCustomOwnerEmail": "Benutzerdefinierte Eigentümer-E-Mail", "LabelRSSFeedCustomOwnerEmail": "Benutzerdefinierte Eigentümer-E-Mail",
"LabelRSSFeedCustomOwnerName": "Benutzerdefinierter Name des Eigentümers", "LabelRSSFeedCustomOwnerName": "Benutzerdefinierter Name des Eigentümers",
"LabelRSSFeedPreventIndexing": "Indizierung verhindern", "LabelRSSFeedPreventIndexing": "Indizierung verhindern",
"LabelRSSFeedSlug": "RSS Feed Schlagwort", "LabelRSSFeedSlug": "RSS Feed Schlagwort",
"LabelRead": "Lesen",
"LabelReadAgain": "Erneut lesen",
"LabelRecentSeries": "Aktuelle Serien",
"LabelRecentlyAdded": "Kürzlich hinzugefügt",
"LabelRemoveFromPlaylist": "Von Wiedergabeliste entfernen",
"LabelScaleElapsedTimeBySpeed": "Vergangene Zeit anhand der Geschwindigkeit skalieren", "LabelScaleElapsedTimeBySpeed": "Vergangene Zeit anhand der Geschwindigkeit skalieren",
"LabelSeason": "Staffel", "LabelSeason": "Staffel",
"LabelSelectADevice": "Wähle ein Gerät", "LabelSelectADevice": "Wähle ein Gerät",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "Minuten", "LabelStatsMinutes": "Minuten",
"LabelStatsMinutesListening": "Gehörte Minuten", "LabelStatsMinutesListening": "Gehörte Minuten",
"LabelStatsWeekListening": "Gehörte Wochen", "LabelStatsWeekListening": "Gehörte Wochen",
"LabelStreamingUsingCellular": "Über mobile Daten streamen",
"LabelTag": "Schlagwort", "LabelTag": "Schlagwort",
"LabelTags": "Schlagwörter", "LabelTags": "Schlagwörter",
"LabelTheme": "Theme", "LabelTheme": "Theme",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Soll die lokale Episode \"{0}\" von deinem Gerät entfernt werden? Die Datei auf dem Server bleibt davon unberührt.", "MessageConfirmDeleteLocalEpisode": "Soll die lokale Episode \"{0}\" von deinem Gerät entfernt werden? Die Datei auf dem Server bleibt davon unberührt.",
"MessageConfirmDeleteLocalFiles": "Sollen lokale Dateien dieses Elements von deinem Gerät entfernt werden? Die Dateien auf dem Server und Ihr Fortschritt bleiben davon unberührt.", "MessageConfirmDeleteLocalFiles": "Sollen lokale Dateien dieses Elements von deinem Gerät entfernt werden? Die Dateien auf dem Server und Ihr Fortschritt bleiben davon unberührt.",
"MessageConfirmDiscardProgress": "Bist du sicher, dass du deinen Fortschritt zurücksetzen willst?", "MessageConfirmDiscardProgress": "Bist du sicher, dass du deinen Fortschritt zurücksetzen willst?",
"MessageConfirmDownloadUsingCellular": "Sie sind dabei, über mobile Daten herunterzuladen. Dies kann zu Gebühren Ihres Mobilfunkanbieters führen. Möchten Sie fortfahren?",
"MessageConfirmMarkAsFinished": "Bist du sicher, dass du diesen Artikel als beendet markieren willst?", "MessageConfirmMarkAsFinished": "Bist du sicher, dass du diesen Artikel als beendet markieren willst?",
"MessageConfirmRemoveBookmark": "Bist du sicher, dass du das Lesezeichen entfernen willst?", "MessageConfirmRemoveBookmark": "Bist du sicher, dass du das Lesezeichen entfernen willst?",
"MessageConfirmStreamingUsingCellular": "Sie sind dabei, über mobile Daten zu streamen. Dies kann zu Gebühren Ihres Mobilfunkanbieters führen. Möchten Sie fortfahren?",
"MessageDiscardProgress": "Fortschritt verwerfen", "MessageDiscardProgress": "Fortschritt verwerfen",
"MessageDownloadCompleteProcessing": "Download abgeschlossen. Verarbeite...", "MessageDownloadCompleteProcessing": "Download abgeschlossen. Verarbeite...",
"MessageDownloading": "Herunterladen...", "MessageDownloading": "Herunterladen...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Lesezeichen konnte nicht erstellt werden", "ToastBookmarkCreateFailed": "Lesezeichen konnte nicht erstellt werden",
"ToastBookmarkRemoveFailed": "Lesezeichen konnte nicht gelöscht werden", "ToastBookmarkRemoveFailed": "Lesezeichen konnte nicht gelöscht werden",
"ToastBookmarkUpdateFailed": "Lesezeichenaktualisierung fehlgeschlagen", "ToastBookmarkUpdateFailed": "Lesezeichenaktualisierung fehlgeschlagen",
"ToastDownloadNotAllowedOnCellular": "Das Herunterladen über mobile Daten ist nicht erlaubt",
"ToastItemMarkedAsFinishedFailed": "Fehler bei der Markierung des Mediums als \"Beendet\"", "ToastItemMarkedAsFinishedFailed": "Fehler bei der Markierung des Mediums als \"Beendet\"",
"ToastItemMarkedAsNotFinishedFailed": "Fehler bei der Markierung des Mediums als \"Nicht Beendet\"", "ToastItemMarkedAsNotFinishedFailed": "Fehler bei der Markierung des Mediums als \"Nicht Beendet\"",
"ToastPlaylistCreateFailed": "Erstellen der Wiedergabeliste fehlgeschlagen", "ToastPlaylistCreateFailed": "Erstellen der Wiedergabeliste fehlgeschlagen",
"ToastPodcastCreateFailed": "Podcast konnte nicht erstellt werden", "ToastPodcastCreateFailed": "Podcast konnte nicht erstellt werden",
"ToastPodcastCreateSuccess": "Podcast erstellt", "ToastPodcastCreateSuccess": "Podcast erstellt",
"ToastRSSFeedCloseFailed": "RSS-Feed konnte nicht geschlossen werden", "ToastRSSFeedCloseFailed": "RSS-Feed konnte nicht geschlossen werden",
"ToastRSSFeedCloseSuccess": "RSS-Feed geschlossen" "ToastRSSFeedCloseSuccess": "RSS-Feed geschlossen",
"ToastStreamingNotAllowedOnCellular": "Das Streamen über mobile Daten ist nicht erlaubt"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Collection", "HeaderCollection": "Collection",
"HeaderCollectionItems": "Collection Items", "HeaderCollectionItems": "Collection Items",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Details", "HeaderDetails": "Details",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook Files", "HeaderEbookFiles": "Ebook Files",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Table of Contents", "HeaderTableOfContents": "Table of Contents",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Your Stats", "HeaderYourStats": "Your Stats",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAdded": "Added", "LabelAdded": "Added",
"LabelAddedAt": "Added At", "LabelAddedAt": "Added At",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAll": "All", "LabelAll": "All",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Author", "LabelAuthor": "Author",
"LabelAuthorFirstLast": "Author (First Last)", "LabelAuthorFirstLast": "Author (First Last)",
"LabelAuthorLastFirst": "Author (Last, First)", "LabelAuthorLastFirst": "Author (Last, First)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Books", "LabelBooks": "Books",
"LabelChapters": "Chapters",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Chapters",
"LabelClosePlayer": "Close player", "LabelClosePlayer": "Close player",
"LabelCollapseSeries": "Collapse Series", "LabelCollapseSeries": "Collapse Series",
"LabelComplete": "Complete", "LabelComplete": "Complete",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Duration", "LabelDuration": "Duration",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -147,8 +151,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incomplete",
"LabelInProgress": "In Progress", "LabelInProgress": "In Progress",
"LabelIncomplete": "Incomplete",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -171,6 +175,7 @@
"LabelName": "Name", "LabelName": "Name",
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Narrators", "LabelNarrators": "Narrators",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -189,15 +194,15 @@
"LabelProgress": "Progress", "LabelProgress": "Progress",
"LabelPubDate": "Pub Date", "LabelPubDate": "Pub Date",
"LabelPublishYear": "Publish Year", "LabelPublishYear": "Publish Year",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Custom owner Email", "LabelRSSFeedCustomOwnerEmail": "Custom owner Email",
"LabelRSSFeedCustomOwnerName": "Custom owner Name", "LabelRSSFeedCustomOwnerName": "Custom owner Name",
"LabelRSSFeedPreventIndexing": "Prevent Indexing", "LabelRSSFeedPreventIndexing": "Prevent Indexing",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Season", "LabelSeason": "Season",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -220,6 +225,7 @@
"LabelStatsMinutes": "minutes", "LabelStatsMinutes": "minutes",
"LabelStatsMinutesListening": "Minutes Listening", "LabelStatsMinutesListening": "Minutes Listening",
"LabelStatsWeekListening": "Week Listening", "LabelStatsWeekListening": "Week Listening",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Theme", "LabelTheme": "Theme",
@@ -246,8 +252,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -287,11 +295,13 @@
"ToastBookmarkCreateFailed": "Failed to create bookmark", "ToastBookmarkCreateFailed": "Failed to create bookmark",
"ToastBookmarkRemoveFailed": "Failed to remove bookmark", "ToastBookmarkRemoveFailed": "Failed to remove bookmark",
"ToastBookmarkUpdateFailed": "Failed to update bookmark", "ToastBookmarkUpdateFailed": "Failed to update bookmark",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished", "ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished",
"ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished", "ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished",
"ToastPlaylistCreateFailed": "Failed to create playlist", "ToastPlaylistCreateFailed": "Failed to create playlist",
"ToastPodcastCreateFailed": "Failed to create podcast", "ToastPodcastCreateFailed": "Failed to create podcast",
"ToastPodcastCreateSuccess": "Podcast created successfully", "ToastPodcastCreateSuccess": "Podcast created successfully",
"ToastRSSFeedCloseFailed": "Failed to close RSS feed", "ToastRSSFeedCloseFailed": "Failed to close RSS feed",
"ToastRSSFeedCloseSuccess": "RSS feed closed" "ToastRSSFeedCloseSuccess": "RSS feed closed",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Colección", "HeaderCollection": "Colección",
"HeaderCollectionItems": "Elementos en la Colección", "HeaderCollectionItems": "Elementos en la Colección",
"HeaderConnectionStatus": "Estado de la Conexión", "HeaderConnectionStatus": "Estado de la Conexión",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detalles", "HeaderDetails": "Detalles",
"HeaderDownloads": "Descargas", "HeaderDownloads": "Descargas",
"HeaderEbookFiles": "Archivos de Ebook", "HeaderEbookFiles": "Archivos de Ebook",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Tabla de Contenidos", "HeaderTableOfContents": "Tabla de Contenidos",
"HeaderUserInterfaceSettings": "Ajustes de la Interfaz de Usuario", "HeaderUserInterfaceSettings": "Ajustes de la Interfaz de Usuario",
"HeaderYourStats": "Tus Estadísticas", "HeaderYourStats": "Tus Estadísticas",
"LabelAddToPlaylist": "Añadido a la Lista de Reproducción",
"LabelAdded": "Añadido", "LabelAdded": "Añadido",
"LabelAddedAt": "Añadido", "LabelAddedAt": "Añadido",
"LabelAddToPlaylist": "Añadido a la Lista de Reproducción",
"LabelAll": "Todos", "LabelAll": "Todos",
"LabelAllowSeekingOnMediaControls": "Permitir la búsqueda de posición en los controles de notificación de medios", "LabelAllowSeekingOnMediaControls": "Permitir la búsqueda de posición en los controles de notificación de medios",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Autor (Nombre Apellido)", "LabelAuthorFirstLast": "Autor (Nombre Apellido)",
"LabelAuthorLastFirst": "Autor (Apellido, Nombre)", "LabelAuthorLastFirst": "Autor (Apellido, Nombre)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Cuando el temporizador de auto apagado finaliza, reproducir el elemento nuevamente rebobinará automáticamente tu posición.", "LabelAutoSleepTimerAutoRewindHelp": "Cuando el temporizador de auto apagado finaliza, reproducir el elemento nuevamente rebobinará automáticamente tu posición.",
"LabelAutoSleepTimerHelp": "Cuando se reproduce contenido multimedia entre las horas de inicio y finalización especificadas, se activará automáticamente un temporizador de apagado.", "LabelAutoSleepTimerHelp": "Cuando se reproduce contenido multimedia entre las horas de inicio y finalización especificadas, se activará automáticamente un temporizador de apagado.",
"LabelBooks": "Libros", "LabelBooks": "Libros",
"LabelChapters": "Capítulos",
"LabelChapterTrack": "Seguimiento de Capítulo", "LabelChapterTrack": "Seguimiento de Capítulo",
"LabelChapters": "Capítulos",
"LabelClosePlayer": "Cerrar Reproductor", "LabelClosePlayer": "Cerrar Reproductor",
"LabelCollapseSeries": "Colapsar Serie", "LabelCollapseSeries": "Colapsar Serie",
"LabelComplete": "Completo", "LabelComplete": "Completo",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Cuando el temporizador de apagado se reinicia, el dispositivo vibra. Activa esta opción para que no vibre cuando se reinicie el temporizador.", "LabelDisableVibrateOnResetHelp": "Cuando el temporizador de apagado se reinicia, el dispositivo vibra. Activa esta opción para que no vibre cuando se reinicie el temporizador.",
"LabelDiscover": "Descubrir", "LabelDiscover": "Descubrir",
"LabelDownload": "Descargar", "LabelDownload": "Descargar",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Descargado", "LabelDownloaded": "Descargado",
"LabelDuration": "Duración", "LabelDuration": "Duración",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Pesado", "LabelHeavy": "Pesado",
"LabelHigh": "Alto", "LabelHigh": "Alto",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incompleto",
"LabelInProgress": "En Proceso", "LabelInProgress": "En Proceso",
"LabelIncomplete": "Incompleto",
"LabelInternalAppStorage": "Almacenamiento interno de aplicaciones", "LabelInternalAppStorage": "Almacenamiento interno de aplicaciones",
"LabelJumpBackwardsTime": "Saltar atrás en el tiempo", "LabelJumpBackwardsTime": "Saltar atrás en el tiempo",
"LabelJumpForwardsTime": "Salto adelante en el tiempo", "LabelJumpForwardsTime": "Salto adelante en el tiempo",
@@ -170,6 +174,7 @@
"LabelName": "Nombre", "LabelName": "Nombre",
"LabelNarrator": "Narrador", "LabelNarrator": "Narrador",
"LabelNarrators": "Narradores", "LabelNarrators": "Narradores",
"LabelNever": "Never",
"LabelNewestAuthors": "Autores más Recientes", "LabelNewestAuthors": "Autores más Recientes",
"LabelNewestEpisodes": "Episodios más Recientes", "LabelNewestEpisodes": "Episodios más Recientes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Progreso", "LabelProgress": "Progreso",
"LabelPubDate": "Fecha de Publicación", "LabelPubDate": "Fecha de Publicación",
"LabelPublishYear": "Año de Publicación", "LabelPublishYear": "Año de Publicación",
"LabelRead": "Leído",
"LabelReadAgain": "Leer de nuevo",
"LabelRecentlyAdded": "Añadido Recientemente",
"LabelRecentSeries": "Series Recientes",
"LabelRemoveFromPlaylist": "Eliminar de la Lista de Reproducción",
"LabelRSSFeedCustomOwnerEmail": "Email de dueño personalizado", "LabelRSSFeedCustomOwnerEmail": "Email de dueño personalizado",
"LabelRSSFeedCustomOwnerName": "Nombre de dueño personalizado", "LabelRSSFeedCustomOwnerName": "Nombre de dueño personalizado",
"LabelRSSFeedPreventIndexing": "Prevenir Indexado", "LabelRSSFeedPreventIndexing": "Prevenir Indexado",
"LabelRSSFeedSlug": "Fuente RSS Slug", "LabelRSSFeedSlug": "Fuente RSS Slug",
"LabelRead": "Leído",
"LabelReadAgain": "Leer de nuevo",
"LabelRecentSeries": "Series Recientes",
"LabelRecentlyAdded": "Añadido Recientemente",
"LabelRemoveFromPlaylist": "Eliminar de la Lista de Reproducción",
"LabelScaleElapsedTimeBySpeed": "Escala el tiempo transcurrido según la velocidad", "LabelScaleElapsedTimeBySpeed": "Escala el tiempo transcurrido según la velocidad",
"LabelSeason": "Temporada", "LabelSeason": "Temporada",
"LabelSelectADevice": "Selecciona un dispositivo", "LabelSelectADevice": "Selecciona un dispositivo",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutos", "LabelStatsMinutes": "minutos",
"LabelStatsMinutesListening": "Minutos Escuchando", "LabelStatsMinutesListening": "Minutos Escuchando",
"LabelStatsWeekListening": "Tiempo escuchando en la Semana", "LabelStatsWeekListening": "Tiempo escuchando en la Semana",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Etiqueta", "LabelTag": "Etiqueta",
"LabelTags": "Etiquetas", "LabelTags": "Etiquetas",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "¿Eliminar episodio local \"{0}\" de su dispositivo? El archivo en el servidor no se verá afectado.", "MessageConfirmDeleteLocalEpisode": "¿Eliminar episodio local \"{0}\" de su dispositivo? El archivo en el servidor no se verá afectado.",
"MessageConfirmDeleteLocalFiles": "¿Eliminar los archivos locales de este elemento de tu dispositivo? Los archivos del servidor y tu progreso no se verán afectados.", "MessageConfirmDeleteLocalFiles": "¿Eliminar los archivos locales de este elemento de tu dispositivo? Los archivos del servidor y tu progreso no se verán afectados.",
"MessageConfirmDiscardProgress": "¿Estás seguro de que quieres reiniciar tu progreso?", "MessageConfirmDiscardProgress": "¿Estás seguro de que quieres reiniciar tu progreso?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "¿Está seguro de que desea marcar este artículo como terminado?", "MessageConfirmMarkAsFinished": "¿Está seguro de que desea marcar este artículo como terminado?",
"MessageConfirmRemoveBookmark": "¿Estás seguro de que quieres eliminar el marcador?", "MessageConfirmRemoveBookmark": "¿Estás seguro de que quieres eliminar el marcador?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Descartar Progreso", "MessageDiscardProgress": "Descartar Progreso",
"MessageDownloadCompleteProcessing": "Descarga Completada. Procesando...", "MessageDownloadCompleteProcessing": "Descarga Completada. Procesando...",
"MessageDownloading": "Descargando...", "MessageDownloading": "Descargando...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Error al crear marcador", "ToastBookmarkCreateFailed": "Error al crear marcador",
"ToastBookmarkRemoveFailed": "Error al eliminar marcador", "ToastBookmarkRemoveFailed": "Error al eliminar marcador",
"ToastBookmarkUpdateFailed": "Error al actualizar el marcador", "ToastBookmarkUpdateFailed": "Error al actualizar el marcador",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Error al marcar como Terminado", "ToastItemMarkedAsFinishedFailed": "Error al marcar como Terminado",
"ToastItemMarkedAsNotFinishedFailed": "Error al marcar como No Terminado", "ToastItemMarkedAsNotFinishedFailed": "Error al marcar como No Terminado",
"ToastPlaylistCreateFailed": "Error al crear la lista de reproducción.", "ToastPlaylistCreateFailed": "Error al crear la lista de reproducción.",
"ToastPodcastCreateFailed": "Error al crear podcast", "ToastPodcastCreateFailed": "Error al crear podcast",
"ToastPodcastCreateSuccess": "Podcast creado", "ToastPodcastCreateSuccess": "Podcast creado",
"ToastRSSFeedCloseFailed": "Error al cerrar fuente RSS", "ToastRSSFeedCloseFailed": "Error al cerrar fuente RSS",
"ToastRSSFeedCloseSuccess": "Fuente RSS cerrada" "ToastRSSFeedCloseSuccess": "Fuente RSS cerrada",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Collection", "HeaderCollection": "Collection",
"HeaderCollectionItems": "Entrées de la Collection", "HeaderCollectionItems": "Entrées de la Collection",
"HeaderConnectionStatus": "Status de Connexion", "HeaderConnectionStatus": "Status de Connexion",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Détails", "HeaderDetails": "Détails",
"HeaderDownloads": "Téléchargements", "HeaderDownloads": "Téléchargements",
"HeaderEbookFiles": "Fichier des livres numériques", "HeaderEbookFiles": "Fichier des livres numériques",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Table des Matières", "HeaderTableOfContents": "Table des Matières",
"HeaderUserInterfaceSettings": "Paramètres de l'Interface", "HeaderUserInterfaceSettings": "Paramètres de l'Interface",
"HeaderYourStats": "Vos Statistiques", "HeaderYourStats": "Vos Statistiques",
"LabelAddToPlaylist": "Ajouter à la Liste de Lecture",
"LabelAdded": "Ajouté", "LabelAdded": "Ajouté",
"LabelAddedAt": "Date dajout", "LabelAddedAt": "Date dajout",
"LabelAddToPlaylist": "Ajouter à la Liste de Lecture",
"LabelAll": "Tout", "LabelAll": "Tout",
"LabelAllowSeekingOnMediaControls": "Autoriser la Recherche de Position depuis la Notification du Lecteur Multimédia", "LabelAllowSeekingOnMediaControls": "Autoriser la Recherche de Position depuis la Notification du Lecteur Multimédia",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Auteur", "LabelAuthor": "Auteur",
"LabelAuthorFirstLast": "Auteur (Prénom Nom)", "LabelAuthorFirstLast": "Auteur (Prénom Nom)",
"LabelAuthorLastFirst": "Auteur (Nom, Prénom)", "LabelAuthorLastFirst": "Auteur (Nom, Prénom)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Lorsque le minuteur nocturne de termine, relire l'élément fera un saut en arrière.", "LabelAutoSleepTimerAutoRewindHelp": "Lorsque le minuteur nocturne de termine, relire l'élément fera un saut en arrière.",
"LabelAutoSleepTimerHelp": "Lorsqu'un éléments est lu entre l'heure de début et de fin, un minuteur nocturne se lance automatiquement.", "LabelAutoSleepTimerHelp": "Lorsqu'un éléments est lu entre l'heure de début et de fin, un minuteur nocturne se lance automatiquement.",
"LabelBooks": "Livres", "LabelBooks": "Livres",
"LabelChapters": "Chapitres",
"LabelChapterTrack": "Piste des Chapitres", "LabelChapterTrack": "Piste des Chapitres",
"LabelChapters": "Chapitres",
"LabelClosePlayer": "Fermer le lecteur", "LabelClosePlayer": "Fermer le lecteur",
"LabelCollapseSeries": "Réduire les séries", "LabelCollapseSeries": "Réduire les séries",
"LabelComplete": "Complet", "LabelComplete": "Complet",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Lorsque le minuteur est redémarré, l'appareil vibre. Sélectionner pour désactiver les vibrations..", "LabelDisableVibrateOnResetHelp": "Lorsque le minuteur est redémarré, l'appareil vibre. Sélectionner pour désactiver les vibrations..",
"LabelDiscover": "Découvrir", "LabelDiscover": "Découvrir",
"LabelDownload": "Téléchargement", "LabelDownload": "Téléchargement",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Téléchargé", "LabelDownloaded": "Téléchargé",
"LabelDuration": "Durée", "LabelDuration": "Durée",
"LabelEbook": "Livre numérique", "LabelEbook": "Livre numérique",
@@ -146,8 +150,8 @@
"LabelHeavy": "Puissant", "LabelHeavy": "Puissant",
"LabelHigh": "Importante", "LabelHigh": "Importante",
"LabelHost": "Hôte", "LabelHost": "Hôte",
"LabelIncomplete": "Incomplet",
"LabelInProgress": "En cours", "LabelInProgress": "En cours",
"LabelIncomplete": "Incomplet",
"LabelInternalAppStorage": "Stockage Interne de l'application", "LabelInternalAppStorage": "Stockage Interne de l'application",
"LabelJumpBackwardsTime": "Durée du saut arrière", "LabelJumpBackwardsTime": "Durée du saut arrière",
"LabelJumpForwardsTime": "Durée du saut avant", "LabelJumpForwardsTime": "Durée du saut avant",
@@ -170,6 +174,7 @@
"LabelName": "Nom", "LabelName": "Nom",
"LabelNarrator": "Narrateur", "LabelNarrator": "Narrateur",
"LabelNarrators": "Narrateurs", "LabelNarrators": "Narrateurs",
"LabelNever": "Never",
"LabelNewestAuthors": "Auteurs Recents", "LabelNewestAuthors": "Auteurs Recents",
"LabelNewestEpisodes": "Épisodes Récents", "LabelNewestEpisodes": "Épisodes Récents",
"LabelNo": "Non", "LabelNo": "Non",
@@ -188,15 +193,15 @@
"LabelProgress": "Progression", "LabelProgress": "Progression",
"LabelPubDate": "Date de publication", "LabelPubDate": "Date de publication",
"LabelPublishYear": "Année d’édition", "LabelPublishYear": "Année d’édition",
"LabelRead": "Lire",
"LabelReadAgain": "Re-lire",
"LabelRecentlyAdded": "Ajouts Récents",
"LabelRecentSeries": "Series Recentes",
"LabelRemoveFromPlaylist": "Supprimer de la Liste de Lecture",
"LabelRSSFeedCustomOwnerEmail": "Courriel du propriétaire personnalisé", "LabelRSSFeedCustomOwnerEmail": "Courriel du propriétaire personnalisé",
"LabelRSSFeedCustomOwnerName": "Nom propriétaire personnalisé", "LabelRSSFeedCustomOwnerName": "Nom propriétaire personnalisé",
"LabelRSSFeedPreventIndexing": "Empêcher lindexation", "LabelRSSFeedPreventIndexing": "Empêcher lindexation",
"LabelRSSFeedSlug": "Identificateur dadresse du Flux RSS ", "LabelRSSFeedSlug": "Identificateur dadresse du Flux RSS ",
"LabelRead": "Lire",
"LabelReadAgain": "Re-lire",
"LabelRecentSeries": "Series Recentes",
"LabelRecentlyAdded": "Ajouts Récents",
"LabelRemoveFromPlaylist": "Supprimer de la Liste de Lecture",
"LabelScaleElapsedTimeBySpeed": "Traduire le temps restant en fonction de la vitesse de lecture", "LabelScaleElapsedTimeBySpeed": "Traduire le temps restant en fonction de la vitesse de lecture",
"LabelSeason": "Saison", "LabelSeason": "Saison",
"LabelSelectADevice": "Sélectionner un Appareil", "LabelSelectADevice": "Sélectionner un Appareil",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutes", "LabelStatsMinutes": "minutes",
"LabelStatsMinutesListening": "Minutes d’écoute", "LabelStatsMinutesListening": "Minutes d’écoute",
"LabelStatsWeekListening": "Écoute de la semaine", "LabelStatsWeekListening": "Écoute de la semaine",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Étiquette", "LabelTag": "Étiquette",
"LabelTags": "Étiquettes", "LabelTags": "Étiquettes",
"LabelTheme": "Thème", "LabelTheme": "Thème",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Supprimer l'épisode local \"{0}\" de votre appareil ? Le fichier sur le serveur ne sera pas affecté.", "MessageConfirmDeleteLocalEpisode": "Supprimer l'épisode local \"{0}\" de votre appareil ? Le fichier sur le serveur ne sera pas affecté.",
"MessageConfirmDeleteLocalFiles": "Supprimer les fichiers locaux de cet élément de votre appareil ? Les fichiers sur le serveur ainsi que votre progression ne serons pas affectés.", "MessageConfirmDeleteLocalFiles": "Supprimer les fichiers locaux de cet élément de votre appareil ? Les fichiers sur le serveur ainsi que votre progression ne serons pas affectés.",
"MessageConfirmDiscardProgress": "Êtes vous sûre de vouloir supprimer votre progression ?", "MessageConfirmDiscardProgress": "Êtes vous sûre de vouloir supprimer votre progression ?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Êtes vous sûre de vouloir marquer cette élement comme terminé ?", "MessageConfirmMarkAsFinished": "Êtes vous sûre de vouloir marquer cette élement comme terminé ?",
"MessageConfirmRemoveBookmark": "Êtes vous sûre de vouloir supprimer le marque-page ?", "MessageConfirmRemoveBookmark": "Êtes vous sûre de vouloir supprimer le marque-page ?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Supprimer la progression", "MessageDiscardProgress": "Supprimer la progression",
"MessageDownloadCompleteProcessing": "Téléchargements terminé. Analyse..", "MessageDownloadCompleteProcessing": "Téléchargements terminé. Analyse..",
"MessageDownloading": "Téléchargement...", "MessageDownloading": "Téléchargement...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Échec de la création de marque-page", "ToastBookmarkCreateFailed": "Échec de la création de marque-page",
"ToastBookmarkRemoveFailed": "Échec de la suppression de marque-page", "ToastBookmarkRemoveFailed": "Échec de la suppression de marque-page",
"ToastBookmarkUpdateFailed": "Échec de la mise à jour de marsue-page", "ToastBookmarkUpdateFailed": "Échec de la mise à jour de marsue-page",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Échec de lannotation terminée", "ToastItemMarkedAsFinishedFailed": "Échec de lannotation terminée",
"ToastItemMarkedAsNotFinishedFailed": "Échec de lannotation non-terminée", "ToastItemMarkedAsNotFinishedFailed": "Échec de lannotation non-terminée",
"ToastPlaylistCreateFailed": "Échec de la création de la liste de lecture", "ToastPlaylistCreateFailed": "Échec de la création de la liste de lecture",
"ToastPodcastCreateFailed": "Échec de la création du Podcast", "ToastPodcastCreateFailed": "Échec de la création du Podcast",
"ToastPodcastCreateSuccess": "Podcast créé", "ToastPodcastCreateSuccess": "Podcast créé",
"ToastRSSFeedCloseFailed": "Échec de la fermeture du flux RSS", "ToastRSSFeedCloseFailed": "Échec de la fermeture du flux RSS",
"ToastRSSFeedCloseSuccess": "Flux RSS fermé" "ToastRSSFeedCloseSuccess": "Flux RSS fermé",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Collection", "HeaderCollection": "Collection",
"HeaderCollectionItems": "Collection Items", "HeaderCollectionItems": "Collection Items",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Details", "HeaderDetails": "Details",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook Files", "HeaderEbookFiles": "Ebook Files",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Table of Contents", "HeaderTableOfContents": "Table of Contents",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Your Stats", "HeaderYourStats": "Your Stats",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAdded": "Added", "LabelAdded": "Added",
"LabelAddedAt": "Added At", "LabelAddedAt": "Added At",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAll": "All", "LabelAll": "All",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Author", "LabelAuthor": "Author",
"LabelAuthorFirstLast": "Author (First Last)", "LabelAuthorFirstLast": "Author (First Last)",
"LabelAuthorLastFirst": "Author (Last, First)", "LabelAuthorLastFirst": "Author (Last, First)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Books", "LabelBooks": "Books",
"LabelChapters": "Chapters",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Chapters",
"LabelClosePlayer": "Close player", "LabelClosePlayer": "Close player",
"LabelCollapseSeries": "Collapse Series", "LabelCollapseSeries": "Collapse Series",
"LabelComplete": "Complete", "LabelComplete": "Complete",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Duration", "LabelDuration": "Duration",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incomplete",
"LabelInProgress": "In Progress", "LabelInProgress": "In Progress",
"LabelIncomplete": "Incomplete",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Name", "LabelName": "Name",
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Narrators", "LabelNarrators": "Narrators",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Progress", "LabelProgress": "Progress",
"LabelPubDate": "Pub Date", "LabelPubDate": "Pub Date",
"LabelPublishYear": "Publish Year", "LabelPublishYear": "Publish Year",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Custom owner Email", "LabelRSSFeedCustomOwnerEmail": "Custom owner Email",
"LabelRSSFeedCustomOwnerName": "Custom owner Name", "LabelRSSFeedCustomOwnerName": "Custom owner Name",
"LabelRSSFeedPreventIndexing": "Prevent Indexing", "LabelRSSFeedPreventIndexing": "Prevent Indexing",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Season", "LabelSeason": "Season",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutes", "LabelStatsMinutes": "minutes",
"LabelStatsMinutesListening": "Minutes Listening", "LabelStatsMinutesListening": "Minutes Listening",
"LabelStatsWeekListening": "Week Listening", "LabelStatsWeekListening": "Week Listening",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Theme", "LabelTheme": "Theme",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Failed to create bookmark", "ToastBookmarkCreateFailed": "Failed to create bookmark",
"ToastBookmarkRemoveFailed": "Failed to remove bookmark", "ToastBookmarkRemoveFailed": "Failed to remove bookmark",
"ToastBookmarkUpdateFailed": "Failed to update bookmark", "ToastBookmarkUpdateFailed": "Failed to update bookmark",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished", "ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished",
"ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished", "ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished",
"ToastPlaylistCreateFailed": "Failed to create playlist", "ToastPlaylistCreateFailed": "Failed to create playlist",
"ToastPodcastCreateFailed": "Failed to create podcast", "ToastPodcastCreateFailed": "Failed to create podcast",
"ToastPodcastCreateSuccess": "Podcast created successfully", "ToastPodcastCreateSuccess": "Podcast created successfully",
"ToastRSSFeedCloseFailed": "Failed to close RSS feed", "ToastRSSFeedCloseFailed": "Failed to close RSS feed",
"ToastRSSFeedCloseSuccess": "RSS feed closed" "ToastRSSFeedCloseSuccess": "RSS feed closed",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Collection", "HeaderCollection": "Collection",
"HeaderCollectionItems": "Collection Items", "HeaderCollectionItems": "Collection Items",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Details", "HeaderDetails": "Details",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook Files", "HeaderEbookFiles": "Ebook Files",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Table of Contents", "HeaderTableOfContents": "Table of Contents",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Your Stats", "HeaderYourStats": "Your Stats",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAdded": "Added", "LabelAdded": "Added",
"LabelAddedAt": "Added At", "LabelAddedAt": "Added At",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAll": "All", "LabelAll": "All",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Author", "LabelAuthor": "Author",
"LabelAuthorFirstLast": "Author (First Last)", "LabelAuthorFirstLast": "Author (First Last)",
"LabelAuthorLastFirst": "Author (Last, First)", "LabelAuthorLastFirst": "Author (Last, First)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Books", "LabelBooks": "Books",
"LabelChapters": "Chapters",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Chapters",
"LabelClosePlayer": "Close player", "LabelClosePlayer": "Close player",
"LabelCollapseSeries": "Collapse Series", "LabelCollapseSeries": "Collapse Series",
"LabelComplete": "Complete", "LabelComplete": "Complete",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Duration", "LabelDuration": "Duration",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incomplete",
"LabelInProgress": "In Progress", "LabelInProgress": "In Progress",
"LabelIncomplete": "Incomplete",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Name", "LabelName": "Name",
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Narrators", "LabelNarrators": "Narrators",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Progress", "LabelProgress": "Progress",
"LabelPubDate": "Pub Date", "LabelPubDate": "Pub Date",
"LabelPublishYear": "Publish Year", "LabelPublishYear": "Publish Year",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Custom owner Email", "LabelRSSFeedCustomOwnerEmail": "Custom owner Email",
"LabelRSSFeedCustomOwnerName": "Custom owner Name", "LabelRSSFeedCustomOwnerName": "Custom owner Name",
"LabelRSSFeedPreventIndexing": "Prevent Indexing", "LabelRSSFeedPreventIndexing": "Prevent Indexing",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Season", "LabelSeason": "Season",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutes", "LabelStatsMinutes": "minutes",
"LabelStatsMinutesListening": "Minutes Listening", "LabelStatsMinutesListening": "Minutes Listening",
"LabelStatsWeekListening": "Week Listening", "LabelStatsWeekListening": "Week Listening",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Theme", "LabelTheme": "Theme",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Failed to create bookmark", "ToastBookmarkCreateFailed": "Failed to create bookmark",
"ToastBookmarkRemoveFailed": "Failed to remove bookmark", "ToastBookmarkRemoveFailed": "Failed to remove bookmark",
"ToastBookmarkUpdateFailed": "Failed to update bookmark", "ToastBookmarkUpdateFailed": "Failed to update bookmark",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished", "ToastItemMarkedAsFinishedFailed": "Failed to mark as Finished",
"ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished", "ToastItemMarkedAsNotFinishedFailed": "Failed to mark as Not Finished",
"ToastPlaylistCreateFailed": "Failed to create playlist", "ToastPlaylistCreateFailed": "Failed to create playlist",
"ToastPodcastCreateFailed": "Failed to create podcast", "ToastPodcastCreateFailed": "Failed to create podcast",
"ToastPodcastCreateSuccess": "Podcast created successfully", "ToastPodcastCreateSuccess": "Podcast created successfully",
"ToastRSSFeedCloseFailed": "Failed to close RSS feed", "ToastRSSFeedCloseFailed": "Failed to close RSS feed",
"ToastRSSFeedCloseSuccess": "RSS feed closed" "ToastRSSFeedCloseSuccess": "RSS feed closed",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Kolekcija", "HeaderCollection": "Kolekcija",
"HeaderCollectionItems": "Stvari u kolekciji", "HeaderCollectionItems": "Stvari u kolekciji",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detalji", "HeaderDetails": "Detalji",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook Files", "HeaderEbookFiles": "Ebook Files",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Table of Contents", "HeaderTableOfContents": "Table of Contents",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Tvoja statistika", "HeaderYourStats": "Tvoja statistika",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAdded": "Added", "LabelAdded": "Added",
"LabelAddedAt": "Added At", "LabelAddedAt": "Added At",
"LabelAddToPlaylist": "Add to Playlist",
"LabelAll": "All", "LabelAll": "All",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Author (First Last)", "LabelAuthorFirstLast": "Author (First Last)",
"LabelAuthorLastFirst": "Author (Last, First)", "LabelAuthorLastFirst": "Author (Last, First)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Knjige", "LabelBooks": "Knjige",
"LabelChapters": "Chapters",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Chapters",
"LabelClosePlayer": "Close player", "LabelClosePlayer": "Close player",
"LabelCollapseSeries": "Collapse Series", "LabelCollapseSeries": "Collapse Series",
"LabelComplete": "Complete", "LabelComplete": "Complete",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Preuzmi", "LabelDownload": "Preuzmi",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Trajanje", "LabelDuration": "Trajanje",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Nepotpuno",
"LabelInProgress": "U tijeku", "LabelInProgress": "U tijeku",
"LabelIncomplete": "Nepotpuno",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Ime", "LabelName": "Ime",
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Naratori", "LabelNarrators": "Naratori",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Napredak", "LabelProgress": "Napredak",
"LabelPubDate": "Datam izdavanja", "LabelPubDate": "Datam izdavanja",
"LabelPublishYear": "Godina izdavanja", "LabelPublishYear": "Godina izdavanja",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Custom owner Email", "LabelRSSFeedCustomOwnerEmail": "Custom owner Email",
"LabelRSSFeedCustomOwnerName": "Custom owner Name", "LabelRSSFeedCustomOwnerName": "Custom owner Name",
"LabelRSSFeedPreventIndexing": "Prevent Indexing", "LabelRSSFeedPreventIndexing": "Prevent Indexing",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Read",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Sezona", "LabelSeason": "Sezona",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minute", "LabelStatsMinutes": "minute",
"LabelStatsMinutesListening": "Minuta odslušano", "LabelStatsMinutesListening": "Minuta odslušano",
"LabelStatsWeekListening": "Tjedno slušanje", "LabelStatsWeekListening": "Tjedno slušanje",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Theme", "LabelTheme": "Theme",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Kreiranje knjižne bilješke neuspješno", "ToastBookmarkCreateFailed": "Kreiranje knjižne bilješke neuspješno",
"ToastBookmarkRemoveFailed": "Brisanje knjižne bilješke nauspješno", "ToastBookmarkRemoveFailed": "Brisanje knjižne bilješke nauspješno",
"ToastBookmarkUpdateFailed": "Aktualizacija knjižne bilješke neuspješna", "ToastBookmarkUpdateFailed": "Aktualizacija knjižne bilješke neuspješna",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Označi kao Završeno neuspješno", "ToastItemMarkedAsFinishedFailed": "Označi kao Završeno neuspješno",
"ToastItemMarkedAsNotFinishedFailed": "Označi kao Nezavršeno neuspješno", "ToastItemMarkedAsNotFinishedFailed": "Označi kao Nezavršeno neuspješno",
"ToastPlaylistCreateFailed": "Failed to create playlist", "ToastPlaylistCreateFailed": "Failed to create playlist",
"ToastPodcastCreateFailed": "Neuspješno kreiranje podcasta", "ToastPodcastCreateFailed": "Neuspješno kreiranje podcasta",
"ToastPodcastCreateSuccess": "Podcast uspješno kreiran", "ToastPodcastCreateSuccess": "Podcast uspješno kreiran",
"ToastRSSFeedCloseFailed": "Neuspješno zatvaranje RSS Feeda", "ToastRSSFeedCloseFailed": "Neuspješno zatvaranje RSS Feeda",
"ToastRSSFeedCloseSuccess": "RSS Feed zatvoren" "ToastRSSFeedCloseSuccess": "RSS Feed zatvoren",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Gyűjtemény", "HeaderCollection": "Gyűjtemény",
"HeaderCollectionItems": "Gyűjtemény elemek", "HeaderCollectionItems": "Gyűjtemény elemek",
"HeaderConnectionStatus": "Kapcsolat állapota", "HeaderConnectionStatus": "Kapcsolat állapota",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Részletek", "HeaderDetails": "Részletek",
"HeaderDownloads": "Letöltések", "HeaderDownloads": "Letöltések",
"HeaderEbookFiles": "E-könyv fájlok", "HeaderEbookFiles": "E-könyv fájlok",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Tartalomjegyzék", "HeaderTableOfContents": "Tartalomjegyzék",
"HeaderUserInterfaceSettings": "Felhasználói felület beállításai", "HeaderUserInterfaceSettings": "Felhasználói felület beállításai",
"HeaderYourStats": "Saját statisztikák", "HeaderYourStats": "Saját statisztikák",
"LabelAddToPlaylist": "Hozzáadás a lejátszási listához",
"LabelAdded": "Hozzáadva", "LabelAdded": "Hozzáadva",
"LabelAddedAt": "Hozzáadva ekkor", "LabelAddedAt": "Hozzáadva ekkor",
"LabelAddToPlaylist": "Hozzáadás a lejátszási listához",
"LabelAll": "Összes", "LabelAll": "Összes",
"LabelAllowSeekingOnMediaControls": "Pozíció keresés engedélyezése a média értesítési vezérlőkön", "LabelAllowSeekingOnMediaControls": "Pozíció keresés engedélyezése a média értesítési vezérlőkön",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Szerző", "LabelAuthor": "Szerző",
"LabelAuthorFirstLast": "Szerző (Keresztnév Vezetéknév)", "LabelAuthorFirstLast": "Szerző (Keresztnév Vezetéknév)",
"LabelAuthorLastFirst": "Szerző (Vezetéknév, Keresztnév)", "LabelAuthorLastFirst": "Szerző (Vezetéknév, Keresztnév)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Amikor az automatikus alvásidőzítő befejeződik, az elem újrajátszásakor automatikusan visszatekeri a pozíciót.", "LabelAutoSleepTimerAutoRewindHelp": "Amikor az automatikus alvásidőzítő befejeződik, az elem újrajátszásakor automatikusan visszatekeri a pozíciót.",
"LabelAutoSleepTimerHelp": "Amikor a megadott kezdési és befejezési idők között média lejátszása történik, egy alvásidőzítő automatikusan elindul.", "LabelAutoSleepTimerHelp": "Amikor a megadott kezdési és befejezési idők között média lejátszása történik, egy alvásidőzítő automatikusan elindul.",
"LabelBooks": "Könyv", "LabelBooks": "Könyv",
"LabelChapters": "Fejezetek",
"LabelChapterTrack": "Fejezet sáv", "LabelChapterTrack": "Fejezet sáv",
"LabelChapters": "Fejezetek",
"LabelClosePlayer": "Lejátszó bezárása", "LabelClosePlayer": "Lejátszó bezárása",
"LabelCollapseSeries": "Sorozatok összecsukása", "LabelCollapseSeries": "Sorozatok összecsukása",
"LabelComplete": "Kész", "LabelComplete": "Kész",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Amikor az alvásidőzítő visszaállításra kerül, az eszköz rezegni fog. Engedélyezze ezt a beállítást, hogy ne rezegjen az alvásidőzítő visszaállításakor.", "LabelDisableVibrateOnResetHelp": "Amikor az alvásidőzítő visszaállításra kerül, az eszköz rezegni fog. Engedélyezze ezt a beállítást, hogy ne rezegjen az alvásidőzítő visszaállításakor.",
"LabelDiscover": "Felfedezés", "LabelDiscover": "Felfedezés",
"LabelDownload": "Letöltés", "LabelDownload": "Letöltés",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Letöltve", "LabelDownloaded": "Letöltve",
"LabelDuration": "Időtartam", "LabelDuration": "Időtartam",
"LabelEbook": "E-könyv", "LabelEbook": "E-könyv",
@@ -146,8 +150,8 @@
"LabelHeavy": "Nehéz", "LabelHeavy": "Nehéz",
"LabelHigh": "Magas", "LabelHigh": "Magas",
"LabelHost": "Házigazda", "LabelHost": "Házigazda",
"LabelIncomplete": "Befejezetlen",
"LabelInProgress": "Folyamatban", "LabelInProgress": "Folyamatban",
"LabelIncomplete": "Befejezetlen",
"LabelInternalAppStorage": "Belső alkalmazástároló", "LabelInternalAppStorage": "Belső alkalmazástároló",
"LabelJumpBackwardsTime": "Visszaugrás ideje", "LabelJumpBackwardsTime": "Visszaugrás ideje",
"LabelJumpForwardsTime": "Előreugrás ideje", "LabelJumpForwardsTime": "Előreugrás ideje",
@@ -170,6 +174,7 @@
"LabelName": "Név", "LabelName": "Név",
"LabelNarrator": "Előadó", "LabelNarrator": "Előadó",
"LabelNarrators": "Előadók", "LabelNarrators": "Előadók",
"LabelNever": "Never",
"LabelNewestAuthors": "Legújabb szerzők", "LabelNewestAuthors": "Legújabb szerzők",
"LabelNewestEpisodes": "Legújabb epizódok", "LabelNewestEpisodes": "Legújabb epizódok",
"LabelNo": "Nem", "LabelNo": "Nem",
@@ -188,15 +193,15 @@
"LabelProgress": "Haladás", "LabelProgress": "Haladás",
"LabelPubDate": "Közzététel dátuma", "LabelPubDate": "Közzététel dátuma",
"LabelPublishYear": "Kiadás éve", "LabelPublishYear": "Kiadás éve",
"LabelRead": "Olvasás",
"LabelReadAgain": "Újraolvasás",
"LabelRecentlyAdded": "Legutóbb hozzáadva",
"LabelRecentSeries": "Legutóbbi sorozatok",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Egyéni tulajdonos e-mail", "LabelRSSFeedCustomOwnerEmail": "Egyéni tulajdonos e-mail",
"LabelRSSFeedCustomOwnerName": "Egyéni tulajdonos neve", "LabelRSSFeedCustomOwnerName": "Egyéni tulajdonos neve",
"LabelRSSFeedPreventIndexing": "Indexelés megakadályozása", "LabelRSSFeedPreventIndexing": "Indexelés megakadályozása",
"LabelRSSFeedSlug": "RSS hírcsatorna rövid cím", "LabelRSSFeedSlug": "RSS hírcsatorna rövid cím",
"LabelRead": "Olvasás",
"LabelReadAgain": "Újraolvasás",
"LabelRecentSeries": "Legutóbbi sorozatok",
"LabelRecentlyAdded": "Legutóbb hozzáadva",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Eltelt idő skálázása sebesség szerint", "LabelScaleElapsedTimeBySpeed": "Eltelt idő skálázása sebesség szerint",
"LabelSeason": "Évad", "LabelSeason": "Évad",
"LabelSelectADevice": "Eszköz kiválasztása", "LabelSelectADevice": "Eszköz kiválasztása",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "perc", "LabelStatsMinutes": "perc",
"LabelStatsMinutesListening": "Hallgatás percekben", "LabelStatsMinutesListening": "Hallgatás percekben",
"LabelStatsWeekListening": "Heti hallgatás", "LabelStatsWeekListening": "Heti hallgatás",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Címke", "LabelTag": "Címke",
"LabelTags": "Címkék", "LabelTags": "Címkék",
"LabelTheme": "Téma", "LabelTheme": "Téma",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "\"{0}\" helyi epizód eltávolítása az eszközről? A szerveren lévő fájl nem érintett.", "MessageConfirmDeleteLocalEpisode": "\"{0}\" helyi epizód eltávolítása az eszközről? A szerveren lévő fájl nem érintett.",
"MessageConfirmDeleteLocalFiles": "Ezen elem helyi fájljainak eltávolítása az eszközről? A szerveren lévő fájlok és a haladás nem érintettek.", "MessageConfirmDeleteLocalFiles": "Ezen elem helyi fájljainak eltávolítása az eszközről? A szerveren lévő fájlok és a haladás nem érintettek.",
"MessageConfirmDiscardProgress": "Biztosan alaphelyzetbe akarja állítani a haladást?", "MessageConfirmDiscardProgress": "Biztosan alaphelyzetbe akarja állítani a haladást?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Biztosan befejezettnek jelöli ezt az elemet?", "MessageConfirmMarkAsFinished": "Biztosan befejezettnek jelöli ezt az elemet?",
"MessageConfirmRemoveBookmark": "Biztosan eltávolítja a könyvjelzőt?", "MessageConfirmRemoveBookmark": "Biztosan eltávolítja a könyvjelzőt?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Haladás elvetése", "MessageDiscardProgress": "Haladás elvetése",
"MessageDownloadCompleteProcessing": "Letöltés kész. Feldolgozás...", "MessageDownloadCompleteProcessing": "Letöltés kész. Feldolgozás...",
"MessageDownloading": "Letöltés...", "MessageDownloading": "Letöltés...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "A könyvjelző létrehozása sikertelen", "ToastBookmarkCreateFailed": "A könyvjelző létrehozása sikertelen",
"ToastBookmarkRemoveFailed": "A könyvjelző eltávolítása sikertelen", "ToastBookmarkRemoveFailed": "A könyvjelző eltávolítása sikertelen",
"ToastBookmarkUpdateFailed": "A könyvjelző frissítése sikertelen", "ToastBookmarkUpdateFailed": "A könyvjelző frissítése sikertelen",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Az elem befejezettnek jelölése sikertelen", "ToastItemMarkedAsFinishedFailed": "Az elem befejezettnek jelölése sikertelen",
"ToastItemMarkedAsNotFinishedFailed": "Az elem befejezetlennek jelölése sikertelen", "ToastItemMarkedAsNotFinishedFailed": "Az elem befejezetlennek jelölése sikertelen",
"ToastPlaylistCreateFailed": "A lejátszási lista létrehozása sikertelen", "ToastPlaylistCreateFailed": "A lejátszási lista létrehozása sikertelen",
"ToastPodcastCreateFailed": "A podcast létrehozása sikertelen", "ToastPodcastCreateFailed": "A podcast létrehozása sikertelen",
"ToastPodcastCreateSuccess": "A podcast sikeresen létrehozva", "ToastPodcastCreateSuccess": "A podcast sikeresen létrehozva",
"ToastRSSFeedCloseFailed": "Az RSS hírcsatorna bezárása sikertelen", "ToastRSSFeedCloseFailed": "Az RSS hírcsatorna bezárása sikertelen",
"ToastRSSFeedCloseSuccess": "Az RSS hírcsatorna sikeresen bezárva" "ToastRSSFeedCloseSuccess": "Az RSS hírcsatorna sikeresen bezárva",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Raccolta", "HeaderCollection": "Raccolta",
"HeaderCollectionItems": "Elementi della Raccolta", "HeaderCollectionItems": "Elementi della Raccolta",
"HeaderConnectionStatus": "Stato Connessione", "HeaderConnectionStatus": "Stato Connessione",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Dettagli", "HeaderDetails": "Dettagli",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook File", "HeaderEbookFiles": "Ebook File",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Tabella dei Contenuti", "HeaderTableOfContents": "Tabella dei Contenuti",
"HeaderUserInterfaceSettings": "Impostazioni Interfaccia Utente", "HeaderUserInterfaceSettings": "Impostazioni Interfaccia Utente",
"HeaderYourStats": "Statistiche Personali", "HeaderYourStats": "Statistiche Personali",
"LabelAddToPlaylist": "aggiungi alla Playlist",
"LabelAdded": "Aggiunto", "LabelAdded": "Aggiunto",
"LabelAddedAt": "Aggiunto il", "LabelAddedAt": "Aggiunto il",
"LabelAddToPlaylist": "aggiungi alla Playlist",
"LabelAll": "Tutti", "LabelAll": "Tutti",
"LabelAllowSeekingOnMediaControls": "Consenti la ricerca della posizione sui controlli delle notifiche multimediali", "LabelAllowSeekingOnMediaControls": "Consenti la ricerca della posizione sui controlli delle notifiche multimediali",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autore", "LabelAuthor": "Autore",
"LabelAuthorFirstLast": "Autore (Per Nome)", "LabelAuthorFirstLast": "Autore (Per Nome)",
"LabelAuthorLastFirst": "Autori (Per Cognome)", "LabelAuthorLastFirst": "Autori (Per Cognome)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Al termine del timer di spegnimento automatico, la riproduzione dell'elemento riavvolgerà automaticamente la tua posizione.", "LabelAutoSleepTimerAutoRewindHelp": "Al termine del timer di spegnimento automatico, la riproduzione dell'elemento riavvolgerà automaticamente la tua posizione.",
"LabelAutoSleepTimerHelp": "Durante la riproduzione di contenuti multimediali tra l'ora di inizio e quella di fine specificate, verrà avviato automaticamente un timer di spegnimento.", "LabelAutoSleepTimerHelp": "Durante la riproduzione di contenuti multimediali tra l'ora di inizio e quella di fine specificate, verrà avviato automaticamente un timer di spegnimento.",
"LabelBooks": "Libri", "LabelBooks": "Libri",
"LabelChapters": "Capitoli",
"LabelChapterTrack": "Traccia Capitolo", "LabelChapterTrack": "Traccia Capitolo",
"LabelChapters": "Capitoli",
"LabelClosePlayer": "Chiudi player", "LabelClosePlayer": "Chiudi player",
"LabelCollapseSeries": "Comprimi Serie", "LabelCollapseSeries": "Comprimi Serie",
"LabelComplete": "Completo", "LabelComplete": "Completo",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Quando il timer di spegnimento viene reimpostato, il dispositivo vibrerà. Abilita questa impostazione per non vibrare quando il timer di spegnimento viene reimpostato.", "LabelDisableVibrateOnResetHelp": "Quando il timer di spegnimento viene reimpostato, il dispositivo vibrerà. Abilita questa impostazione per non vibrare quando il timer di spegnimento viene reimpostato.",
"LabelDiscover": "Scopri", "LabelDiscover": "Scopri",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Scaricati", "LabelDownloaded": "Scaricati",
"LabelDuration": "Durata", "LabelDuration": "Durata",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Forte", "LabelHeavy": "Forte",
"LabelHigh": "Alto", "LabelHigh": "Alto",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incompleta",
"LabelInProgress": "In Corso", "LabelInProgress": "In Corso",
"LabelIncomplete": "Incompleta",
"LabelInternalAppStorage": "Archiviazione interna delle app", "LabelInternalAppStorage": "Archiviazione interna delle app",
"LabelJumpBackwardsTime": "Vai indietro nel tempo", "LabelJumpBackwardsTime": "Vai indietro nel tempo",
"LabelJumpForwardsTime": "Vai avanti nel tempo", "LabelJumpForwardsTime": "Vai avanti nel tempo",
@@ -170,6 +174,7 @@
"LabelName": "Nome", "LabelName": "Nome",
"LabelNarrator": "Narratore", "LabelNarrator": "Narratore",
"LabelNarrators": "Narratori", "LabelNarrators": "Narratori",
"LabelNever": "Never",
"LabelNewestAuthors": "Nuovi Autori", "LabelNewestAuthors": "Nuovi Autori",
"LabelNewestEpisodes": "Nuovi Episodi", "LabelNewestEpisodes": "Nuovi Episodi",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Cominciati", "LabelProgress": "Cominciati",
"LabelPubDate": "Data Pubblicazione", "LabelPubDate": "Data Pubblicazione",
"LabelPublishYear": "Anno Pubblicazione", "LabelPublishYear": "Anno Pubblicazione",
"LabelRead": "Leggi",
"LabelReadAgain": "Leggi Ancora",
"LabelRecentlyAdded": "Aggiunti Recentemente",
"LabelRecentSeries": "Serie Recenti",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Email del proprietario personalizzato", "LabelRSSFeedCustomOwnerEmail": "Email del proprietario personalizzato",
"LabelRSSFeedCustomOwnerName": "Nome del proprietario personalizzato", "LabelRSSFeedCustomOwnerName": "Nome del proprietario personalizzato",
"LabelRSSFeedPreventIndexing": "Impedisci l'indicizzazione", "LabelRSSFeedPreventIndexing": "Impedisci l'indicizzazione",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Leggi",
"LabelReadAgain": "Leggi Ancora",
"LabelRecentSeries": "Serie Recenti",
"LabelRecentlyAdded": "Aggiunti Recentemente",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scala il tempo trascorso in base alla velocità", "LabelScaleElapsedTimeBySpeed": "Scala il tempo trascorso in base alla velocità",
"LabelSeason": "Stagione", "LabelSeason": "Stagione",
"LabelSelectADevice": "Seletiona dispositivo", "LabelSelectADevice": "Seletiona dispositivo",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "Minuti", "LabelStatsMinutes": "Minuti",
"LabelStatsMinutesListening": "Ascolto in Minuti", "LabelStatsMinutesListening": "Ascolto in Minuti",
"LabelStatsWeekListening": "Ascolto Settimanale", "LabelStatsWeekListening": "Ascolto Settimanale",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Rimuovi episodi locali \"{0}\" dal tuo dispositivo? i file sul server non verranno toccati.", "MessageConfirmDeleteLocalEpisode": "Rimuovi episodi locali \"{0}\" dal tuo dispositivo? i file sul server non verranno toccati.",
"MessageConfirmDeleteLocalFiles": "Remove i file locali dell'oggetto? i file sul server e i progressi non verranno toccati.", "MessageConfirmDeleteLocalFiles": "Remove i file locali dell'oggetto? i file sul server e i progressi non verranno toccati.",
"MessageConfirmDiscardProgress": "Sei sicuro di voler resettare i tuoi progressi?", "MessageConfirmDiscardProgress": "Sei sicuro di voler resettare i tuoi progressi?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Sei sicuro di voler contrassegnare questo elemento come finito?", "MessageConfirmMarkAsFinished": "Sei sicuro di voler contrassegnare questo elemento come finito?",
"MessageConfirmRemoveBookmark": "Sei sicuro di voler rimuovere il segnalibro?", "MessageConfirmRemoveBookmark": "Sei sicuro di voler rimuovere il segnalibro?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Elimina Progressi", "MessageDiscardProgress": "Elimina Progressi",
"MessageDownloadCompleteProcessing": "Download completato. Elaborazione...", "MessageDownloadCompleteProcessing": "Download completato. Elaborazione...",
"MessageDownloading": "Scaricamento...", "MessageDownloading": "Scaricamento...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Creazione segnalibro fallita", "ToastBookmarkCreateFailed": "Creazione segnalibro fallita",
"ToastBookmarkRemoveFailed": "Rimozione Segnalibro fallita", "ToastBookmarkRemoveFailed": "Rimozione Segnalibro fallita",
"ToastBookmarkUpdateFailed": "Aggiornamento Segnalibro fallito", "ToastBookmarkUpdateFailed": "Aggiornamento Segnalibro fallito",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Errore nel segnare il file come finito", "ToastItemMarkedAsFinishedFailed": "Errore nel segnare il file come finito",
"ToastItemMarkedAsNotFinishedFailed": "Errore nel segnare il file come non completo", "ToastItemMarkedAsNotFinishedFailed": "Errore nel segnare il file come non completo",
"ToastPlaylistCreateFailed": "Errore Creazione playlist", "ToastPlaylistCreateFailed": "Errore Creazione playlist",
"ToastPodcastCreateFailed": "Errore Creazione podcast", "ToastPodcastCreateFailed": "Errore Creazione podcast",
"ToastPodcastCreateSuccess": "Podcast creato Correttamente", "ToastPodcastCreateSuccess": "Podcast creato Correttamente",
"ToastRSSFeedCloseFailed": "Errore chiusura RSS feed", "ToastRSSFeedCloseFailed": "Errore chiusura RSS feed",
"ToastRSSFeedCloseSuccess": "RSS feed chiuso" "ToastRSSFeedCloseSuccess": "RSS feed chiuso",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Kolekcija", "HeaderCollection": "Kolekcija",
"HeaderCollectionItems": "Kolekcijos elementai", "HeaderCollectionItems": "Kolekcijos elementai",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detalės", "HeaderDetails": "Detalės",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Eknygos failai", "HeaderEbookFiles": "Eknygos failai",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Turinys", "HeaderTableOfContents": "Turinys",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Jūsų statistika", "HeaderYourStats": "Jūsų statistika",
"LabelAddToPlaylist": "Pridėti į grojaraštį",
"LabelAdded": "Pridėta", "LabelAdded": "Pridėta",
"LabelAddedAt": "Pridėta {0}", "LabelAddedAt": "Pridėta {0}",
"LabelAddToPlaylist": "Pridėti į grojaraštį",
"LabelAll": "Visi", "LabelAll": "Visi",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autorius", "LabelAuthor": "Autorius",
"LabelAuthorFirstLast": "Autorius (Vardas Pavardė)", "LabelAuthorFirstLast": "Autorius (Vardas Pavardė)",
"LabelAuthorLastFirst": "Autorius (Pavardė, Vardas)", "LabelAuthorLastFirst": "Autorius (Pavardė, Vardas)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Knygos", "LabelBooks": "Knygos",
"LabelChapters": "Skyriai",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Skyriai",
"LabelClosePlayer": "Uždaryti grotuvą", "LabelClosePlayer": "Uždaryti grotuvą",
"LabelCollapseSeries": "Suskleisti seriją", "LabelCollapseSeries": "Suskleisti seriją",
"LabelComplete": "Baigta", "LabelComplete": "Baigta",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Atsisiųsti", "LabelDownload": "Atsisiųsti",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Trukmė", "LabelDuration": "Trukmė",
"LabelEbook": "Elektroninė knyga", "LabelEbook": "Elektroninė knyga",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Serveris", "LabelHost": "Serveris",
"LabelIncomplete": "Nebaigta",
"LabelInProgress": "Vyksta", "LabelInProgress": "Vyksta",
"LabelIncomplete": "Nebaigta",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Pavadinimas", "LabelName": "Pavadinimas",
"LabelNarrator": "Skaitytojas", "LabelNarrator": "Skaitytojas",
"LabelNarrators": "Skaitytojai", "LabelNarrators": "Skaitytojai",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Progresas", "LabelProgress": "Progresas",
"LabelPubDate": "Publikavimo data", "LabelPubDate": "Publikavimo data",
"LabelPublishYear": "Leidimo metai", "LabelPublishYear": "Leidimo metai",
"LabelRead": "Skaityta",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Pasirinktinis savininko el. paštas", "LabelRSSFeedCustomOwnerEmail": "Pasirinktinis savininko el. paštas",
"LabelRSSFeedCustomOwnerName": "Pasirinktinis savininko vardas", "LabelRSSFeedCustomOwnerName": "Pasirinktinis savininko vardas",
"LabelRSSFeedPreventIndexing": "Neleisti indeksuoti", "LabelRSSFeedPreventIndexing": "Neleisti indeksuoti",
"LabelRSSFeedSlug": "RSS srauto identifikatorius", "LabelRSSFeedSlug": "RSS srauto identifikatorius",
"LabelRead": "Skaityta",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Sezonas", "LabelSeason": "Sezonas",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutės", "LabelStatsMinutes": "minutės",
"LabelStatsMinutesListening": "Klausyta minučių", "LabelStatsMinutesListening": "Klausyta minučių",
"LabelStatsWeekListening": "Savaitės klausymas", "LabelStatsWeekListening": "Savaitės klausymas",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Žyma", "LabelTag": "Žyma",
"LabelTags": "Žymos", "LabelTags": "Žymos",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Žymos sukurti nepavyko", "ToastBookmarkCreateFailed": "Žymos sukurti nepavyko",
"ToastBookmarkRemoveFailed": "Žymos pašalinti nepavyko", "ToastBookmarkRemoveFailed": "Žymos pašalinti nepavyko",
"ToastBookmarkUpdateFailed": "Žymos atnaujinti nepavyko", "ToastBookmarkUpdateFailed": "Žymos atnaujinti nepavyko",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Pažymėti kaip Baigta nepavyko", "ToastItemMarkedAsFinishedFailed": "Pažymėti kaip Baigta nepavyko",
"ToastItemMarkedAsNotFinishedFailed": "Pažymėti kaip Nebaigta nepavyko", "ToastItemMarkedAsNotFinishedFailed": "Pažymėti kaip Nebaigta nepavyko",
"ToastPlaylistCreateFailed": "Grojaraščio sukurti nepavyko", "ToastPlaylistCreateFailed": "Grojaraščio sukurti nepavyko",
"ToastPodcastCreateFailed": "Tinklalaidės sukurti nepavyko", "ToastPodcastCreateFailed": "Tinklalaidės sukurti nepavyko",
"ToastPodcastCreateSuccess": "Tinklalaidė sėkmingai sukurta", "ToastPodcastCreateSuccess": "Tinklalaidė sėkmingai sukurta",
"ToastRSSFeedCloseFailed": "RSS srauto uždaryti nepavyko", "ToastRSSFeedCloseFailed": "RSS srauto uždaryti nepavyko",
"ToastRSSFeedCloseSuccess": "RSS srautas uždarytas" "ToastRSSFeedCloseSuccess": "RSS srautas uždarytas",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Collectie", "HeaderCollection": "Collectie",
"HeaderCollectionItems": "Collectie-objecten", "HeaderCollectionItems": "Collectie-objecten",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Details", "HeaderDetails": "Details",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook Files", "HeaderEbookFiles": "Ebook Files",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Inhoudsopgave", "HeaderTableOfContents": "Inhoudsopgave",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Je statistieken", "HeaderYourStats": "Je statistieken",
"LabelAddToPlaylist": "Toevoegen aan afspeellijst",
"LabelAdded": "Toegevoegd", "LabelAdded": "Toegevoegd",
"LabelAddedAt": "Toegevoegd op", "LabelAddedAt": "Toegevoegd op",
"LabelAddToPlaylist": "Toevoegen aan afspeellijst",
"LabelAll": "Alle", "LabelAll": "Alle",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Auteur", "LabelAuthor": "Auteur",
"LabelAuthorFirstLast": "Auteur (Voornaam Achternaam)", "LabelAuthorFirstLast": "Auteur (Voornaam Achternaam)",
"LabelAuthorLastFirst": "Auteur (Achternaam, Voornaam)", "LabelAuthorLastFirst": "Auteur (Achternaam, Voornaam)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Boeken", "LabelBooks": "Boeken",
"LabelChapters": "Hoofdstukken",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Hoofdstukken",
"LabelClosePlayer": "Sluit speler", "LabelClosePlayer": "Sluit speler",
"LabelCollapseSeries": "Series inklappen", "LabelCollapseSeries": "Series inklappen",
"LabelComplete": "Compleet", "LabelComplete": "Compleet",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Duur", "LabelDuration": "Duur",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incompleet",
"LabelInProgress": "Bezig", "LabelInProgress": "Bezig",
"LabelIncomplete": "Incompleet",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Naam", "LabelName": "Naam",
"LabelNarrator": "Verteller", "LabelNarrator": "Verteller",
"LabelNarrators": "Vertellers", "LabelNarrators": "Vertellers",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Voortgang", "LabelProgress": "Voortgang",
"LabelPubDate": "Publicatiedatum", "LabelPubDate": "Publicatiedatum",
"LabelPublishYear": "Jaar van uitgave", "LabelPublishYear": "Jaar van uitgave",
"LabelRead": "Lees",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Aangepast e-mailadres eigenaar", "LabelRSSFeedCustomOwnerEmail": "Aangepast e-mailadres eigenaar",
"LabelRSSFeedCustomOwnerName": "Aangepaste naam eigenaar", "LabelRSSFeedCustomOwnerName": "Aangepaste naam eigenaar",
"LabelRSSFeedPreventIndexing": "Voorkom indexering", "LabelRSSFeedPreventIndexing": "Voorkom indexering",
"LabelRSSFeedSlug": "RSS-feed slug", "LabelRSSFeedSlug": "RSS-feed slug",
"LabelRead": "Lees",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Seizoen", "LabelSeason": "Seizoen",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minuten", "LabelStatsMinutes": "minuten",
"LabelStatsMinutesListening": "Minuten luisterend", "LabelStatsMinutesListening": "Minuten luisterend",
"LabelStatsWeekListening": "Week luisterend", "LabelStatsWeekListening": "Week luisterend",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tags", "LabelTags": "Tags",
"LabelTheme": "Thema", "LabelTheme": "Thema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Aanmaken boekwijzer mislukt", "ToastBookmarkCreateFailed": "Aanmaken boekwijzer mislukt",
"ToastBookmarkRemoveFailed": "Verwijderen boekwijzer mislukt", "ToastBookmarkRemoveFailed": "Verwijderen boekwijzer mislukt",
"ToastBookmarkUpdateFailed": "Bijwerken boekwijzer mislukt", "ToastBookmarkUpdateFailed": "Bijwerken boekwijzer mislukt",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Markeren als Voltooid mislukt", "ToastItemMarkedAsFinishedFailed": "Markeren als Voltooid mislukt",
"ToastItemMarkedAsNotFinishedFailed": "Markeren als Niet Voltooid mislukt", "ToastItemMarkedAsNotFinishedFailed": "Markeren als Niet Voltooid mislukt",
"ToastPlaylistCreateFailed": "Aanmaken afspeellijst mislukt", "ToastPlaylistCreateFailed": "Aanmaken afspeellijst mislukt",
"ToastPodcastCreateFailed": "Podcast aanmaken mislukt", "ToastPodcastCreateFailed": "Podcast aanmaken mislukt",
"ToastPodcastCreateSuccess": "Podcast aangemaakt", "ToastPodcastCreateSuccess": "Podcast aangemaakt",
"ToastRSSFeedCloseFailed": "Sluiten RSS-feed mislukt", "ToastRSSFeedCloseFailed": "Sluiten RSS-feed mislukt",
"ToastRSSFeedCloseSuccess": "RSS-feed gesloten" "ToastRSSFeedCloseSuccess": "RSS-feed gesloten",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Samlinger", "HeaderCollection": "Samlinger",
"HeaderCollectionItems": "Samlingsgjenstander", "HeaderCollectionItems": "Samlingsgjenstander",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detaljer", "HeaderDetails": "Detaljer",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Ebook filer", "HeaderEbookFiles": "Ebook filer",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Innholdsfortegnelse", "HeaderTableOfContents": "Innholdsfortegnelse",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Din statistikk", "HeaderYourStats": "Din statistikk",
"LabelAddToPlaylist": "Legg til i spilleliste",
"LabelAdded": "Lagt til", "LabelAdded": "Lagt til",
"LabelAddedAt": "Dato lagt til ", "LabelAddedAt": "Dato lagt til ",
"LabelAddToPlaylist": "Legg til i spilleliste",
"LabelAll": "Alle", "LabelAll": "Alle",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Forfatter", "LabelAuthor": "Forfatter",
"LabelAuthorFirstLast": "Forfatter (Fornavn Etternavn)", "LabelAuthorFirstLast": "Forfatter (Fornavn Etternavn)",
"LabelAuthorLastFirst": "Forfatter (Etternavn Fornavn)", "LabelAuthorLastFirst": "Forfatter (Etternavn Fornavn)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Bøker", "LabelBooks": "Bøker",
"LabelChapters": "Kapitler",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Kapitler",
"LabelClosePlayer": "Lukk spiller", "LabelClosePlayer": "Lukk spiller",
"LabelCollapseSeries": "Minimer serier", "LabelCollapseSeries": "Minimer serier",
"LabelComplete": "Fullfør", "LabelComplete": "Fullfør",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Last ned", "LabelDownload": "Last ned",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Varighet", "LabelDuration": "Varighet",
"LabelEbook": "Ebok", "LabelEbook": "Ebok",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Tjener", "LabelHost": "Tjener",
"LabelIncomplete": "Ufullstendig",
"LabelInProgress": "I gang", "LabelInProgress": "I gang",
"LabelIncomplete": "Ufullstendig",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Navn", "LabelName": "Navn",
"LabelNarrator": "Forteller", "LabelNarrator": "Forteller",
"LabelNarrators": "Fortellere", "LabelNarrators": "Fortellere",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Framgang", "LabelProgress": "Framgang",
"LabelPubDate": "Publiseringsdato", "LabelPubDate": "Publiseringsdato",
"LabelPublishYear": "Publikasjonsår", "LabelPublishYear": "Publikasjonsår",
"LabelRead": "Les",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Tilpasset eier Epost", "LabelRSSFeedCustomOwnerEmail": "Tilpasset eier Epost",
"LabelRSSFeedCustomOwnerName": "Tilpasset eier Navn", "LabelRSSFeedCustomOwnerName": "Tilpasset eier Navn",
"LabelRSSFeedPreventIndexing": "Forhindre indeksering", "LabelRSSFeedPreventIndexing": "Forhindre indeksering",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Les",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Sesong", "LabelSeason": "Sesong",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minuter", "LabelStatsMinutes": "minuter",
"LabelStatsMinutesListening": "Minutter lyttet", "LabelStatsMinutesListening": "Minutter lyttet",
"LabelStatsWeekListening": "Uker lyttet", "LabelStatsWeekListening": "Uker lyttet",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tagger", "LabelTags": "Tagger",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Misslykkes å opprette bokmerke", "ToastBookmarkCreateFailed": "Misslykkes å opprette bokmerke",
"ToastBookmarkRemoveFailed": "Misslykkes å fjerne bokmerke", "ToastBookmarkRemoveFailed": "Misslykkes å fjerne bokmerke",
"ToastBookmarkUpdateFailed": "Misslykkes å oppdatere bokmerke", "ToastBookmarkUpdateFailed": "Misslykkes å oppdatere bokmerke",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Misslykkes å markere som Fullført", "ToastItemMarkedAsFinishedFailed": "Misslykkes å markere som Fullført",
"ToastItemMarkedAsNotFinishedFailed": "Misslykkes å markere som Ikke Fullført", "ToastItemMarkedAsNotFinishedFailed": "Misslykkes å markere som Ikke Fullført",
"ToastPlaylistCreateFailed": "Misslykkes å opprette spilleliste", "ToastPlaylistCreateFailed": "Misslykkes å opprette spilleliste",
"ToastPodcastCreateFailed": "Misslykkes å opprette podcast", "ToastPodcastCreateFailed": "Misslykkes å opprette podcast",
"ToastPodcastCreateSuccess": "Podcast opprettet", "ToastPodcastCreateSuccess": "Podcast opprettet",
"ToastRSSFeedCloseFailed": "Misslykkes å lukke RSS feed", "ToastRSSFeedCloseFailed": "Misslykkes å lukke RSS feed",
"ToastRSSFeedCloseSuccess": "RSS feed lukket" "ToastRSSFeedCloseSuccess": "RSS feed lukket",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Kolekcja", "HeaderCollection": "Kolekcja",
"HeaderCollectionItems": "Elementy kolekcji", "HeaderCollectionItems": "Elementy kolekcji",
"HeaderConnectionStatus": "Status połączenia", "HeaderConnectionStatus": "Status połączenia",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Szczegóły", "HeaderDetails": "Szczegóły",
"HeaderDownloads": "Pobrane", "HeaderDownloads": "Pobrane",
"HeaderEbookFiles": "Pliki ebook", "HeaderEbookFiles": "Pliki ebook",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Spis treści", "HeaderTableOfContents": "Spis treści",
"HeaderUserInterfaceSettings": "Ustawienia inferfejsu użytkownika", "HeaderUserInterfaceSettings": "Ustawienia inferfejsu użytkownika",
"HeaderYourStats": "Twoje statystyki", "HeaderYourStats": "Twoje statystyki",
"LabelAddToPlaylist": "Dodaj do playlisty",
"LabelAdded": "Dodano", "LabelAdded": "Dodano",
"LabelAddedAt": "Dodano w", "LabelAddedAt": "Dodano w",
"LabelAddToPlaylist": "Dodaj do playlisty",
"LabelAll": "Wszystkie", "LabelAll": "Wszystkie",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Autor (Rosnąco)", "LabelAuthorFirstLast": "Autor (Rosnąco)",
"LabelAuthorLastFirst": "Author (Malejąco)", "LabelAuthorLastFirst": "Author (Malejąco)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Po zakończeniu automatycznego wyłącznika czasowego ponowne odtworzenie elementu spowoduje automatyczne przewinięcie pozycji do tyłu.", "LabelAutoSleepTimerAutoRewindHelp": "Po zakończeniu automatycznego wyłącznika czasowego ponowne odtworzenie elementu spowoduje automatyczne przewinięcie pozycji do tyłu.",
"LabelAutoSleepTimerHelp": "Podczas odtwarzania multimediów między określonym czasem rozpoczęcia i zakończenia automatycznie uruchomi się wyłącznik czasowy.", "LabelAutoSleepTimerHelp": "Podczas odtwarzania multimediów między określonym czasem rozpoczęcia i zakończenia automatycznie uruchomi się wyłącznik czasowy.",
"LabelBooks": "Książki", "LabelBooks": "Książki",
"LabelChapters": "Rozdziały",
"LabelChapterTrack": "Postęp rozdziału", "LabelChapterTrack": "Postęp rozdziału",
"LabelChapters": "Rozdziały",
"LabelClosePlayer": "Zamknij odtwarzacz", "LabelClosePlayer": "Zamknij odtwarzacz",
"LabelCollapseSeries": "Podsumuj serię", "LabelCollapseSeries": "Podsumuj serię",
"LabelComplete": "Ukończone", "LabelComplete": "Ukończone",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Gdy wyłącznik czasowy zostanie zresetowany, urządzenie zacznie wibrować. Włącz to ustawienie, aby nie wibrować po zresetowaniu wyłącznika czasowego.", "LabelDisableVibrateOnResetHelp": "Gdy wyłącznik czasowy zostanie zresetowany, urządzenie zacznie wibrować. Włącz to ustawienie, aby nie wibrować po zresetowaniu wyłącznika czasowego.",
"LabelDiscover": "Odkrywaj", "LabelDiscover": "Odkrywaj",
"LabelDownload": "Pobierz", "LabelDownload": "Pobierz",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Pobrane", "LabelDownloaded": "Pobrane",
"LabelDuration": "Czas trwania", "LabelDuration": "Czas trwania",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Ciężko", "LabelHeavy": "Ciężko",
"LabelHigh": "Wysoko", "LabelHigh": "Wysoko",
"LabelHost": "Dostawca", "LabelHost": "Dostawca",
"LabelIncomplete": "Nieukończone",
"LabelInProgress": "W toku", "LabelInProgress": "W toku",
"LabelIncomplete": "Nieukończone",
"LabelInternalAppStorage": "Pamięć wewnętrzna aplikacji", "LabelInternalAppStorage": "Pamięć wewnętrzna aplikacji",
"LabelJumpBackwardsTime": "Przeskok wstecz", "LabelJumpBackwardsTime": "Przeskok wstecz",
"LabelJumpForwardsTime": "Przeskok w przód", "LabelJumpForwardsTime": "Przeskok w przód",
@@ -170,6 +174,7 @@
"LabelName": "Nazwa", "LabelName": "Nazwa",
"LabelNarrator": "Narrator", "LabelNarrator": "Narrator",
"LabelNarrators": "Lektorzy", "LabelNarrators": "Lektorzy",
"LabelNever": "Never",
"LabelNewestAuthors": "Najnowsi autorzy", "LabelNewestAuthors": "Najnowsi autorzy",
"LabelNewestEpisodes": "Najnosze odcinki", "LabelNewestEpisodes": "Najnosze odcinki",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Postęp", "LabelProgress": "Postęp",
"LabelPubDate": "Data publikacji", "LabelPubDate": "Data publikacji",
"LabelPublishYear": "Rok publikacji", "LabelPublishYear": "Rok publikacji",
"LabelRead": "Czytaj",
"LabelReadAgain": "Czytaj ponownie",
"LabelRecentlyAdded": "Ostatnio dodane",
"LabelRecentSeries": "Najnowsze serie",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Custom owner Email", "LabelRSSFeedCustomOwnerEmail": "Custom owner Email",
"LabelRSSFeedCustomOwnerName": "Custom owner Name", "LabelRSSFeedCustomOwnerName": "Custom owner Name",
"LabelRSSFeedPreventIndexing": "Zapobiegaj indeksowaniu", "LabelRSSFeedPreventIndexing": "Zapobiegaj indeksowaniu",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Czytaj",
"LabelReadAgain": "Czytaj ponownie",
"LabelRecentSeries": "Najnowsze serie",
"LabelRecentlyAdded": "Ostatnio dodane",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Skaluj czas, który upłynął według prędkości", "LabelScaleElapsedTimeBySpeed": "Skaluj czas, który upłynął według prędkości",
"LabelSeason": "Sezon", "LabelSeason": "Sezon",
"LabelSelectADevice": "Wybierz urządzenie", "LabelSelectADevice": "Wybierz urządzenie",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "Minuty", "LabelStatsMinutes": "Minuty",
"LabelStatsMinutesListening": "Minuty odtwarzania", "LabelStatsMinutesListening": "Minuty odtwarzania",
"LabelStatsWeekListening": "Tydzień odtwarzania", "LabelStatsWeekListening": "Tydzień odtwarzania",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tag", "LabelTag": "Tag",
"LabelTags": "Tagi", "LabelTags": "Tagi",
"LabelTheme": "Motyw", "LabelTheme": "Motyw",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Usunąć lokalny odcinek \"{0}\" ze swojego urządzenia? Nie będzie to miało wpływu na plik na serwerze.", "MessageConfirmDeleteLocalEpisode": "Usunąć lokalny odcinek \"{0}\" ze swojego urządzenia? Nie będzie to miało wpływu na plik na serwerze.",
"MessageConfirmDeleteLocalFiles": "Usunąć lokalne pliki tego elementu ze swojego urządzenia? Nie będzie to miało wpływu na pliki na serwerze i Twoje postępy.", "MessageConfirmDeleteLocalFiles": "Usunąć lokalne pliki tego elementu ze swojego urządzenia? Nie będzie to miało wpływu na pliki na serwerze i Twoje postępy.",
"MessageConfirmDiscardProgress": "Na pewno chcesz zresetować postęp?", "MessageConfirmDiscardProgress": "Na pewno chcesz zresetować postęp?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Na pewno chcesz oznaczyć ten element jako ukończony?", "MessageConfirmMarkAsFinished": "Na pewno chcesz oznaczyć ten element jako ukończony?",
"MessageConfirmRemoveBookmark": "Na pewno chcesz usunąć zakładkę?", "MessageConfirmRemoveBookmark": "Na pewno chcesz usunąć zakładkę?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Zresetuj postęp", "MessageDiscardProgress": "Zresetuj postęp",
"MessageDownloadCompleteProcessing": "Pobieranie ukończone. Przetwarzanie...", "MessageDownloadCompleteProcessing": "Pobieranie ukończone. Przetwarzanie...",
"MessageDownloading": "Pobieranie...", "MessageDownloading": "Pobieranie...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Nie udało się utworzyć zakładki", "ToastBookmarkCreateFailed": "Nie udało się utworzyć zakładki",
"ToastBookmarkRemoveFailed": "Nie udało się usunąć zakładki", "ToastBookmarkRemoveFailed": "Nie udało się usunąć zakładki",
"ToastBookmarkUpdateFailed": "Nie udało się zaktualizować zakładki", "ToastBookmarkUpdateFailed": "Nie udało się zaktualizować zakładki",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Nie udało się oznaczyć jako zakończone", "ToastItemMarkedAsFinishedFailed": "Nie udało się oznaczyć jako zakończone",
"ToastItemMarkedAsNotFinishedFailed": "Oznaczenie pozycji jako ukończonej nie powiodło się", "ToastItemMarkedAsNotFinishedFailed": "Oznaczenie pozycji jako ukończonej nie powiodło się",
"ToastPlaylistCreateFailed": "Nie udało się utworzyć playlisty", "ToastPlaylistCreateFailed": "Nie udało się utworzyć playlisty",
"ToastPodcastCreateFailed": "Nie udało się utworzyć podcastu", "ToastPodcastCreateFailed": "Nie udało się utworzyć podcastu",
"ToastPodcastCreateSuccess": "Podcast został pomyślnie utworzony", "ToastPodcastCreateSuccess": "Podcast został pomyślnie utworzony",
"ToastRSSFeedCloseFailed": "Zamknięcie kanału RSS nie powiodło się", "ToastRSSFeedCloseFailed": "Zamknięcie kanału RSS nie powiodło się",
"ToastRSSFeedCloseSuccess": "Zamknięcie kanału RSS powiodło się" "ToastRSSFeedCloseSuccess": "Zamknięcie kanału RSS powiodło się",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Coleção", "HeaderCollection": "Coleção",
"HeaderCollectionItems": "Itens da Coleção", "HeaderCollectionItems": "Itens da Coleção",
"HeaderConnectionStatus": "Status da Conexão", "HeaderConnectionStatus": "Status da Conexão",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detalhes", "HeaderDetails": "Detalhes",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "Arquivos Ebook", "HeaderEbookFiles": "Arquivos Ebook",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Sumário", "HeaderTableOfContents": "Sumário",
"HeaderUserInterfaceSettings": "Configurações da Interface do Usuário", "HeaderUserInterfaceSettings": "Configurações da Interface do Usuário",
"HeaderYourStats": "Suas Estatísticas", "HeaderYourStats": "Suas Estatísticas",
"LabelAddToPlaylist": "Adicionar à Lista de Reprodução",
"LabelAdded": "Acrescentado", "LabelAdded": "Acrescentado",
"LabelAddedAt": "Acrescentado Em", "LabelAddedAt": "Acrescentado Em",
"LabelAddToPlaylist": "Adicionar à Lista de Reprodução",
"LabelAll": "Todos", "LabelAll": "Todos",
"LabelAllowSeekingOnMediaControls": "Permitir busca de posição nos controles de notificação de mídia", "LabelAllowSeekingOnMediaControls": "Permitir busca de posição nos controles de notificação de mídia",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Autor", "LabelAuthor": "Autor",
"LabelAuthorFirstLast": "Autor (Nome Sobrenome)", "LabelAuthorFirstLast": "Autor (Nome Sobrenome)",
"LabelAuthorLastFirst": "Autor (Sobrenome, Nome)", "LabelAuthorLastFirst": "Autor (Sobrenome, Nome)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Após o timer terminar, da próxima vez que o item for reproduzido a sua posição será retrocedida automaticamente.", "LabelAutoSleepTimerAutoRewindHelp": "Após o timer terminar, da próxima vez que o item for reproduzido a sua posição será retrocedida automaticamente.",
"LabelAutoSleepTimerHelp": "Ao reproduzir uma mídia entre as horas especificadas como inicío e fim, um timer será iniciado automaticamente.", "LabelAutoSleepTimerHelp": "Ao reproduzir uma mídia entre as horas especificadas como inicío e fim, um timer será iniciado automaticamente.",
"LabelBooks": "Livros", "LabelBooks": "Livros",
"LabelChapters": "Capítulos",
"LabelChapterTrack": "Trilha do Capítulo", "LabelChapterTrack": "Trilha do Capítulo",
"LabelChapters": "Capítulos",
"LabelClosePlayer": "Fechar Reprodutor", "LabelClosePlayer": "Fechar Reprodutor",
"LabelCollapseSeries": "Fechar Série", "LabelCollapseSeries": "Fechar Série",
"LabelComplete": "Concluído", "LabelComplete": "Concluído",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Quando o timer for resetado o seu dispositivo vibrará. Ative essa configuração para não vibrar quando o timer for resetado.", "LabelDisableVibrateOnResetHelp": "Quando o timer for resetado o seu dispositivo vibrará. Ative essa configuração para não vibrar quando o timer for resetado.",
"LabelDiscover": "Descobrir", "LabelDiscover": "Descobrir",
"LabelDownload": "Download", "LabelDownload": "Download",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Download realizado", "LabelDownloaded": "Download realizado",
"LabelDuration": "Duração", "LabelDuration": "Duração",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Pesado", "LabelHeavy": "Pesado",
"LabelHigh": "Alta", "LabelHigh": "Alta",
"LabelHost": "Host", "LabelHost": "Host",
"LabelIncomplete": "Incompleto",
"LabelInProgress": "Em Andamento", "LabelInProgress": "Em Andamento",
"LabelIncomplete": "Incompleto",
"LabelInternalAppStorage": "Armazenamento Interno do App", "LabelInternalAppStorage": "Armazenamento Interno do App",
"LabelJumpBackwardsTime": "Retroceder tempo", "LabelJumpBackwardsTime": "Retroceder tempo",
"LabelJumpForwardsTime": "Adiantar tempo", "LabelJumpForwardsTime": "Adiantar tempo",
@@ -170,6 +174,7 @@
"LabelName": "Nome", "LabelName": "Nome",
"LabelNarrator": "Narrador", "LabelNarrator": "Narrador",
"LabelNarrators": "Narradores", "LabelNarrators": "Narradores",
"LabelNever": "Never",
"LabelNewestAuthors": "Novos Autores", "LabelNewestAuthors": "Novos Autores",
"LabelNewestEpisodes": "Episódios mais recentes", "LabelNewestEpisodes": "Episódios mais recentes",
"LabelNo": "Não", "LabelNo": "Não",
@@ -188,15 +193,15 @@
"LabelProgress": "Progresso", "LabelProgress": "Progresso",
"LabelPubDate": "Data de Publicação", "LabelPubDate": "Data de Publicação",
"LabelPublishYear": "Ano de Publicação", "LabelPublishYear": "Ano de Publicação",
"LabelRead": "Lido",
"LabelReadAgain": "Ler Novamente",
"LabelRecentlyAdded": "Novidades",
"LabelRecentSeries": "Séries Recentes",
"LabelRemoveFromPlaylist": "Remover da Lista de Reprodução",
"LabelRSSFeedCustomOwnerEmail": "Email do dono personalizado", "LabelRSSFeedCustomOwnerEmail": "Email do dono personalizado",
"LabelRSSFeedCustomOwnerName": "Nome do dono personalizado", "LabelRSSFeedCustomOwnerName": "Nome do dono personalizado",
"LabelRSSFeedPreventIndexing": "Impedir Indexação", "LabelRSSFeedPreventIndexing": "Impedir Indexação",
"LabelRSSFeedSlug": "Slug do Feed RSS", "LabelRSSFeedSlug": "Slug do Feed RSS",
"LabelRead": "Lido",
"LabelReadAgain": "Ler Novamente",
"LabelRecentSeries": "Séries Recentes",
"LabelRecentlyAdded": "Novidades",
"LabelRemoveFromPlaylist": "Remover da Lista de Reprodução",
"LabelScaleElapsedTimeBySpeed": "Proporcionalizar Tempo Decorrido com a Velocidade", "LabelScaleElapsedTimeBySpeed": "Proporcionalizar Tempo Decorrido com a Velocidade",
"LabelSeason": "Temporada", "LabelSeason": "Temporada",
"LabelSelectADevice": "Selecione um dispositivo", "LabelSelectADevice": "Selecione um dispositivo",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minutos", "LabelStatsMinutes": "minutos",
"LabelStatsMinutesListening": "Minutos Escutando", "LabelStatsMinutesListening": "Minutos Escutando",
"LabelStatsWeekListening": "Tempo escutando na semana", "LabelStatsWeekListening": "Tempo escutando na semana",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Etiqueta", "LabelTag": "Etiqueta",
"LabelTags": "Etiquetas", "LabelTags": "Etiquetas",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remover episódio local \"{0}\" do seu dispositivo? O arquivo no servidor não será afetado.", "MessageConfirmDeleteLocalEpisode": "Remover episódio local \"{0}\" do seu dispositivo? O arquivo no servidor não será afetado.",
"MessageConfirmDeleteLocalFiles": "Remover arquivos locais deste item do seu dispositivo? Os arquivos no servidor e o seu progresso não serão afetados.", "MessageConfirmDeleteLocalFiles": "Remover arquivos locais deste item do seu dispositivo? Os arquivos no servidor e o seu progresso não serão afetados.",
"MessageConfirmDiscardProgress": "Tem certeza de que deseja restar o seu progresso?", "MessageConfirmDiscardProgress": "Tem certeza de que deseja restar o seu progresso?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Tem certeza de que deseja marcar esse item como concluído?", "MessageConfirmMarkAsFinished": "Tem certeza de que deseja marcar esse item como concluído?",
"MessageConfirmRemoveBookmark": "Tem certeza de que deseja remover o marcador?", "MessageConfirmRemoveBookmark": "Tem certeza de que deseja remover o marcador?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Descartar Progresso", "MessageDiscardProgress": "Descartar Progresso",
"MessageDownloadCompleteProcessing": "Download concluído. Processando...", "MessageDownloadCompleteProcessing": "Download concluído. Processando...",
"MessageDownloading": "Realizando o download...", "MessageDownloading": "Realizando o download...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Falha ao criar marcador", "ToastBookmarkCreateFailed": "Falha ao criar marcador",
"ToastBookmarkRemoveFailed": "Falha ao remover marcador", "ToastBookmarkRemoveFailed": "Falha ao remover marcador",
"ToastBookmarkUpdateFailed": "Falha ao atualizar marcador", "ToastBookmarkUpdateFailed": "Falha ao atualizar marcador",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Falha ao marcar como Concluído", "ToastItemMarkedAsFinishedFailed": "Falha ao marcar como Concluído",
"ToastItemMarkedAsNotFinishedFailed": "Falha ao marcar como Não Concluído", "ToastItemMarkedAsNotFinishedFailed": "Falha ao marcar como Não Concluído",
"ToastPlaylistCreateFailed": "Falha ao criar lista de reprodução", "ToastPlaylistCreateFailed": "Falha ao criar lista de reprodução",
"ToastPodcastCreateFailed": "Falha ao criar podcast", "ToastPodcastCreateFailed": "Falha ao criar podcast",
"ToastPodcastCreateSuccess": "Podcast criado", "ToastPodcastCreateSuccess": "Podcast criado",
"ToastRSSFeedCloseFailed": "Falha ao fechar feed RSS", "ToastRSSFeedCloseFailed": "Falha ao fechar feed RSS",
"ToastRSSFeedCloseSuccess": "Feed RSS fechado" "ToastRSSFeedCloseSuccess": "Feed RSS fechado",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Коллекция", "HeaderCollection": "Коллекция",
"HeaderCollectionItems": "Элементы коллекции", "HeaderCollectionItems": "Элементы коллекции",
"HeaderConnectionStatus": "Состояние подключения", "HeaderConnectionStatus": "Состояние подключения",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Подробности", "HeaderDetails": "Подробности",
"HeaderDownloads": "Загрузки", "HeaderDownloads": "Загрузки",
"HeaderEbookFiles": "Файлы e-книг", "HeaderEbookFiles": "Файлы e-книг",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Содержание", "HeaderTableOfContents": "Содержание",
"HeaderUserInterfaceSettings": "Настройки интерфейса", "HeaderUserInterfaceSettings": "Настройки интерфейса",
"HeaderYourStats": "Ваша статистика", "HeaderYourStats": "Ваша статистика",
"LabelAddToPlaylist": "Добавить в плейлист",
"LabelAdded": "Добавили", "LabelAdded": "Добавили",
"LabelAddedAt": "Дата добавления", "LabelAddedAt": "Дата добавления",
"LabelAddToPlaylist": "Добавить в плейлист",
"LabelAll": "Все", "LabelAll": "Все",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Автор", "LabelAuthor": "Автор",
"LabelAuthorFirstLast": "Автор (Имя Фамилия)", "LabelAuthorFirstLast": "Автор (Имя Фамилия)",
"LabelAuthorLastFirst": "Автор (Фамилия, Имя)", "LabelAuthorLastFirst": "Автор (Фамилия, Имя)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Когда таймер сна закончится, то позиция воспроизведения будет отмотана назад.", "LabelAutoSleepTimerAutoRewindHelp": "Когда таймер сна закончится, то позиция воспроизведения будет отмотана назад.",
"LabelAutoSleepTimerHelp": "Если медиа воспроизводится между указанными началом и окончанием, таймер сна будет включаться автоматически.", "LabelAutoSleepTimerHelp": "Если медиа воспроизводится между указанными началом и окончанием, таймер сна будет включаться автоматически.",
"LabelBooks": "Книги", "LabelBooks": "Книги",
"LabelChapters": "Главы",
"LabelChapterTrack": "Трек главы", "LabelChapterTrack": "Трек главы",
"LabelChapters": "Главы",
"LabelClosePlayer": "Закрыть проигрыватель", "LabelClosePlayer": "Закрыть проигрыватель",
"LabelCollapseSeries": "Свернуть серии", "LabelCollapseSeries": "Свернуть серии",
"LabelComplete": "Завершить", "LabelComplete": "Завершить",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Когда таймер сна будет сброшен, ваше устройство будет вибрировать. Включите этот параметр, чтобы не вибрировать при сбросе таймера сна.", "LabelDisableVibrateOnResetHelp": "Когда таймер сна будет сброшен, ваше устройство будет вибрировать. Включите этот параметр, чтобы не вибрировать при сбросе таймера сна.",
"LabelDiscover": "Не начато", "LabelDiscover": "Не начато",
"LabelDownload": "Скачать", "LabelDownload": "Скачать",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Загружено", "LabelDownloaded": "Загружено",
"LabelDuration": "Длина", "LabelDuration": "Длина",
"LabelEbook": "E-книга", "LabelEbook": "E-книга",
@@ -146,8 +150,8 @@
"LabelHeavy": "Тяжелый", "LabelHeavy": "Тяжелый",
"LabelHigh": "Сильно", "LabelHigh": "Сильно",
"LabelHost": "Хост", "LabelHost": "Хост",
"LabelIncomplete": "Не завершен",
"LabelInProgress": "В процессе", "LabelInProgress": "В процессе",
"LabelIncomplete": "Не завершен",
"LabelInternalAppStorage": "Внутреннее хранилище приложений", "LabelInternalAppStorage": "Внутреннее хранилище приложений",
"LabelJumpBackwardsTime": "Перемотка назад", "LabelJumpBackwardsTime": "Перемотка назад",
"LabelJumpForwardsTime": "Перемотка вперед", "LabelJumpForwardsTime": "Перемотка вперед",
@@ -170,6 +174,7 @@
"LabelName": "Имя", "LabelName": "Имя",
"LabelNarrator": "Читает", "LabelNarrator": "Читает",
"LabelNarrators": "Чтецы", "LabelNarrators": "Чтецы",
"LabelNever": "Never",
"LabelNewestAuthors": "Новые авторы", "LabelNewestAuthors": "Новые авторы",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "Нет", "LabelNo": "Нет",
@@ -188,15 +193,15 @@
"LabelProgress": "Прогресс", "LabelProgress": "Прогресс",
"LabelPubDate": "Дата публикации", "LabelPubDate": "Дата публикации",
"LabelPublishYear": "Год публикации", "LabelPublishYear": "Год публикации",
"LabelRead": "Читать",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Недавно добавленные",
"LabelRecentSeries": "Недавние серии",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Пользовательский Email владельца", "LabelRSSFeedCustomOwnerEmail": "Пользовательский Email владельца",
"LabelRSSFeedCustomOwnerName": "Пользовательское Имя владельца", "LabelRSSFeedCustomOwnerName": "Пользовательское Имя владельца",
"LabelRSSFeedPreventIndexing": "Запретить индексирование", "LabelRSSFeedPreventIndexing": "Запретить индексирование",
"LabelRSSFeedSlug": "Встроить RSS-канал", "LabelRSSFeedSlug": "Встроить RSS-канал",
"LabelRead": "Читать",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Недавние серии",
"LabelRecentlyAdded": "Недавно добавленные",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Сезон", "LabelSeason": "Сезон",
"LabelSelectADevice": "Выбор девайса", "LabelSelectADevice": "Выбор девайса",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "минут", "LabelStatsMinutes": "минут",
"LabelStatsMinutesListening": "Минут прослушано", "LabelStatsMinutesListening": "Минут прослушано",
"LabelStatsWeekListening": "Прослушано за неделю", "LabelStatsWeekListening": "Прослушано за неделю",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Тег", "LabelTag": "Тег",
"LabelTags": "Теги", "LabelTags": "Теги",
"LabelTheme": "Тема", "LabelTheme": "Тема",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Удалить локальный эпизод \"{0}\" с Вашего устройства? Файл на сервере не будет затронут.", "MessageConfirmDeleteLocalEpisode": "Удалить локальный эпизод \"{0}\" с Вашего устройства? Файл на сервере не будет затронут.",
"MessageConfirmDeleteLocalFiles": "Удалить локальные файлы этого элемента с вашего устройства? Это не повлияет на файлы на сервере и ваш прогресс.", "MessageConfirmDeleteLocalFiles": "Удалить локальные файлы этого элемента с вашего устройства? Это не повлияет на файлы на сервере и ваш прогресс.",
"MessageConfirmDiscardProgress": "Вы уверены, что хотите сбросить свой прогресс?", "MessageConfirmDiscardProgress": "Вы уверены, что хотите сбросить свой прогресс?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Вы уверены, что хотите пометить этот элемент как завершенный?", "MessageConfirmMarkAsFinished": "Вы уверены, что хотите пометить этот элемент как завершенный?",
"MessageConfirmRemoveBookmark": "Вы уверены, что хотите удалить закладку?", "MessageConfirmRemoveBookmark": "Вы уверены, что хотите удалить закладку?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Отбросить прогресс", "MessageDiscardProgress": "Отбросить прогресс",
"MessageDownloadCompleteProcessing": "Загрузка завершена. Обработка...", "MessageDownloadCompleteProcessing": "Загрузка завершена. Обработка...",
"MessageDownloading": "Загрузка...", "MessageDownloading": "Загрузка...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Не удалось создать закладку", "ToastBookmarkCreateFailed": "Не удалось создать закладку",
"ToastBookmarkRemoveFailed": "Не удалось удалить закладку", "ToastBookmarkRemoveFailed": "Не удалось удалить закладку",
"ToastBookmarkUpdateFailed": "Не удалось обновить закладку", "ToastBookmarkUpdateFailed": "Не удалось обновить закладку",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Не удалось пометить как Завершенный", "ToastItemMarkedAsFinishedFailed": "Не удалось пометить как Завершенный",
"ToastItemMarkedAsNotFinishedFailed": "Не удалось пометить как Незавершенный", "ToastItemMarkedAsNotFinishedFailed": "Не удалось пометить как Незавершенный",
"ToastPlaylistCreateFailed": "Не удалось создать плейлист", "ToastPlaylistCreateFailed": "Не удалось создать плейлист",
"ToastPodcastCreateFailed": "Не удалось создать подкаст", "ToastPodcastCreateFailed": "Не удалось создать подкаст",
"ToastPodcastCreateSuccess": "Подкаст успешно создан", "ToastPodcastCreateSuccess": "Подкаст успешно создан",
"ToastRSSFeedCloseFailed": "Не удалось закрыть RSS-канал", "ToastRSSFeedCloseFailed": "Не удалось закрыть RSS-канал",
"ToastRSSFeedCloseSuccess": "RSS-канал закрыт" "ToastRSSFeedCloseSuccess": "RSS-канал закрыт",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Samling", "HeaderCollection": "Samling",
"HeaderCollectionItems": "Samlingselement", "HeaderCollectionItems": "Samlingselement",
"HeaderConnectionStatus": "Connection Status", "HeaderConnectionStatus": "Connection Status",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Detaljer", "HeaderDetails": "Detaljer",
"HeaderDownloads": "Downloads", "HeaderDownloads": "Downloads",
"HeaderEbookFiles": "E-boksfiler", "HeaderEbookFiles": "E-boksfiler",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Innehållsförteckning", "HeaderTableOfContents": "Innehållsförteckning",
"HeaderUserInterfaceSettings": "User Interface Settings", "HeaderUserInterfaceSettings": "User Interface Settings",
"HeaderYourStats": "Dina statistik", "HeaderYourStats": "Dina statistik",
"LabelAddToPlaylist": "Lägg till i Spellista",
"LabelAdded": "Tillagd", "LabelAdded": "Tillagd",
"LabelAddedAt": "Tillagd vid", "LabelAddedAt": "Tillagd vid",
"LabelAddToPlaylist": "Lägg till i Spellista",
"LabelAll": "Alla", "LabelAll": "Alla",
"LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls", "LabelAllowSeekingOnMediaControls": "Allow position seeking on media notification controls",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Författare", "LabelAuthor": "Författare",
"LabelAuthorFirstLast": "Författare (Förnamn Efternamn)", "LabelAuthorFirstLast": "Författare (Förnamn Efternamn)",
"LabelAuthorLastFirst": "Författare (Efternamn, Förnamn)", "LabelAuthorLastFirst": "Författare (Efternamn, Förnamn)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.", "LabelAutoSleepTimerAutoRewindHelp": "When the auto sleep timer finishes, playing the item again will automatically rewind your position.",
"LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.", "LabelAutoSleepTimerHelp": "When playing media between the specified start and end times a sleep timer will automatically start.",
"LabelBooks": "Böcker", "LabelBooks": "Böcker",
"LabelChapters": "Kapitel",
"LabelChapterTrack": "Chapter Track", "LabelChapterTrack": "Chapter Track",
"LabelChapters": "Kapitel",
"LabelClosePlayer": "Stäng spelaren", "LabelClosePlayer": "Stäng spelaren",
"LabelCollapseSeries": "Fäll ihop serie", "LabelCollapseSeries": "Fäll ihop serie",
"LabelComplete": "Komplett", "LabelComplete": "Komplett",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.", "LabelDisableVibrateOnResetHelp": "When the sleep timer gets reset your device will vibrate. Enable this setting to not vibrate when the sleep timer resets.",
"LabelDiscover": "Discover", "LabelDiscover": "Discover",
"LabelDownload": "Ladda ner", "LabelDownload": "Ladda ner",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Downloaded", "LabelDownloaded": "Downloaded",
"LabelDuration": "Varaktighet", "LabelDuration": "Varaktighet",
"LabelEbook": "E-bok", "LabelEbook": "E-bok",
@@ -146,8 +150,8 @@
"LabelHeavy": "Heavy", "LabelHeavy": "Heavy",
"LabelHigh": "High", "LabelHigh": "High",
"LabelHost": "Värd", "LabelHost": "Värd",
"LabelIncomplete": "Ofullständig",
"LabelInProgress": "Pågående", "LabelInProgress": "Pågående",
"LabelIncomplete": "Ofullständig",
"LabelInternalAppStorage": "Internal App Storage", "LabelInternalAppStorage": "Internal App Storage",
"LabelJumpBackwardsTime": "Jump backwards time", "LabelJumpBackwardsTime": "Jump backwards time",
"LabelJumpForwardsTime": "Jump forwards time", "LabelJumpForwardsTime": "Jump forwards time",
@@ -170,6 +174,7 @@
"LabelName": "Namn", "LabelName": "Namn",
"LabelNarrator": "Berättare", "LabelNarrator": "Berättare",
"LabelNarrators": "Berättare", "LabelNarrators": "Berättare",
"LabelNever": "Never",
"LabelNewestAuthors": "Newest Authors", "LabelNewestAuthors": "Newest Authors",
"LabelNewestEpisodes": "Newest Episodes", "LabelNewestEpisodes": "Newest Episodes",
"LabelNo": "No", "LabelNo": "No",
@@ -188,15 +193,15 @@
"LabelProgress": "Framsteg", "LabelProgress": "Framsteg",
"LabelPubDate": "Publiceringsdatum", "LabelPubDate": "Publiceringsdatum",
"LabelPublishYear": "Publiceringsår", "LabelPublishYear": "Publiceringsår",
"LabelRead": "Läst",
"LabelReadAgain": "Read Again",
"LabelRecentlyAdded": "Recently Added",
"LabelRecentSeries": "Recent Series",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelRSSFeedCustomOwnerEmail": "Anpassad ägarens e-post", "LabelRSSFeedCustomOwnerEmail": "Anpassad ägarens e-post",
"LabelRSSFeedCustomOwnerName": "Anpassat ägarnamn", "LabelRSSFeedCustomOwnerName": "Anpassat ägarnamn",
"LabelRSSFeedPreventIndexing": "Förhindra indexering", "LabelRSSFeedPreventIndexing": "Förhindra indexering",
"LabelRSSFeedSlug": "RSS-flödesslag", "LabelRSSFeedSlug": "RSS-flödesslag",
"LabelRead": "Läst",
"LabelReadAgain": "Read Again",
"LabelRecentSeries": "Recent Series",
"LabelRecentlyAdded": "Recently Added",
"LabelRemoveFromPlaylist": "Remove from Playlist",
"LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed", "LabelScaleElapsedTimeBySpeed": "Scale Elapsed Time by Speed",
"LabelSeason": "Säsong", "LabelSeason": "Säsong",
"LabelSelectADevice": "Select a device", "LabelSelectADevice": "Select a device",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "minuter", "LabelStatsMinutes": "minuter",
"LabelStatsMinutesListening": "Minuter av lyssnande", "LabelStatsMinutesListening": "Minuter av lyssnande",
"LabelStatsWeekListening": "Veckans lyssnande", "LabelStatsWeekListening": "Veckans lyssnande",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Tagg", "LabelTag": "Tagg",
"LabelTags": "Taggar", "LabelTags": "Taggar",
"LabelTheme": "Tema", "LabelTheme": "Tema",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.",
"MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.",
"MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",
"MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?", "MessageConfirmRemoveBookmark": "Are you sure you want to remove bookmark?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Discard Progress", "MessageDiscardProgress": "Discard Progress",
"MessageDownloadCompleteProcessing": "Download complete. Processing...", "MessageDownloadCompleteProcessing": "Download complete. Processing...",
"MessageDownloading": "Downloading...", "MessageDownloading": "Downloading...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Det gick inte att skapa bokmärket", "ToastBookmarkCreateFailed": "Det gick inte att skapa bokmärket",
"ToastBookmarkRemoveFailed": "Det gick inte att ta bort bokmärket", "ToastBookmarkRemoveFailed": "Det gick inte att ta bort bokmärket",
"ToastBookmarkUpdateFailed": "Det gick inte att uppdatera bokmärket", "ToastBookmarkUpdateFailed": "Det gick inte att uppdatera bokmärket",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Misslyckades med att markera som färdig", "ToastItemMarkedAsFinishedFailed": "Misslyckades med att markera som färdig",
"ToastItemMarkedAsNotFinishedFailed": "Misslyckades med att markera som ej färdig", "ToastItemMarkedAsNotFinishedFailed": "Misslyckades med att markera som ej färdig",
"ToastPlaylistCreateFailed": "Det gick inte att skapa spellistan", "ToastPlaylistCreateFailed": "Det gick inte att skapa spellistan",
"ToastPodcastCreateFailed": "Misslyckades med att skapa podcasten", "ToastPodcastCreateFailed": "Misslyckades med att skapa podcasten",
"ToastPodcastCreateSuccess": "Podcasten skapad framgångsrikt", "ToastPodcastCreateSuccess": "Podcasten skapad framgångsrikt",
"ToastRSSFeedCloseFailed": "Misslyckades med att stänga RSS-flödet", "ToastRSSFeedCloseFailed": "Misslyckades med att stänga RSS-flödet",
"ToastRSSFeedCloseSuccess": "RSS-flödet stängt" "ToastRSSFeedCloseSuccess": "RSS-flödet stängt",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Добірка", "HeaderCollection": "Добірка",
"HeaderCollectionItems": "Елементи добірки", "HeaderCollectionItems": "Елементи добірки",
"HeaderConnectionStatus": "Стан з'єднання", "HeaderConnectionStatus": "Стан з'єднання",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Подробиці", "HeaderDetails": "Подробиці",
"HeaderDownloads": "Завантаження", "HeaderDownloads": "Завантаження",
"HeaderEbookFiles": "Файли електронних книг", "HeaderEbookFiles": "Файли електронних книг",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Зміст", "HeaderTableOfContents": "Зміст",
"HeaderUserInterfaceSettings": "Налаштування користувацького інтерфейсу", "HeaderUserInterfaceSettings": "Налаштування користувацького інтерфейсу",
"HeaderYourStats": "Ваша статистика", "HeaderYourStats": "Ваша статистика",
"LabelAddToPlaylist": "Додати до списку відтворення",
"LabelAdded": "Додано", "LabelAdded": "Додано",
"LabelAddedAt": "Дата додавання", "LabelAddedAt": "Дата додавання",
"LabelAddToPlaylist": "Додати до списку відтворення",
"LabelAll": "Усе", "LabelAll": "Усе",
"LabelAllowSeekingOnMediaControls": "Увімкнути перемотування в меню управління медіа", "LabelAllowSeekingOnMediaControls": "Увімкнути перемотування в меню управління медіа",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Автор", "LabelAuthor": "Автор",
"LabelAuthorFirstLast": "Автор (за ім'ям)", "LabelAuthorFirstLast": "Автор (за ім'ям)",
"LabelAuthorLastFirst": "Автор (за прізвищем)", "LabelAuthorLastFirst": "Автор (за прізвищем)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Коли сплине автотаймер вимкнення, відтворення знову автоматично перемотає доріжку.", "LabelAutoSleepTimerAutoRewindHelp": "Коли сплине автотаймер вимкнення, відтворення знову автоматично перемотає доріжку.",
"LabelAutoSleepTimerHelp": "Таймер вимкнення автоматично ввімкнеться при відтворенні медіа між вказаним початковим та кінцевим часом.", "LabelAutoSleepTimerHelp": "Таймер вимкнення автоматично ввімкнеться при відтворенні медіа між вказаним початковим та кінцевим часом.",
"LabelBooks": "Книги", "LabelBooks": "Книги",
"LabelChapters": "Глави",
"LabelChapterTrack": "Прогрес глави", "LabelChapterTrack": "Прогрес глави",
"LabelChapters": "Глави",
"LabelClosePlayer": "Закрити програвач", "LabelClosePlayer": "Закрити програвач",
"LabelCollapseSeries": "Згорнути серії", "LabelCollapseSeries": "Згорнути серії",
"LabelComplete": "Завершити", "LabelComplete": "Завершити",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Коли таймер вимкнення буде скинуто, ваш пристрій завібрує. Увімкніть цей параметр, щоб не вібрувати при скиданні таймера.", "LabelDisableVibrateOnResetHelp": "Коли таймер вимкнення буде скинуто, ваш пристрій завібрує. Увімкніть цей параметр, щоб не вібрувати при скиданні таймера.",
"LabelDiscover": "Огляд", "LabelDiscover": "Огляд",
"LabelDownload": "Завантажити", "LabelDownload": "Завантажити",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Завантажено", "LabelDownloaded": "Завантажено",
"LabelDuration": "Тривалість", "LabelDuration": "Тривалість",
"LabelEbook": "Електронна книга", "LabelEbook": "Електронна книга",
@@ -146,8 +150,8 @@
"LabelHeavy": "Сильно", "LabelHeavy": "Сильно",
"LabelHigh": "Високо", "LabelHigh": "Високо",
"LabelHost": "Гост", "LabelHost": "Гост",
"LabelIncomplete": "Не завершено",
"LabelInProgress": "У процесі", "LabelInProgress": "У процесі",
"LabelIncomplete": "Не завершено",
"LabelInternalAppStorage": "Внутрішня пам'ять додатку", "LabelInternalAppStorage": "Внутрішня пам'ять додатку",
"LabelJumpBackwardsTime": "Час відмотування назад", "LabelJumpBackwardsTime": "Час відмотування назад",
"LabelJumpForwardsTime": "Час перемотування вперед", "LabelJumpForwardsTime": "Час перемотування вперед",
@@ -170,6 +174,7 @@
"LabelName": "Назва", "LabelName": "Назва",
"LabelNarrator": "Читець", "LabelNarrator": "Читець",
"LabelNarrators": "Читці", "LabelNarrators": "Читці",
"LabelNever": "Never",
"LabelNewestAuthors": "Нові автори", "LabelNewestAuthors": "Нові автори",
"LabelNewestEpisodes": "Нові епізоди", "LabelNewestEpisodes": "Нові епізоди",
"LabelNo": "Ні", "LabelNo": "Ні",
@@ -188,15 +193,15 @@
"LabelProgress": "Прогрес", "LabelProgress": "Прогрес",
"LabelPubDate": "Дата публікації", "LabelPubDate": "Дата публікації",
"LabelPublishYear": "Рік публікації", "LabelPublishYear": "Рік публікації",
"LabelRead": "Читати",
"LabelReadAgain": "Читати знову",
"LabelRecentlyAdded": "Нещодавно додані",
"LabelRecentSeries": "Останні серії",
"LabelRemoveFromPlaylist": "Видалити зі списку",
"LabelRSSFeedCustomOwnerEmail": "Користувацька електронна адреса власника", "LabelRSSFeedCustomOwnerEmail": "Користувацька електронна адреса власника",
"LabelRSSFeedCustomOwnerName": "Користувацьке ім'я власника", "LabelRSSFeedCustomOwnerName": "Користувацьке ім'я власника",
"LabelRSSFeedPreventIndexing": "Запобігати індексації", "LabelRSSFeedPreventIndexing": "Запобігати індексації",
"LabelRSSFeedSlug": "Назва RSS-каналу", "LabelRSSFeedSlug": "Назва RSS-каналу",
"LabelRead": "Читати",
"LabelReadAgain": "Читати знову",
"LabelRecentSeries": "Останні серії",
"LabelRecentlyAdded": "Нещодавно додані",
"LabelRemoveFromPlaylist": "Видалити зі списку",
"LabelScaleElapsedTimeBySpeed": "Час відповідно швидкості", "LabelScaleElapsedTimeBySpeed": "Час відповідно швидкості",
"LabelSeason": "Сезон", "LabelSeason": "Сезон",
"LabelSelectADevice": "Обрати пристрій", "LabelSelectADevice": "Обрати пристрій",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "хвилин", "LabelStatsMinutes": "хвилин",
"LabelStatsMinutesListening": "Хвилин прослухано", "LabelStatsMinutesListening": "Хвилин прослухано",
"LabelStatsWeekListening": "Прослухано за тиждень", "LabelStatsWeekListening": "Прослухано за тиждень",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Мітка", "LabelTag": "Мітка",
"LabelTags": "Мітки", "LabelTags": "Мітки",
"LabelTheme": "Тема", "LabelTheme": "Тема",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Видалити локальний епізод \"{0}\" з вашого пристрою? Файл лишиться на сервері.", "MessageConfirmDeleteLocalEpisode": "Видалити локальний епізод \"{0}\" з вашого пристрою? Файл лишиться на сервері.",
"MessageConfirmDeleteLocalFiles": "Видалити локальні файли цього елемента з вашого пристрою? Файли лишаться на сервері.", "MessageConfirmDeleteLocalFiles": "Видалити локальні файли цього елемента з вашого пристрою? Файли лишаться на сервері.",
"MessageConfirmDiscardProgress": "Ви дійсно бажаєте скинути ваш прогрес?", "MessageConfirmDiscardProgress": "Ви дійсно бажаєте скинути ваш прогрес?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Ви дійсно бажаєте позначити цей елемент завершеним?", "MessageConfirmMarkAsFinished": "Ви дійсно бажаєте позначити цей елемент завершеним?",
"MessageConfirmRemoveBookmark": "Ви дійсно бажаєте видалити закладку?", "MessageConfirmRemoveBookmark": "Ви дійсно бажаєте видалити закладку?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Скинути прогрес", "MessageDiscardProgress": "Скинути прогрес",
"MessageDownloadCompleteProcessing": "Завантаження завершено. Обробка...", "MessageDownloadCompleteProcessing": "Завантаження завершено. Обробка...",
"MessageDownloading": "Завантажується...", "MessageDownloading": "Завантажується...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Не вдалося створити закладку", "ToastBookmarkCreateFailed": "Не вдалося створити закладку",
"ToastBookmarkRemoveFailed": "Не вдалося видалити закладку", "ToastBookmarkRemoveFailed": "Не вдалося видалити закладку",
"ToastBookmarkUpdateFailed": "Не вдалося оновити закладку", "ToastBookmarkUpdateFailed": "Не вдалося оновити закладку",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Не вдалося позначити завершеним", "ToastItemMarkedAsFinishedFailed": "Не вдалося позначити завершеним",
"ToastItemMarkedAsNotFinishedFailed": "Не вдалося позначити незавершеним", "ToastItemMarkedAsNotFinishedFailed": "Не вдалося позначити незавершеним",
"ToastPlaylistCreateFailed": "Не вдалося створити список", "ToastPlaylistCreateFailed": "Не вдалося створити список",
"ToastPodcastCreateFailed": "Не вдалося створити подкаст", "ToastPodcastCreateFailed": "Не вдалося створити подкаст",
"ToastPodcastCreateSuccess": "Подкаст успішно створено", "ToastPodcastCreateSuccess": "Подкаст успішно створено",
"ToastRSSFeedCloseFailed": "Не вдалося закрити RSS-канал", "ToastRSSFeedCloseFailed": "Не вдалося закрити RSS-канал",
"ToastRSSFeedCloseSuccess": "RSS-канал закрито" "ToastRSSFeedCloseSuccess": "RSS-канал закрито",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "Bộ Sưu Tập", "HeaderCollection": "Bộ Sưu Tập",
"HeaderCollectionItems": "Mục Bộ Sưu Tập", "HeaderCollectionItems": "Mục Bộ Sưu Tập",
"HeaderConnectionStatus": "Trạng Thái Kết Nối", "HeaderConnectionStatus": "Trạng Thái Kết Nối",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "Chi Tiết", "HeaderDetails": "Chi Tiết",
"HeaderDownloads": "Tải Xuống", "HeaderDownloads": "Tải Xuống",
"HeaderEbookFiles": "Tập Tin Ebook", "HeaderEbookFiles": "Tập Tin Ebook",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "Mục Lục", "HeaderTableOfContents": "Mục Lục",
"HeaderUserInterfaceSettings": "Cài Đặt Giao Diện Người Dùng", "HeaderUserInterfaceSettings": "Cài Đặt Giao Diện Người Dùng",
"HeaderYourStats": "Thống Kê của Bạn", "HeaderYourStats": "Thống Kê của Bạn",
"LabelAddToPlaylist": "Thêm vào Danh Sách Phát",
"LabelAdded": "Đã Thêm", "LabelAdded": "Đã Thêm",
"LabelAddedAt": "Đã Thêm Vào", "LabelAddedAt": "Đã Thêm Vào",
"LabelAddToPlaylist": "Thêm vào Danh Sách Phát",
"LabelAll": "Tất Cả", "LabelAll": "Tất Cả",
"LabelAllowSeekingOnMediaControls": "Cho phép tìm kiếm vị trí trên các điều khiển phương tiện thông báo", "LabelAllowSeekingOnMediaControls": "Cho phép tìm kiếm vị trí trên các điều khiển phương tiện thông báo",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "Tác Giả", "LabelAuthor": "Tác Giả",
"LabelAuthorFirstLast": "Tác Giả (Tên Đầu Tiên, Họ)", "LabelAuthorFirstLast": "Tác Giả (Tên Đầu Tiên, Họ)",
"LabelAuthorLastFirst": "Tác Giả (Họ, Tên Đầu Tiên)", "LabelAuthorLastFirst": "Tác Giả (Họ, Tên Đầu Tiên)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "Khi bộ đếm thời gian ngủ tự động hoàn thành, việc phát lại mục sẽ tự động lùi lại vị trí của bạn.", "LabelAutoSleepTimerAutoRewindHelp": "Khi bộ đếm thời gian ngủ tự động hoàn thành, việc phát lại mục sẽ tự động lùi lại vị trí của bạn.",
"LabelAutoSleepTimerHelp": "Khi phát phương tiện giữa các thời gian bắt đầu và kết thúc được chỉ định, một bộ đếm thời gian ngủ sẽ tự động bắt đầu.", "LabelAutoSleepTimerHelp": "Khi phát phương tiện giữa các thời gian bắt đầu và kết thúc được chỉ định, một bộ đếm thời gian ngủ sẽ tự động bắt đầu.",
"LabelBooks": "Sách", "LabelBooks": "Sách",
"LabelChapters": "Chương",
"LabelChapterTrack": "Theo Dõi Chương", "LabelChapterTrack": "Theo Dõi Chương",
"LabelChapters": "Chương",
"LabelClosePlayer": "Đóng Trình Phát", "LabelClosePlayer": "Đóng Trình Phát",
"LabelCollapseSeries": "Thu Gọn Chuỗi", "LabelCollapseSeries": "Thu Gọn Chuỗi",
"LabelComplete": "Hoàn Thành", "LabelComplete": "Hoàn Thành",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "Khi bộ đếm thời gian ngủ được đặt lại, thiết bị của bạn sẽ rung. Bật cài đặt này để không rung khi bộ đếm thời gian ngủ được đặt lại.", "LabelDisableVibrateOnResetHelp": "Khi bộ đếm thời gian ngủ được đặt lại, thiết bị của bạn sẽ rung. Bật cài đặt này để không rung khi bộ đếm thời gian ngủ được đặt lại.",
"LabelDiscover": "Khám Phá", "LabelDiscover": "Khám Phá",
"LabelDownload": "Tải Xuống", "LabelDownload": "Tải Xuống",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "Đã Tải Xuống", "LabelDownloaded": "Đã Tải Xuống",
"LabelDuration": "Thời Lượng", "LabelDuration": "Thời Lượng",
"LabelEbook": "Ebook", "LabelEbook": "Ebook",
@@ -146,8 +150,8 @@
"LabelHeavy": "Nặng", "LabelHeavy": "Nặng",
"LabelHigh": "Cao", "LabelHigh": "Cao",
"LabelHost": "Máy Chủ", "LabelHost": "Máy Chủ",
"LabelIncomplete": "Chưa Hoàn Thành",
"LabelInProgress": "Đang Tiến Hành", "LabelInProgress": "Đang Tiến Hành",
"LabelIncomplete": "Chưa Hoàn Thành",
"LabelInternalAppStorage": "Bộ Nhớ Ứng Dụng Nội Bộ", "LabelInternalAppStorage": "Bộ Nhớ Ứng Dụng Nội Bộ",
"LabelJumpBackwardsTime": "Nhảy Lùi Thời Gian", "LabelJumpBackwardsTime": "Nhảy Lùi Thời Gian",
"LabelJumpForwardsTime": "Nhảy Chuyển Tiếp Thời Gian", "LabelJumpForwardsTime": "Nhảy Chuyển Tiếp Thời Gian",
@@ -170,6 +174,7 @@
"LabelName": "Tên", "LabelName": "Tên",
"LabelNarrator": "Người Đọc", "LabelNarrator": "Người Đọc",
"LabelNarrators": "Người Đọc", "LabelNarrators": "Người Đọc",
"LabelNever": "Never",
"LabelNewestAuthors": "Tác Giả Mới Nhất", "LabelNewestAuthors": "Tác Giả Mới Nhất",
"LabelNewestEpisodes": "Các Tập Phim Mới Nhất", "LabelNewestEpisodes": "Các Tập Phim Mới Nhất",
"LabelNo": "Không", "LabelNo": "Không",
@@ -188,15 +193,15 @@
"LabelProgress": "Tiến Độ", "LabelProgress": "Tiến Độ",
"LabelPubDate": "Ngày Xuất Bản", "LabelPubDate": "Ngày Xuất Bản",
"LabelPublishYear": "Năm Xuất Bản", "LabelPublishYear": "Năm Xuất Bản",
"LabelRead": "Đã Đọc",
"LabelReadAgain": "Đọc Lại",
"LabelRecentlyAdded": "Được Thêm Gần Đây",
"LabelRecentSeries": "Chuỗi Gần Đây",
"LabelRemoveFromPlaylist": "Xóa khỏi Danh Sách Phát",
"LabelRSSFeedCustomOwnerEmail": "Email Chủ Sở Hữu Tùy Chỉnh", "LabelRSSFeedCustomOwnerEmail": "Email Chủ Sở Hữu Tùy Chỉnh",
"LabelRSSFeedCustomOwnerName": "Tên Chủ Sở Hữu Tùy Chỉnh", "LabelRSSFeedCustomOwnerName": "Tên Chủ Sở Hữu Tùy Chỉnh",
"LabelRSSFeedPreventIndexing": "Ngăn Chặn Lập Chỉ Mục", "LabelRSSFeedPreventIndexing": "Ngăn Chặn Lập Chỉ Mục",
"LabelRSSFeedSlug": "RSS Feed Slug", "LabelRSSFeedSlug": "RSS Feed Slug",
"LabelRead": "Đã Đọc",
"LabelReadAgain": "Đọc Lại",
"LabelRecentSeries": "Chuỗi Gần Đây",
"LabelRecentlyAdded": "Được Thêm Gần Đây",
"LabelRemoveFromPlaylist": "Xóa khỏi Danh Sách Phát",
"LabelScaleElapsedTimeBySpeed": "Tỷ Lệ Thời Gian Đã Trôi Theo Tốc Độ", "LabelScaleElapsedTimeBySpeed": "Tỷ Lệ Thời Gian Đã Trôi Theo Tốc Độ",
"LabelSeason": "Mùa", "LabelSeason": "Mùa",
"LabelSelectADevice": "Chọn Một Thiết Bị", "LabelSelectADevice": "Chọn Một Thiết Bị",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "phút", "LabelStatsMinutes": "phút",
"LabelStatsMinutesListening": "Phút Đã Nghe", "LabelStatsMinutesListening": "Phút Đã Nghe",
"LabelStatsWeekListening": "Tuần Đã Nghe", "LabelStatsWeekListening": "Tuần Đã Nghe",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "Thẻ", "LabelTag": "Thẻ",
"LabelTags": "Thẻ", "LabelTags": "Thẻ",
"LabelTheme": "Giao Diện", "LabelTheme": "Giao Diện",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "Xóa tập phim địa phương \"{0}\" khỏi thiết bị của bạn? Tập tin trên máy chủ sẽ không bị ảnh hưởng.", "MessageConfirmDeleteLocalEpisode": "Xóa tập phim địa phương \"{0}\" khỏi thiết bị của bạn? Tập tin trên máy chủ sẽ không bị ảnh hưởng.",
"MessageConfirmDeleteLocalFiles": "Xóa các tập tin địa phương của mục này khỏi thiết bị của bạn? Các tập tin trên máy chủ và tiến trình của bạn sẽ không bị ảnh hưởng.", "MessageConfirmDeleteLocalFiles": "Xóa các tập tin địa phương của mục này khỏi thiết bị của bạn? Các tập tin trên máy chủ và tiến trình của bạn sẽ không bị ảnh hưởng.",
"MessageConfirmDiscardProgress": "Bạn có chắc chắn muốn đặt lại tiến trình của mình không?", "MessageConfirmDiscardProgress": "Bạn có chắc chắn muốn đặt lại tiến trình của mình không?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "Bạn có chắc chắn muốn đánh dấu mục này là đã hoàn thành không?", "MessageConfirmMarkAsFinished": "Bạn có chắc chắn muốn đánh dấu mục này là đã hoàn thành không?",
"MessageConfirmRemoveBookmark": "Bạn có chắc chắn muốn xóa đánh dấu?", "MessageConfirmRemoveBookmark": "Bạn có chắc chắn muốn xóa đánh dấu?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "Hủy Bỏ Tiến Độ", "MessageDiscardProgress": "Hủy Bỏ Tiến Độ",
"MessageDownloadCompleteProcessing": "Tải xuống hoàn tất. Đang xử lý...", "MessageDownloadCompleteProcessing": "Tải xuống hoàn tất. Đang xử lý...",
"MessageDownloading": "Đang tải xuống...", "MessageDownloading": "Đang tải xuống...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "Không thể tạo đánh dấu", "ToastBookmarkCreateFailed": "Không thể tạo đánh dấu",
"ToastBookmarkRemoveFailed": "Không thể xóa đánh dấu", "ToastBookmarkRemoveFailed": "Không thể xóa đánh dấu",
"ToastBookmarkUpdateFailed": "Không thể cập nhật đánh dấu", "ToastBookmarkUpdateFailed": "Không thể cập nhật đánh dấu",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "Không thể đánh dấu là Hoàn Thành", "ToastItemMarkedAsFinishedFailed": "Không thể đánh dấu là Hoàn Thành",
"ToastItemMarkedAsNotFinishedFailed": "Không thể đánh dấu là Chưa Hoàn Thành", "ToastItemMarkedAsNotFinishedFailed": "Không thể đánh dấu là Chưa Hoàn Thành",
"ToastPlaylistCreateFailed": "Không thể tạo danh sách phát", "ToastPlaylistCreateFailed": "Không thể tạo danh sách phát",
"ToastPodcastCreateFailed": "Không thể tạo podcast", "ToastPodcastCreateFailed": "Không thể tạo podcast",
"ToastPodcastCreateSuccess": "Tạo podcast thành công", "ToastPodcastCreateSuccess": "Tạo podcast thành công",
"ToastRSSFeedCloseFailed": "Không thể đóng RSS feed", "ToastRSSFeedCloseFailed": "Không thể đóng RSS feed",
"ToastRSSFeedCloseSuccess": "Đóng RSS feed thành công" "ToastRSSFeedCloseSuccess": "Đóng RSS feed thành công",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }
+19 -9
View File
@@ -56,6 +56,7 @@
"HeaderCollection": "收藏", "HeaderCollection": "收藏",
"HeaderCollectionItems": "收藏项目", "HeaderCollectionItems": "收藏项目",
"HeaderConnectionStatus": "连接状态", "HeaderConnectionStatus": "连接状态",
"HeaderDataSettings": "Data Settings",
"HeaderDetails": "详情", "HeaderDetails": "详情",
"HeaderDownloads": "下载", "HeaderDownloads": "下载",
"HeaderEbookFiles": "电子书文件", "HeaderEbookFiles": "电子书文件",
@@ -82,11 +83,13 @@
"HeaderTableOfContents": "目录", "HeaderTableOfContents": "目录",
"HeaderUserInterfaceSettings": "用户界面设置", "HeaderUserInterfaceSettings": "用户界面设置",
"HeaderYourStats": "你的统计数据", "HeaderYourStats": "你的统计数据",
"LabelAddToPlaylist": "添加到播放列表",
"LabelAdded": "添加", "LabelAdded": "添加",
"LabelAddedAt": "添加于", "LabelAddedAt": "添加于",
"LabelAddToPlaylist": "添加到播放列表",
"LabelAll": "全部", "LabelAll": "全部",
"LabelAllowSeekingOnMediaControls": "允许在媒体通知控件上查找位置", "LabelAllowSeekingOnMediaControls": "允许在媒体通知控件上查找位置",
"LabelAlways": "Always",
"LabelAskConfirmation": "Ask for confirmation",
"LabelAuthor": "作者", "LabelAuthor": "作者",
"LabelAuthorFirstLast": "作者 (姓 名)", "LabelAuthorFirstLast": "作者 (姓 名)",
"LabelAuthorLastFirst": "作者 (名, 姓)", "LabelAuthorLastFirst": "作者 (名, 姓)",
@@ -98,8 +101,8 @@
"LabelAutoSleepTimerAutoRewindHelp": "当自动睡眠计时器结束时, 再次播放该项目将自动倒带您之前的位置.", "LabelAutoSleepTimerAutoRewindHelp": "当自动睡眠计时器结束时, 再次播放该项目将自动倒带您之前的位置.",
"LabelAutoSleepTimerHelp": "当在指定的时间范围内播放媒体时, 睡眠计时器将自动启动.", "LabelAutoSleepTimerHelp": "当在指定的时间范围内播放媒体时, 睡眠计时器将自动启动.",
"LabelBooks": "图书", "LabelBooks": "图书",
"LabelChapters": "章节",
"LabelChapterTrack": "章节音轨", "LabelChapterTrack": "章节音轨",
"LabelChapters": "章节",
"LabelClosePlayer": "关闭播放器", "LabelClosePlayer": "关闭播放器",
"LabelCollapseSeries": "折叠系列", "LabelCollapseSeries": "折叠系列",
"LabelComplete": "已完成", "LabelComplete": "已完成",
@@ -119,6 +122,7 @@
"LabelDisableVibrateOnResetHelp": "当睡眠计时器重置时, 你的设备会振动. 启用此设置以在睡眠计时器重置时不振动.", "LabelDisableVibrateOnResetHelp": "当睡眠计时器重置时, 你的设备会振动. 启用此设置以在睡眠计时器重置时不振动.",
"LabelDiscover": "发现", "LabelDiscover": "发现",
"LabelDownload": "下载", "LabelDownload": "下载",
"LabelDownloadUsingCellular": "Download using Cellular",
"LabelDownloaded": "已下载", "LabelDownloaded": "已下载",
"LabelDuration": "持续时间", "LabelDuration": "持续时间",
"LabelEbook": "电子书", "LabelEbook": "电子书",
@@ -146,8 +150,8 @@
"LabelHeavy": "重", "LabelHeavy": "重",
"LabelHigh": "高", "LabelHigh": "高",
"LabelHost": "主机", "LabelHost": "主机",
"LabelIncomplete": "未听完",
"LabelInProgress": "正在听", "LabelInProgress": "正在听",
"LabelIncomplete": "未听完",
"LabelInternalAppStorage": "应用内部存储", "LabelInternalAppStorage": "应用内部存储",
"LabelJumpBackwardsTime": "快退时间", "LabelJumpBackwardsTime": "快退时间",
"LabelJumpForwardsTime": "快进时间", "LabelJumpForwardsTime": "快进时间",
@@ -170,6 +174,7 @@
"LabelName": "名称", "LabelName": "名称",
"LabelNarrator": "演播者", "LabelNarrator": "演播者",
"LabelNarrators": "演播者", "LabelNarrators": "演播者",
"LabelNever": "Never",
"LabelNewestAuthors": "最新作者", "LabelNewestAuthors": "最新作者",
"LabelNewestEpisodes": "最新剧集", "LabelNewestEpisodes": "最新剧集",
"LabelNo": "取消", "LabelNo": "取消",
@@ -188,15 +193,15 @@
"LabelProgress": "进度", "LabelProgress": "进度",
"LabelPubDate": "出版日期", "LabelPubDate": "出版日期",
"LabelPublishYear": "发布年份", "LabelPublishYear": "发布年份",
"LabelRead": "阅读",
"LabelReadAgain": "再次阅读",
"LabelRecentlyAdded": "最近添加",
"LabelRecentSeries": "最近添加系列",
"LabelRemoveFromPlaylist": "从播放列表中删除",
"LabelRSSFeedCustomOwnerEmail": "自定义所有者电子邮件", "LabelRSSFeedCustomOwnerEmail": "自定义所有者电子邮件",
"LabelRSSFeedCustomOwnerName": "自定义所有者名称", "LabelRSSFeedCustomOwnerName": "自定义所有者名称",
"LabelRSSFeedPreventIndexing": "防止索引", "LabelRSSFeedPreventIndexing": "防止索引",
"LabelRSSFeedSlug": "RSS 源段", "LabelRSSFeedSlug": "RSS 源段",
"LabelRead": "阅读",
"LabelReadAgain": "再次阅读",
"LabelRecentSeries": "最近添加系列",
"LabelRecentlyAdded": "最近添加",
"LabelRemoveFromPlaylist": "从播放列表中删除",
"LabelScaleElapsedTimeBySpeed": "按速度缩放播放时间", "LabelScaleElapsedTimeBySpeed": "按速度缩放播放时间",
"LabelSeason": "季", "LabelSeason": "季",
"LabelSelectADevice": "选择设备", "LabelSelectADevice": "选择设备",
@@ -219,6 +224,7 @@
"LabelStatsMinutes": "分钟", "LabelStatsMinutes": "分钟",
"LabelStatsMinutesListening": "收听分钟数", "LabelStatsMinutesListening": "收听分钟数",
"LabelStatsWeekListening": "每周收听", "LabelStatsWeekListening": "每周收听",
"LabelStreamingUsingCellular": "Streaming using Cellular",
"LabelTag": "标签", "LabelTag": "标签",
"LabelTags": "标签", "LabelTags": "标签",
"LabelTheme": "主题", "LabelTheme": "主题",
@@ -245,8 +251,10 @@
"MessageConfirmDeleteLocalEpisode": "要从设备中删除本地剧集 \"{0}\" 吗? 服务器上的文件将不受影响.", "MessageConfirmDeleteLocalEpisode": "要从设备中删除本地剧集 \"{0}\" 吗? 服务器上的文件将不受影响.",
"MessageConfirmDeleteLocalFiles": "要从设备中删除此项目的本地文件吗? 服务器上的文件和您的进度将不受影响.", "MessageConfirmDeleteLocalFiles": "要从设备中删除此项目的本地文件吗? 服务器上的文件和您的进度将不受影响.",
"MessageConfirmDiscardProgress": "您确定要重置进度吗?", "MessageConfirmDiscardProgress": "您确定要重置进度吗?",
"MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageConfirmMarkAsFinished": "您确定要要将此项目标记为已完成吗?", "MessageConfirmMarkAsFinished": "您确定要要将此项目标记为已完成吗?",
"MessageConfirmRemoveBookmark": "您确定要删除书签吗?", "MessageConfirmRemoveBookmark": "您确定要删除书签吗?",
"MessageConfirmStreamingUsingCellular": "You are about to stream using cellular data. This may include carrier data charges. Do you wish to continue?",
"MessageDiscardProgress": "放弃进度", "MessageDiscardProgress": "放弃进度",
"MessageDownloadCompleteProcessing": "下载完成.正在处理...", "MessageDownloadCompleteProcessing": "下载完成.正在处理...",
"MessageDownloading": "下载中...", "MessageDownloading": "下载中...",
@@ -286,11 +294,13 @@
"ToastBookmarkCreateFailed": "创建书签失败", "ToastBookmarkCreateFailed": "创建书签失败",
"ToastBookmarkRemoveFailed": "书签删除失败", "ToastBookmarkRemoveFailed": "书签删除失败",
"ToastBookmarkUpdateFailed": "书签更新失败", "ToastBookmarkUpdateFailed": "书签更新失败",
"ToastDownloadNotAllowedOnCellular": "Downloading is not allowed on cellular data",
"ToastItemMarkedAsFinishedFailed": "标记为听完失败", "ToastItemMarkedAsFinishedFailed": "标记为听完失败",
"ToastItemMarkedAsNotFinishedFailed": "标记为未听完失败", "ToastItemMarkedAsNotFinishedFailed": "标记为未听完失败",
"ToastPlaylistCreateFailed": "创建播放列表失败", "ToastPlaylistCreateFailed": "创建播放列表失败",
"ToastPodcastCreateFailed": "创建播客失败", "ToastPodcastCreateFailed": "创建播客失败",
"ToastPodcastCreateSuccess": "已成功创建播客", "ToastPodcastCreateSuccess": "已成功创建播客",
"ToastRSSFeedCloseFailed": "关闭 RSS 源失败", "ToastRSSFeedCloseFailed": "关闭 RSS 源失败",
"ToastRSSFeedCloseSuccess": "RSS 源已关闭" "ToastRSSFeedCloseSuccess": "RSS 源已关闭",
"ToastStreamingNotAllowedOnCellular": "Streaming is not allowed on cellular data"
} }