mirror of
https://github.com/FreeTubeApp/FreeTube
synced 2024-11-29 05:30:13 +01:00
Merge dd2fc9cd08
into dc65eece29
This commit is contained in:
commit
7558d6d56c
@ -0,0 +1,4 @@
|
|||||||
|
.onlyShowLatestFromChannelNumber {
|
||||||
|
inline-size: calc(100% - 44px);
|
||||||
|
padding-inline-start: 44px;
|
||||||
|
}
|
@ -2,12 +2,14 @@ import { defineComponent } from 'vue'
|
|||||||
import { mapActions } from 'vuex'
|
import { mapActions } from 'vuex'
|
||||||
import FtSettingsSection from '../ft-settings-section/ft-settings-section.vue'
|
import FtSettingsSection from '../ft-settings-section/ft-settings-section.vue'
|
||||||
import FtToggleSwitch from '../ft-toggle-switch/ft-toggle-switch.vue'
|
import FtToggleSwitch from '../ft-toggle-switch/ft-toggle-switch.vue'
|
||||||
|
import FtSlider from '../ft-slider/ft-slider.vue'
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'SubscriptionSettings',
|
name: 'SubscriptionSettings',
|
||||||
components: {
|
components: {
|
||||||
'ft-settings-section': FtSettingsSection,
|
'ft-settings-section': FtSettingsSection,
|
||||||
'ft-toggle-switch': FtToggleSwitch
|
'ft-toggle-switch': FtToggleSwitch,
|
||||||
|
'ft-slider': FtSlider,
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
hideWatchedSubs: function () {
|
hideWatchedSubs: function () {
|
||||||
@ -16,6 +18,9 @@ export default defineComponent({
|
|||||||
onlyShowLatestFromChannel: function () {
|
onlyShowLatestFromChannel: function () {
|
||||||
return this.$store.getters.getOnlyShowLatestFromChannel
|
return this.$store.getters.getOnlyShowLatestFromChannel
|
||||||
},
|
},
|
||||||
|
onlyShowLatestFromChannelNumber: function () {
|
||||||
|
return this.$store.getters.getOnlyShowLatestFromChannelNumber
|
||||||
|
},
|
||||||
useRssFeeds: function () {
|
useRssFeeds: function () {
|
||||||
return this.$store.getters.getUseRssFeeds
|
return this.$store.getters.getUseRssFeeds
|
||||||
},
|
},
|
||||||
@ -32,6 +37,7 @@ export default defineComponent({
|
|||||||
'updateUseRssFeeds',
|
'updateUseRssFeeds',
|
||||||
'updateFetchSubscriptionsAutomatically',
|
'updateFetchSubscriptionsAutomatically',
|
||||||
'updateOnlyShowLatestFromChannel',
|
'updateOnlyShowLatestFromChannel',
|
||||||
|
'updateOnlyShowLatestFromChannelNumber',
|
||||||
'updateUnsubscriptionPopupStatus'
|
'updateUnsubscriptionPopupStatus'
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,12 @@
|
|||||||
:compact="true"
|
:compact="true"
|
||||||
@change="updateUseRssFeeds"
|
@change="updateUseRssFeeds"
|
||||||
/>
|
/>
|
||||||
|
<ft-toggle-switch
|
||||||
|
:label="$t('Settings.Subscription Settings.Confirm Before Unsubscribing')"
|
||||||
|
:default-value="unsubscriptionPopupStatus"
|
||||||
|
:compact="true"
|
||||||
|
@change="updateUnsubscriptionPopupStatus"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="switchColumn">
|
<div class="switchColumn">
|
||||||
<ft-toggle-switch
|
<ft-toggle-switch
|
||||||
@ -27,22 +33,28 @@
|
|||||||
@change="updateHideWatchedSubs"
|
@change="updateHideWatchedSubs"
|
||||||
/>
|
/>
|
||||||
<ft-toggle-switch
|
<ft-toggle-switch
|
||||||
:label="$t('Settings.Subscription Settings.Only Show Latest Video for Each Channel')"
|
id="onlyShowLatestFromChannel"
|
||||||
|
:label="$t('Settings.Subscription Settings.Limit the number of videos displayed for each channel')"
|
||||||
:default-value="onlyShowLatestFromChannel"
|
:default-value="onlyShowLatestFromChannel"
|
||||||
:compact="true"
|
:compact="true"
|
||||||
@change="updateOnlyShowLatestFromChannel"
|
@change="updateOnlyShowLatestFromChannel"
|
||||||
/>
|
/>
|
||||||
</div>
|
<div class="onlyShowLatestFromChannelNumber">
|
||||||
<div class="switchColumn">
|
<ft-slider
|
||||||
<ft-toggle-switch
|
:label="$t('Settings.Subscription Settings.To')"
|
||||||
:label="$t('Settings.Subscription Settings.Confirm Before Unsubscribing')"
|
:default-value="onlyShowLatestFromChannelNumber"
|
||||||
:default-value="unsubscriptionPopupStatus"
|
:disabled="!onlyShowLatestFromChannel"
|
||||||
:compact="true"
|
:min-value="1"
|
||||||
@change="updateUnsubscriptionPopupStatus"
|
:max-value="30"
|
||||||
|
:step="1"
|
||||||
|
aria-labelledby="onlyShowLatestFromChannel"
|
||||||
|
@change="updateOnlyShowLatestFromChannelNumber"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</ft-settings-section>
|
</ft-settings-section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./subscription-settings.js" />
|
<script src="./subscription-settings.js" />
|
||||||
|
<style src="./subscription-settings.css" scoped />
|
||||||
|
@ -42,13 +42,22 @@ export function updateVideoListAfterProcessing(videos) {
|
|||||||
// ordered last to show first eligible video from channel
|
// ordered last to show first eligible video from channel
|
||||||
// if the first one incidentally failed one of the above checks
|
// if the first one incidentally failed one of the above checks
|
||||||
if (store.getters.getOnlyShowLatestFromChannel) {
|
if (store.getters.getOnlyShowLatestFromChannel) {
|
||||||
const authors = new Set()
|
const authors = new Map()
|
||||||
videoList = videoList.filter((video) => {
|
videoList = videoList.filter((video) => {
|
||||||
if (!video.authorId) {
|
if (!video.authorId) {
|
||||||
return true
|
return true
|
||||||
} else if (!authors.has(video.authorId)) {
|
}
|
||||||
authors.add(video.authorId)
|
|
||||||
|
if (!authors.has(video.authorId)) {
|
||||||
|
authors.set(video.authorId, 1)
|
||||||
return true
|
return true
|
||||||
|
} else {
|
||||||
|
const currentVideos = authors.get(video.authorId)
|
||||||
|
|
||||||
|
if (currentVideos < store.getters.getOnlyShowLatestFromChannelNumber) {
|
||||||
|
authors.set(video.authorId, currentVideos + 1)
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
|
@ -232,6 +232,7 @@ const state = {
|
|||||||
listType: 'grid',
|
listType: 'grid',
|
||||||
maxVideoPlaybackRate: 3,
|
maxVideoPlaybackRate: 3,
|
||||||
onlyShowLatestFromChannel: false,
|
onlyShowLatestFromChannel: false,
|
||||||
|
onlyShowLatestFromChannelNumber: 1,
|
||||||
playNextVideo: false,
|
playNextVideo: false,
|
||||||
proxyHostname: '127.0.0.1',
|
proxyHostname: '127.0.0.1',
|
||||||
proxyPort: '9050',
|
proxyPort: '9050',
|
||||||
|
@ -452,7 +452,6 @@ Settings:
|
|||||||
Hide Videos on Watch: ''
|
Hide Videos on Watch: ''
|
||||||
Fetch Feeds from RSS: ''
|
Fetch Feeds from RSS: ''
|
||||||
Fetch Automatically: ''
|
Fetch Automatically: ''
|
||||||
Only Show Latest Video for Each Channel: ''
|
|
||||||
Confirm Before Unsubscribing: ''
|
Confirm Before Unsubscribing: ''
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: ''
|
Distraction Free Settings: ''
|
||||||
|
@ -446,7 +446,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'أخفِ الفيديوهات عند مشاهدتها'
|
Hide Videos on Watch: 'أخفِ الفيديوهات عند مشاهدتها'
|
||||||
Fetch Feeds from RSS: 'جلب المحتوى عن طريق RSS'
|
Fetch Feeds from RSS: 'جلب المحتوى عن طريق RSS'
|
||||||
Fetch Automatically: جلب الخلاصة تلقائيا
|
Fetch Automatically: جلب الخلاصة تلقائيا
|
||||||
Only Show Latest Video for Each Channel: عرض أحدث فيديو فقط لكل قناة
|
|
||||||
Confirm Before Unsubscribing: تجنب إلغاء الاشتراك عن طريق الخطأ
|
Confirm Before Unsubscribing: تجنب إلغاء الاشتراك عن طريق الخطأ
|
||||||
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
|
@ -484,8 +484,6 @@ Settings:
|
|||||||
Fetch Feeds from RSS: 'Атрымліваць стужкі з RSS'
|
Fetch Feeds from RSS: 'Атрымліваць стужкі з RSS'
|
||||||
Fetch Automatically: 'Аўтаматычна атрымліваць стужку'
|
Fetch Automatically: 'Аўтаматычна атрымліваць стужку'
|
||||||
Confirm Before Unsubscribing: Пацвердзіце перад тым як адпісацца
|
Confirm Before Unsubscribing: Пацвердзіце перад тым як адпісацца
|
||||||
Only Show Latest Video for Each Channel: Паказваць толькі апошняе відэа для кожнага
|
|
||||||
канала
|
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Адцягненне ўвагі'
|
Distraction Free Settings: 'Адцягненне ўвагі'
|
||||||
Sections:
|
Sections:
|
||||||
|
@ -461,8 +461,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Скриване на видеата при гледане'
|
Hide Videos on Watch: 'Скриване на видеата при гледане'
|
||||||
Fetch Feeds from RSS: 'Извличане на съдържания през RSS'
|
Fetch Feeds from RSS: 'Извличане на съдържания през RSS'
|
||||||
Fetch Automatically: Автоматично извличане на съдържание
|
Fetch Automatically: Автоматично извличане на съдържание
|
||||||
Only Show Latest Video for Each Channel: Показване само най-новите видеа за всеки
|
|
||||||
канал
|
|
||||||
Confirm Before Unsubscribing: Избягване на случайно отписване
|
Confirm Before Unsubscribing: Избягване на случайно отписване
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Данни'
|
Data Settings: 'Данни'
|
||||||
|
@ -461,8 +461,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Skrýt přehraná videa'
|
Hide Videos on Watch: 'Skrýt přehraná videa'
|
||||||
Fetch Feeds from RSS: 'Získávat odběry z RSS'
|
Fetch Feeds from RSS: 'Získávat odběry z RSS'
|
||||||
Fetch Automatically: Automaticky načítat odběry
|
Fetch Automatically: Automaticky načítat odběry
|
||||||
Only Show Latest Video for Each Channel: U každého kanálu zobrazit pouze nejnovější
|
|
||||||
video
|
|
||||||
Confirm Before Unsubscribing: Zamezit nechtěným odběrům
|
Confirm Before Unsubscribing: Zamezit nechtěným odběrům
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Rozptylování'
|
Distraction Free Settings: 'Rozptylování'
|
||||||
|
@ -317,7 +317,6 @@ Settings:
|
|||||||
Hide Videos on Watch: ''
|
Hide Videos on Watch: ''
|
||||||
Fetch Feeds from RSS: ''
|
Fetch Feeds from RSS: ''
|
||||||
Fetch Automatically: ''
|
Fetch Automatically: ''
|
||||||
Only Show Latest Video for Each Channel: ''
|
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: ''
|
Distraction Free Settings: ''
|
||||||
Sections:
|
Sections:
|
||||||
|
@ -397,7 +397,6 @@ Settings:
|
|||||||
Subscription Settings: 'Abonnementsindstillinger'
|
Subscription Settings: 'Abonnementsindstillinger'
|
||||||
Hide Videos on Watch: 'Skjul Videoer på Se'
|
Hide Videos on Watch: 'Skjul Videoer på Se'
|
||||||
Fetch Feeds from RSS: 'Hent Feeds fra RSS'
|
Fetch Feeds from RSS: 'Hent Feeds fra RSS'
|
||||||
Only Show Latest Video for Each Channel: Vis Kun Seneste Video for Hver Kanal
|
|
||||||
Fetch Automatically: Hent Feed Automatisk
|
Fetch Automatically: Hent Feed Automatisk
|
||||||
Confirm Before Unsubscribing: Bekræft Før Afmelding
|
Confirm Before Unsubscribing: Bekræft Før Afmelding
|
||||||
Data Settings:
|
Data Settings:
|
||||||
|
@ -445,8 +445,6 @@ Settings:
|
|||||||
Hide Videos on Watch: Videos bei Wiedergabe ausblenden
|
Hide Videos on Watch: Videos bei Wiedergabe ausblenden
|
||||||
Fetch Feeds from RSS: Feeds von RSS abrufen
|
Fetch Feeds from RSS: Feeds von RSS abrufen
|
||||||
Fetch Automatically: Feed automatisch abrufen
|
Fetch Automatically: Feed automatisch abrufen
|
||||||
Only Show Latest Video for Each Channel: Nur das neueste Video für jeden Kanal
|
|
||||||
anzeigen
|
|
||||||
Confirm Before Unsubscribing: Unbeabsichtigtes Deabonnieren verhindern
|
Confirm Before Unsubscribing: Unbeabsichtigtes Deabonnieren verhindern
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -315,8 +315,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Απόκρυψη των βίντεο κατά την αναπαραγωγή'
|
Hide Videos on Watch: 'Απόκρυψη των βίντεο κατά την αναπαραγωγή'
|
||||||
Fetch Feeds from RSS: 'Φόρτωση τροφοδοσίας RSS'
|
Fetch Feeds from RSS: 'Φόρτωση τροφοδοσίας RSS'
|
||||||
Fetch Automatically: Αυτόματη Λήψη Τροφοδοσίας
|
Fetch Automatically: Αυτόματη Λήψη Τροφοδοσίας
|
||||||
Only Show Latest Video for Each Channel: Εμφάνιση μόνο του τελευταίου βίντεο για
|
|
||||||
κάθε κανάλι
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Ρυθμίσεις Δεδομένων'
|
Data Settings: 'Ρυθμίσεις Δεδομένων'
|
||||||
Select Import Type: 'Επιλογή Τρόπου Εισαγωγής'
|
Select Import Type: 'Επιλογή Τρόπου Εισαγωγής'
|
||||||
|
@ -466,7 +466,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Hide Videos on Watch'
|
Hide Videos on Watch: 'Hide Videos on Watch'
|
||||||
Fetch Feeds from RSS: 'Fetch feeds from RSS'
|
Fetch Feeds from RSS: 'Fetch feeds from RSS'
|
||||||
Fetch Automatically: Fetch feed automatically
|
Fetch Automatically: Fetch feed automatically
|
||||||
Only Show Latest Video for Each Channel: Only show latest video for each channel
|
|
||||||
Confirm Before Unsubscribing: Confirm before unsubscribing
|
Confirm Before Unsubscribing: Confirm before unsubscribing
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Data'
|
Data Settings: 'Data'
|
||||||
|
@ -474,7 +474,8 @@ Settings:
|
|||||||
Hide Videos on Watch: Hide Videos on Watch
|
Hide Videos on Watch: Hide Videos on Watch
|
||||||
Fetch Feeds from RSS: Fetch Feeds from RSS
|
Fetch Feeds from RSS: Fetch Feeds from RSS
|
||||||
Fetch Automatically: Fetch Feed Automatically
|
Fetch Automatically: Fetch Feed Automatically
|
||||||
Only Show Latest Video for Each Channel: Only Show Latest Video for Each Channel
|
'Limit the number of videos displayed for each channel': 'Limit the number of videos displayed for each channel'
|
||||||
|
To: To
|
||||||
Confirm Before Unsubscribing: Confirm Before Unsubscribing
|
Confirm Before Unsubscribing: Confirm Before Unsubscribing
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: Distraction Free
|
Distraction Free Settings: Distraction Free
|
||||||
|
@ -463,8 +463,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ocultar vídeos vistos'
|
Hide Videos on Watch: 'Ocultar vídeos vistos'
|
||||||
Fetch Feeds from RSS: 'Recuperar suministros desde RSS'
|
Fetch Feeds from RSS: 'Recuperar suministros desde RSS'
|
||||||
Fetch Automatically: Obtener los feed automáticamente
|
Fetch Automatically: Obtener los feed automáticamente
|
||||||
Only Show Latest Video for Each Channel: Mostrar solo los últimos vídeos de cada
|
|
||||||
canal
|
|
||||||
Confirm Before Unsubscribing: Evitar bajas accidentales
|
Confirm Before Unsubscribing: Evitar bajas accidentales
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Datos'
|
Data Settings: 'Datos'
|
||||||
|
@ -457,7 +457,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Vaatamisel peida videod'
|
Hide Videos on Watch: 'Vaatamisel peida videod'
|
||||||
Fetch Feeds from RSS: 'Laadi RSS-uudisvood'
|
Fetch Feeds from RSS: 'Laadi RSS-uudisvood'
|
||||||
Fetch Automatically: Laadi tellimuste voog automaatselt
|
Fetch Automatically: Laadi tellimuste voog automaatselt
|
||||||
Only Show Latest Video for Each Channel: Iga kanali puhul näita vaid viimast videot
|
|
||||||
Confirm Before Unsubscribing: Väldi ekslikku ja juhuslikku tellimusest loobumist
|
Confirm Before Unsubscribing: Väldi ekslikku ja juhuslikku tellimusest loobumist
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Andmehaldus'
|
Data Settings: 'Andmehaldus'
|
||||||
|
@ -457,8 +457,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ikusten ari zaren bideoa ezkutatu'
|
Hide Videos on Watch: 'Ikusten ari zaren bideoa ezkutatu'
|
||||||
Fetch Feeds from RSS: 'RSS jarioak eskuratu'
|
Fetch Feeds from RSS: 'RSS jarioak eskuratu'
|
||||||
Fetch Automatically: Eskuratu jarioa automatikoki
|
Fetch Automatically: Eskuratu jarioa automatikoki
|
||||||
Only Show Latest Video for Each Channel: Erakutsi soilik kanal bakoitzeko azken
|
|
||||||
bideoa
|
|
||||||
Confirm Before Unsubscribing: Saihestu ustekabeko harpidetza kentzea
|
Confirm Before Unsubscribing: Saihestu ustekabeko harpidetza kentzea
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Oharkabetasunak ekiditeko ezarpenak'
|
Distraction Free Settings: 'Oharkabetasunak ekiditeko ezarpenak'
|
||||||
|
@ -355,8 +355,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Piilota katsotut videot'
|
Hide Videos on Watch: 'Piilota katsotut videot'
|
||||||
Fetch Feeds from RSS: Nouda RSS-syöte
|
Fetch Feeds from RSS: Nouda RSS-syöte
|
||||||
Fetch Automatically: Nouda syöte automaattisesti
|
Fetch Automatically: Nouda syöte automaattisesti
|
||||||
Only Show Latest Video for Each Channel: Näytä vain jokaisen kanavan uusin video
|
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
Watch history has been cleared: Katseluhistoria poistettiin
|
Watch history has been cleared: Katseluhistoria poistettiin
|
||||||
Are you sure you want to remove your entire watch history?: Haluatko varmasti
|
Are you sure you want to remove your entire watch history?: Haluatko varmasti
|
||||||
|
@ -452,8 +452,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Masquer les vidéos visionnées'
|
Hide Videos on Watch: 'Masquer les vidéos visionnées'
|
||||||
Fetch Feeds from RSS: Récupération de flux RSS
|
Fetch Feeds from RSS: Récupération de flux RSS
|
||||||
Fetch Automatically: Récupération automatique des flux
|
Fetch Automatically: Récupération automatique des flux
|
||||||
Only Show Latest Video for Each Channel: Afficher uniquement la dernière vidéo
|
|
||||||
pour chaque chaîne
|
|
||||||
Confirm Before Unsubscribing: Évitez les désabonnements accidentels
|
Confirm Before Unsubscribing: Évitez les désabonnements accidentels
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -445,7 +445,6 @@ Settings:
|
|||||||
Fetch Feeds from RSS: 'ייבוא עדכונים בעזרת RSS'
|
Fetch Feeds from RSS: 'ייבוא עדכונים בעזרת RSS'
|
||||||
Fetch Automatically: משיכת ערוץ העדכונים אוטומטית
|
Fetch Automatically: משיכת ערוץ העדכונים אוטומטית
|
||||||
Confirm Before Unsubscribing: אישור לפני ביטול מינוי
|
Confirm Before Unsubscribing: אישור לפני ביטול מינוי
|
||||||
Only Show Latest Video for Each Channel: להציג רק את הסרטון האחרון לכל ערוץ
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'נתונים'
|
Data Settings: 'נתונים'
|
||||||
Select Import Type: 'נא לבחור את תסדיר הייבוא'
|
Select Import Type: 'נא לבחור את תסדיר הייבוא'
|
||||||
|
@ -449,8 +449,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Sakrij video nakon gledanja'
|
Hide Videos on Watch: 'Sakrij video nakon gledanja'
|
||||||
Fetch Feeds from RSS: 'Dohvati feedove s RSS-a'
|
Fetch Feeds from RSS: 'Dohvati feedove s RSS-a'
|
||||||
Fetch Automatically: Automatski dohvati feed
|
Fetch Automatically: Automatski dohvati feed
|
||||||
Only Show Latest Video for Each Channel: Prikaži samo najnoviji video za svaki
|
|
||||||
kanal
|
|
||||||
Confirm Before Unsubscribing: Izbjegni slučajno otkazivanje pretplate
|
Confirm Before Unsubscribing: Izbjegni slučajno otkazivanje pretplate
|
||||||
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
|
@ -469,8 +469,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Videók elrejtése megtekintés után'
|
Hide Videos on Watch: 'Videók elrejtése megtekintés után'
|
||||||
Fetch Feeds from RSS: 'RSS-hírcsatornák beolvasása'
|
Fetch Feeds from RSS: 'RSS-hírcsatornák beolvasása'
|
||||||
Fetch Automatically: Hírcsatorna automatikus lekérdezése
|
Fetch Automatically: Hírcsatorna automatikus lekérdezése
|
||||||
Only Show Latest Video for Each Channel: Csak a legújabb videókat jelenítse meg
|
|
||||||
a csatornáktól
|
|
||||||
Confirm Before Unsubscribing: Kerülje el a véletlen leiratkozást
|
Confirm Before Unsubscribing: Kerülje el a véletlen leiratkozást
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Adat'
|
Data Settings: 'Adat'
|
||||||
|
@ -347,8 +347,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Sembunyikan Video saat Menonton'
|
Hide Videos on Watch: 'Sembunyikan Video saat Menonton'
|
||||||
Fetch Feeds from RSS: 'Ambil Umpan dari RSS'
|
Fetch Feeds from RSS: 'Ambil Umpan dari RSS'
|
||||||
Fetch Automatically: Ambil Umpan Secara Otomatis
|
Fetch Automatically: Ambil Umpan Secara Otomatis
|
||||||
Only Show Latest Video for Each Channel: Hanya Tampilkan Video Terbaru untuk Setiap
|
|
||||||
Kanal
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Pengaturan Data'
|
Data Settings: 'Pengaturan Data'
|
||||||
Select Import Type: 'Pilih Tipe Impor'
|
Select Import Type: 'Pilih Tipe Impor'
|
||||||
|
@ -465,8 +465,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Fela myndskeið eftir áhorf'
|
Hide Videos on Watch: 'Fela myndskeið eftir áhorf'
|
||||||
Fetch Feeds from RSS: 'Ná í streymi úr RSS'
|
Fetch Feeds from RSS: 'Ná í streymi úr RSS'
|
||||||
Fetch Automatically: Sækja streymi sjálfvirkt
|
Fetch Automatically: Sækja streymi sjálfvirkt
|
||||||
Only Show Latest Video for Each Channel: Aðeins birta nýjasta myndskeið fyrir
|
|
||||||
hverja myndskeiðarás
|
|
||||||
Confirm Before Unsubscribing: Staðfesta uppsögn áskriftar
|
Confirm Before Unsubscribing: Staðfesta uppsögn áskriftar
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Truflanaminnkandi'
|
Distraction Free Settings: 'Truflanaminnkandi'
|
||||||
|
@ -460,8 +460,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Nascondi i video visualizzati'
|
Hide Videos on Watch: 'Nascondi i video visualizzati'
|
||||||
Fetch Feeds from RSS: Scarica gli aggiornamenti dai flussi RSS
|
Fetch Feeds from RSS: Scarica gli aggiornamenti dai flussi RSS
|
||||||
Fetch Automatically: Recupera i feed automaticamente
|
Fetch Automatically: Recupera i feed automaticamente
|
||||||
Only Show Latest Video for Each Channel: Mostra solo il video più recente per
|
|
||||||
ciascun canale
|
|
||||||
Confirm Before Unsubscribing: Evita la cancellazione accidentale dell'iscrizione
|
Confirm Before Unsubscribing: Evita la cancellazione accidentale dell'iscrizione
|
||||||
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
|
@ -397,8 +397,6 @@ Settings:
|
|||||||
Fetch Feeds from RSS: RSS から情報取得
|
Fetch Feeds from RSS: RSS から情報取得
|
||||||
Fetch Automatically: フィードの自動取得
|
Fetch Automatically: フィードの自動取得
|
||||||
Confirm Before Unsubscribing: 登録解除する前に確認画面を表示する
|
Confirm Before Unsubscribing: 登録解除する前に確認画面を表示する
|
||||||
Only Show Latest Video for Each Channel: 各チャンネルの最新動画のみを表示する
|
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
Save Watched Progress: 再生位置の保存
|
Save Watched Progress: 再生位置の保存
|
||||||
Remember History: 履歴の保存
|
Remember History: 履歴の保存
|
||||||
|
@ -448,8 +448,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Bekeken video''s verbergen'
|
Hide Videos on Watch: 'Bekeken video''s verbergen'
|
||||||
Fetch Feeds from RSS: Feeds ophalen via RSS
|
Fetch Feeds from RSS: Feeds ophalen via RSS
|
||||||
Fetch Automatically: Feed automatisch ophalen
|
Fetch Automatically: Feed automatisch ophalen
|
||||||
Only Show Latest Video for Each Channel: Alleen nieuwste video voor elk kanaal
|
|
||||||
tonen
|
|
||||||
Confirm Before Unsubscribing: Onbedoeld deabonneren voorkomen
|
Confirm Before Unsubscribing: Onbedoeld deabonneren voorkomen
|
||||||
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
|
@ -436,8 +436,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ukrywaj filmy po obejrzeniu'
|
Hide Videos on Watch: 'Ukrywaj filmy po obejrzeniu'
|
||||||
Fetch Feeds from RSS: Pobierz subskrypcje z RSS
|
Fetch Feeds from RSS: Pobierz subskrypcje z RSS
|
||||||
Fetch Automatically: Automatycznie odświeżaj subskrypcje
|
Fetch Automatically: Automatycznie odświeżaj subskrypcje
|
||||||
Only Show Latest Video for Each Channel: Pokaż tylko najnowszy film z każdego
|
|
||||||
kanału
|
|
||||||
Confirm Before Unsubscribing: Uniknij przypadkowego usunięcia subskrypcji
|
Confirm Before Unsubscribing: Uniknij przypadkowego usunięcia subskrypcji
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -431,8 +431,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ocultar vídeos após assisti-los'
|
Hide Videos on Watch: 'Ocultar vídeos após assisti-los'
|
||||||
Fetch Feeds from RSS: Buscar Informações através de RSS
|
Fetch Feeds from RSS: Buscar Informações através de RSS
|
||||||
Fetch Automatically: Buscar feed automaticamente
|
Fetch Automatically: Buscar feed automaticamente
|
||||||
Only Show Latest Video for Each Channel: Mostrar apenas vídeo mais recente para
|
|
||||||
cada canal
|
|
||||||
Confirm Before Unsubscribing: Evitar cancelamento acidental de inscrições
|
Confirm Before Unsubscribing: Evitar cancelamento acidental de inscrições
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -436,8 +436,6 @@ Settings:
|
|||||||
Hide Videos on Watch: Ocultar vídeos visualizados
|
Hide Videos on Watch: Ocultar vídeos visualizados
|
||||||
Fetch Feeds from RSS: Obter subscrições através de RSS
|
Fetch Feeds from RSS: Obter subscrições através de RSS
|
||||||
Fetch Automatically: Obter fontes automaticamente
|
Fetch Automatically: Obter fontes automaticamente
|
||||||
Only Show Latest Video for Each Channel: Mostrar apenas o último vídeo de cada
|
|
||||||
canal
|
|
||||||
Confirm Before Unsubscribing: Impedir cancelamento acidental de subscrições
|
Confirm Before Unsubscribing: Impedir cancelamento acidental de subscrições
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: Definições de distrações
|
Distraction Free Settings: Definições de distrações
|
||||||
|
@ -453,8 +453,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ocultar vídeos visualizados'
|
Hide Videos on Watch: 'Ocultar vídeos visualizados'
|
||||||
Fetch Feeds from RSS: 'Obter subscrições através de RSS'
|
Fetch Feeds from RSS: 'Obter subscrições através de RSS'
|
||||||
Fetch Automatically: Obter fontes automaticamente
|
Fetch Automatically: Obter fontes automaticamente
|
||||||
Only Show Latest Video for Each Channel: Mostrar apenas o último vídeo de cada
|
|
||||||
canal
|
|
||||||
Confirm Before Unsubscribing: Impedir cancelamento acidental de subscrições
|
Confirm Before Unsubscribing: Impedir cancelamento acidental de subscrições
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Dados'
|
Data Settings: 'Dados'
|
||||||
|
@ -438,8 +438,6 @@ Settings:
|
|||||||
Fetch Feeds from RSS: 'Preluare de fluxuri din RSS'
|
Fetch Feeds from RSS: 'Preluare de fluxuri din RSS'
|
||||||
Fetch Automatically: Preluați feedul automat
|
Fetch Automatically: Preluați feedul automat
|
||||||
Confirm Before Unsubscribing: Confirmă înainte de dezabonare
|
Confirm Before Unsubscribing: Confirmă înainte de dezabonare
|
||||||
Only Show Latest Video for Each Channel: Arată doar cele mai noi videoclipuri
|
|
||||||
pentru fiecare canal
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Setări de date'
|
Data Settings: 'Setări de date'
|
||||||
Select Import Type: 'Selectează tipul de import'
|
Select Import Type: 'Selectează tipul de import'
|
||||||
|
@ -427,8 +427,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Скрывать видео после просмотра'
|
Hide Videos on Watch: 'Скрывать видео после просмотра'
|
||||||
Fetch Feeds from RSS: Получать ленты из RSS
|
Fetch Feeds from RSS: Получать ленты из RSS
|
||||||
Fetch Automatically: Автоматически получать ленту
|
Fetch Automatically: Автоматически получать ленту
|
||||||
Only Show Latest Video for Each Channel: Показывать только последние видео для
|
|
||||||
каждого канала
|
|
||||||
Confirm Before Unsubscribing: Подтвердить, прежде чем отписаться
|
Confirm Before Unsubscribing: Подтвердить, прежде чем отписаться
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -466,8 +466,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Сакриј видео снимке на гледању'
|
Hide Videos on Watch: 'Сакриј видео снимке на гледању'
|
||||||
Fetch Feeds from RSS: 'Прикупи фидове из RSS-а'
|
Fetch Feeds from RSS: 'Прикупи фидове из RSS-а'
|
||||||
Fetch Automatically: Аутоматски прикупи фид
|
Fetch Automatically: Аутоматски прикупи фид
|
||||||
Only Show Latest Video for Each Channel: Прикажи само најновији видео снимак за
|
|
||||||
сваки канал
|
|
||||||
Confirm Before Unsubscribing: Избегни случајно отпраћивање
|
Confirm Before Unsubscribing: Избегни случајно отпраћивање
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Без ометања'
|
Distraction Free Settings: 'Без ометања'
|
||||||
|
@ -397,8 +397,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Dölj video under visning'
|
Hide Videos on Watch: 'Dölj video under visning'
|
||||||
Fetch Feeds from RSS: 'Hämta prenumerationer från RSS'
|
Fetch Feeds from RSS: 'Hämta prenumerationer från RSS'
|
||||||
Fetch Automatically: Hämta flöde automatiskt
|
Fetch Automatically: Hämta flöde automatiskt
|
||||||
Only Show Latest Video for Each Channel: Visa endast den senaste videon för varje
|
|
||||||
kanal
|
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Datainställningar'
|
Data Settings: 'Datainställningar'
|
||||||
Select Import Type: 'Välj import-typen'
|
Select Import Type: 'Välj import-typen'
|
||||||
|
@ -455,8 +455,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'İzlenmiş Videoları Gizle'
|
Hide Videos on Watch: 'İzlenmiş Videoları Gizle'
|
||||||
Fetch Feeds from RSS: 'Akışları RSS''den Getir'
|
Fetch Feeds from RSS: 'Akışları RSS''den Getir'
|
||||||
Fetch Automatically: Akışı Otomatik Olarak Getir
|
Fetch Automatically: Akışı Otomatik Olarak Getir
|
||||||
Only Show Latest Video for Each Channel: Her Kanal için Yalnızca En Son Videoyu
|
|
||||||
Göster
|
|
||||||
Confirm Before Unsubscribing: Abonelikten Çıkmadan Önce Onayla
|
Confirm Before Unsubscribing: Abonelikten Çıkmadan Önce Onayla
|
||||||
Data Settings:
|
Data Settings:
|
||||||
Data Settings: 'Veri'
|
Data Settings: 'Veri'
|
||||||
|
@ -349,8 +349,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ховати відео при перегляді'
|
Hide Videos on Watch: 'Ховати відео при перегляді'
|
||||||
Fetch Feeds from RSS: 'Отримати канали з RSS'
|
Fetch Feeds from RSS: 'Отримати канали з RSS'
|
||||||
Fetch Automatically: Автоматично отримувати стрічку
|
Fetch Automatically: Автоматично отримувати стрічку
|
||||||
Only Show Latest Video for Each Channel: Показувати лише останні відео для кожного
|
|
||||||
каналу
|
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: 'Налаштування зосередження'
|
Distraction Free Settings: 'Налаштування зосередження'
|
||||||
Hide Video Views: 'Сховати перегляди відео'
|
Hide Video Views: 'Сховати перегляди відео'
|
||||||
|
@ -422,8 +422,6 @@ Settings:
|
|||||||
Hide Videos on Watch: 'Ẩn video khi đã xem'
|
Hide Videos on Watch: 'Ẩn video khi đã xem'
|
||||||
Fetch Feeds from RSS: Cập nhật bảng tin qua RSS
|
Fetch Feeds from RSS: Cập nhật bảng tin qua RSS
|
||||||
Fetch Automatically: Tự động làm mới bảng tin
|
Fetch Automatically: Tự động làm mới bảng tin
|
||||||
Only Show Latest Video for Each Channel: Chỉ hiện video mới nhất cho mỗi kênh
|
|
||||||
|
|
||||||
Confirm Before Unsubscribing: Nhắc xác nhận trước khi hủy đăng ký
|
Confirm Before Unsubscribing: Nhắc xác nhận trước khi hủy đăng ký
|
||||||
Data Settings:
|
Data Settings:
|
||||||
How do I import my subscriptions?: Làm sao để tôi nhập đăng ký?
|
How do I import my subscriptions?: Làm sao để tôi nhập đăng ký?
|
||||||
|
@ -460,7 +460,6 @@ Settings:
|
|||||||
Hide Videos on Watch: ''
|
Hide Videos on Watch: ''
|
||||||
Fetch Feeds from RSS: ''
|
Fetch Feeds from RSS: ''
|
||||||
Fetch Automatically: ''
|
Fetch Automatically: ''
|
||||||
Only Show Latest Video for Each Channel: ''
|
|
||||||
Confirm Before Unsubscribing: ''
|
Confirm Before Unsubscribing: ''
|
||||||
Distraction Free Settings:
|
Distraction Free Settings:
|
||||||
Distraction Free Settings: ''
|
Distraction Free Settings: ''
|
||||||
|
@ -394,7 +394,6 @@ Settings:
|
|||||||
Hide Videos on Watch: '观看时隐藏视频'
|
Hide Videos on Watch: '观看时隐藏视频'
|
||||||
Fetch Feeds from RSS: 从RSS摘取推送
|
Fetch Feeds from RSS: 从RSS摘取推送
|
||||||
Fetch Automatically: 自动抓取订阅源
|
Fetch Automatically: 自动抓取订阅源
|
||||||
Only Show Latest Video for Each Channel: 只显示每个频道的最新视频
|
|
||||||
Confirm Before Unsubscribing: 避免意外取消订阅
|
Confirm Before Unsubscribing: 避免意外取消订阅
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
@ -393,7 +393,6 @@ Settings:
|
|||||||
Hide Videos on Watch: '觀看時隱藏影片'
|
Hide Videos on Watch: '觀看時隱藏影片'
|
||||||
Fetch Feeds from RSS: 從RSS擷取推送
|
Fetch Feeds from RSS: 從RSS擷取推送
|
||||||
Fetch Automatically: 自動擷取 Feed
|
Fetch Automatically: 自動擷取 Feed
|
||||||
Only Show Latest Video for Each Channel: 只顯示每個頻道的最新影片
|
|
||||||
Confirm Before Unsubscribing: 避免意外取消訂閱
|
Confirm Before Unsubscribing: 避免意外取消訂閱
|
||||||
|
|
||||||
Privacy Settings:
|
Privacy Settings:
|
||||||
|
Loading…
Reference in New Issue
Block a user