Add Locale Strings to Channel and Search pages
This commit is contained in:
parent
4a82822c69
commit
99524f3556
|
@ -274,9 +274,9 @@ export default Vue.extend({
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
const errorMessage = this.$t('Local API Error (Click to copy):')
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: `${errorMessage} ${err}`,
|
message: `${errorMessage}: ${err}`,
|
||||||
time: 10000,
|
time: 10000,
|
||||||
action: () => {
|
action: () => {
|
||||||
navigator.clipboard.writeText(err)
|
navigator.clipboard.writeText(err)
|
||||||
|
@ -324,9 +324,9 @@ export default Vue.extend({
|
||||||
}
|
}
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
const errorMessage = this.$t('Invidious API Error (Click to copy):')
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: `${errorMessage} ${err}`,
|
message: `${errorMessage}: ${err}`,
|
||||||
time: 10000,
|
time: 10000,
|
||||||
action: () => {
|
action: () => {
|
||||||
navigator.clipboard.writeText(err)
|
navigator.clipboard.writeText(err)
|
||||||
|
|
|
@ -47,21 +47,11 @@ export default Vue.extend({
|
||||||
searchResults: [],
|
searchResults: [],
|
||||||
shownElementList: [],
|
shownElementList: [],
|
||||||
apiUsed: '',
|
apiUsed: '',
|
||||||
videoSelectNames: [
|
|
||||||
'Newest',
|
|
||||||
'Oldest',
|
|
||||||
'Most Popular'
|
|
||||||
],
|
|
||||||
videoSelectValues: [
|
videoSelectValues: [
|
||||||
'newest',
|
'newest',
|
||||||
'oldest',
|
'oldest',
|
||||||
'popular'
|
'popular'
|
||||||
],
|
],
|
||||||
playlistSelectNames: [
|
|
||||||
'Last Video Added',
|
|
||||||
'Newest',
|
|
||||||
'Oldest'
|
|
||||||
],
|
|
||||||
playlistSelectValues: [
|
playlistSelectValues: [
|
||||||
'last',
|
'last',
|
||||||
'newest',
|
'newest',
|
||||||
|
@ -86,6 +76,22 @@ export default Vue.extend({
|
||||||
return this.$store.getters.getSessionSearchHistory
|
return this.$store.getters.getSessionSearchHistory
|
||||||
},
|
},
|
||||||
|
|
||||||
|
videoSelectNames: function () {
|
||||||
|
return [
|
||||||
|
this.$t('Channel.Videos.Sort Types.Newest'),
|
||||||
|
this.$t('Channel.Videos.Sort Types.Oldest'),
|
||||||
|
this.$t('Channel.Videos.Sort Types.Most Popular')
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
playlistSelectNames: function () {
|
||||||
|
return [
|
||||||
|
this.$t('Channel.Playlists.Sort Types.Last Video Added'),
|
||||||
|
this.$t('Channel.Playlists.Sort Types.Newest'),
|
||||||
|
this.$t('Channel.Playlists.Sort Types.Oldest')
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
formattedSubCount: function () {
|
formattedSubCount: function () {
|
||||||
return this.subCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',')
|
return this.subCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',')
|
||||||
},
|
},
|
||||||
|
@ -191,12 +197,21 @@ export default Vue.extend({
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'local' && this.backendFallback) {
|
if (this.backendPreference === 'local' && this.backendFallback) {
|
||||||
console.log('Falling back to Invidious API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.getChannelInfoInvidious()
|
this.getChannelInfoInvidious()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -209,12 +224,21 @@ export default Vue.extend({
|
||||||
this.isElementListLoading = false
|
this.isElementListLoading = false
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'local' && this.backendFallback) {
|
if (this.backendPreference === 'local' && this.backendFallback) {
|
||||||
console.log('Falling back to Invidious API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.getChannelInfoInvidious()
|
this.getChannelInfoInvidious()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -225,6 +249,14 @@ export default Vue.extend({
|
||||||
this.videoContinuationString = response.continuation
|
this.videoContinuationString = response.continuation
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -247,8 +279,16 @@ export default Vue.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
}).catch((error) => {
|
}).catch((err) => {
|
||||||
console.log(error)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -267,6 +307,16 @@ export default Vue.extend({
|
||||||
this.latestVideos = this.latestVideos.concat(response)
|
this.latestVideos = this.latestVideos.concat(response)
|
||||||
this.latestVideosPage++
|
this.latestVideosPage++
|
||||||
this.isElementListLoading = false
|
this.isElementListLoading = false
|
||||||
|
}).catch((err) => {
|
||||||
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -278,12 +328,21 @@ export default Vue.extend({
|
||||||
this.isElementListLoading = false
|
this.isElementListLoading = false
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'local' && this.backendFallback) {
|
if (this.backendPreference === 'local' && this.backendFallback) {
|
||||||
console.log('Falling back to Invidious API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.getPlaylistsInvidious()
|
this.getPlaylistsInvidious()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -295,6 +354,14 @@ export default Vue.extend({
|
||||||
this.playlistContinuationString = response.continuation
|
this.playlistContinuationString = response.continuation
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -319,12 +386,21 @@ export default Vue.extend({
|
||||||
this.isElementListLoading = false
|
this.isElementListLoading = false
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
||||||
console.log('Falling back to Local API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Local API')
|
||||||
|
})
|
||||||
this.getPlaylistsLocal()
|
this.getPlaylistsLocal()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -398,12 +474,21 @@ export default Vue.extend({
|
||||||
this.searchContinuationString = response.continuation
|
this.searchContinuationString = response.continuation
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'local' && this.backendFallback) {
|
if (this.backendPreference === 'local' && this.backendFallback) {
|
||||||
console.log('Falling back to Invidious API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.searchChannelInvidious()
|
this.searchChannelInvidious()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
@ -414,6 +499,14 @@ export default Vue.extend({
|
||||||
this.searchContinuationString = response.continuation
|
this.searchContinuationString = response.continuation
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -434,12 +527,21 @@ export default Vue.extend({
|
||||||
this.searchPage++
|
this.searchPage++
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
||||||
console.log('Falling back to Local API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Local API')
|
||||||
|
})
|
||||||
this.searchChannelLocal()
|
this.searchChannelLocal()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
// TODO: Show toast with error message
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,9 @@
|
||||||
<span
|
<span
|
||||||
class="channelSubCount"
|
class="channelSubCount"
|
||||||
>
|
>
|
||||||
{{ formattedSubCount }} Subscribers
|
{{ formattedSubCount }}
|
||||||
|
<span v-if="subCount === 1">{{ $t("Channel.Subscriber") }}</span>
|
||||||
|
<span v-else>{{ $t("Channel.Subscribers") }}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<ft-button
|
<ft-button
|
||||||
|
@ -51,19 +53,19 @@
|
||||||
class="tab"
|
class="tab"
|
||||||
@click="changeTab('videos')"
|
@click="changeTab('videos')"
|
||||||
>
|
>
|
||||||
VIDEOS
|
{{ $t("Channel.Videos.Videos").toUpperCase() }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="tab"
|
class="tab"
|
||||||
@click="changeTab('playlists')"
|
@click="changeTab('playlists')"
|
||||||
>
|
>
|
||||||
PLAYLISTS
|
{{ $t("Channel.Playlists.Playlists").toUpperCase() }}
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="tab"
|
class="tab"
|
||||||
@click="changeTab('about')"
|
@click="changeTab('about')"
|
||||||
>
|
>
|
||||||
ABOUT
|
{{ $t("Channel.About.About").toUpperCase() }}
|
||||||
</div>
|
</div>
|
||||||
<ft-input
|
<ft-input
|
||||||
placeholder="Search Channel"
|
placeholder="Search Channel"
|
||||||
|
@ -100,7 +102,7 @@
|
||||||
class="aboutTab"
|
class="aboutTab"
|
||||||
>
|
>
|
||||||
<h2>
|
<h2>
|
||||||
Channel Description
|
{{ $t("Channel.About.Channel Description") }}
|
||||||
</h2>
|
</h2>
|
||||||
<div
|
<div
|
||||||
class="aboutInfo"
|
class="aboutInfo"
|
||||||
|
@ -110,7 +112,7 @@
|
||||||
<h2
|
<h2
|
||||||
v-if="relatedChannels.length > 0"
|
v-if="relatedChannels.length > 0"
|
||||||
>
|
>
|
||||||
Featured Channels
|
{{ $t("Channel.About.Featured Channels") }}
|
||||||
</h2>
|
</h2>
|
||||||
<ft-flex-box
|
<ft-flex-box
|
||||||
v-if="relatedChannels.length > 0"
|
v-if="relatedChannels.length > 0"
|
||||||
|
@ -139,7 +141,7 @@
|
||||||
v-if="currentTab === 'videos' && latestVideos.length === 0"
|
v-if="currentTab === 'videos' && latestVideos.length === 0"
|
||||||
>
|
>
|
||||||
<p class="message">
|
<p class="message">
|
||||||
This channel does not currently have any videos
|
{{ $t("Channel.Videos.This channel does not currently have any videos") }}
|
||||||
</p>
|
</p>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
<ft-element-list
|
<ft-element-list
|
||||||
|
@ -150,7 +152,7 @@
|
||||||
v-if="currentTab === 'playlists' && latestPlaylists.length === 0"
|
v-if="currentTab === 'playlists' && latestPlaylists.length === 0"
|
||||||
>
|
>
|
||||||
<p class="message">
|
<p class="message">
|
||||||
This channel does not currently have any playlists
|
{{ $t("Channel.Playlists.This channel does not currently have any playlists") }}
|
||||||
</p>
|
</p>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
<ft-element-list
|
<ft-element-list
|
||||||
|
@ -161,7 +163,7 @@
|
||||||
v-if="currentTab === 'search' && searchResults.length === 0"
|
v-if="currentTab === 'search' && searchResults.length === 0"
|
||||||
>
|
>
|
||||||
<p class="message">
|
<p class="message">
|
||||||
Your search results have returned 0 results
|
{{ $t("Channel.Your search results have returned 0 results") }}
|
||||||
</p>
|
</p>
|
||||||
</ft-flex-box>
|
</ft-flex-box>
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
import { mapActions } from 'vuex'
|
||||||
import IsEqual from 'lodash.isequal'
|
import IsEqual from 'lodash.isequal'
|
||||||
import FtLoader from '../../components/ft-loader/ft-loader.vue'
|
import FtLoader from '../../components/ft-loader/ft-loader.vue'
|
||||||
import FtCard from '../../components/ft-card/ft-card.vue'
|
import FtCard from '../../components/ft-card/ft-card.vue'
|
||||||
|
@ -144,8 +145,18 @@ export default Vue.extend({
|
||||||
this.$store.commit('addToSessionSearchHistory', historyPayload)
|
this.$store.commit('addToSessionSearchHistory', historyPayload)
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'local' && this.backendFallback) {
|
if (this.backendPreference === 'local' && this.backendFallback) {
|
||||||
console.log('Error getting data with local backend, falling back to Invidious')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.performSearchInvidious(payload)
|
this.performSearchInvidious(payload)
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
|
@ -206,8 +217,18 @@ export default Vue.extend({
|
||||||
this.$store.commit('addToSessionSearchHistory', historyPayload)
|
this.$store.commit('addToSessionSearchHistory', historyPayload)
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.log(err)
|
console.log(err)
|
||||||
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
|
this.showToast({
|
||||||
|
message: `${errorMessage}: ${err}`,
|
||||||
|
time: 10000,
|
||||||
|
action: () => {
|
||||||
|
navigator.clipboard.writeText(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
||||||
console.log('Error getting data with Invidious, falling back to local backend')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Local API')
|
||||||
|
})
|
||||||
this.performSearchLocal(payload)
|
this.performSearchLocal(payload)
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
|
@ -228,6 +249,10 @@ export default Vue.extend({
|
||||||
|
|
||||||
console.log(payload)
|
console.log(payload)
|
||||||
|
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Search Filters["Fetching results. Please wait"]')
|
||||||
|
})
|
||||||
|
|
||||||
if (this.nextPageRef !== '') {
|
if (this.nextPageRef !== '') {
|
||||||
this.performSearchLocal(payload)
|
this.performSearchLocal(payload)
|
||||||
} else {
|
} else {
|
||||||
|
@ -249,6 +274,10 @@ export default Vue.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
}
|
},
|
||||||
|
|
||||||
|
...mapActions([
|
||||||
|
'showToast'
|
||||||
|
])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
v-else
|
v-else
|
||||||
class="card"
|
class="card"
|
||||||
>
|
>
|
||||||
<h3>Search Results</h3>
|
<h3>{{ $t("Search Filters.Search Results") }}</h3>
|
||||||
<ft-element-list
|
<ft-element-list
|
||||||
:data="shownResults"
|
:data="shownResults"
|
||||||
/>
|
/>
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
class="getNextPage"
|
class="getNextPage"
|
||||||
@click="nextPage"
|
@click="nextPage"
|
||||||
>
|
>
|
||||||
<font-awesome-icon icon="search" /> Fetch more results…
|
<font-awesome-icon icon="search" /> {{ $t("Search Filters.Fetch more results") }}
|
||||||
</div>
|
</div>
|
||||||
</ft-card>
|
</ft-card>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -328,8 +328,9 @@ export default Vue.extend({
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: `Local API Error (Click to copy): ${err}`,
|
message: `${errorMessage}: ${err}`,
|
||||||
time: 10000,
|
time: 10000,
|
||||||
action: () => {
|
action: () => {
|
||||||
navigator.clipboard.writeText(err)
|
navigator.clipboard.writeText(err)
|
||||||
|
@ -337,7 +338,9 @@ export default Vue.extend({
|
||||||
})
|
})
|
||||||
console.log(err)
|
console.log(err)
|
||||||
if (!this.usingElectron || (this.backendPreference === 'local' && this.backendFallback)) {
|
if (!this.usingElectron || (this.backendPreference === 'local' && this.backendFallback)) {
|
||||||
this.showToast('Falling back to Invidious API')
|
this.showToast({
|
||||||
|
message: this.$t('Falling back to Invidious API')
|
||||||
|
})
|
||||||
this.getVideoInformationInvidious()
|
this.getVideoInformationInvidious()
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
|
@ -432,8 +435,9 @@ export default Vue.extend({
|
||||||
this.isLoading = false
|
this.isLoading = false
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
const errorMessage = this.$t('Invidious API Error (Click to copy)')
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: `Invidious API Error (Click to copy): ${err}`,
|
message: `${errorMessage}: ${err}`,
|
||||||
time: 10000,
|
time: 10000,
|
||||||
action: () => {
|
action: () => {
|
||||||
navigator.clipboard.writeText(err)
|
navigator.clipboard.writeText(err)
|
||||||
|
@ -442,7 +446,7 @@ export default Vue.extend({
|
||||||
console.log(err)
|
console.log(err)
|
||||||
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
if (this.backendPreference === 'invidious' && this.backendFallback) {
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: 'Falling back to the local API'
|
message: this.$t('Falling back to Local API')
|
||||||
})
|
})
|
||||||
this.getVideoInformationLocal()
|
this.getVideoInformationLocal()
|
||||||
} else {
|
} else {
|
||||||
|
@ -473,8 +477,9 @@ export default Vue.extend({
|
||||||
this.videoSourceList = result.player_response.streamingData.formats
|
this.videoSourceList = result.player_response.streamingData.formats
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
const errorMessage = this.$t('Local API Error (Click to copy)')
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: `Local API Error (Click to copy): ${err}`,
|
message: `${errorMessage}: ${err}`,
|
||||||
time: 10000,
|
time: 10000,
|
||||||
action: () => {
|
action: () => {
|
||||||
navigator.clipboard.writeText(err)
|
navigator.clipboard.writeText(err)
|
||||||
|
@ -533,18 +538,17 @@ export default Vue.extend({
|
||||||
|
|
||||||
handleVideoEnded: function () {
|
handleVideoEnded: function () {
|
||||||
if (this.watchingPlaylist) {
|
if (this.watchingPlaylist) {
|
||||||
console.log('Playlist next video in 5 seconds')
|
|
||||||
const timeout = setTimeout(() => {
|
const timeout = setTimeout(() => {
|
||||||
this.$refs.watchVideoPlaylist.playNextVideo()
|
this.$refs.watchVideoPlaylist.playNextVideo()
|
||||||
}, 5000)
|
}, 5000)
|
||||||
|
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: 'Playing next video in 5 seconds. Click to cancel',
|
message: this.$t('Playing next video in 5 seconds. Click to cancel'),
|
||||||
time: 5500,
|
time: 5500,
|
||||||
action: () => {
|
action: () => {
|
||||||
clearTimeout(timeout)
|
clearTimeout(timeout)
|
||||||
this.showToast({
|
this.showToast({
|
||||||
message: 'Canceled next video autoplay'
|
message: this.$t('Canceled next video autoplay')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -244,10 +244,32 @@ About:
|
||||||
Latest FreeTube News: Latest FreeTube News
|
Latest FreeTube News: Latest FreeTube News
|
||||||
|
|
||||||
#On Channel Page
|
#On Channel Page
|
||||||
Subscriber: Subscriber
|
Channel:
|
||||||
Subscribers: Subscribers
|
Subscriber: Subscriber
|
||||||
Subscribe: Subscribe
|
Subscribers: Subscribers
|
||||||
Unsubscribe: Unsubscribe
|
Subscribe: Subscribe
|
||||||
|
Unsubscribe: Unsubscribe
|
||||||
|
Search Channel: Search Channel
|
||||||
|
Your search results have returned 0 results: Your search results have returned 0 results
|
||||||
|
Sort By: Sort By
|
||||||
|
Videos:
|
||||||
|
Videos: Videos
|
||||||
|
This channel does not currently have any videos: This channel does not currently have any videos
|
||||||
|
Sort Types:
|
||||||
|
Newest: Newest
|
||||||
|
Oldest: Oldest
|
||||||
|
Most Popular: Most Popular
|
||||||
|
Playlists:
|
||||||
|
Playlists: Playlists
|
||||||
|
This channel does not currently have any playlists: This channel does not currently have any playlists
|
||||||
|
Sort Types:
|
||||||
|
Last Video Added: Last Video Added
|
||||||
|
Newest: Newest
|
||||||
|
Oldest: Oldest
|
||||||
|
About:
|
||||||
|
About: About
|
||||||
|
Channel Description: Channel Description
|
||||||
|
Featured Channels: Featured Channels
|
||||||
Video:
|
Video:
|
||||||
Views: Views
|
Views: Views
|
||||||
Live Now: Live Now
|
Live Now: Live Now
|
||||||
|
@ -291,9 +313,6 @@ Videos:
|
||||||
#& Playlists
|
#& Playlists
|
||||||
Playlist:
|
Playlist:
|
||||||
#& About
|
#& About
|
||||||
Channel Description: Channel Description
|
|
||||||
Featured Channels: Featured Channels
|
|
||||||
Search Channel: Search Channel
|
|
||||||
View Full Playlist: View Full Playlist
|
View Full Playlist: View Full Playlist
|
||||||
|
|
||||||
# On Channel Playlist Page
|
# On Channel Playlist Page
|
||||||
|
@ -351,7 +370,7 @@ Loop is now enabled: Loop is now enabled
|
||||||
Shuffle is now disabled: Shuffle is now disabled
|
Shuffle is now disabled: Shuffle is now disabled
|
||||||
Shuffle is now enabled: Shuffle is now enabled
|
Shuffle is now enabled: Shuffle is now enabled
|
||||||
Playing Next Video: Playing Next Video
|
Playing Next Video: Playing Next Video
|
||||||
Playing previous video: Playing previous video
|
Playing Previous Video: Playing Previous Video
|
||||||
Playing next video in 5 seconds. Click to cancel: Playing next video in 5 seconds. Click to cancel
|
Playing next video in 5 seconds. Click to cancel: Playing next video in 5 seconds. Click to cancel
|
||||||
Canceled next video autoplay: Canceled next video autoplay
|
Canceled next video autoplay: Canceled next video autoplay
|
||||||
'The playlist has ended. Enable loop to continue playing': 'The playlist has ended. Enable loop to continue playing'
|
'The playlist has ended. Enable loop to continue playing': 'The playlist has ended. Enable loop to continue playing'
|
||||||
|
|
Loading…
Reference in New Issue