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,
|
||||
downloadBehaviorValues: [
|
||||
'download',
|
||||
'open',
|
||||
'add'
|
||||
'open'
|
||||
]
|
||||
}
|
||||
},
|
||||
|
@ -33,17 +32,10 @@ export default Vue.extend({
|
|||
downloadPath: function() {
|
||||
return this.$store.getters.getDownloadFolderPath
|
||||
},
|
||||
serverUrlPlaceholder: function() {
|
||||
return this.$t('Settings.Download Settings.Server Url')
|
||||
},
|
||||
serverUrl: function() {
|
||||
return this.$store.getters.getServerUrl
|
||||
},
|
||||
downloadBehaviorNames: function () {
|
||||
return [
|
||||
this.$t('Settings.Download Settings.Download in app'),
|
||||
this.$t('Settings.Download Settings.Open in web browser'),
|
||||
this.$t('Settings.Download Settings.Add To TYTD')
|
||||
this.$t('Settings.Download Settings.Open in web browser')
|
||||
]
|
||||
},
|
||||
downloadBehavior: function () {
|
||||
|
@ -71,8 +63,7 @@ export default Vue.extend({
|
|||
},
|
||||
...mapActions([
|
||||
'updateDownloadFolderPath',
|
||||
'updateDownloadBehavior',
|
||||
'updateServerUrl'
|
||||
'updateDownloadBehavior'
|
||||
])
|
||||
}
|
||||
|
||||
|
|
|
@ -11,20 +11,6 @@
|
|||
@change="updateDownloadBehavior"
|
||||
/>
|
||||
</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
|
||||
v-if="downloadBehavior === 'download'"
|
||||
class="settingsFlexStart500px"
|
||||
|
|
|
@ -8,7 +8,6 @@ import FtShareButton from '../ft-share-button/ft-share-button.vue'
|
|||
import { MAIN_PROFILE_ID } from '../../../constants'
|
||||
import i18n from '../../i18n/index'
|
||||
import { openExternalLink, showToast } from '../../helpers/utils'
|
||||
import { Notification } from 'electron'
|
||||
|
||||
export default Vue.extend({
|
||||
name: 'WatchVideoInfo',
|
||||
|
@ -180,41 +179,17 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
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 {
|
||||
label: download.label,
|
||||
value: download.url
|
||||
}
|
||||
})
|
||||
}
|
||||
return this.downloadLinks.map((download) => {
|
||||
return {
|
||||
label: download.label,
|
||||
value: download.url
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
downloadBehavior: function () {
|
||||
return this.$store.getters.getDownloadBehavior
|
||||
},
|
||||
getServerUrl: function() {
|
||||
return this.$store.getters.getServerUrl
|
||||
},
|
||||
|
||||
formatTypeOptions: function () {
|
||||
return [
|
||||
|
@ -452,12 +427,11 @@ export default Vue.extend({
|
|||
const selectedDownloadLinkOption = this.downloadLinkOptions[index]
|
||||
const url = selectedDownloadLinkOption.value
|
||||
const linkName = selectedDownloadLinkOption.label
|
||||
const extension = this.grabExtensionFromUrl(linkName)
|
||||
|
||||
if (this.downloadBehavior === 'open') {
|
||||
openExternalLink(url)
|
||||
} else if (this.downloadBehavior === 'add') {
|
||||
fetch(url).then(e => e.text()).then(new Notification('Added to downloader'))
|
||||
} else {
|
||||
const extension = this.grabExtensionFromUrl(linkName)
|
||||
this.downloadMedia({
|
||||
url: url,
|
||||
title: this.title,
|
||||
|
|
|
@ -264,7 +264,6 @@ const state = {
|
|||
videoPlaybackRateMouseScroll: false,
|
||||
videoPlaybackRateInterval: 0.25,
|
||||
downloadFolderPath: '',
|
||||
serverUrl: 'http://127.0.0.1:3252/',
|
||||
downloadBehavior: 'download',
|
||||
enableScreenshot: false,
|
||||
screenshotFormat: 'png',
|
||||
|
|
|
@ -148,8 +148,7 @@ Settings:
|
|||
Current instance will be randomized on startup: Beim Start wird eine zufällige
|
||||
Instanz festgelegt
|
||||
No default instance has been set: Es wurde keine Standardinstanz gesetzt
|
||||
The currently set default instance is {instance}: Die aktuelle Standardinstanz
|
||||
ist {instance}
|
||||
The currently set default instance is {instance}: Die aktuelle Standardinstanz ist {instance}
|
||||
Current Invidious Instance: Aktuelle Invidious-Instanz
|
||||
Clear Default Instance: Standardinstanz zurücksetzen
|
||||
Set Current Instance as Default: Derzeitige Instanz als Standard festlegen
|
||||
|
@ -366,8 +365,8 @@ Settings:
|
|||
Manage Subscriptions: Abonnements verwalten
|
||||
Export Playlists: Wiedergabelisten exportieren
|
||||
Import Playlists: Wiedergabelisten importieren
|
||||
Playlist insufficient data: Unzureichende Daten für „{playlist}“-Wiedergabeliste,
|
||||
Element übersprungen
|
||||
Playlist insufficient data: Unzureichende Daten für „{playlist}“-Wiedergabeliste, Element
|
||||
übersprungen
|
||||
All playlists has been successfully imported: Alle Wiedergabelisten wurden erfolgreich
|
||||
importiert
|
||||
All playlists has been successfully exported: Alle Wiedergabelisten wurden erfolgreich
|
||||
|
@ -446,12 +445,6 @@ Settings:
|
|||
Hide Unsubscribe Button: „Abo entfernen“-Schaltfläche ausblenden
|
||||
Show Family Friendly Only: Nur familienfreundlich anzeigen
|
||||
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:
|
||||
#On About page
|
||||
About: Über
|
||||
|
@ -550,8 +543,7 @@ Channel:
|
|||
Channel Description: Kanalbeschreibung
|
||||
Featured Channels: Empfohlene Kanäle
|
||||
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
|
||||
deabonniert
|
||||
Removed subscription from {count} other channel(s): Es wurden {count} anderen Kanälen deabonniert
|
||||
Channel has been removed from your subscriptions: Der Kanal wurde von deinen Abonnements
|
||||
entfernt
|
||||
Video:
|
||||
|
@ -694,7 +686,7 @@ Video:
|
|||
Video statistics are not available for legacy videos: Videostatistiken sind für
|
||||
ältere Videos nicht verfügbar
|
||||
Premieres in: Premieren in
|
||||
Premieres: Premiere
|
||||
Premieres: Premieren
|
||||
Videos:
|
||||
#& Sort By
|
||||
Sort By:
|
||||
|
@ -811,8 +803,7 @@ Profile:
|
|||
Your default profile has been changed to your primary profile: Dein Hauptprofil
|
||||
wurde als Standardprofil festgelegt
|
||||
Removed {profile} from your profiles: '{profile} wurde aus deinen Profilen entfernt'
|
||||
Your default profile has been set to {profile}: '{profile} wurde als Standardprofil
|
||||
festgelegt'
|
||||
Your default profile has been set to {profile}: '{profile} wurde als Standardprofil festgelegt'
|
||||
Profile has been created: Das Profil wurde erstellt
|
||||
Profile has been updated: Das Profil wurde aktualisiert
|
||||
Your profile name cannot be empty: Der Profilname darf nicht leer sein
|
||||
|
@ -850,11 +841,11 @@ Profile:
|
|||
Profile Filter: Profilfilter
|
||||
Profile Settings: Profileinstellungen
|
||||
The playlist has been reversed: Die Wiedergabeliste wurde umgedreht
|
||||
A new blog is now available, {blogTitle}. Click to view more: Ein neuer Blogeintrag
|
||||
ist verfügbar, {blogTitle}. Um ihn zu öffnen klicken
|
||||
A new blog is now available, {blogTitle}. Click to view more: Ein neuer Blogeintrag ist verfügbar,
|
||||
{blogTitle}. Um ihn zu öffnen klicken
|
||||
Download From Site: Von der Website herunterladen
|
||||
Version {versionNumber} is now available! Click for more details: Version {versionNumber}
|
||||
ist jetzt verfügbar! Für mehr Details klicken
|
||||
Version {versionNumber} is now available! Click for more details: Version {versionNumber} ist jetzt verfügbar! Für
|
||||
mehr Details klicken
|
||||
Tooltips:
|
||||
General Settings:
|
||||
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
|
||||
Invidious wirken sich nicht auf externe Player aus.
|
||||
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
|
||||
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
|
||||
Open New Window: Neues Fenster öffnen
|
||||
Default Invidious instance has been cleared: Standard-Invidious-Instanz wurde zurückgesetzt
|
||||
Default Invidious instance has been set to {instance}: Standard-Invidious-Instanz
|
||||
wurde auf {instance} gesetzt
|
||||
Default Invidious instance has been set to {instance}: Standard-Invidious-Instanz wurde auf
|
||||
{instance} gesetzt
|
||||
Search Bar:
|
||||
Clear Input: Eingabe löschen
|
||||
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.
|
||||
Unsubscribe: Abo entfernen
|
||||
Unsubscribed: '{channelName} wurde aus deinen Abonnements entfernt'
|
||||
Unsubscribe Prompt: Bist du sicher, dass du „{channelName}“ aus dem Abos entfernen
|
||||
willst?
|
||||
Unsubscribe Prompt: Bist du sicher, dass du „{channelName}“ aus dem Abos entfernen willst?
|
||||
Clipboard:
|
||||
Copy failed: Kopieren in die Zwischenablage fehlgeschlagen
|
||||
Cannot access clipboard without a secure connection: Zugriff auf die Zwischenablage
|
||||
|
|
|
@ -406,7 +406,6 @@ Settings:
|
|||
Download Behavior: Download Behavior
|
||||
Download in app: Download in app
|
||||
Open in web browser: Open in web browser
|
||||
Add To TYTD: Add To TYTD
|
||||
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!
|
||||
|
|
|
@ -436,11 +436,6 @@ Settings:
|
|||
Parental Control Settings: Parental control settings
|
||||
Show Family Friendly Only: Show family-friendly only
|
||||
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:
|
||||
#On About page
|
||||
About: About
|
||||
|
@ -851,9 +846,6 @@ Tooltips:
|
|||
Privacy Settings:
|
||||
Remove Video Meta Files: When enabled, FreeTube automatically deletes meta files
|
||||
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
|
||||
next video in {nextVideoInterval} second. Click to cancel. | Playing next video
|
||||
in {nextVideoInterval} seconds. Click to cancel.
|
||||
|
|
|
@ -144,8 +144,8 @@ Settings:
|
|||
Current instance will be randomized on startup: La instancia actual será elegida
|
||||
aleatoriamente al inicio
|
||||
No default instance has been set: No se ha especificado una instancia predeterminada
|
||||
The currently set default instance is {instance}: La instancia predeterminada
|
||||
actual es {instance}
|
||||
The currently set default instance is {instance}: La instancia predeterminada actual es
|
||||
{instance}
|
||||
Current Invidious Instance: Instancia actual de Invidious
|
||||
Clear Default Instance: Quitar la instancia por defecto
|
||||
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
|
||||
Parental Control Settings: Ajustes del Control Parental
|
||||
Show Family Friendly Only: Mostrar solo lo apto para las familias
|
||||
Experimental Settings:
|
||||
Experimental Settings: Ajustes experimentales
|
||||
About:
|
||||
#On About page
|
||||
About: 'Acerca de'
|
||||
|
@ -477,7 +475,7 @@ About:
|
|||
room rules: reglas de la sala
|
||||
Please read the: Por favor, lee las
|
||||
Chat on Matrix: Chat en Matrix
|
||||
Mastodon: Mastodon (red social)
|
||||
Mastodon: Mastodon (Red Social)
|
||||
Email: Correo electrónico
|
||||
Blog: Blog
|
||||
Website: Sitio web
|
||||
|
@ -513,8 +511,8 @@ Profile:
|
|||
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 updated: 'El perfil se ha actualizado'
|
||||
Your default profile has been set to {profile}: 'Tu perfil predeterminado se ha
|
||||
establecido como {profile}'
|
||||
Your default profile has been set to {profile}: 'Tu perfil predeterminado se ha establecido
|
||||
como {profile}'
|
||||
Removed {profile} from your profiles: 'Eliminado {profile} de tus perfiles'
|
||||
Your default profile has been changed to your primary profile: 'Tu perfil predeterminado
|
||||
ha sido cambiado a tu perfil principal'
|
||||
|
@ -567,8 +565,7 @@ Channel:
|
|||
Channel Description: 'Descripción del canal'
|
||||
Featured Channels: 'Canales destacados'
|
||||
Added channel to your subscriptions: Canal añadido a tus suscripciones
|
||||
Removed subscription from {count} other channel(s): Suscripción eliminada de {count}
|
||||
otros canales
|
||||
Removed subscription from {count} other channel(s): Suscripción eliminada de {count} otros canales
|
||||
Channel has been removed from your subscriptions: El canal ha sido eliminado de
|
||||
tus suscripciones
|
||||
Video:
|
||||
|
@ -811,11 +808,11 @@ Canceled next video autoplay: 'La reproducción del vídeo siguiente se ha cance
|
|||
|
||||
Yes: 'Sí'
|
||||
No: 'No'
|
||||
A new blog is now available, {blogTitle}. Click to view more: 'Nueva publicación del
|
||||
blog disponible, {blogTitle}. Haga clic para saber más'
|
||||
A new blog is now available, {blogTitle}. Click to view more: 'Nueva publicación del blog disponible,
|
||||
{blogTitle}. Haga clic para saber más'
|
||||
Download From Site: Descargar desde el sitio web
|
||||
Version {versionNumber} is now available! Click for more details: ¡La versión {versionNumber}
|
||||
está disponible! Haz clic para saber más
|
||||
Version {versionNumber} is now available! Click for more details: ¡La versión {versionNumber} está disponible!
|
||||
Haz clic para saber más
|
||||
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
|
||||
vídeo no está disponible por no tener un formato válido. Esto puede suceder por
|
||||
|
@ -917,8 +914,7 @@ Age Restricted:
|
|||
Type:
|
||||
Channel: Canal
|
||||
Video: Vídeo
|
||||
This {videoOrPlaylist} is age restricted: Este {videoOrPlaylist} tiene restricción
|
||||
de edad
|
||||
This {videoOrPlaylist} is age restricted: Este {videoOrPlaylist} tiene restricción de edad
|
||||
Clipboard:
|
||||
Copy failed: Error al copiar 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
|
||||
Show Family Friendly Only: Näytä vain koko perheelle sopiva sisältö
|
||||
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:
|
||||
#On About page
|
||||
About: 'Tietoja'
|
||||
|
@ -858,10 +852,6 @@ Tooltips:
|
|||
avaamiseen (soittoluettelonkin avaamiseen jos tuettu) ulkoisessa toistimessa.
|
||||
Varoitus, Invidious-asetukset eivät vaikuta ulkoisiin toistimiin.
|
||||
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ää
|
||||
Playing Next Video Interval: Seuraava video alkaa. 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
|
||||
au hasard au démarrage
|
||||
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
|
||||
définie est {instance}
|
||||
The currently set default instance is {instance}: L'instance par défaut actuellement définie
|
||||
est {instance}
|
||||
Current Invidious Instance: Instance Invidious actuelle
|
||||
External Link Handling:
|
||||
No Action: Aucune action
|
||||
|
@ -459,12 +459,6 @@ Settings:
|
|||
Hide Search Bar: Masquer la barre de recherche
|
||||
Parental Control Settings: Paramètres du contrôle parental
|
||||
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:
|
||||
#On About page
|
||||
About: 'À propos'
|
||||
|
@ -563,8 +557,8 @@ Channel:
|
|||
Channel Description: 'Description de la chaîne'
|
||||
Featured Channels: 'Chaînes en vedette'
|
||||
Added channel to your subscriptions: Chaîne ajoutée à vos abonnements
|
||||
Removed subscription from {count} other channel(s): Abonnement supprimé de {count}
|
||||
autre(s) chaîne(s)
|
||||
Removed subscription from {count} other channel(s): Abonnement supprimé de {count} autre(s)
|
||||
chaîne(s)
|
||||
Channel has been removed from your subscriptions: La chaîne a été retirée de vos
|
||||
abonnements
|
||||
Video:
|
||||
|
@ -815,8 +809,7 @@ Profile:
|
|||
Your default profile has been changed to your primary profile: Votre profil par
|
||||
défaut a été modifié en votre profil principal
|
||||
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é
|
||||
à {profile}
|
||||
Your default profile has been set to {profile}: Votre profil par défaut a été fixé à {profile}
|
||||
Profile has been updated: Le profil a été mis à jour
|
||||
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
|
||||
|
@ -855,11 +848,11 @@ Profile:
|
|||
Profile Filter: Filtre de profil
|
||||
Profile Settings: Paramètres du profil
|
||||
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
|
||||
maintenant disponible, {blogTitle}. Cliquez pour en savoir plus
|
||||
A new blog is now available, {blogTitle}. Click to view more: Un nouveau billet est maintenant
|
||||
disponible, {blogTitle}. Cliquez pour en savoir plus
|
||||
Download From Site: Télécharger depuis le site
|
||||
Version {versionNumber} is now available! Click for more details: La version {versionNumber}
|
||||
est maintenant disponible ! Cliquez pour plus de détails
|
||||
Version {versionNumber} is now available! Click for more details: La version {versionNumber} est maintenant disponible
|
||||
! Cliquez pour plus de détails
|
||||
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
|
||||
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
|
||||
externe. Attention, les paramètres Invidious n'affectent pas les lecteurs externes.
|
||||
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
|
||||
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.
|
||||
|
@ -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
|
||||
Default Invidious instance has been cleared: L'instance Invidious par défaut a été
|
||||
effacée
|
||||
Default Invidious instance has been set to {instance}: L'instance Invidious par défaut
|
||||
a été définie sur {instance}
|
||||
Default Invidious instance has been set to {instance}: L'instance Invidious par défaut a été
|
||||
définie sur {instance}
|
||||
Search Bar:
|
||||
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 ?
|
||||
|
@ -962,8 +951,7 @@ Age Restricted:
|
|||
Type:
|
||||
Video: Vidéo
|
||||
Channel: Chaîne
|
||||
This {videoOrPlaylist} is age restricted: Ce {videoOrPlaylist} est soumis à une
|
||||
limite d'âge
|
||||
This {videoOrPlaylist} is age restricted: Ce {videoOrPlaylist} est soumis à une limite d'âge
|
||||
Channels:
|
||||
Channels: Chaînes
|
||||
Title: Liste des chaînes
|
||||
|
|
|
@ -438,7 +438,7 @@ About:
|
|||
room rules: ルームの規則
|
||||
Please read the: 確認してください
|
||||
Chat on Matrix: Matrix でチャット
|
||||
Mastodon: マストドン
|
||||
Mastodon: Mastodon
|
||||
Email: メールアドレス
|
||||
Blog: ブログ
|
||||
Website: WEB サイト
|
||||
|
|
|
@ -313,10 +313,10 @@ Settings:
|
|||
Are you sure you want to remove your entire watch history?: Jesteś pewny/a, że
|
||||
chcesz usunąć całą 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
|
||||
wyczyścić plik pamięci podręcznej wyszukiwań?
|
||||
Clear Search Cache: Wyczyść plik pamięci podręcznej wyszukiwań
|
||||
wyczyścić plik cache wyszukiwań?
|
||||
Clear Search Cache: Wyczyść plik cache wyszukiwań
|
||||
Save Watched Progress: Zapisuj postęp odtwarzania
|
||||
Remember History: Pamiętaj historię
|
||||
Privacy Settings: Ustawienia prywatności
|
||||
|
@ -445,11 +445,6 @@ Settings:
|
|||
Hide Unsubscribe Button: Schowaj przycisk „Odsubskrybuj”
|
||||
Show Family Friendly Only: Pokazuj tylko filmy przyjazne rodzinie
|
||||
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:
|
||||
#On About page
|
||||
About: 'O projekcie'
|
||||
|
@ -894,10 +889,6 @@ Tooltips:
|
|||
jest do znalezienia za pomocą zmiennej środowiskowej PATH. Jeśli trzeba, można
|
||||
tutaj ustawić niestandardową ścieżkę.
|
||||
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
|
||||
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
|
||||
de rede
|
||||
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: 'Em alta'
|
||||
Trending Tabs: Abas de Tendências
|
||||
|
@ -141,8 +138,8 @@ Settings:
|
|||
Invidious
|
||||
System Default: Padrão do Sistema
|
||||
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
|
||||
definida é {instance}
|
||||
The currently set default instance is {instance}: A instância padrão atualmente definida
|
||||
é {instance}
|
||||
Current instance will be randomized on startup: A instância atual será randomizada
|
||||
na inicialização
|
||||
Set Current Instance as Default: Definir instância atual como padrão
|
||||
|
@ -277,7 +274,6 @@ Settings:
|
|||
Export Subscriptions: 'Exportar 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 Automatically: Obter o feed automaticamente
|
||||
Advanced Settings:
|
||||
Advanced Settings: 'Configurações avançadas'
|
||||
Enable Debug Mode (Prints data to the console): 'Habilitar modo de depuração (Mostra
|
||||
|
@ -364,14 +360,11 @@ Settings:
|
|||
Manage Subscriptions: Administrar Inscrições
|
||||
Import Playlists: Importar listas de reprodução
|
||||
Export Playlists: Exportar listas de reprodução
|
||||
Playlist insufficient data: Dados insuficientes para "{playlist}" playlist, pulando
|
||||
item
|
||||
Playlist insufficient data: Dados insuficientes para "{playlist}" playlist, pulando item
|
||||
All playlists has been successfully exported: Todas as listas de reprodução foram
|
||||
exportadas com sucesso
|
||||
All playlists has been successfully imported: Todas as listas de reprodução foram
|
||||
importadas com sucesso
|
||||
Subscription File: Arquivo de assinaturas
|
||||
History File: Arquivo de histórico
|
||||
Distraction Free Settings:
|
||||
Hide Live Chat: Esconder chat ao vivo
|
||||
Hide Popular Videos: Esconder vídeos populares
|
||||
|
@ -388,7 +381,6 @@ Settings:
|
|||
Hide Sharing Actions: Ocultar ações de compartilhamento
|
||||
Hide Comments: Ocultar comentários
|
||||
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
|
||||
aplicativo necessita reiniciar para as mudanças fazerem efeito. Reiniciar e aplicar
|
||||
mudança?
|
||||
|
@ -528,8 +520,7 @@ Channel:
|
|||
Channel Description: 'Descrição do canal'
|
||||
Featured Channels: 'Canais destacados'
|
||||
Added channel to your subscriptions: Canal adicionado às suas inscrições
|
||||
Removed subscription from {count} other channel(s): Inscrição removida de outros
|
||||
{count} canais
|
||||
Removed subscription from {count} other channel(s): Inscrição removida de outros {count} canais
|
||||
Channel has been removed from your subscriptions: O canal foi removido da suas inscrições
|
||||
Video:
|
||||
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
|
||||
foi mudado para o seu perfil principal
|
||||
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
|
||||
{profile}
|
||||
Your default profile has been set to {profile}: Seu perfil padrão foi definido como {profile}
|
||||
Profile has been updated: Perfil atualizado
|
||||
Profile has been created: Perfil criado
|
||||
Your profile name cannot be empty: Seu nome de perfil não pode ficar em branco
|
||||
Profile Filter: Filtro de Perfil
|
||||
Profile Settings: Configurações de Perfil
|
||||
Version {versionNumber} is now available! Click for more details: A versão {versionNumber}
|
||||
já está disponível! Clique para mais detalhes
|
||||
Version {versionNumber} is now available! Click for more details: A versão {versionNumber} já está disponível!
|
||||
Clique para mais detalhes
|
||||
A new blog is now available, {blogTitle}. Click to view more: 'Um novo blog está disponível,
|
||||
{blogTitle}. Clique para ver mais'
|
||||
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
|
||||
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 set to {instance}: A instância padrão Invidious
|
||||
foi definida para {instance}
|
||||
Default Invidious instance has been set to {instance}: A instância padrão Invidious foi definida
|
||||
para {instance}
|
||||
Search Bar:
|
||||
Clear Input: Limpar entrada
|
||||
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}"?
|
||||
Count: '{number} canal(is) encontrado(s).'
|
||||
Age Restricted:
|
||||
The currently set default instance is {instance}: Este {instance} tem restrição
|
||||
de idade
|
||||
The currently set default instance is {instance}: Este {instance} tem restrição de idade
|
||||
Type:
|
||||
Channel: Canal
|
||||
Video: Vídeo
|
||||
|
|
|
@ -431,11 +431,6 @@ Settings:
|
|||
Hide Unsubscribe Button: Сховати кнопку скасування підписки
|
||||
Show Family Friendly Only: Показати лише для сімейного перегляду
|
||||
Hide Search Bar: Сховати панель пошуку
|
||||
Experimental Settings:
|
||||
Replace HTTP Cache: Заміна кешу HTTP
|
||||
Experimental Settings: Експериментальні налаштування
|
||||
Warning: Ці налаштування експериментальні, їхнє ввімкнення може призводити до
|
||||
збоїв. Радимо робити резервні копії. Використовуйте на свій страх і ризик!
|
||||
About:
|
||||
#On About page
|
||||
About: 'Про'
|
||||
|
@ -834,9 +829,6 @@ Tooltips:
|
|||
відео (добірка, якщо підтримується) у зовнішньому програвачі, на мініатюрі.
|
||||
Увага, налаштування Invidious не застосовуються до сторонніх програвачів.
|
||||
DefaultCustomArgumentsTemplate: "(Типово: '{defaultCustomArguments}')"
|
||||
Experimental Settings:
|
||||
Replace HTTP Cache: Вимикає дисковий HTTP-кеш Electron і вмикає власний кеш зображень
|
||||
у пам'яті. Призведе до збільшення використання оперативної пам'яті.
|
||||
Local API Error (Click to copy): 'Помилка локального API (натисніть, щоб скопіювати)'
|
||||
Invidious API Error (Click to copy): 'Помилка Invidious API (натисніть, щоб скопіювати)'
|
||||
Falling back to Invidious API: 'Повернення до API Invidious'
|
||||
|
|
Loading…
Reference in New Issue