Compare commits
No commits in common. "7cda82b68a095d92a5e7d192305f2628601ba79a" and "70baa873fb58f73e5a73827a0c74c1314fd1d9f1" have entirely different histories.
7cda82b68a
...
70baa873fb
|
@ -24,8 +24,7 @@ export default Vue.extend({
|
||||||
askForDownloadPath: false,
|
askForDownloadPath: false,
|
||||||
downloadBehaviorValues: [
|
downloadBehaviorValues: [
|
||||||
'download',
|
'download',
|
||||||
'open',
|
'open'
|
||||||
'add'
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -33,17 +32,10 @@ export default Vue.extend({
|
||||||
downloadPath: function() {
|
downloadPath: function() {
|
||||||
return this.$store.getters.getDownloadFolderPath
|
return this.$store.getters.getDownloadFolderPath
|
||||||
},
|
},
|
||||||
serverUrlPlaceholder: function() {
|
|
||||||
return this.$t('Settings.Download Settings.Server Url')
|
|
||||||
},
|
|
||||||
serverUrl: function() {
|
|
||||||
return this.$store.getters.getServerUrl
|
|
||||||
},
|
|
||||||
downloadBehaviorNames: function () {
|
downloadBehaviorNames: function () {
|
||||||
return [
|
return [
|
||||||
this.$t('Settings.Download Settings.Download in app'),
|
this.$t('Settings.Download Settings.Download in app'),
|
||||||
this.$t('Settings.Download Settings.Open in web browser'),
|
this.$t('Settings.Download Settings.Open in web browser')
|
||||||
this.$t('Settings.Download Settings.Add To TYTD')
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
downloadBehavior: function () {
|
downloadBehavior: function () {
|
||||||
|
@ -71,8 +63,7 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
...mapActions([
|
...mapActions([
|
||||||
'updateDownloadFolderPath',
|
'updateDownloadFolderPath',
|
||||||
'updateDownloadBehavior',
|
'updateDownloadBehavior'
|
||||||
'updateServerUrl'
|
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,20 +11,6 @@
|
||||||
@change="updateDownloadBehavior"
|
@change="updateDownloadBehavior"
|
||||||
/>
|
/>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
<ft-flex-box
|
|
||||||
v-if="downloadBehavior === 'add'"
|
|
||||||
class="settingsFlexStart500px"
|
|
||||||
>
|
|
||||||
<ft-input
|
|
||||||
class="folderDisplay"
|
|
||||||
:placeholder="serverUrlPlaceholder"
|
|
||||||
:show-action-button="false"
|
|
||||||
:show-label="false"
|
|
||||||
:disabled="false"
|
|
||||||
:value="serverUrl"
|
|
||||||
@change="updateServerUrl"
|
|
||||||
/>
|
|
||||||
</ft-flex-box>
|
|
||||||
<ft-flex-box
|
<ft-flex-box
|
||||||
v-if="downloadBehavior === 'download'"
|
v-if="downloadBehavior === 'download'"
|
||||||
class="settingsFlexStart500px"
|
class="settingsFlexStart500px"
|
||||||
|
|
|
@ -8,7 +8,6 @@ import FtShareButton from '../ft-share-button/ft-share-button.vue'
|
||||||
import { MAIN_PROFILE_ID } from '../../../constants'
|
import { MAIN_PROFILE_ID } from '../../../constants'
|
||||||
import i18n from '../../i18n/index'
|
import i18n from '../../i18n/index'
|
||||||
import { openExternalLink, showToast } from '../../helpers/utils'
|
import { openExternalLink, showToast } from '../../helpers/utils'
|
||||||
import { Notification } from 'electron'
|
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
name: 'WatchVideoInfo',
|
name: 'WatchVideoInfo',
|
||||||
|
@ -180,41 +179,17 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
downloadLinkOptions: function () {
|
downloadLinkOptions: function () {
|
||||||
if (this.downloadBehavior === 'add') {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
label: 'SD',
|
|
||||||
value: new URL(`api/AddVideoRes/1/${this.id}`, this.getServerUrl).toString()
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'HD',
|
|
||||||
value: new URL(`api/AddVideoRes/0/${this.id}`, this.getServerUrl).toString()
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Audio Only',
|
|
||||||
value: new URL(`api/AddVideoRes/2/${this.id}`, this.getServerUrl).toString()
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Video Only',
|
|
||||||
value: new URL(`api/AddVideoRes/1/${this.id}`, this.getServerUrl).toString()
|
|
||||||
}
|
|
||||||
]
|
|
||||||
} else {
|
|
||||||
return this.downloadLinks.map((download) => {
|
return this.downloadLinks.map((download) => {
|
||||||
return {
|
return {
|
||||||
label: download.label,
|
label: download.label,
|
||||||
value: download.url
|
value: download.url
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
downloadBehavior: function () {
|
downloadBehavior: function () {
|
||||||
return this.$store.getters.getDownloadBehavior
|
return this.$store.getters.getDownloadBehavior
|
||||||
},
|
},
|
||||||
getServerUrl: function() {
|
|
||||||
return this.$store.getters.getServerUrl
|
|
||||||
},
|
|
||||||
|
|
||||||
formatTypeOptions: function () {
|
formatTypeOptions: function () {
|
||||||
return [
|
return [
|
||||||
|
@ -452,12 +427,11 @@ export default Vue.extend({
|
||||||
const selectedDownloadLinkOption = this.downloadLinkOptions[index]
|
const selectedDownloadLinkOption = this.downloadLinkOptions[index]
|
||||||
const url = selectedDownloadLinkOption.value
|
const url = selectedDownloadLinkOption.value
|
||||||
const linkName = selectedDownloadLinkOption.label
|
const linkName = selectedDownloadLinkOption.label
|
||||||
|
const extension = this.grabExtensionFromUrl(linkName)
|
||||||
|
|
||||||
if (this.downloadBehavior === 'open') {
|
if (this.downloadBehavior === 'open') {
|
||||||
openExternalLink(url)
|
openExternalLink(url)
|
||||||
} else if (this.downloadBehavior === 'add') {
|
|
||||||
fetch(url).then(e => e.text()).then(new Notification('Added to downloader'))
|
|
||||||
} else {
|
} else {
|
||||||
const extension = this.grabExtensionFromUrl(linkName)
|
|
||||||
this.downloadMedia({
|
this.downloadMedia({
|
||||||
url: url,
|
url: url,
|
||||||
title: this.title,
|
title: this.title,
|
||||||
|
|
|
@ -264,7 +264,6 @@ const state = {
|
||||||
videoPlaybackRateMouseScroll: false,
|
videoPlaybackRateMouseScroll: false,
|
||||||
videoPlaybackRateInterval: 0.25,
|
videoPlaybackRateInterval: 0.25,
|
||||||
downloadFolderPath: '',
|
downloadFolderPath: '',
|
||||||
serverUrl: 'http://127.0.0.1:3252/',
|
|
||||||
downloadBehavior: 'download',
|
downloadBehavior: 'download',
|
||||||
enableScreenshot: false,
|
enableScreenshot: false,
|
||||||
screenshotFormat: 'png',
|
screenshotFormat: 'png',
|
||||||
|
|
|
@ -148,8 +148,7 @@ Settings:
|
||||||
Current instance will be randomized on startup: Beim Start wird eine zufällige
|
Current instance will be randomized on startup: Beim Start wird eine zufällige
|
||||||
Instanz festgelegt
|
Instanz festgelegt
|
||||||
No default instance has been set: Es wurde keine Standardinstanz gesetzt
|
No default instance has been set: Es wurde keine Standardinstanz gesetzt
|
||||||
The currently set default instance is {instance}: Die aktuelle Standardinstanz
|
The currently set default instance is {instance}: Die aktuelle Standardinstanz ist {instance}
|
||||||
ist {instance}
|
|
||||||
Current Invidious Instance: Aktuelle Invidious-Instanz
|
Current Invidious Instance: Aktuelle Invidious-Instanz
|
||||||
Clear Default Instance: Standardinstanz zurücksetzen
|
Clear Default Instance: Standardinstanz zurücksetzen
|
||||||
Set Current Instance as Default: Derzeitige Instanz als Standard festlegen
|
Set Current Instance as Default: Derzeitige Instanz als Standard festlegen
|
||||||
|
@ -366,8 +365,8 @@ Settings:
|
||||||
Manage Subscriptions: Abonnements verwalten
|
Manage Subscriptions: Abonnements verwalten
|
||||||
Export Playlists: Wiedergabelisten exportieren
|
Export Playlists: Wiedergabelisten exportieren
|
||||||
Import Playlists: Wiedergabelisten importieren
|
Import Playlists: Wiedergabelisten importieren
|
||||||
Playlist insufficient data: Unzureichende Daten für „{playlist}“-Wiedergabeliste,
|
Playlist insufficient data: Unzureichende Daten für „{playlist}“-Wiedergabeliste, Element
|
||||||
Element übersprungen
|
übersprungen
|
||||||
All playlists has been successfully imported: Alle Wiedergabelisten wurden erfolgreich
|
All playlists has been successfully imported: Alle Wiedergabelisten wurden erfolgreich
|
||||||
importiert
|
importiert
|
||||||
All playlists has been successfully exported: Alle Wiedergabelisten wurden erfolgreich
|
All playlists has been successfully exported: Alle Wiedergabelisten wurden erfolgreich
|
||||||
|
@ -446,12 +445,6 @@ Settings:
|
||||||
Hide Unsubscribe Button: „Abo entfernen“-Schaltfläche ausblenden
|
Hide Unsubscribe Button: „Abo entfernen“-Schaltfläche ausblenden
|
||||||
Show Family Friendly Only: Nur familienfreundlich anzeigen
|
Show Family Friendly Only: Nur familienfreundlich anzeigen
|
||||||
Hide Search Bar: Suchleiste ausblenden
|
Hide Search Bar: Suchleiste ausblenden
|
||||||
Experimental Settings:
|
|
||||||
Experimental Settings: Experimentelle Einstellungen
|
|
||||||
Warning: Diese Einstellungen sind experimentell und können zu Abstürzen führen,
|
|
||||||
wenn sie aktiviert sind. Es wird dringend empfohlen, Sicherungskopien zu erstellen.
|
|
||||||
Verwendung auf eigene Gefahr!
|
|
||||||
Replace HTTP Cache: HTTP-Cache ersetzen
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: Über
|
About: Über
|
||||||
|
@ -550,8 +543,7 @@ Channel:
|
||||||
Channel Description: Kanalbeschreibung
|
Channel Description: Kanalbeschreibung
|
||||||
Featured Channels: Empfohlene Kanäle
|
Featured Channels: Empfohlene Kanäle
|
||||||
Added channel to your subscriptions: Der Kanal wurde deinen Abonnements hinzugefügt
|
Added channel to your subscriptions: Der Kanal wurde deinen Abonnements hinzugefügt
|
||||||
Removed subscription from {count} other channel(s): Es wurden {count} anderen Kanälen
|
Removed subscription from {count} other channel(s): Es wurden {count} anderen Kanälen deabonniert
|
||||||
deabonniert
|
|
||||||
Channel has been removed from your subscriptions: Der Kanal wurde von deinen Abonnements
|
Channel has been removed from your subscriptions: Der Kanal wurde von deinen Abonnements
|
||||||
entfernt
|
entfernt
|
||||||
Video:
|
Video:
|
||||||
|
@ -694,7 +686,7 @@ Video:
|
||||||
Video statistics are not available for legacy videos: Videostatistiken sind für
|
Video statistics are not available for legacy videos: Videostatistiken sind für
|
||||||
ältere Videos nicht verfügbar
|
ältere Videos nicht verfügbar
|
||||||
Premieres in: Premieren in
|
Premieres in: Premieren in
|
||||||
Premieres: Premiere
|
Premieres: Premieren
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
|
@ -811,8 +803,7 @@ Profile:
|
||||||
Your default profile has been changed to your primary profile: Dein Hauptprofil
|
Your default profile has been changed to your primary profile: Dein Hauptprofil
|
||||||
wurde als Standardprofil festgelegt
|
wurde als Standardprofil festgelegt
|
||||||
Removed {profile} from your profiles: '{profile} wurde aus deinen Profilen entfernt'
|
Removed {profile} from your profiles: '{profile} wurde aus deinen Profilen entfernt'
|
||||||
Your default profile has been set to {profile}: '{profile} wurde als Standardprofil
|
Your default profile has been set to {profile}: '{profile} wurde als Standardprofil festgelegt'
|
||||||
festgelegt'
|
|
||||||
Profile has been created: Das Profil wurde erstellt
|
Profile has been created: Das Profil wurde erstellt
|
||||||
Profile has been updated: Das Profil wurde aktualisiert
|
Profile has been updated: Das Profil wurde aktualisiert
|
||||||
Your profile name cannot be empty: Der Profilname darf nicht leer sein
|
Your profile name cannot be empty: Der Profilname darf nicht leer sein
|
||||||
|
@ -850,11 +841,11 @@ Profile:
|
||||||
Profile Filter: Profilfilter
|
Profile Filter: Profilfilter
|
||||||
Profile Settings: Profileinstellungen
|
Profile Settings: Profileinstellungen
|
||||||
The playlist has been reversed: Die Wiedergabeliste wurde umgedreht
|
The playlist has been reversed: Die Wiedergabeliste wurde umgedreht
|
||||||
A new blog is now available, {blogTitle}. Click to view more: Ein neuer Blogeintrag
|
A new blog is now available, {blogTitle}. Click to view more: Ein neuer Blogeintrag ist verfügbar,
|
||||||
ist verfügbar, {blogTitle}. Um ihn zu öffnen klicken
|
{blogTitle}. Um ihn zu öffnen klicken
|
||||||
Download From Site: Von der Website herunterladen
|
Download From Site: Von der Website herunterladen
|
||||||
Version {versionNumber} is now available! Click for more details: Version {versionNumber}
|
Version {versionNumber} is now available! Click for more details: Version {versionNumber} ist jetzt verfügbar! Für
|
||||||
ist jetzt verfügbar! Für mehr Details klicken
|
mehr Details klicken
|
||||||
Tooltips:
|
Tooltips:
|
||||||
General Settings:
|
General Settings:
|
||||||
Thumbnail Preference: Alle Vorschaubilder in FreeTube werden durch ein Standbild
|
Thumbnail Preference: Alle Vorschaubilder in FreeTube werden durch ein Standbild
|
||||||
|
@ -912,10 +903,6 @@ Tooltips:
|
||||||
unterstützt) im externen Player öffnen können. Achtung, die Einstellungen von
|
unterstützt) im externen Player öffnen können. Achtung, die Einstellungen von
|
||||||
Invidious wirken sich nicht auf externe Player aus.
|
Invidious wirken sich nicht auf externe Player aus.
|
||||||
DefaultCustomArgumentsTemplate: '(Standardwert: „{defaultCustomArguments}“)'
|
DefaultCustomArgumentsTemplate: '(Standardwert: „{defaultCustomArguments}“)'
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Deaktiviert den festplattenbasierten HTTP-Cache von Electron
|
|
||||||
und aktiviert einen benutzerdefinierten In-Memory-Image-Cache. Dies führt zu
|
|
||||||
einer erhöhten Nutzung des Direktzugriffsspeichers.
|
|
||||||
Playing Next Video Interval: Nächstes Video wird sofort abgespielt. Zum Abbrechen
|
Playing Next Video Interval: Nächstes Video wird sofort abgespielt. Zum Abbrechen
|
||||||
klicken. | Nächstes Video wird in {nextVideoInterval} Sekunden abgespielt. Zum Abbrechen
|
klicken. | Nächstes Video wird in {nextVideoInterval} Sekunden abgespielt. Zum Abbrechen
|
||||||
klicken. | Nächstes Video wird in {nextVideoInterval} Sekunden abgespielt. Zum Abbrechen
|
klicken. | Nächstes Video wird in {nextVideoInterval} Sekunden abgespielt. Zum Abbrechen
|
||||||
|
@ -927,8 +914,8 @@ Unknown YouTube url type, cannot be opened in app: Unbekannte YouTube-Adresse, k
|
||||||
in FreeTube nicht geöffnet werden
|
in FreeTube nicht geöffnet werden
|
||||||
Open New Window: Neues Fenster öffnen
|
Open New Window: Neues Fenster öffnen
|
||||||
Default Invidious instance has been cleared: Standard-Invidious-Instanz wurde zurückgesetzt
|
Default Invidious instance has been cleared: Standard-Invidious-Instanz wurde zurückgesetzt
|
||||||
Default Invidious instance has been set to {instance}: Standard-Invidious-Instanz
|
Default Invidious instance has been set to {instance}: Standard-Invidious-Instanz wurde auf
|
||||||
wurde auf {instance} gesetzt
|
{instance} gesetzt
|
||||||
Search Bar:
|
Search Bar:
|
||||||
Clear Input: Eingabe löschen
|
Clear Input: Eingabe löschen
|
||||||
Are you sure you want to open this link?: Bist du sicher, dass du diesen Link öffnen
|
Are you sure you want to open this link?: Bist du sicher, dass du diesen Link öffnen
|
||||||
|
@ -954,8 +941,7 @@ Channels:
|
||||||
Empty: Ihre Kanalliste ist derzeit leer.
|
Empty: Ihre Kanalliste ist derzeit leer.
|
||||||
Unsubscribe: Abo entfernen
|
Unsubscribe: Abo entfernen
|
||||||
Unsubscribed: '{channelName} wurde aus deinen Abonnements entfernt'
|
Unsubscribed: '{channelName} wurde aus deinen Abonnements entfernt'
|
||||||
Unsubscribe Prompt: Bist du sicher, dass du „{channelName}“ aus dem Abos entfernen
|
Unsubscribe Prompt: Bist du sicher, dass du „{channelName}“ aus dem Abos entfernen willst?
|
||||||
willst?
|
|
||||||
Clipboard:
|
Clipboard:
|
||||||
Copy failed: Kopieren in die Zwischenablage fehlgeschlagen
|
Copy failed: Kopieren in die Zwischenablage fehlgeschlagen
|
||||||
Cannot access clipboard without a secure connection: Zugriff auf die Zwischenablage
|
Cannot access clipboard without a secure connection: Zugriff auf die Zwischenablage
|
||||||
|
|
|
@ -406,7 +406,6 @@ Settings:
|
||||||
Download Behavior: Download Behavior
|
Download Behavior: Download Behavior
|
||||||
Download in app: Download in app
|
Download in app: Download in app
|
||||||
Open in web browser: Open in web browser
|
Open in web browser: Open in web browser
|
||||||
Add To TYTD: Add To TYTD
|
|
||||||
Experimental Settings:
|
Experimental Settings:
|
||||||
Experimental Settings: Experimental Settings
|
Experimental Settings: Experimental Settings
|
||||||
Warning: These settings are experimental, they make cause crashes while enabled. Making backups is highly recommended. Use at your own risk!
|
Warning: These settings are experimental, they make cause crashes while enabled. Making backups is highly recommended. Use at your own risk!
|
||||||
|
|
|
@ -436,11 +436,6 @@ Settings:
|
||||||
Parental Control Settings: Parental control settings
|
Parental Control Settings: Parental control settings
|
||||||
Show Family Friendly Only: Show family-friendly only
|
Show Family Friendly Only: Show family-friendly only
|
||||||
Hide Search Bar: Hide search bar
|
Hide Search Bar: Hide search bar
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Replace HTTP cache
|
|
||||||
Experimental Settings: Experimental settings
|
|
||||||
Warning: These settings are experimental; they may cause crashes while enabled.
|
|
||||||
Making back-ups is highly recommended. Use at your own risk!
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: About
|
About: About
|
||||||
|
@ -851,9 +846,6 @@ Tooltips:
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
Remove Video Meta Files: When enabled, FreeTube automatically deletes meta files
|
Remove Video Meta Files: When enabled, FreeTube automatically deletes meta files
|
||||||
created during video playback, when the watch page is closed.
|
created during video playback, when the watch page is closed.
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Disables Electron's disk-based HTTP cache and enables a custom
|
|
||||||
in-memory image cache. Will lead to increased RAM usage.
|
|
||||||
Playing Next Video Interval: Playing next video in no time. Click to cancel. | Playing
|
Playing Next Video Interval: Playing next video in no time. Click to cancel. | Playing
|
||||||
next video in {nextVideoInterval} second. Click to cancel. | Playing next video
|
next video in {nextVideoInterval} second. Click to cancel. | Playing next video
|
||||||
in {nextVideoInterval} seconds. Click to cancel.
|
in {nextVideoInterval} seconds. Click to cancel.
|
||||||
|
|
|
@ -144,8 +144,8 @@ Settings:
|
||||||
Current instance will be randomized on startup: La instancia actual será elegida
|
Current instance will be randomized on startup: La instancia actual será elegida
|
||||||
aleatoriamente al inicio
|
aleatoriamente al inicio
|
||||||
No default instance has been set: No se ha especificado una instancia predeterminada
|
No default instance has been set: No se ha especificado una instancia predeterminada
|
||||||
The currently set default instance is {instance}: La instancia predeterminada
|
The currently set default instance is {instance}: La instancia predeterminada actual es
|
||||||
actual es {instance}
|
{instance}
|
||||||
Current Invidious Instance: Instancia actual de Invidious
|
Current Invidious Instance: Instancia actual de Invidious
|
||||||
Clear Default Instance: Quitar la instancia por defecto
|
Clear Default Instance: Quitar la instancia por defecto
|
||||||
Set Current Instance as Default: Establecer la instancia actual como la instancia
|
Set Current Instance as Default: Establecer la instancia actual como la instancia
|
||||||
|
@ -436,8 +436,6 @@ Settings:
|
||||||
Hide Search Bar: Ocultar barra de búsqueda
|
Hide Search Bar: Ocultar barra de búsqueda
|
||||||
Parental Control Settings: Ajustes del Control Parental
|
Parental Control Settings: Ajustes del Control Parental
|
||||||
Show Family Friendly Only: Mostrar solo lo apto para las familias
|
Show Family Friendly Only: Mostrar solo lo apto para las familias
|
||||||
Experimental Settings:
|
|
||||||
Experimental Settings: Ajustes experimentales
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: 'Acerca de'
|
About: 'Acerca de'
|
||||||
|
@ -477,7 +475,7 @@ About:
|
||||||
room rules: reglas de la sala
|
room rules: reglas de la sala
|
||||||
Please read the: Por favor, lee las
|
Please read the: Por favor, lee las
|
||||||
Chat on Matrix: Chat en Matrix
|
Chat on Matrix: Chat en Matrix
|
||||||
Mastodon: Mastodon (red social)
|
Mastodon: Mastodon (Red Social)
|
||||||
Email: Correo electrónico
|
Email: Correo electrónico
|
||||||
Blog: Blog
|
Blog: Blog
|
||||||
Website: Sitio web
|
Website: Sitio web
|
||||||
|
@ -513,8 +511,8 @@ Profile:
|
||||||
Your profile name cannot be empty: 'Tu nombre de perfil no puede estar vacío'
|
Your profile name cannot be empty: 'Tu nombre de perfil no puede estar vacío'
|
||||||
Profile has been created: 'Se ha creado el perfil'
|
Profile has been created: 'Se ha creado el perfil'
|
||||||
Profile has been updated: 'El perfil se ha actualizado'
|
Profile has been updated: 'El perfil se ha actualizado'
|
||||||
Your default profile has been set to {profile}: 'Tu perfil predeterminado se ha
|
Your default profile has been set to {profile}: 'Tu perfil predeterminado se ha establecido
|
||||||
establecido como {profile}'
|
como {profile}'
|
||||||
Removed {profile} from your profiles: 'Eliminado {profile} de tus perfiles'
|
Removed {profile} from your profiles: 'Eliminado {profile} de tus perfiles'
|
||||||
Your default profile has been changed to your primary profile: 'Tu perfil predeterminado
|
Your default profile has been changed to your primary profile: 'Tu perfil predeterminado
|
||||||
ha sido cambiado a tu perfil principal'
|
ha sido cambiado a tu perfil principal'
|
||||||
|
@ -567,8 +565,7 @@ Channel:
|
||||||
Channel Description: 'Descripción del canal'
|
Channel Description: 'Descripción del canal'
|
||||||
Featured Channels: 'Canales destacados'
|
Featured Channels: 'Canales destacados'
|
||||||
Added channel to your subscriptions: Canal añadido a tus suscripciones
|
Added channel to your subscriptions: Canal añadido a tus suscripciones
|
||||||
Removed subscription from {count} other channel(s): Suscripción eliminada de {count}
|
Removed subscription from {count} other channel(s): Suscripción eliminada de {count} otros canales
|
||||||
otros canales
|
|
||||||
Channel has been removed from your subscriptions: El canal ha sido eliminado de
|
Channel has been removed from your subscriptions: El canal ha sido eliminado de
|
||||||
tus suscripciones
|
tus suscripciones
|
||||||
Video:
|
Video:
|
||||||
|
@ -811,11 +808,11 @@ Canceled next video autoplay: 'La reproducción del vídeo siguiente se ha cance
|
||||||
|
|
||||||
Yes: 'Sí'
|
Yes: 'Sí'
|
||||||
No: 'No'
|
No: 'No'
|
||||||
A new blog is now available, {blogTitle}. Click to view more: 'Nueva publicación del
|
A new blog is now available, {blogTitle}. Click to view more: 'Nueva publicación del blog disponible,
|
||||||
blog disponible, {blogTitle}. Haga clic para saber más'
|
{blogTitle}. Haga clic para saber más'
|
||||||
Download From Site: Descargar desde el sitio web
|
Download From Site: Descargar desde el sitio web
|
||||||
Version {versionNumber} is now available! Click for more details: ¡La versión {versionNumber}
|
Version {versionNumber} is now available! Click for more details: ¡La versión {versionNumber} está disponible!
|
||||||
está disponible! Haz clic para saber más
|
Haz clic para saber más
|
||||||
The playlist has been reversed: Orden de lista de reproducción invertido
|
The playlist has been reversed: Orden de lista de reproducción invertido
|
||||||
This video is unavailable because of missing formats. This can happen due to country unavailability.: Este
|
This video is unavailable because of missing formats. This can happen due to country unavailability.: Este
|
||||||
vídeo no está disponible por no tener un formato válido. Esto puede suceder por
|
vídeo no está disponible por no tener un formato válido. Esto puede suceder por
|
||||||
|
@ -917,8 +914,7 @@ Age Restricted:
|
||||||
Type:
|
Type:
|
||||||
Channel: Canal
|
Channel: Canal
|
||||||
Video: Vídeo
|
Video: Vídeo
|
||||||
This {videoOrPlaylist} is age restricted: Este {videoOrPlaylist} tiene restricción
|
This {videoOrPlaylist} is age restricted: Este {videoOrPlaylist} tiene restricción de edad
|
||||||
de edad
|
|
||||||
Clipboard:
|
Clipboard:
|
||||||
Copy failed: Error al copiar al portapapeles
|
Copy failed: Error al copiar al portapapeles
|
||||||
Cannot access clipboard without a secure connection: No se puede acceder al portapapeles
|
Cannot access clipboard without a secure connection: No se puede acceder al portapapeles
|
||||||
|
|
|
@ -434,12 +434,6 @@ Settings:
|
||||||
Hide Unsubscribe Button: Piilota Peruuta tilaus -paninike
|
Hide Unsubscribe Button: Piilota Peruuta tilaus -paninike
|
||||||
Show Family Friendly Only: Näytä vain koko perheelle sopiva sisältö
|
Show Family Friendly Only: Näytä vain koko perheelle sopiva sisältö
|
||||||
Hide Search Bar: Piilota hakupalkki
|
Hide Search Bar: Piilota hakupalkki
|
||||||
Experimental Settings:
|
|
||||||
Experimental Settings: Kokeelliset asetukset
|
|
||||||
Warning: Nämä asetukset ovat kokeellisia ja ne aiheuttavat kaatumisia, kun ne
|
|
||||||
ovat käytössä. Varmuuskopioiden tekeminen on erittäin suositeltavaa. Käytä omalla
|
|
||||||
vastuullasi!
|
|
||||||
Replace HTTP Cache: Korvaa HTTP-välimuisti
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: 'Tietoja'
|
About: 'Tietoja'
|
||||||
|
@ -858,10 +852,6 @@ Tooltips:
|
||||||
avaamiseen (soittoluettelonkin avaamiseen jos tuettu) ulkoisessa toistimessa.
|
avaamiseen (soittoluettelonkin avaamiseen jos tuettu) ulkoisessa toistimessa.
|
||||||
Varoitus, Invidious-asetukset eivät vaikuta ulkoisiin toistimiin.
|
Varoitus, Invidious-asetukset eivät vaikuta ulkoisiin toistimiin.
|
||||||
DefaultCustomArgumentsTemplate: "(Oletus: '{defaultCustomArguments}')"
|
DefaultCustomArgumentsTemplate: "(Oletus: '{defaultCustomArguments}')"
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Poistaa Electronin levypohjaisen HTTP-välimuistin käytöstä
|
|
||||||
ja ottaa käyttöön mukautetun muistissa olevan kuvavälimuistin. Lisää välimuistin
|
|
||||||
käyttöä.
|
|
||||||
More: Lisää
|
More: Lisää
|
||||||
Playing Next Video Interval: Seuraava video alkaa. Klikkaa peruuttaaksesi. |Seuraava
|
Playing Next Video Interval: Seuraava video alkaa. Klikkaa peruuttaaksesi. |Seuraava
|
||||||
video alkaa {nextVideoInterval} sekunnin kuluttua. Klikkaa peruuttaaksesi. | Seuraava
|
video alkaa {nextVideoInterval} sekunnin kuluttua. Klikkaa peruuttaaksesi. | Seuraava
|
||||||
|
|
|
@ -153,8 +153,8 @@ Settings:
|
||||||
Current instance will be randomized on startup: L'instance actuelle sera choisie
|
Current instance will be randomized on startup: L'instance actuelle sera choisie
|
||||||
au hasard au démarrage
|
au hasard au démarrage
|
||||||
No default instance has been set: Aucune instance par défaut n'a été définie
|
No default instance has been set: Aucune instance par défaut n'a été définie
|
||||||
The currently set default instance is {instance}: L'instance par défaut actuellement
|
The currently set default instance is {instance}: L'instance par défaut actuellement définie
|
||||||
définie est {instance}
|
est {instance}
|
||||||
Current Invidious Instance: Instance Invidious actuelle
|
Current Invidious Instance: Instance Invidious actuelle
|
||||||
External Link Handling:
|
External Link Handling:
|
||||||
No Action: Aucune action
|
No Action: Aucune action
|
||||||
|
@ -459,12 +459,6 @@ Settings:
|
||||||
Hide Search Bar: Masquer la barre de recherche
|
Hide Search Bar: Masquer la barre de recherche
|
||||||
Parental Control Settings: Paramètres du contrôle parental
|
Parental Control Settings: Paramètres du contrôle parental
|
||||||
Show Family Friendly Only: Afficher uniquement le contenu familial
|
Show Family Friendly Only: Afficher uniquement le contenu familial
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Remplacer le cache HTTP
|
|
||||||
Experimental Settings: Paramètres expérimentaux
|
|
||||||
Warning: Ces paramètres sont expérimentaux ; ils peuvent provoquer des plantages
|
|
||||||
lorsqu'ils sont activés. Il est fortement recommandé de faire des sauvegardes.
|
|
||||||
Utilisez-les à vos risques et périls !
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: 'À propos'
|
About: 'À propos'
|
||||||
|
@ -563,8 +557,8 @@ Channel:
|
||||||
Channel Description: 'Description de la chaîne'
|
Channel Description: 'Description de la chaîne'
|
||||||
Featured Channels: 'Chaînes en vedette'
|
Featured Channels: 'Chaînes en vedette'
|
||||||
Added channel to your subscriptions: Chaîne ajoutée à vos abonnements
|
Added channel to your subscriptions: Chaîne ajoutée à vos abonnements
|
||||||
Removed subscription from {count} other channel(s): Abonnement supprimé de {count}
|
Removed subscription from {count} other channel(s): Abonnement supprimé de {count} autre(s)
|
||||||
autre(s) chaîne(s)
|
chaîne(s)
|
||||||
Channel has been removed from your subscriptions: La chaîne a été retirée de vos
|
Channel has been removed from your subscriptions: La chaîne a été retirée de vos
|
||||||
abonnements
|
abonnements
|
||||||
Video:
|
Video:
|
||||||
|
@ -815,8 +809,7 @@ Profile:
|
||||||
Your default profile has been changed to your primary profile: Votre profil par
|
Your default profile has been changed to your primary profile: Votre profil par
|
||||||
défaut a été modifié en votre profil principal
|
défaut a été modifié en votre profil principal
|
||||||
Removed {profile} from your profiles: Supprimer {profile} de vos profils
|
Removed {profile} from your profiles: Supprimer {profile} de vos profils
|
||||||
Your default profile has been set to {profile}: Votre profil par défaut a été fixé
|
Your default profile has been set to {profile}: Votre profil par défaut a été fixé à {profile}
|
||||||
à {profile}
|
|
||||||
Profile has been updated: Le profil a été mis à jour
|
Profile has been updated: Le profil a été mis à jour
|
||||||
Profile has been created: Le profil a été créé
|
Profile has been created: Le profil a été créé
|
||||||
Your profile name cannot be empty: Le nom de votre profil ne peut pas être vide
|
Your profile name cannot be empty: Le nom de votre profil ne peut pas être vide
|
||||||
|
@ -855,11 +848,11 @@ Profile:
|
||||||
Profile Filter: Filtre de profil
|
Profile Filter: Filtre de profil
|
||||||
Profile Settings: Paramètres du profil
|
Profile Settings: Paramètres du profil
|
||||||
The playlist has been reversed: La liste de lecture a été inversée
|
The playlist has been reversed: La liste de lecture a été inversée
|
||||||
A new blog is now available, {blogTitle}. Click to view more: Un nouveau billet est
|
A new blog is now available, {blogTitle}. Click to view more: Un nouveau billet est maintenant
|
||||||
maintenant disponible, {blogTitle}. Cliquez pour en savoir plus
|
disponible, {blogTitle}. Cliquez pour en savoir plus
|
||||||
Download From Site: Télécharger depuis le site
|
Download From Site: Télécharger depuis le site
|
||||||
Version {versionNumber} is now available! Click for more details: La version {versionNumber}
|
Version {versionNumber} is now available! Click for more details: La version {versionNumber} est maintenant disponible
|
||||||
est maintenant disponible ! Cliquez pour plus de détails
|
! Cliquez pour plus de détails
|
||||||
This video is unavailable because of missing formats. This can happen due to country unavailability.: Cette
|
This video is unavailable because of missing formats. This can happen due to country unavailability.: Cette
|
||||||
vidéo est indisponible car elle n'est pas dans un format valide. Cela peut arriver
|
vidéo est indisponible car elle n'est pas dans un format valide. Cela peut arriver
|
||||||
en raison de restrictions d'accès dans certains pays.
|
en raison de restrictions d'accès dans certains pays.
|
||||||
|
@ -926,10 +919,6 @@ Tooltips:
|
||||||
qui ouvrira la vidéo (liste de lecture, si prise en charge) dans le lecteur
|
qui ouvrira la vidéo (liste de lecture, si prise en charge) dans le lecteur
|
||||||
externe. Attention, les paramètres Invidious n'affectent pas les lecteurs externes.
|
externe. Attention, les paramètres Invidious n'affectent pas les lecteurs externes.
|
||||||
DefaultCustomArgumentsTemplate: '(Par défaut : « {defaultCustomArguments} »)'
|
DefaultCustomArgumentsTemplate: '(Par défaut : « {defaultCustomArguments} »)'
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Désactive le cache HTTP d'Electron basé sur le disque et active
|
|
||||||
un cache d'image personnalisé en mémoire. Ceci entraînera une augmentation de
|
|
||||||
l'utilisation de la mémoire vive.
|
|
||||||
More: Plus
|
More: Plus
|
||||||
Playing Next Video Interval: Lecture de la prochaine vidéo en un rien de temps. Cliquez
|
Playing Next Video Interval: Lecture de la prochaine vidéo en un rien de temps. Cliquez
|
||||||
pour annuler. | Lecture de la prochaine vidéo dans {nextVideoInterval} seconde.
|
pour annuler. | Lecture de la prochaine vidéo dans {nextVideoInterval} seconde.
|
||||||
|
@ -942,8 +931,8 @@ Unknown YouTube url type, cannot be opened in app: Type d'URL YouTube inconnu, n
|
||||||
Open New Window: Ouvrir une nouvelle fenêtre
|
Open New Window: Ouvrir une nouvelle fenêtre
|
||||||
Default Invidious instance has been cleared: L'instance Invidious par défaut a été
|
Default Invidious instance has been cleared: L'instance Invidious par défaut a été
|
||||||
effacée
|
effacée
|
||||||
Default Invidious instance has been set to {instance}: L'instance Invidious par défaut
|
Default Invidious instance has been set to {instance}: L'instance Invidious par défaut a été
|
||||||
a été définie sur {instance}
|
définie sur {instance}
|
||||||
Search Bar:
|
Search Bar:
|
||||||
Clear Input: Effacer l'entrée
|
Clear Input: Effacer l'entrée
|
||||||
Are you sure you want to open this link?: Êtes-vous sûr(e) de vouloir ouvrir ce lien ?
|
Are you sure you want to open this link?: Êtes-vous sûr(e) de vouloir ouvrir ce lien ?
|
||||||
|
@ -962,8 +951,7 @@ Age Restricted:
|
||||||
Type:
|
Type:
|
||||||
Video: Vidéo
|
Video: Vidéo
|
||||||
Channel: Chaîne
|
Channel: Chaîne
|
||||||
This {videoOrPlaylist} is age restricted: Ce {videoOrPlaylist} est soumis à une
|
This {videoOrPlaylist} is age restricted: Ce {videoOrPlaylist} est soumis à une limite d'âge
|
||||||
limite d'âge
|
|
||||||
Channels:
|
Channels:
|
||||||
Channels: Chaînes
|
Channels: Chaînes
|
||||||
Title: Liste des chaînes
|
Title: Liste des chaînes
|
||||||
|
|
|
@ -438,7 +438,7 @@ About:
|
||||||
room rules: ルームの規則
|
room rules: ルームの規則
|
||||||
Please read the: 確認してください
|
Please read the: 確認してください
|
||||||
Chat on Matrix: Matrix でチャット
|
Chat on Matrix: Matrix でチャット
|
||||||
Mastodon: マストドン
|
Mastodon: Mastodon
|
||||||
Email: メールアドレス
|
Email: メールアドレス
|
||||||
Blog: ブログ
|
Blog: ブログ
|
||||||
Website: WEB サイト
|
Website: WEB サイト
|
||||||
|
|
|
@ -313,10 +313,10 @@ Settings:
|
||||||
Are you sure you want to remove your entire watch history?: Jesteś pewny/a, że
|
Are you sure you want to remove your entire watch history?: Jesteś pewny/a, że
|
||||||
chcesz usunąć całą historię oglądania?
|
chcesz usunąć całą historię oglądania?
|
||||||
Remove Watch History: Usuń historię oglądania
|
Remove Watch History: Usuń historię oglądania
|
||||||
Search cache has been cleared: Plik pamięci podręcznej wyszukiwań został wyczyszczony
|
Search cache has been cleared: Plik cache wyszukiwań został wyczyszczony
|
||||||
Are you sure you want to clear out your search cache?: Jesteś pewny/a, że chcesz
|
Are you sure you want to clear out your search cache?: Jesteś pewny/a, że chcesz
|
||||||
wyczyścić plik pamięci podręcznej wyszukiwań?
|
wyczyścić plik cache wyszukiwań?
|
||||||
Clear Search Cache: Wyczyść plik pamięci podręcznej wyszukiwań
|
Clear Search Cache: Wyczyść plik cache wyszukiwań
|
||||||
Save Watched Progress: Zapisuj postęp odtwarzania
|
Save Watched Progress: Zapisuj postęp odtwarzania
|
||||||
Remember History: Pamiętaj historię
|
Remember History: Pamiętaj historię
|
||||||
Privacy Settings: Ustawienia prywatności
|
Privacy Settings: Ustawienia prywatności
|
||||||
|
@ -445,11 +445,6 @@ Settings:
|
||||||
Hide Unsubscribe Button: Schowaj przycisk „Odsubskrybuj”
|
Hide Unsubscribe Button: Schowaj przycisk „Odsubskrybuj”
|
||||||
Show Family Friendly Only: Pokazuj tylko filmy przyjazne rodzinie
|
Show Family Friendly Only: Pokazuj tylko filmy przyjazne rodzinie
|
||||||
Hide Search Bar: Schowaj pole wyszukiwania
|
Hide Search Bar: Schowaj pole wyszukiwania
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Zastąp pamięć podręczną HTTP
|
|
||||||
Experimental Settings: Ustawienia eksperymentalne
|
|
||||||
Warning: Te ustawienia są w fazie testów i po włączeniu mogą spowodować wywalenie
|
|
||||||
się programu. Zalecane jest stworzenie kopii zapasowej. Używaj na własne ryzyko!
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: 'O projekcie'
|
About: 'O projekcie'
|
||||||
|
@ -894,10 +889,6 @@ Tooltips:
|
||||||
jest do znalezienia za pomocą zmiennej środowiskowej PATH. Jeśli trzeba, można
|
jest do znalezienia za pomocą zmiennej środowiskowej PATH. Jeśli trzeba, można
|
||||||
tutaj ustawić niestandardową ścieżkę.
|
tutaj ustawić niestandardową ścieżkę.
|
||||||
DefaultCustomArgumentsTemplate: "(Domyślnie: '{defaultCustomArguments}')"
|
DefaultCustomArgumentsTemplate: "(Domyślnie: '{defaultCustomArguments}')"
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Wyłącza opartą na przestrzeni dyskowej pamięć podręczną HTTP
|
|
||||||
Electrona i włącza własny obraz pamięci podręcznej wewnątrz pamięci RAM. Spowoduje
|
|
||||||
to większe użycie pamięci RAM.
|
|
||||||
Playing Next Video Interval: Odtwarzanie kolejnego filmu już za chwilę. Wciśnij aby
|
Playing Next Video Interval: Odtwarzanie kolejnego filmu już za chwilę. Wciśnij aby
|
||||||
przerwać. | Odtwarzanie kolejnego filmu za {nextVideoInterval} sekundę. Wciśnij
|
przerwać. | Odtwarzanie kolejnego filmu za {nextVideoInterval} sekundę. Wciśnij
|
||||||
aby przerwać. | Odtwarzanie kolejnego filmu za {nextVideoInterval} sekund. Wciśnij
|
aby przerwać. | Odtwarzanie kolejnego filmu za {nextVideoInterval} sekund. Wciśnij
|
||||||
|
|
|
@ -78,9 +78,6 @@ Subscriptions:
|
||||||
perfil tem um grande número de inscrições. Forçando RSS para evitar limitação
|
perfil tem um grande número de inscrições. Forçando RSS para evitar limitação
|
||||||
de rede
|
de rede
|
||||||
Error Channels: Canais com erros
|
Error Channels: Canais com erros
|
||||||
Disabled Automatic Fetching: Você desativou a busca automática de assinaturas. Atualize-as
|
|
||||||
para vê-las aqui.
|
|
||||||
Empty Channels: No momento, seus canais inscritos não têm vídeos.
|
|
||||||
Trending:
|
Trending:
|
||||||
Trending: 'Em alta'
|
Trending: 'Em alta'
|
||||||
Trending Tabs: Abas de Tendências
|
Trending Tabs: Abas de Tendências
|
||||||
|
@ -141,8 +138,8 @@ Settings:
|
||||||
Invidious
|
Invidious
|
||||||
System Default: Padrão do Sistema
|
System Default: Padrão do Sistema
|
||||||
No default instance has been set: Nenhuma instância padrão foi definida
|
No default instance has been set: Nenhuma instância padrão foi definida
|
||||||
The currently set default instance is {instance}: A instância padrão atualmente
|
The currently set default instance is {instance}: A instância padrão atualmente definida
|
||||||
definida é {instance}
|
é {instance}
|
||||||
Current instance will be randomized on startup: A instância atual será randomizada
|
Current instance will be randomized on startup: A instância atual será randomizada
|
||||||
na inicialização
|
na inicialização
|
||||||
Set Current Instance as Default: Definir instância atual como padrão
|
Set Current Instance as Default: Definir instância atual como padrão
|
||||||
|
@ -277,7 +274,6 @@ Settings:
|
||||||
Export Subscriptions: 'Exportar inscrições'
|
Export Subscriptions: 'Exportar inscrições'
|
||||||
How do I import my subscriptions?: 'Como posso importar minhas inscrições?'
|
How do I import my subscriptions?: 'Como posso importar minhas inscrições?'
|
||||||
Fetch Feeds from RSS: Buscar Informações através de RSS
|
Fetch Feeds from RSS: Buscar Informações através de RSS
|
||||||
Fetch Automatically: Obter o feed automaticamente
|
|
||||||
Advanced Settings:
|
Advanced Settings:
|
||||||
Advanced Settings: 'Configurações avançadas'
|
Advanced Settings: 'Configurações avançadas'
|
||||||
Enable Debug Mode (Prints data to the console): 'Habilitar modo de depuração (Mostra
|
Enable Debug Mode (Prints data to the console): 'Habilitar modo de depuração (Mostra
|
||||||
|
@ -364,14 +360,11 @@ Settings:
|
||||||
Manage Subscriptions: Administrar Inscrições
|
Manage Subscriptions: Administrar Inscrições
|
||||||
Import Playlists: Importar listas de reprodução
|
Import Playlists: Importar listas de reprodução
|
||||||
Export Playlists: Exportar listas de reprodução
|
Export Playlists: Exportar listas de reprodução
|
||||||
Playlist insufficient data: Dados insuficientes para "{playlist}" playlist, pulando
|
Playlist insufficient data: Dados insuficientes para "{playlist}" playlist, pulando item
|
||||||
item
|
|
||||||
All playlists has been successfully exported: Todas as listas de reprodução foram
|
All playlists has been successfully exported: Todas as listas de reprodução foram
|
||||||
exportadas com sucesso
|
exportadas com sucesso
|
||||||
All playlists has been successfully imported: Todas as listas de reprodução foram
|
All playlists has been successfully imported: Todas as listas de reprodução foram
|
||||||
importadas com sucesso
|
importadas com sucesso
|
||||||
Subscription File: Arquivo de assinaturas
|
|
||||||
History File: Arquivo de histórico
|
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Hide Live Chat: Esconder chat ao vivo
|
Hide Live Chat: Esconder chat ao vivo
|
||||||
Hide Popular Videos: Esconder vídeos populares
|
Hide Popular Videos: Esconder vídeos populares
|
||||||
|
@ -388,7 +381,6 @@ Settings:
|
||||||
Hide Sharing Actions: Ocultar ações de compartilhamento
|
Hide Sharing Actions: Ocultar ações de compartilhamento
|
||||||
Hide Comments: Ocultar comentários
|
Hide Comments: Ocultar comentários
|
||||||
Hide Live Streams: Ocultar transmissões ao vivo
|
Hide Live Streams: Ocultar transmissões ao vivo
|
||||||
Hide Chapters: Ocultar capítulos
|
|
||||||
The app needs to restart for changes to take effect. Restart and apply change?: O
|
The app needs to restart for changes to take effect. Restart and apply change?: O
|
||||||
aplicativo necessita reiniciar para as mudanças fazerem efeito. Reiniciar e aplicar
|
aplicativo necessita reiniciar para as mudanças fazerem efeito. Reiniciar e aplicar
|
||||||
mudança?
|
mudança?
|
||||||
|
@ -528,8 +520,7 @@ Channel:
|
||||||
Channel Description: 'Descrição do canal'
|
Channel Description: 'Descrição do canal'
|
||||||
Featured Channels: 'Canais destacados'
|
Featured Channels: 'Canais destacados'
|
||||||
Added channel to your subscriptions: Canal adicionado às suas inscrições
|
Added channel to your subscriptions: Canal adicionado às suas inscrições
|
||||||
Removed subscription from {count} other channel(s): Inscrição removida de outros
|
Removed subscription from {count} other channel(s): Inscrição removida de outros {count} canais
|
||||||
{count} canais
|
|
||||||
Channel has been removed from your subscriptions: O canal foi removido da suas inscrições
|
Channel has been removed from your subscriptions: O canal foi removido da suas inscrições
|
||||||
Video:
|
Video:
|
||||||
Mark As Watched: 'Marcar como assistido'
|
Mark As Watched: 'Marcar como assistido'
|
||||||
|
@ -805,15 +796,14 @@ Profile:
|
||||||
Your default profile has been changed to your primary profile: Seu perfil padrão
|
Your default profile has been changed to your primary profile: Seu perfil padrão
|
||||||
foi mudado para o seu perfil principal
|
foi mudado para o seu perfil principal
|
||||||
Removed {profile} from your profiles: '{profile} foi removido dos seus perfis'
|
Removed {profile} from your profiles: '{profile} foi removido dos seus perfis'
|
||||||
Your default profile has been set to {profile}: Seu perfil padrão foi definido como
|
Your default profile has been set to {profile}: Seu perfil padrão foi definido como {profile}
|
||||||
{profile}
|
|
||||||
Profile has been updated: Perfil atualizado
|
Profile has been updated: Perfil atualizado
|
||||||
Profile has been created: Perfil criado
|
Profile has been created: Perfil criado
|
||||||
Your profile name cannot be empty: Seu nome de perfil não pode ficar em branco
|
Your profile name cannot be empty: Seu nome de perfil não pode ficar em branco
|
||||||
Profile Filter: Filtro de Perfil
|
Profile Filter: Filtro de Perfil
|
||||||
Profile Settings: Configurações de Perfil
|
Profile Settings: Configurações de Perfil
|
||||||
Version {versionNumber} is now available! Click for more details: A versão {versionNumber}
|
Version {versionNumber} is now available! Click for more details: A versão {versionNumber} já está disponível!
|
||||||
já está disponível! Clique para mais detalhes
|
Clique para mais detalhes
|
||||||
A new blog is now available, {blogTitle}. Click to view more: 'Um novo blog está disponível,
|
A new blog is now available, {blogTitle}. Click to view more: 'Um novo blog está disponível,
|
||||||
{blogTitle}. Clique para ver mais'
|
{blogTitle}. Clique para ver mais'
|
||||||
Download From Site: Baixar do site
|
Download From Site: Baixar do site
|
||||||
|
@ -890,8 +880,8 @@ Unknown YouTube url type, cannot be opened in app: Tipo de URL do YouTube descon
|
||||||
não pode ser aberta no aplicativo
|
não pode ser aberta no aplicativo
|
||||||
Open New Window: Abrir uma nova janela
|
Open New Window: Abrir uma nova janela
|
||||||
Default Invidious instance has been cleared: A instância padrão Invidious foi limpa
|
Default Invidious instance has been cleared: A instância padrão Invidious foi limpa
|
||||||
Default Invidious instance has been set to {instance}: A instância padrão Invidious
|
Default Invidious instance has been set to {instance}: A instância padrão Invidious foi definida
|
||||||
foi definida para {instance}
|
para {instance}
|
||||||
Search Bar:
|
Search Bar:
|
||||||
Clear Input: Limpar entrada
|
Clear Input: Limpar entrada
|
||||||
External link opening has been disabled in the general settings: A abertura de link
|
External link opening has been disabled in the general settings: A abertura de link
|
||||||
|
@ -911,8 +901,7 @@ Channels:
|
||||||
Unsubscribe Prompt: Tem certeza de que quer cancelar a sua inscrição de "{channelName}"?
|
Unsubscribe Prompt: Tem certeza de que quer cancelar a sua inscrição de "{channelName}"?
|
||||||
Count: '{number} canal(is) encontrado(s).'
|
Count: '{number} canal(is) encontrado(s).'
|
||||||
Age Restricted:
|
Age Restricted:
|
||||||
The currently set default instance is {instance}: Este {instance} tem restrição
|
The currently set default instance is {instance}: Este {instance} tem restrição de idade
|
||||||
de idade
|
|
||||||
Type:
|
Type:
|
||||||
Channel: Canal
|
Channel: Canal
|
||||||
Video: Vídeo
|
Video: Vídeo
|
||||||
|
|
|
@ -431,11 +431,6 @@ Settings:
|
||||||
Hide Unsubscribe Button: Сховати кнопку скасування підписки
|
Hide Unsubscribe Button: Сховати кнопку скасування підписки
|
||||||
Show Family Friendly Only: Показати лише для сімейного перегляду
|
Show Family Friendly Only: Показати лише для сімейного перегляду
|
||||||
Hide Search Bar: Сховати панель пошуку
|
Hide Search Bar: Сховати панель пошуку
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Заміна кешу HTTP
|
|
||||||
Experimental Settings: Експериментальні налаштування
|
|
||||||
Warning: Ці налаштування експериментальні, їхнє ввімкнення може призводити до
|
|
||||||
збоїв. Радимо робити резервні копії. Використовуйте на свій страх і ризик!
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: 'Про'
|
About: 'Про'
|
||||||
|
@ -834,9 +829,6 @@ Tooltips:
|
||||||
відео (добірка, якщо підтримується) у зовнішньому програвачі, на мініатюрі.
|
відео (добірка, якщо підтримується) у зовнішньому програвачі, на мініатюрі.
|
||||||
Увага, налаштування Invidious не застосовуються до сторонніх програвачів.
|
Увага, налаштування Invidious не застосовуються до сторонніх програвачів.
|
||||||
DefaultCustomArgumentsTemplate: "(Типово: '{defaultCustomArguments}')"
|
DefaultCustomArgumentsTemplate: "(Типово: '{defaultCustomArguments}')"
|
||||||
Experimental Settings:
|
|
||||||
Replace HTTP Cache: Вимикає дисковий HTTP-кеш Electron і вмикає власний кеш зображень
|
|
||||||
у пам'яті. Призведе до збільшення використання оперативної пам'яті.
|
|
||||||
Local API Error (Click to copy): 'Помилка локального API (натисніть, щоб скопіювати)'
|
Local API Error (Click to copy): 'Помилка локального API (натисніть, щоб скопіювати)'
|
||||||
Invidious API Error (Click to copy): 'Помилка Invidious API (натисніть, щоб скопіювати)'
|
Invidious API Error (Click to copy): 'Помилка Invidious API (натисніть, щоб скопіювати)'
|
||||||
Falling back to Invidious API: 'Повернення до API Invidious'
|
Falling back to Invidious API: 'Повернення до API Invidious'
|
||||||
|
|
Loading…
Reference in New Issue