Merge branch 'master' of git://github.com/FreeTubeApp/FreeTube-Vue
Merge of language files
This commit is contained in:
commit
ba7e8e18bb
|
@ -116,6 +116,20 @@ app.on('window-all-closed', () => {
|
||||||
if (process.platform !== 'darwin') {
|
if (process.platform !== 'darwin') {
|
||||||
app.quit()
|
app.quit()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mainWindow.webContents.session.clearCache()
|
||||||
|
mainWindow.webContents.session.clearStorageData({
|
||||||
|
storages: [
|
||||||
|
'appcache',
|
||||||
|
'cookies',
|
||||||
|
'filesystem',
|
||||||
|
'indexdb',
|
||||||
|
'shadercache',
|
||||||
|
'websql',
|
||||||
|
'serviceworkers',
|
||||||
|
'cachestorage'
|
||||||
|
]
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
app.on('activate', () => {
|
app.on('activate', () => {
|
||||||
|
|
|
@ -42,12 +42,12 @@ export default Vue.extend({
|
||||||
this.openAllLinksExternally()
|
this.openAllLinksExternally()
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
// try {
|
||||||
const doc = yaml.safeLoad(fs.readFileSync('./static/locales/en-US.yaml'))
|
// const doc = yaml.safeLoad(fs.readFileSync('./static/locales/en-US.yaml'))
|
||||||
console.log(doc)
|
// console.log(doc)
|
||||||
} catch (e) {
|
// } catch (e) {
|
||||||
console.log(e)
|
// console.log(e)
|
||||||
}
|
// }
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
checkLocale: function () {
|
checkLocale: function () {
|
||||||
|
|
|
@ -174,6 +174,9 @@ export default Vue.extend({
|
||||||
break
|
break
|
||||||
case 'copyYoutube':
|
case 'copyYoutube':
|
||||||
navigator.clipboard.writeText(this.youtubeUrl)
|
navigator.clipboard.writeText(this.youtubeUrl)
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Share.YouTube URL copied to clipboard')
|
||||||
|
})
|
||||||
break
|
break
|
||||||
case 'openYoutube':
|
case 'openYoutube':
|
||||||
if (this.usingElectron) {
|
if (this.usingElectron) {
|
||||||
|
@ -183,6 +186,9 @@ export default Vue.extend({
|
||||||
break
|
break
|
||||||
case 'copyYoutubeEmbed':
|
case 'copyYoutubeEmbed':
|
||||||
navigator.clipboard.writeText(this.youtubeEmbedUrl)
|
navigator.clipboard.writeText(this.youtubeEmbedUrl)
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Share.YouTube Embed URL copied to clipboard')
|
||||||
|
})
|
||||||
break
|
break
|
||||||
case 'openYoutubeEmbed':
|
case 'openYoutubeEmbed':
|
||||||
if (this.usingElectron) {
|
if (this.usingElectron) {
|
||||||
|
@ -192,6 +198,9 @@ export default Vue.extend({
|
||||||
break
|
break
|
||||||
case 'copyInvidious':
|
case 'copyInvidious':
|
||||||
navigator.clipboard.writeText(this.invidiousUrl)
|
navigator.clipboard.writeText(this.invidiousUrl)
|
||||||
|
this.showToast({
|
||||||
|
message: this.$t('Share.Invidious URL copied to clipboard')
|
||||||
|
})
|
||||||
break
|
break
|
||||||
case 'openInvidious':
|
case 'openInvidious':
|
||||||
if (this.usingElectron) {
|
if (this.usingElectron) {
|
||||||
|
|
|
@ -22,16 +22,6 @@ library.add(fas)
|
||||||
Vue.component('font-awesome-icon', FontAwesomeIcon)
|
Vue.component('font-awesome-icon', FontAwesomeIcon)
|
||||||
Vue.use(VueI18n)
|
Vue.use(VueI18n)
|
||||||
|
|
||||||
fs.readdir('.', (err, dir) => {
|
|
||||||
if (err) {
|
|
||||||
console.log(err)
|
|
||||||
}
|
|
||||||
console.log(dir)
|
|
||||||
for (const filePath of dir) {
|
|
||||||
console.log(filePath)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// List of locales approved for use
|
// List of locales approved for use
|
||||||
const activeLocales = ['en-US', 'de-DE', 'pt-PT', 'fi', 'pt-BR', 'vi', 'zh-CN', 'zh-TW']
|
const activeLocales = ['en-US', 'de-DE', 'pt-PT', 'fi', 'pt-BR', 'vi', 'zh-CN', 'zh-TW']
|
||||||
const messages = {}
|
const messages = {}
|
||||||
|
|
|
@ -687,7 +687,10 @@ export default Vue.extend({
|
||||||
])
|
])
|
||||||
},
|
},
|
||||||
beforeRouteLeave: function (to, from, next) {
|
beforeRouteLeave: function (to, from, next) {
|
||||||
if (this.rememberHistory) {
|
if (this.rememberHistory && !this.isLoading && !this.isLive) {
|
||||||
|
const player = this.$refs.videoPlayer.player
|
||||||
|
|
||||||
|
if (typeof player !== 'undefined') {
|
||||||
const currentTime = this.$refs.videoPlayer.player.currentTime()
|
const currentTime = this.$refs.videoPlayer.player.currentTime()
|
||||||
console.log(currentTime)
|
console.log(currentTime)
|
||||||
const payload = {
|
const payload = {
|
||||||
|
@ -698,6 +701,7 @@ export default Vue.extend({
|
||||||
console.log('update watch progress')
|
console.log('update watch progress')
|
||||||
this.updateWatchProgress(payload)
|
this.updateWatchProgress(payload)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
next()
|
next()
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,376 @@
|
||||||
|
FreeTube: 'ফ্ৰীটিউব'
|
||||||
|
# Currently on Subscriptions, Playlists, and History
|
||||||
|
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
||||||
|
|
||||||
|
# Webkit Menu Bar
|
||||||
|
File: 'ফাইল'
|
||||||
|
Quit: 'অন্ত কৰক'
|
||||||
|
Edit: 'সম্পাদনা'
|
||||||
|
Undo: 'পূৰ্বৰ দৰে কৰক'
|
||||||
|
Redo: 'পুনঃকৰক'
|
||||||
|
Cut: 'ছেদ কৰক'
|
||||||
|
Copy: 'প্রতিলিপি কৰক'
|
||||||
|
Paste: 'লেপন কৰক'
|
||||||
|
Delete: 'বিলোপ কৰক'
|
||||||
|
Select all: 'সকলোক বাছক'
|
||||||
|
Reload: 'সতেজ কৰক'
|
||||||
|
Force Reload: 'বলেৰে সতেজ কৰক'
|
||||||
|
Toggle Developer Tools: ''
|
||||||
|
Actual size: ''
|
||||||
|
Zoom in: ''
|
||||||
|
Zoom out: ''
|
||||||
|
Toggle fullscreen: ''
|
||||||
|
Window: ''
|
||||||
|
Minimize: ''
|
||||||
|
Close: ''
|
||||||
|
Back: ''
|
||||||
|
Forward: ''
|
||||||
|
|
||||||
|
# Search Bar
|
||||||
|
Search / Go to URL: ''
|
||||||
|
# In Filter Button
|
||||||
|
Search Filters:
|
||||||
|
Search Filters: ''
|
||||||
|
Sort By:
|
||||||
|
Sort By: ''
|
||||||
|
Most Relevant: ''
|
||||||
|
Rating: ''
|
||||||
|
Upload Date: ''
|
||||||
|
View Count: ''
|
||||||
|
Time:
|
||||||
|
Time: ''
|
||||||
|
Any Time: ''
|
||||||
|
Last Hour: ''
|
||||||
|
Today: ''
|
||||||
|
This Week: ''
|
||||||
|
This Month: ''
|
||||||
|
This Year: ''
|
||||||
|
Type:
|
||||||
|
Type: ''
|
||||||
|
All Types: ''
|
||||||
|
Videos: ''
|
||||||
|
Channels: ''
|
||||||
|
#& Playlists
|
||||||
|
Duration:
|
||||||
|
Duration: ''
|
||||||
|
All Durations: ''
|
||||||
|
Short (< 4 minutes): ''
|
||||||
|
Long (> 20 minutes): ''
|
||||||
|
# On Search Page
|
||||||
|
Search Results: ''
|
||||||
|
Fetching results. Please wait: ''
|
||||||
|
Fetch more results: ''
|
||||||
|
# Sidebar
|
||||||
|
Subscriptions:
|
||||||
|
# On Subscriptions Page
|
||||||
|
Subscriptions: ''
|
||||||
|
Latest Subscriptions: ''
|
||||||
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': ''
|
||||||
|
'Getting Subscriptions. Please wait.': ''
|
||||||
|
Trending: ''
|
||||||
|
Most Popular: ''
|
||||||
|
Playlists: ''
|
||||||
|
User Playlists:
|
||||||
|
Your Playlists: ''
|
||||||
|
History:
|
||||||
|
# On History Page
|
||||||
|
History: ''
|
||||||
|
Watch History: ''
|
||||||
|
Your history list is currently empty.: ''
|
||||||
|
Settings:
|
||||||
|
# On Settings Page
|
||||||
|
Settings: ''
|
||||||
|
General Settings:
|
||||||
|
General Settings: ''
|
||||||
|
Fallback to Non-Preferred Backend on Failure: ''
|
||||||
|
Enable Search Suggestions: ''
|
||||||
|
Default Landing Page: ''
|
||||||
|
Locale Preference: ''
|
||||||
|
Preferred API Backend:
|
||||||
|
Preferred API Backend: ''
|
||||||
|
Local API: ''
|
||||||
|
Invidious API: ''
|
||||||
|
Video View Type:
|
||||||
|
Video View Type: ''
|
||||||
|
Grid: ''
|
||||||
|
List: ''
|
||||||
|
Thumbnail Preference:
|
||||||
|
Thumbnail Preference: ''
|
||||||
|
Default: ''
|
||||||
|
Beginning: ''
|
||||||
|
Middle: ''
|
||||||
|
End: ''
|
||||||
|
'Invidious Instance (Default is https://invidio.us)': ''
|
||||||
|
Region for Trending: ''
|
||||||
|
#! List countries
|
||||||
|
Theme Settings:
|
||||||
|
Theme Settings: ''
|
||||||
|
Match Top Bar with Main Color: ''
|
||||||
|
Base Theme:
|
||||||
|
Base Theme: ''
|
||||||
|
Black: ''
|
||||||
|
Dark: ''
|
||||||
|
Light: ''
|
||||||
|
Main Color Theme:
|
||||||
|
Main Color Theme: ''
|
||||||
|
Red: ''
|
||||||
|
Pink: ''
|
||||||
|
Purple: ''
|
||||||
|
Deep Purple: ''
|
||||||
|
Indigo: ''
|
||||||
|
Blue: ''
|
||||||
|
Light Blue: ''
|
||||||
|
Cyan: ''
|
||||||
|
Teal: ''
|
||||||
|
Green: ''
|
||||||
|
Light Green: ''
|
||||||
|
Lime: ''
|
||||||
|
Yellow: ''
|
||||||
|
Amber: ''
|
||||||
|
Orange: ''
|
||||||
|
Deep Orange: ''
|
||||||
|
Secondary Color Theme: ''
|
||||||
|
#* Main Color Theme
|
||||||
|
Player Settings:
|
||||||
|
Player Settings: ''
|
||||||
|
Force Local Backend for Legacy Formats: ''
|
||||||
|
Remember History: ''
|
||||||
|
Play Next Video: ''
|
||||||
|
Turn on Subtitles by Default: ''
|
||||||
|
Autoplay Videos: ''
|
||||||
|
Proxy Videos Through Invidious: ''
|
||||||
|
Autoplay Playlists: ''
|
||||||
|
Enable Theatre Mode by Default: ''
|
||||||
|
Default Volume: ''
|
||||||
|
Default Playback Rate: ''
|
||||||
|
Default Video Format:
|
||||||
|
Default Video Format: ''
|
||||||
|
Dash Formats: ''
|
||||||
|
Legacy Formats: ''
|
||||||
|
Audio Formats: ''
|
||||||
|
Default Quality:
|
||||||
|
Default Quality: ''
|
||||||
|
Auto: ''
|
||||||
|
144p: ''
|
||||||
|
240p: ''
|
||||||
|
360p: ''
|
||||||
|
480p: ''
|
||||||
|
720p: ''
|
||||||
|
1080p: ''
|
||||||
|
1440p: ''
|
||||||
|
4k: ''
|
||||||
|
8k: ''
|
||||||
|
Subscription Settings:
|
||||||
|
Subscription Settings: ''
|
||||||
|
Hide Videos on Watch: ''
|
||||||
|
Subscriptions Export Format:
|
||||||
|
Subscriptions Export Format: ''
|
||||||
|
#& Freetube
|
||||||
|
Newpipe: ''
|
||||||
|
OPML: ''
|
||||||
|
Manage Subscriptions: ''
|
||||||
|
Import Subscriptions: ''
|
||||||
|
Export Subscriptions: ''
|
||||||
|
How do I import my subscriptions?: ''
|
||||||
|
Advanced Settings:
|
||||||
|
Advanced Settings: ''
|
||||||
|
Enable Debug Mode (Prints data to the console): ''
|
||||||
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': ''
|
||||||
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': ''
|
||||||
|
Use Tor / Proxy for API calls: ''
|
||||||
|
TEST PROXY: ''
|
||||||
|
#& Invidious Instance (Default is https://invidio.us)
|
||||||
|
See Public Instances: ''
|
||||||
|
Clear History:
|
||||||
|
Clear History: ''
|
||||||
|
# On Click
|
||||||
|
Are you sure you want to delete your history?: ''
|
||||||
|
#& Yes
|
||||||
|
#& No
|
||||||
|
Clear Subscriptions:
|
||||||
|
Clear Subscriptions: ''
|
||||||
|
# On Click
|
||||||
|
Are you sure you want to remove all subscriptions?: ''
|
||||||
|
#& Yes
|
||||||
|
#& No
|
||||||
|
|
||||||
|
About:
|
||||||
|
#On About page
|
||||||
|
About: ''
|
||||||
|
#& About
|
||||||
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': ''
|
||||||
|
|
||||||
|
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >
|
||||||
|
|
||||||
|
Thank you very much to the People and Projects that make FreeTube possible!: ''
|
||||||
|
|
||||||
|
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': ''
|
||||||
|
|
||||||
|
'Looking for help? Check out our Wiki page.': ''
|
||||||
|
|
||||||
|
Check out our Firefox extension!: ''
|
||||||
|
|
||||||
|
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': ''
|
||||||
|
|
||||||
|
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
||||||
|
|
||||||
|
Latest FreeTube News: ''
|
||||||
|
|
||||||
|
#On Channel Page
|
||||||
|
Channel:
|
||||||
|
Subscriber: ''
|
||||||
|
Subscribers: ''
|
||||||
|
Subscribe: ''
|
||||||
|
Unsubscribe: ''
|
||||||
|
Search Channel: ''
|
||||||
|
Your search results have returned 0 results: ''
|
||||||
|
Sort By: ''
|
||||||
|
Videos:
|
||||||
|
Videos: ''
|
||||||
|
This channel does not currently have any videos: ''
|
||||||
|
Sort Types:
|
||||||
|
Newest: ''
|
||||||
|
Oldest: ''
|
||||||
|
Most Popular: ''
|
||||||
|
Playlists:
|
||||||
|
Playlists: ''
|
||||||
|
This channel does not currently have any playlists: ''
|
||||||
|
Sort Types:
|
||||||
|
Last Video Added: ''
|
||||||
|
Newest: ''
|
||||||
|
Oldest: ''
|
||||||
|
About:
|
||||||
|
About: ''
|
||||||
|
Channel Description: ''
|
||||||
|
Featured Channels: ''
|
||||||
|
Video:
|
||||||
|
Mark As Watched: ''
|
||||||
|
Remove From History: ''
|
||||||
|
Video has been marked as watched: ''
|
||||||
|
Video has been removed from your history: ''
|
||||||
|
Open in YouTube: ''
|
||||||
|
Copy YouTube Link: ''
|
||||||
|
Open YouTube Embedded Player: ''
|
||||||
|
Copy YouTube Embedded Player Link: ''
|
||||||
|
Open in Invidious: ''
|
||||||
|
Copy Invidious Link: ''
|
||||||
|
View: ''
|
||||||
|
Views: ''
|
||||||
|
# Context is "X People Watching"
|
||||||
|
Watching: ''
|
||||||
|
Watched: ''
|
||||||
|
# As in a Live Video
|
||||||
|
Live: ''
|
||||||
|
Live Now: ''
|
||||||
|
Live Chat: ''
|
||||||
|
Enable Live Chat: ''
|
||||||
|
Live Chat is currently not supported in this build.: ''
|
||||||
|
'Chat is disabled or the Live Stream has ended.': ''
|
||||||
|
Live chat is enabled. Chat messages will appear here once sent.: ''
|
||||||
|
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': ''
|
||||||
|
Published:
|
||||||
|
Jan: ''
|
||||||
|
Feb: ''
|
||||||
|
Mar: ''
|
||||||
|
Apr: ''
|
||||||
|
May: ''
|
||||||
|
Jun: ''
|
||||||
|
Jul: ''
|
||||||
|
Aug: ''
|
||||||
|
Sep: ''
|
||||||
|
Oct: ''
|
||||||
|
Nov: ''
|
||||||
|
Dec: ''
|
||||||
|
Second: ''
|
||||||
|
Seconds: ''
|
||||||
|
Hour: ''
|
||||||
|
Hours: ''
|
||||||
|
Day: ''
|
||||||
|
Days: ''
|
||||||
|
Week: ''
|
||||||
|
Weeks: ''
|
||||||
|
Month: ''
|
||||||
|
Months: ''
|
||||||
|
Year: ''
|
||||||
|
Years: ''
|
||||||
|
Ago: ''
|
||||||
|
Upcoming: ''
|
||||||
|
Published on: ''
|
||||||
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
|
Publicationtemplate: ''
|
||||||
|
#& Videos
|
||||||
|
Videos:
|
||||||
|
#& Sort By
|
||||||
|
Sort By:
|
||||||
|
Newest: ''
|
||||||
|
Oldest: ''
|
||||||
|
#& Most Popular
|
||||||
|
#& Playlists
|
||||||
|
Playlist:
|
||||||
|
#& About
|
||||||
|
View Full Playlist: ''
|
||||||
|
Videos: ''
|
||||||
|
View: ''
|
||||||
|
Views: ''
|
||||||
|
Last Updated On: ''
|
||||||
|
Share Playlist:
|
||||||
|
Share Playlist: ''
|
||||||
|
Copy YouTube Link: ''
|
||||||
|
Open in YouTube: ''
|
||||||
|
Copy Invidious Link: ''
|
||||||
|
Open in Invidious: ''
|
||||||
|
|
||||||
|
# On Video Watch Page
|
||||||
|
#* Published
|
||||||
|
#& Views
|
||||||
|
Toggle Theatre Mode: ''
|
||||||
|
Change Format:
|
||||||
|
Change Video Formats: ''
|
||||||
|
Use Dash Formats: ''
|
||||||
|
Use Legacy Formats: ''
|
||||||
|
Use Audio Formats: ''
|
||||||
|
Share:
|
||||||
|
Share Video: ''
|
||||||
|
Copy Link: ''
|
||||||
|
Open Link: ''
|
||||||
|
Copy Embed: ''
|
||||||
|
Open Embed: ''
|
||||||
|
# On Click
|
||||||
|
Invidious URL copied to clipboard: ''
|
||||||
|
Invidious Embed URL copied to clipboard: ''
|
||||||
|
YouTube URL copied to clipboard: ''
|
||||||
|
YouTube Embed URL copied to clipboard: ''
|
||||||
|
Mini Player: ''
|
||||||
|
Comments:
|
||||||
|
Comments: ''
|
||||||
|
Click to View Comments: ''
|
||||||
|
Getting comment replies, please wait: ''
|
||||||
|
Show Comments: ''
|
||||||
|
Hide Comments: ''
|
||||||
|
# Context: View 10 Replies, View 1 Reply
|
||||||
|
View: ''
|
||||||
|
Hide: ''
|
||||||
|
Replies: ''
|
||||||
|
Reply: ''
|
||||||
|
There are no comments available for this video: ''
|
||||||
|
Load More Comments: ''
|
||||||
|
Up Next: ''
|
||||||
|
|
||||||
|
# Toast Messages
|
||||||
|
Local API Error (Click to copy): ''
|
||||||
|
Invidious API Error (Click to copy): ''
|
||||||
|
Falling back to Invidious API: ''
|
||||||
|
Falling back to the local API: ''
|
||||||
|
Subscriptions have not yet been implemented: ''
|
||||||
|
Loop is now disabled: ''
|
||||||
|
Loop is now enabled: ''
|
||||||
|
Shuffle is now disabled: ''
|
||||||
|
Shuffle is now enabled: ''
|
||||||
|
Playing Next Video: ''
|
||||||
|
Playing Previous Video: ''
|
||||||
|
Playing next video in 5 seconds. Click to cancel: ''
|
||||||
|
Canceled next video autoplay: ''
|
||||||
|
'The playlist has ended. Enable loop to continue playing': ''
|
||||||
|
|
||||||
|
Yes: ''
|
||||||
|
No: ''
|
|
@ -1,6 +1,6 @@
|
||||||
FreeTube: FreeTube
|
FreeTube: FreeTube
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
Dieser Teil des Programms is noch nicht fertig. Bitte komme zu einem späteren Zeitpunkt
|
Dieser Teil des Programms is noch nicht fertig. Bitte komme zu einem späteren Zeitpunkt
|
||||||
wieder.
|
wieder.
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,6 @@
|
||||||
# This document follows a roughly page to page, top to bottom, left to right view
|
|
||||||
# as things appear on the screen for the user. It is layouted in this way to allow for
|
|
||||||
# easy verification of all words and phrases by the translator.
|
|
||||||
|
|
||||||
# For repeat entries,
|
|
||||||
#an ampersand (&) will follow the pound (#) in a comment for single item repeats, i.e:
|
|
||||||
#& Playlists
|
|
||||||
#an asterisk (*) will follow the pound (#) in a comment to reference the head listing in multiple item repeats, i.e:
|
|
||||||
#Main Color Theme: Main Color Theme
|
|
||||||
#Red: Red
|
|
||||||
#Pink: Pink
|
|
||||||
#Secondary Color Theme: Secondary Color Theme
|
|
||||||
#* Main Color Theme
|
|
||||||
# An exclamation point (!) is used for entries not yet completed.
|
|
||||||
# A tilda (~) is used for entries that are present, but do not need to be translated. i.e:
|
|
||||||
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
|
||||||
|
|
||||||
---
|
|
||||||
FreeTube: FreeTube
|
FreeTube: FreeTube
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
This part of the app is not ready yet. Come back later when progress has been made.
|
This part of the app is not ready yet. Come back later when progress has been made.
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
|
@ -84,7 +66,8 @@ Subscriptions:
|
||||||
# On Subscriptions Page
|
# On Subscriptions Page
|
||||||
Subscriptions: Subscriptions
|
Subscriptions: Subscriptions
|
||||||
Latest Subscriptions: Latest Subscriptions
|
Latest Subscriptions: Latest Subscriptions
|
||||||
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': Your Subscription list is currently empty. Start adding subscriptions to see them here.
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': Your
|
||||||
|
Subscription list is currently empty. Start adding subscriptions to see them here.
|
||||||
'Getting Subscriptions. Please wait.': Getting Subscriptions. Please wait.
|
'Getting Subscriptions. Please wait.': Getting Subscriptions. Please wait.
|
||||||
Trending: Trending
|
Trending: Trending
|
||||||
Most Popular: Most Popular
|
Most Popular: Most Popular
|
||||||
|
@ -101,7 +84,8 @@ Settings:
|
||||||
Settings: Settings
|
Settings: Settings
|
||||||
General Settings:
|
General Settings:
|
||||||
General Settings: General Settings
|
General Settings: General Settings
|
||||||
Fallback to Non-Preferred Backend on Failure: Fallback to Non-Preferred Backend on Failure
|
Fallback to Non-Preferred Backend on Failure: Fallback to Non-Preferred Backend
|
||||||
|
on Failure
|
||||||
Enable Search Suggestions: Enable Search Suggestions
|
Enable Search Suggestions: Enable Search Suggestions
|
||||||
Default Landing Page: Default Landing Page
|
Default Landing Page: Default Landing Page
|
||||||
Locale Preference: Locale Preference
|
Locale Preference: Locale Preference
|
||||||
|
@ -119,7 +103,8 @@ Settings:
|
||||||
Beginning: Beginning
|
Beginning: Beginning
|
||||||
Middle: Middle
|
Middle: Middle
|
||||||
End: End
|
End: End
|
||||||
'Invidious Instance (Default is https://invidio.us)': Invidious Instance (Default is https://invidio.us)
|
'Invidious Instance (Default is https://invidio.us)': Invidious Instance (Default
|
||||||
|
is https://invidio.us)
|
||||||
Region for Trending: Region for Trending
|
Region for Trending: Region for Trending
|
||||||
#! List countries
|
#! List countries
|
||||||
Theme Settings:
|
Theme Settings:
|
||||||
|
@ -193,9 +178,12 @@ Settings:
|
||||||
How do I import my subscriptions?: How do I import my subscriptions?
|
How do I import my subscriptions?: How do I import my subscriptions?
|
||||||
Advanced Settings:
|
Advanced Settings:
|
||||||
Advanced Settings: Advanced Settings
|
Advanced Settings: Advanced Settings
|
||||||
Enable Debug Mode (Prints data to the console): Enable Debug Mode (Prints data to the console)
|
Enable Debug Mode (Prints data to the console): Enable Debug Mode (Prints data
|
||||||
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': 'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )'
|
to the console)
|
||||||
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': 'Proxy Address (Example:
|
||||||
|
SOCKS5://127.0.0.1:9050 )'
|
||||||
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': Clicking
|
||||||
|
"TEST PROXY" button will send a request to https://ipinfo.io/json
|
||||||
Use Tor / Proxy for API calls: Use Tor / Proxy for API calls
|
Use Tor / Proxy for API calls: Use Tor / Proxy for API calls
|
||||||
TEST PROXY: TEST PROXY
|
TEST PROXY: TEST PROXY
|
||||||
#& Invidious Instance (Default is https://invidio.us)
|
#& Invidious Instance (Default is https://invidio.us)
|
||||||
|
@ -203,13 +191,15 @@ Settings:
|
||||||
Clear History:
|
Clear History:
|
||||||
Clear History: Clear History
|
Clear History: Clear History
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to delete your history?: Are you sure you want to delete your history?
|
Are you sure you want to delete your history?: Are you sure you want to delete
|
||||||
|
your history?
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
Clear Subscriptions:
|
Clear Subscriptions:
|
||||||
Clear Subscriptions: Clear Subscriptions
|
Clear Subscriptions: Clear Subscriptions
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to remove all subscriptions?: Are you sure you want to remove all subscriptions?
|
Are you sure you want to remove all subscriptions?: Are you sure you want to
|
||||||
|
remove all subscriptions?
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
|
|
||||||
|
@ -217,21 +207,27 @@ About:
|
||||||
#On About page
|
#On About page
|
||||||
About: About
|
About: About
|
||||||
#& About
|
#& About
|
||||||
'This software is FOSS and released under the GNU Affero General Public License v3.0.': This copylefted software is freely licensed AGPL-3.0.
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': This
|
||||||
|
copylefted software is freely licensed AGPL-3.0.
|
||||||
|
|
||||||
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >-
|
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >-
|
||||||
Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub
|
Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub
|
||||||
page. Pull requests welcome.
|
page. Pull requests welcome.
|
||||||
|
|
||||||
Thank you very much to the People and Projects that make FreeTube possible!: Thank you very much to the People and Projects that make FreeTube possible!
|
Thank you very much to the People and Projects that make FreeTube possible!: Thank
|
||||||
|
you very much to the People and Projects that make FreeTube possible!
|
||||||
|
|
||||||
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': Want to chat? Join our Element / Matrix Server . Please check the rules before joining.
|
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': Want
|
||||||
|
to chat? Join our Element / Matrix Server . Please check the rules before joining.
|
||||||
|
|
||||||
'Looking for help? Check out our Wiki page.': Looking for help? Check out our Wiki page.
|
'Looking for help? Check out our Wiki page.': Looking for help? Check out our Wiki
|
||||||
|
page.
|
||||||
|
|
||||||
Check out our Firefox extension!: Check out our Firefox extension!
|
Check out our Firefox extension!: Check out our Firefox extension!
|
||||||
|
|
||||||
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.
|
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': If
|
||||||
|
you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin
|
||||||
|
address.
|
||||||
|
|
||||||
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
||||||
|
|
||||||
|
@ -244,18 +240,21 @@ Channel:
|
||||||
Subscribe: Subscribe
|
Subscribe: Subscribe
|
||||||
Unsubscribe: Unsubscribe
|
Unsubscribe: Unsubscribe
|
||||||
Search Channel: Search Channel
|
Search Channel: Search Channel
|
||||||
Your search results have returned 0 results: Your search results have returned 0 results
|
Your search results have returned 0 results: Your search results have returned 0
|
||||||
|
results
|
||||||
Sort By: Sort By
|
Sort By: Sort By
|
||||||
Videos:
|
Videos:
|
||||||
Videos: Videos
|
Videos: Videos
|
||||||
This channel does not currently have any videos: This channel does not currently have any videos
|
This channel does not currently have any videos: This channel does not currently
|
||||||
|
have any videos
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Newest: Newest
|
Newest: Newest
|
||||||
Oldest: Oldest
|
Oldest: Oldest
|
||||||
Most Popular: Most Popular
|
Most Popular: Most Popular
|
||||||
Playlists:
|
Playlists:
|
||||||
Playlists: Playlists
|
Playlists: Playlists
|
||||||
This channel does not currently have any playlists: This channel does not currently have any playlists
|
This channel does not currently have any playlists: This channel does not currently
|
||||||
|
have any playlists
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Last Video Added: Last Video Added
|
Last Video Added: Last Video Added
|
||||||
Newest: Newest
|
Newest: Newest
|
||||||
|
@ -285,10 +284,15 @@ Video:
|
||||||
Live Now: Live Now
|
Live Now: Live Now
|
||||||
Live Chat: Live Chat
|
Live Chat: Live Chat
|
||||||
Enable Live Chat: Enable Live Chat
|
Enable Live Chat: Enable Live Chat
|
||||||
Live Chat is currently not supported in this build.: Live Chat is currently not supported in this build.
|
Live Chat is currently not supported in this build.: Live Chat is currently not
|
||||||
'Chat is disabled or the Live Stream has ended.': Chat is disabled or the Live Stream has ended.
|
supported in this build.
|
||||||
Live chat is enabled. Chat messages will appear here once sent.: Live chat is enabled. Chat messages will appear here once sent.
|
'Chat is disabled or the Live Stream has ended.': Chat is disabled or the Live Stream
|
||||||
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.
|
has ended.
|
||||||
|
Live chat is enabled. Chat messages will appear here once sent.: Live chat is enabled. Chat
|
||||||
|
messages will appear here once sent.
|
||||||
|
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': Live
|
||||||
|
Chat is currently not supported with the Invidious API. A direct connection to
|
||||||
|
YouTube is required.
|
||||||
Published:
|
Published:
|
||||||
Jan: Jan
|
Jan: Jan
|
||||||
Feb: Feb
|
Feb: Feb
|
||||||
|
@ -373,7 +377,8 @@ Comments:
|
||||||
Hide: Hide
|
Hide: Hide
|
||||||
Replies: Replies
|
Replies: Replies
|
||||||
Reply: Reply
|
Reply: Reply
|
||||||
There are no comments available for this video: There are no comments available for this video
|
There are no comments available for this video: There are no comments available
|
||||||
|
for this video
|
||||||
Load More Comments: Load More Comments
|
Load More Comments: Load More Comments
|
||||||
Up Next: Up Next
|
Up Next: Up Next
|
||||||
|
|
||||||
|
@ -389,9 +394,11 @@ 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'
|
||||||
|
|
||||||
Yes: Yes
|
Yes: Yes
|
||||||
No: No
|
No: No
|
||||||
|
|
|
@ -78,6 +78,7 @@ History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: 'Historia'
|
History: 'Historia'
|
||||||
Watch History: 'Katseluhistoria'
|
Watch History: 'Katseluhistoria'
|
||||||
|
Your history list is currently empty.: Historiasi on tällä hetkellä tyhjä.
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: 'Asetukset'
|
Settings: 'Asetukset'
|
||||||
|
@ -315,6 +316,10 @@ Video:
|
||||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
Publicationtemplate: '$ % sitten'
|
Publicationtemplate: '$ % sitten'
|
||||||
#& Videos
|
#& Videos
|
||||||
|
Video has been removed from your history: Video on poistettu historiastasi
|
||||||
|
Video has been marked as watched: Video on merkitty katsotuksi
|
||||||
|
Remove From History: Poista historiasta
|
||||||
|
Mark As Watched: Merkitse katsotuksi
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
FreeTube: 'FreeTube'
|
FreeTube: 'FreeTube'
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
|
Cette partie de l'application n'est pas encore prête. Revenez plus tard lorsque
|
||||||
|
des progrès auront été réalisés.
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
File: 'Fichier'
|
File: 'Fichier'
|
||||||
|
@ -15,38 +17,38 @@ Delete: 'Supprimer'
|
||||||
Select all: 'Tout sélectionner'
|
Select all: 'Tout sélectionner'
|
||||||
Reload: 'Actualiser'
|
Reload: 'Actualiser'
|
||||||
Force Reload: 'Forcer l''actualisation'
|
Force Reload: 'Forcer l''actualisation'
|
||||||
Toggle Developer Tools: ''
|
Toggle Developer Tools: 'Activer les Outils de Développement'
|
||||||
Actual size: ''
|
Actual size: 'Taille actuelle'
|
||||||
Zoom in: 'Agrandir'
|
Zoom in: 'Agrandir'
|
||||||
Zoom out: 'Réduire'
|
Zoom out: 'Réduire'
|
||||||
Toggle fullscreen: 'Plein écran'
|
Toggle fullscreen: 'Plein écran'
|
||||||
Window: 'Fenêtre'
|
Window: 'Fenêtre'
|
||||||
Minimize: 'Réduire'
|
Minimize: 'Réduire'
|
||||||
Close: ''
|
Close: 'Fermer'
|
||||||
Back: ''
|
Back: 'Retour'
|
||||||
Forward: ''
|
Forward: ''
|
||||||
|
|
||||||
# Search Bar
|
# Search Bar
|
||||||
Search / Go to URL: ''
|
Search / Go to URL: 'Rechercher / Aller à l''URL'
|
||||||
# In Filter Button
|
# In Filter Button
|
||||||
Search Filters:
|
Search Filters:
|
||||||
Search Filters: ''
|
Search Filters: 'Filtres de recherche->Filtres de recherche'
|
||||||
Sort By:
|
Sort By:
|
||||||
Sort By: ''
|
Sort By: 'Trier Par'
|
||||||
Most Relevant: ''
|
Most Relevant: 'Le Plus Pertinent'
|
||||||
Rating: ''
|
Rating: ''
|
||||||
Upload Date: ''
|
Upload Date: 'Date de Mise en Ligne'
|
||||||
View Count: ''
|
View Count: 'Nombre de Vues'
|
||||||
Time:
|
Time:
|
||||||
Time: ''
|
Time: ''
|
||||||
Any Time: ''
|
Any Time: ''
|
||||||
Last Hour: ''
|
Last Hour: 'Dernière Heure'
|
||||||
Today: ''
|
Today: 'Aujourd''hui'
|
||||||
This Week: ''
|
This Week: 'Cette Semaine'
|
||||||
This Month: ''
|
This Month: ''
|
||||||
This Year: ''
|
This Year: 'Cette Année'
|
||||||
Type:
|
Type:
|
||||||
Type: ''
|
Type: 'Type'
|
||||||
All Types: ''
|
All Types: ''
|
||||||
Videos: ''
|
Videos: ''
|
||||||
Channels: ''
|
Channels: ''
|
||||||
|
@ -67,7 +69,7 @@ Subscriptions:
|
||||||
Latest Subscriptions: ''
|
Latest Subscriptions: ''
|
||||||
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': ''
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': ''
|
||||||
'Getting Subscriptions. Please wait.': ''
|
'Getting Subscriptions. Please wait.': ''
|
||||||
Trending: ''
|
Trending: 'Tendance'
|
||||||
Most Popular: ''
|
Most Popular: ''
|
||||||
Playlists: ''
|
Playlists: ''
|
||||||
User Playlists:
|
User Playlists:
|
||||||
|
@ -79,7 +81,7 @@ History:
|
||||||
Your history list is currently empty.: ''
|
Your history list is currently empty.: ''
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: ''
|
Settings: 'Paramètres->Paramètres'
|
||||||
General Settings:
|
General Settings:
|
||||||
General Settings: ''
|
General Settings: ''
|
||||||
Fallback to Non-Preferred Backend on Failure: ''
|
Fallback to Non-Preferred Backend on Failure: ''
|
||||||
|
@ -173,7 +175,7 @@ Settings:
|
||||||
Export Subscriptions: ''
|
Export Subscriptions: ''
|
||||||
How do I import my subscriptions?: ''
|
How do I import my subscriptions?: ''
|
||||||
Advanced Settings:
|
Advanced Settings:
|
||||||
Advanced Settings: ''
|
Advanced Settings: 'Paramètres Avancés'
|
||||||
Enable Debug Mode (Prints data to the console): ''
|
Enable Debug Mode (Prints data to the console): ''
|
||||||
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': ''
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': ''
|
||||||
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': ''
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': ''
|
||||||
|
@ -196,7 +198,7 @@ Settings:
|
||||||
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: ''
|
About: 'À propos->À propos'
|
||||||
#& About
|
#& About
|
||||||
'This software is FOSS and released under the GNU Affero General Public License v3.0.': ''
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': ''
|
||||||
|
|
||||||
|
@ -218,16 +220,17 @@ About:
|
||||||
|
|
||||||
#On Channel Page
|
#On Channel Page
|
||||||
Channel:
|
Channel:
|
||||||
Subscriber: ''
|
Subscriber: 'Chaîne->Abonnement'
|
||||||
Subscribers: ''
|
Subscribers: 'Chaîne->Abonnements'
|
||||||
Subscribe: ''
|
Subscribe: 'Chaîne->S''abonner'
|
||||||
Unsubscribe: ''
|
Unsubscribe: 'Chaîne->Désabonnement'
|
||||||
Search Channel: ''
|
Search Channel: ''
|
||||||
Your search results have returned 0 results: ''
|
Your search results have returned 0 results: ''
|
||||||
Sort By: ''
|
Sort By: 'Chaîne->Trier Par'
|
||||||
Videos:
|
Videos:
|
||||||
Videos: ''
|
Videos: 'Chaîne->Vidéos->Vidéos'
|
||||||
This channel does not currently have any videos: ''
|
This channel does not currently have any videos: 'Chaîne->Vidéos->Cette chaîne
|
||||||
|
n''a pas de vidéos actuellement'
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Newest: ''
|
Newest: ''
|
||||||
Oldest: ''
|
Oldest: ''
|
||||||
|
@ -357,13 +360,13 @@ Comments:
|
||||||
Up Next: ''
|
Up Next: ''
|
||||||
|
|
||||||
# Toast Messages
|
# Toast Messages
|
||||||
Local API Error (Click to copy): ''
|
Local API Error (Click to copy): 'Erreur d''API locale (Cliquez pour copier)'
|
||||||
Invidious API Error (Click to copy): ''
|
Invidious API Error (Click to copy): 'Erreur d''API Invidious (Cliquez pour copier)'
|
||||||
Falling back to Invidious API: ''
|
Falling back to Invidious API: 'Revenir à l''API Invidious'
|
||||||
Falling back to the local API: ''
|
Falling back to the local API: 'Revenir à l''API locale'
|
||||||
Subscriptions have not yet been implemented: ''
|
Subscriptions have not yet been implemented: ''
|
||||||
Loop is now disabled: ''
|
Loop is now disabled: 'La boucle est maintenant désactivée'
|
||||||
Loop is now enabled: ''
|
Loop is now enabled: 'La boucle est maintenant activée'
|
||||||
Shuffle is now disabled: ''
|
Shuffle is now disabled: ''
|
||||||
Shuffle is now enabled: ''
|
Shuffle is now enabled: ''
|
||||||
Playing Next Video: ''
|
Playing Next Video: ''
|
||||||
|
@ -373,4 +376,4 @@ Canceled next video autoplay: ''
|
||||||
'The playlist has ended. Enable loop to continue playing': ''
|
'The playlist has ended. Enable loop to continue playing': ''
|
||||||
|
|
||||||
Yes: ''
|
Yes: ''
|
||||||
No: ''
|
No: 'Non'
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
FreeTube: 'FreeTube'
|
FreeTube: 'FreeTube'
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
|
アプリのこの部分はまだ準備ができていません。進展後に戻ってきてください。
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
File: 'ファイル'
|
File: 'ファイル'
|
||||||
|
@ -13,287 +14,299 @@ Copy: 'コピー'
|
||||||
Paste: 'ペースト'
|
Paste: 'ペースト'
|
||||||
Delete: '削除'
|
Delete: '削除'
|
||||||
Select all: 'すべて選択'
|
Select all: 'すべて選択'
|
||||||
Reload: 'リロード'
|
Reload: '再読み込み'
|
||||||
Force Reload: ''
|
Force Reload: '強制再読み込み'
|
||||||
Toggle Developer Tools: ''
|
Toggle Developer Tools: '開発者ツールを切替'
|
||||||
Actual size: ''
|
Actual size: '実際のサイズ'
|
||||||
Zoom in: ''
|
Zoom in: '拡大'
|
||||||
Zoom out: ''
|
Zoom out: '縮小'
|
||||||
Toggle fullscreen: ''
|
Toggle fullscreen: '全画面を切替'
|
||||||
Window: ''
|
Window: 'ウィンドウ'
|
||||||
Minimize: ''
|
Minimize: '最小化'
|
||||||
Close: ''
|
Close: '閉じる'
|
||||||
Back: ''
|
Back: '戻る'
|
||||||
Forward: ''
|
Forward: '進む'
|
||||||
|
|
||||||
# Search Bar
|
# Search Bar
|
||||||
Search / Go to URL: ''
|
Search / Go to URL: '検索 / URLに移動'
|
||||||
# In Filter Button
|
# In Filter Button
|
||||||
Search Filters:
|
Search Filters:
|
||||||
Search Filters: ''
|
Search Filters: '検索絞り込み'
|
||||||
Sort By:
|
Sort By:
|
||||||
Sort By: ''
|
Sort By: '表示順'
|
||||||
Most Relevant: ''
|
Most Relevant: '関連度'
|
||||||
Rating: ''
|
Rating: '評価'
|
||||||
Upload Date: ''
|
Upload Date: 'アップロード日'
|
||||||
View Count: ''
|
View Count: '再生数'
|
||||||
Time:
|
Time:
|
||||||
Time: ''
|
Time: '日時'
|
||||||
Any Time: ''
|
Any Time: 'いつ'
|
||||||
Last Hour: ''
|
Last Hour: '最近一時間'
|
||||||
Today: ''
|
Today: '今日'
|
||||||
This Week: ''
|
This Week: '今週'
|
||||||
This Month: ''
|
This Month: '今月'
|
||||||
This Year: ''
|
This Year: '今年'
|
||||||
Type:
|
Type:
|
||||||
Type: ''
|
Type: '種類'
|
||||||
All Types: ''
|
All Types: 'すべての種類'
|
||||||
Videos: ''
|
Videos: '動画'
|
||||||
Channels: ''
|
Channels: 'チャンネル'
|
||||||
#& Playlists
|
#& Playlists
|
||||||
Duration:
|
Duration:
|
||||||
Duration: ''
|
Duration: '長さ'
|
||||||
All Durations: ''
|
All Durations: 'すべての長さ'
|
||||||
Short (< 4 minutes): ''
|
Short (< 4 minutes): '短い (4分未満)'
|
||||||
Long (> 20 minutes): ''
|
Long (> 20 minutes): '長い (20分以上)'
|
||||||
# On Search Page
|
# On Search Page
|
||||||
Search Results: ''
|
Search Results: '検索結果'
|
||||||
Fetching results. Please wait: ''
|
Fetching results. Please wait: '結果を取得中。お待ちください'
|
||||||
Fetch more results: ''
|
Fetch more results: 'さらに結果を取得'
|
||||||
# Sidebar
|
# Sidebar
|
||||||
Subscriptions:
|
Subscriptions:
|
||||||
# On Subscriptions Page
|
# On Subscriptions Page
|
||||||
Subscriptions: ''
|
Subscriptions: '購読'
|
||||||
Latest Subscriptions: ''
|
Latest Subscriptions: '最後の購読'
|
||||||
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': ''
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': '購読リストは空です。ここに表示するには先に追加してください。'
|
||||||
'Getting Subscriptions. Please wait.': ''
|
'Getting Subscriptions. Please wait.': '購読を取得中..お待ちください。'
|
||||||
Trending: ''
|
Trending: '急上昇'
|
||||||
Most Popular: ''
|
Most Popular: '最も人気'
|
||||||
Playlists: ''
|
Playlists: '再生リスト'
|
||||||
User Playlists:
|
User Playlists:
|
||||||
Your Playlists: ''
|
Your Playlists: 'あなたの再生リスト'
|
||||||
History:
|
History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: ''
|
History: '履歴'
|
||||||
Watch History: ''
|
Watch History: '履歴を表示'
|
||||||
|
Your history list is currently empty.: 履歴は空です。
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: ''
|
Settings: '設定'
|
||||||
General Settings:
|
General Settings:
|
||||||
General Settings: ''
|
General Settings: '一般設定'
|
||||||
Fallback to Non-Preferred Backend on Failure: ''
|
Fallback to Non-Preferred Backend on Failure: '問題発生時に非推奨バックエンドへフォールバック'
|
||||||
Enable Search Suggestions: ''
|
Enable Search Suggestions: '検索候補を有効化'
|
||||||
Default Landing Page: ''
|
Default Landing Page: '最初に表示するページ'
|
||||||
Locale Preference: ''
|
Locale Preference: 'ローカル設定'
|
||||||
Preferred API Backend:
|
Preferred API Backend:
|
||||||
Preferred API Backend: ''
|
Preferred API Backend: 'API バックエンドの設定'
|
||||||
Local API: ''
|
Local API: 'ローカル API'
|
||||||
Invidious API: ''
|
Invidious API: 'Invidious API'
|
||||||
Video View Type:
|
Video View Type:
|
||||||
Video View Type: ''
|
Video View Type: '動画表示の種類'
|
||||||
Grid: ''
|
Grid: 'グリッド'
|
||||||
List: ''
|
List: '一覧'
|
||||||
Thumbnail Preference:
|
Thumbnail Preference:
|
||||||
Thumbnail Preference: ''
|
Thumbnail Preference: 'サムネイルの設定'
|
||||||
Default: ''
|
Default: '標準'
|
||||||
Beginning: ''
|
Beginning: '開始'
|
||||||
Middle: ''
|
Middle: '中間'
|
||||||
End: ''
|
End: '終了'
|
||||||
'Invidious Instance (Default is https://invidio.us)': ''
|
'Invidious Instance (Default is https://invidio.us)': 'Invidious のインスタンス (初期値は
|
||||||
Region for Trending: ''
|
https://invidio.us)'
|
||||||
|
Region for Trending: '地域の急上昇'
|
||||||
#! List countries
|
#! List countries
|
||||||
Theme Settings:
|
Theme Settings:
|
||||||
Theme Settings: ''
|
Theme Settings: 'テーマの設定'
|
||||||
Match Top Bar with Main Color: ''
|
Match Top Bar with Main Color: '上部のバーをメインカラーに一致'
|
||||||
Base Theme:
|
Base Theme:
|
||||||
Base Theme: ''
|
Base Theme: '基本テーマ'
|
||||||
Black: ''
|
Black: '黒'
|
||||||
Dark: ''
|
Dark: 'ダーク'
|
||||||
Light: ''
|
Light: 'ライト'
|
||||||
Main Color Theme:
|
Main Color Theme:
|
||||||
Main Color Theme: ''
|
Main Color Theme: 'メインのカラーテーマ'
|
||||||
Red: ''
|
Red: '赤'
|
||||||
Pink: ''
|
Pink: 'ピンク'
|
||||||
Purple: ''
|
Purple: '紫'
|
||||||
Deep Purple: ''
|
Deep Purple: '深い紫'
|
||||||
Indigo: ''
|
Indigo: 'インディゴ'
|
||||||
Blue: ''
|
Blue: '青'
|
||||||
Light Blue: ''
|
Light Blue: '薄い青'
|
||||||
Cyan: ''
|
Cyan: 'シアン'
|
||||||
Teal: ''
|
Teal: 'ティール'
|
||||||
Green: ''
|
Green: '緑'
|
||||||
Light Green: ''
|
Light Green: '薄緑'
|
||||||
Lime: ''
|
Lime: 'ライム'
|
||||||
Yellow: ''
|
Yellow: '黄'
|
||||||
Amber: ''
|
Amber: 'アンバー'
|
||||||
Orange: ''
|
Orange: 'オレンジ'
|
||||||
Deep Orange: ''
|
Deep Orange: '深いオレンジ'
|
||||||
Secondary Color Theme: ''
|
Secondary Color Theme: '第2カラーテーマ'
|
||||||
#* Main Color Theme
|
#* Main Color Theme
|
||||||
Player Settings:
|
Player Settings:
|
||||||
Player Settings: ''
|
Player Settings: 'プレイヤーの設定'
|
||||||
Force Local Backend for Legacy Formats: ''
|
Force Local Backend for Legacy Formats: 'レガシーフォーマットではローカルに強制バックエンド'
|
||||||
Remember History: ''
|
Remember History: '履歴を記憶'
|
||||||
Play Next Video: ''
|
Play Next Video: '次の動画を再生'
|
||||||
Turn on Subtitles by Default: ''
|
Turn on Subtitles by Default: '標準で字幕を有効化'
|
||||||
Autoplay Videos: ''
|
Autoplay Videos: '動画の自動再生'
|
||||||
Proxy Videos Through Invidious: ''
|
Proxy Videos Through Invidious: 'Invidious を介した動画のプロクシー'
|
||||||
Autoplay Playlists: ''
|
Autoplay Playlists: '再生リストの自動再生'
|
||||||
Enable Theatre Mode by Default: ''
|
Enable Theatre Mode by Default: '標準でシアターモードを有効化'
|
||||||
Default Volume: ''
|
Default Volume: '標準の音量'
|
||||||
Default Playback Rate: ''
|
Default Playback Rate: '標準の再生速度'
|
||||||
Default Video Format:
|
Default Video Format:
|
||||||
Default Video Format: ''
|
Default Video Format: '標準の動画形式'
|
||||||
Dash Formats: ''
|
Dash Formats: ''
|
||||||
Legacy Formats: ''
|
Legacy Formats: ''
|
||||||
Audio Formats: ''
|
Audio Formats: '音声形式'
|
||||||
Default Quality:
|
Default Quality:
|
||||||
Default Quality: ''
|
Default Quality: '標準の品質'
|
||||||
Auto: ''
|
Auto: '自動'
|
||||||
144p: ''
|
144p: '144p'
|
||||||
240p: ''
|
240p: '240p'
|
||||||
360p: ''
|
360p: '360p'
|
||||||
480p: ''
|
480p: '480p'
|
||||||
720p: ''
|
720p: '720p'
|
||||||
1080p: ''
|
1080p: '1080p'
|
||||||
1440p: ''
|
1440p: '1440p'
|
||||||
4k: ''
|
4k: '4K'
|
||||||
8k: ''
|
8k: '8K'
|
||||||
Subscription Settings:
|
Subscription Settings:
|
||||||
Subscription Settings: ''
|
Subscription Settings: '購読の設定'
|
||||||
Hide Videos on Watch: ''
|
Hide Videos on Watch: ''
|
||||||
Subscriptions Export Format:
|
Subscriptions Export Format:
|
||||||
Subscriptions Export Format: ''
|
Subscriptions Export Format: '購読のエクスポート形式'
|
||||||
#& Freetube
|
#& Freetube
|
||||||
Newpipe: ''
|
Newpipe: ''
|
||||||
OPML: ''
|
OPML: ''
|
||||||
Manage Subscriptions: ''
|
Manage Subscriptions: '購読の管理'
|
||||||
Import Subscriptions: ''
|
Import Subscriptions: '購読のインポート'
|
||||||
Export Subscriptions: ''
|
Export Subscriptions: '購読のエクスポート'
|
||||||
How do I import my subscriptions?: ''
|
How do I import my subscriptions?: 'どうやってインポートするのですか?'
|
||||||
Advanced Settings:
|
Advanced Settings:
|
||||||
Advanced Settings: ''
|
Advanced Settings: '高度な設定'
|
||||||
Enable Debug Mode (Prints data to the console): ''
|
Enable Debug Mode (Prints data to the console): 'デバッグモードを有効化 (コンソールにデータを出力)'
|
||||||
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': ''
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': 'プロキシのアドレス (例: SOCKS5://127.0.0.1:9050
|
||||||
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': ''
|
)'
|
||||||
Use Tor / Proxy for API calls: ''
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': '「プロキシのテスト」ボタンのクリックで
|
||||||
TEST PROXY: ''
|
https://ipinfo.io/json へリクエストを送信します'
|
||||||
|
Use Tor / Proxy for API calls: 'API 呼び出しに Tor/Proxy を使用'
|
||||||
|
TEST PROXY: 'プロキシのテスト'
|
||||||
#& Invidious Instance (Default is https://invidio.us)
|
#& Invidious Instance (Default is https://invidio.us)
|
||||||
See Public Instances: ''
|
See Public Instances: ''
|
||||||
Clear History:
|
Clear History:
|
||||||
Clear History: ''
|
Clear History: '履歴を消去'
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to delete your history?: ''
|
Are you sure you want to delete your history?: '履歴を消去しますか?'
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
Clear Subscriptions:
|
Clear Subscriptions:
|
||||||
Clear Subscriptions: ''
|
Clear Subscriptions: '購読を消去'
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to remove all subscriptions?: ''
|
Are you sure you want to remove all subscriptions?: 'すべての購読を消去しますか?'
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: ''
|
About: 'このソフトの情報'
|
||||||
#& About
|
#& About
|
||||||
'This software is FOSS and released under the GNU Affero General Public License v3.0.': ''
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': 'このソフトは自由なライセンスの AGPL-3.0
|
||||||
|
です。'
|
||||||
|
|
||||||
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >
|
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >-
|
||||||
|
バグ発報告や機能要望、サポートが必要であれば、私たちの GitHub をご覧ください。プルリクエストも歓迎します。
|
||||||
|
|
||||||
Thank you very much to the People and Projects that make FreeTube possible!: ''
|
Thank you very much to the People and Projects that make FreeTube possible!: 'FreeTube
|
||||||
|
を継続させてくれている人々とプロジェクトに感謝!'
|
||||||
|
|
||||||
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': ''
|
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': 'チャットがしたいなら私たちの
|
||||||
|
Element / Matrix にご参加ください。参加前にルールのご確認を。'
|
||||||
|
|
||||||
'Looking for help? Check out our Wiki page.': ''
|
'Looking for help? Check out our Wiki page.': '減宇rプが必要なら 私たちの Wiki をご覧ください。'
|
||||||
|
|
||||||
Check out our Firefox extension!: ''
|
Check out our Firefox extension!: '私たちの Firefox 拡張機能!'
|
||||||
|
|
||||||
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': ''
|
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': 'FreeTube
|
||||||
|
を気に入っていただけていれば、ぜひ Liberapay かビットコインで自由な寄付をお願いします。'
|
||||||
|
|
||||||
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
||||||
|
|
||||||
Latest FreeTube News: ''
|
Latest FreeTube News: 'FreeTube 新着情報'
|
||||||
|
|
||||||
#On Channel Page
|
#On Channel Page
|
||||||
Channel:
|
Channel:
|
||||||
Subscriber: ''
|
Subscriber: ''
|
||||||
Subscribers: ''
|
Subscribers: ''
|
||||||
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: ''
|
Videos: '動画'
|
||||||
This channel does not currently have any videos: ''
|
This channel does not currently have any videos: 'このチャンネルには動画がありません'
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Newest: ''
|
Newest: '新しい'
|
||||||
Oldest: ''
|
Oldest: '古い'
|
||||||
Most Popular: ''
|
Most Popular: '最も人気'
|
||||||
Playlists:
|
Playlists:
|
||||||
Playlists: ''
|
Playlists: '再生リスト'
|
||||||
This channel does not currently have any playlists: ''
|
This channel does not currently have any playlists: 'このチャンネルには再生リストがありません'
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Last Video Added: ''
|
Last Video Added: '最近追加の動画'
|
||||||
Newest: ''
|
Newest: '新しい'
|
||||||
Oldest: ''
|
Oldest: '古い'
|
||||||
About:
|
About:
|
||||||
About: ''
|
About: ''
|
||||||
Channel Description: ''
|
Channel Description: 'チャンネルの説明'
|
||||||
Featured Channels: ''
|
Featured Channels: ''
|
||||||
Video:
|
Video:
|
||||||
Open in YouTube: ''
|
Open in YouTube: 'YouTube で開く'
|
||||||
Copy YouTube Link: ''
|
Copy YouTube Link: 'YouTube のリンクをコピー'
|
||||||
Open YouTube Embedded Player: ''
|
Open YouTube Embedded Player: 'YouTube 埋め込みプレーヤーを開く'
|
||||||
Copy YouTube Embedded Player Link: ''
|
Copy YouTube Embedded Player Link: 'YouTube 埋め込みプレーヤーのリンクをコピー'
|
||||||
Open in Invidious: ''
|
Open in Invidious: 'Invidious で開く'
|
||||||
Copy Invidious Link: ''
|
Copy Invidious Link: 'Invidious のリンクをコピー'
|
||||||
View: ''
|
View: '回再生'
|
||||||
Views: ''
|
Views: '回再生'
|
||||||
# Context is "X People Watching"
|
# Context is "X People Watching"
|
||||||
Watching: ''
|
Watching: ''
|
||||||
Watched: ''
|
Watched: ''
|
||||||
# As in a Live Video
|
# As in a Live Video
|
||||||
Live: ''
|
Live: 'ライブ配信'
|
||||||
Live Now: ''
|
Live Now: 'ライブ配信中'
|
||||||
Live Chat: ''
|
Live Chat: 'ライブチャット'
|
||||||
Enable Live Chat: ''
|
Enable Live Chat: 'ライブチャットを有効化'
|
||||||
Live Chat is currently not supported in this build.: ''
|
Live Chat is currently not supported in this build.: 'このビルドは現在ライブチャットに未対応です。'
|
||||||
'Chat is disabled or the Live Stream has ended.': ''
|
'Chat is disabled or the Live Stream has ended.': 'チャットが無効化されているか、ライブが終了しています。'
|
||||||
Live chat is enabled. Chat messages will appear here once sent.: ''
|
Live chat is enabled. Chat messages will appear here once sent.: 'ライブチャット有効化..チャットを送信すると表示されます。'
|
||||||
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': ''
|
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': 'Invidious
|
||||||
|
API では現在ライブチャットに対応していません。YouTube への接続が必要です。'
|
||||||
Published:
|
Published:
|
||||||
Jan: ''
|
Jan: '1月'
|
||||||
Feb: ''
|
Feb: '2月'
|
||||||
Mar: ''
|
Mar: '3月'
|
||||||
Apr: ''
|
Apr: '4月'
|
||||||
May: ''
|
May: '5月'
|
||||||
Jun: ''
|
Jun: '6月'
|
||||||
Jul: ''
|
Jul: '7月'
|
||||||
Aug: ''
|
Aug: '8月'
|
||||||
Sep: ''
|
Sep: '9月'
|
||||||
Oct: ''
|
Oct: '10月'
|
||||||
Nov: ''
|
Nov: '11月'
|
||||||
Dec: ''
|
Dec: '12月'
|
||||||
Second: ''
|
Second: '秒'
|
||||||
Seconds: ''
|
Seconds: '秒'
|
||||||
Hour: ''
|
Hour: '時間'
|
||||||
Hours: ''
|
Hours: '時間'
|
||||||
Day: ''
|
Day: '日'
|
||||||
Days: ''
|
Days: '日'
|
||||||
Week: ''
|
Week: '週'
|
||||||
Weeks: ''
|
Weeks: '週'
|
||||||
Month: ''
|
Month: '月'
|
||||||
Months: ''
|
Months: '月'
|
||||||
Year: ''
|
Year: '年'
|
||||||
Years: ''
|
Years: '年'
|
||||||
Ago: ''
|
Ago: '前'
|
||||||
Upcoming: ''
|
Upcoming: ''
|
||||||
Published on: ''
|
Published on: '公開日'
|
||||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
Publicationtemplate: ''
|
Publicationtemplate: '$ % ago'
|
||||||
#& Videos
|
#& Videos
|
||||||
|
Video has been removed from your history: 動画は履歴から削除されました
|
||||||
|
Remove From History: 履歴から削除
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
|
|
|
@ -1,376 +1,448 @@
|
||||||
FreeTube: ''
|
FreeTube: 'FreeTube'
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
|
Esta parte da aplicação está em desenvolvimento. Volte mais tarde.
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
File: ''
|
File: 'Arquivo'
|
||||||
Quit: ''
|
Quit: 'Sair'
|
||||||
Edit: ''
|
Edit: 'Editar'
|
||||||
Undo: ''
|
Undo: 'Desfazer'
|
||||||
Redo: ''
|
Redo: 'Refazer'
|
||||||
Cut: ''
|
Cut: 'Cortar'
|
||||||
Copy: ''
|
Copy: 'Copiar'
|
||||||
Paste: ''
|
Paste: 'Colar'
|
||||||
Delete: ''
|
Delete: 'Apagar'
|
||||||
Select all: ''
|
Select all: 'Selecionar tudo'
|
||||||
Reload: ''
|
Reload: 'Recarregar'
|
||||||
Force Reload: ''
|
Force Reload: 'Forçar recarga'
|
||||||
Toggle Developer Tools: ''
|
Toggle Developer Tools: 'Alternar ferramentas de desenvolvedor'
|
||||||
Actual size: ''
|
Actual size: 'Tamanho real'
|
||||||
Zoom in: ''
|
Zoom in: 'Aumentar ampliação'
|
||||||
Zoom out: ''
|
Zoom out: 'Diminuir ampliação'
|
||||||
Toggle fullscreen: ''
|
Toggle fullscreen: 'Alternar tela-cheia'
|
||||||
Window: ''
|
Window: 'Janela'
|
||||||
Minimize: ''
|
Minimize: 'Minimizar'
|
||||||
Close: ''
|
Close: 'Fechar'
|
||||||
Back: ''
|
Back: 'Voltar'
|
||||||
Forward: ''
|
Forward: 'Avançar'
|
||||||
|
|
||||||
# Search Bar
|
# Search Bar
|
||||||
Search / Go to URL: ''
|
Search / Go to URL: 'Pesquisar / Ir para o URL'
|
||||||
# In Filter Button
|
# In Filter Button
|
||||||
Search Filters:
|
Search Filters:
|
||||||
Search Filters: ''
|
Search Filters: 'Filtros de pesquisa->Filtros de pesquisa'
|
||||||
Sort By:
|
Sort By:
|
||||||
Sort By: ''
|
Sort By: 'Filtro->Classificar por->Classificar por'
|
||||||
Most Relevant: ''
|
Most Relevant: 'Filtro->Classificar por->Relevância'
|
||||||
Rating: ''
|
Rating: 'Filtro->Classificar por->Classificação'
|
||||||
Upload Date: ''
|
Upload Date: 'Filtro->Classificar por->Data de envio'
|
||||||
View Count: ''
|
View Count: 'Filtro->Classificar por->Contagem de Visualizações'
|
||||||
Time:
|
Time:
|
||||||
Time: ''
|
Time: 'Filtro->Data do upload->Data do upload'
|
||||||
Any Time: ''
|
Any Time: 'Filtro->Data do upload->Qualquer hora'
|
||||||
Last Hour: ''
|
Last Hour: 'Filtro->Data do upload->Última hora'
|
||||||
Today: ''
|
Today: 'Filtro->Data do upload->Hoje'
|
||||||
This Week: ''
|
This Week: 'Filtro->Data do upload->Esta semana'
|
||||||
This Month: ''
|
This Month: 'Filtro->Data do upload->Este mês'
|
||||||
This Year: ''
|
This Year: 'Filtro->Data do upload->Este ano'
|
||||||
Type:
|
Type:
|
||||||
Type: ''
|
Type: 'Filtro->Tipo->Tipo'
|
||||||
All Types: ''
|
All Types: 'Filtro->Tipo->Qualquer tipo'
|
||||||
Videos: ''
|
Videos: 'Filtro->Tipo->Vídeos'
|
||||||
Channels: ''
|
Channels: 'Filtro->Tipo->Canais'
|
||||||
#& Playlists
|
#& Playlists
|
||||||
Duration:
|
Duration:
|
||||||
Duration: ''
|
Duration: 'Filtro->Duração->Duração'
|
||||||
All Durations: ''
|
All Durations: 'Filtro->Duração->Qualquer duração'
|
||||||
Short (< 4 minutes): ''
|
Short (< 4 minutes): 'Filtro->Duração->Curto (< 4 minutos)'
|
||||||
Long (> 20 minutes): ''
|
Long (> 20 minutes): 'Filtro->Duração->Longo (> 20 Minutos)'
|
||||||
# On Search Page
|
# On Search Page
|
||||||
Search Results: ''
|
Search Results: 'Filtro->Resultados da pesquisa'
|
||||||
Fetching results. Please wait: ''
|
Fetching results. Please wait: 'Filtro->Buscando resultados. Por favor, aguarde'
|
||||||
Fetch more results: ''
|
Fetch more results: 'Filtro->Buscar mais resultados'
|
||||||
# Sidebar
|
# Sidebar
|
||||||
Subscriptions:
|
Subscriptions:
|
||||||
# On Subscriptions Page
|
# On Subscriptions Page
|
||||||
Subscriptions: ''
|
Subscriptions: 'Inscrições->Inscrições'
|
||||||
Latest Subscriptions: ''
|
Latest Subscriptions: 'Inscrições->Últimas inscrições'
|
||||||
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': ''
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': 'Inscrições->Sua
|
||||||
'Getting Subscriptions. Please wait.': ''
|
lista de inscrições está vazia no momento. Comece a adicionar assinaturas para
|
||||||
Trending: ''
|
vê-las aqui.'
|
||||||
Most Popular: ''
|
'Getting Subscriptions. Please wait.': 'Inscrições->Buscando inscrições. Por favor,
|
||||||
Playlists: ''
|
aguarde.'
|
||||||
|
Trending: 'Em alta'
|
||||||
|
Most Popular: 'Mais populares'
|
||||||
|
Playlists: 'Listas'
|
||||||
User Playlists:
|
User Playlists:
|
||||||
Your Playlists: ''
|
Your Playlists: 'Listas do usuário->Suas listas'
|
||||||
History:
|
History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: ''
|
History: 'Histórico->Histórico'
|
||||||
Watch History: ''
|
Watch History: 'Histórico->Histórico de visualizações'
|
||||||
Your history list is currently empty.: ''
|
Your history list is currently empty.: 'Histórico->Seu Histórico está vazio no momento.'
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: ''
|
Settings: 'Configurações->Configurações'
|
||||||
General Settings:
|
General Settings:
|
||||||
General Settings: ''
|
General Settings: 'Configurações->Configurações gerais->Configurações gerais'
|
||||||
Fallback to Non-Preferred Backend on Failure: ''
|
Fallback to Non-Preferred Backend on Failure: 'Configurações->Configurações gerais->Usar
|
||||||
Enable Search Suggestions: ''
|
motor de pesquisa não preferido em caso de falha'
|
||||||
Default Landing Page: ''
|
Enable Search Suggestions: 'Configurações->Configurações gerais->Habilitar sugestões
|
||||||
Locale Preference: ''
|
de pesquisa'
|
||||||
|
Default Landing Page: 'Configurações->Configurações gerais->Página inicial preferida'
|
||||||
|
Locale Preference: 'Configurações->Configurações gerais->Preferência de localização'
|
||||||
Preferred API Backend:
|
Preferred API Backend:
|
||||||
Preferred API Backend: ''
|
Preferred API Backend: 'Configurações->Configurações gerais->API Motriz preferida->API
|
||||||
Local API: ''
|
Motriz preferida'
|
||||||
Invidious API: ''
|
Local API: 'Configurações->Configurações gerais->API Motriz preferida->API local'
|
||||||
|
Invidious API: 'Configurações->Configurações gerais->API Motriz preferida->API
|
||||||
|
do Invidious'
|
||||||
Video View Type:
|
Video View Type:
|
||||||
Video View Type: ''
|
Video View Type: 'Configurações->Configurações gerais->Tipo de visualização
|
||||||
Grid: ''
|
de vídeo->Tipo de visualização de vídeo'
|
||||||
List: ''
|
Grid: 'Configurações->Configurações gerais->Tipo de visualização de vídeo->Em
|
||||||
|
grade'
|
||||||
|
List: 'Configurações->Configurações gerais->Tipo de visualização de vídeo->Em
|
||||||
|
lista'
|
||||||
Thumbnail Preference:
|
Thumbnail Preference:
|
||||||
Thumbnail Preference: ''
|
Thumbnail Preference: 'Configurações->Configurações gerais->Preferência por
|
||||||
Default: ''
|
miniaturas->Preferência por miniaturas'
|
||||||
Beginning: ''
|
Default: 'Configurações->Configurações gerais->Preferência por miniaturas->Normal'
|
||||||
Middle: ''
|
Beginning: 'Configurações->Configurações gerais->Preferência por miniaturas->No
|
||||||
End: ''
|
começo'
|
||||||
'Invidious Instance (Default is https://invidio.us)': ''
|
Middle: 'Configurações->Configurações gerais->Preferência por miniaturas->No
|
||||||
Region for Trending: ''
|
meio'
|
||||||
|
End: 'Configurações->Configurações gerais->Preferência por miniaturas->No fim'
|
||||||
|
'Invidious Instance (Default is https://invidio.us)': 'Configurações->Configurações
|
||||||
|
gerais->Instância do invidious (A padrão é https://invidio.us)'
|
||||||
|
Region for Trending: 'Configurações->Configurações gerais->Região para o “Em alta”'
|
||||||
#! List countries
|
#! List countries
|
||||||
Theme Settings:
|
Theme Settings:
|
||||||
Theme Settings: ''
|
Theme Settings: 'Configurações->Configurações de aparência->Configurações de aparência'
|
||||||
Match Top Bar with Main Color: ''
|
Match Top Bar with Main Color: 'Configurações->Configurações de aparência->Usar
|
||||||
|
a cor principal para a barra superior'
|
||||||
Base Theme:
|
Base Theme:
|
||||||
Base Theme: ''
|
Base Theme: 'Configurações->Configurações de aparência->Tema base->Tema base'
|
||||||
Black: ''
|
Black: 'Configurações->Configurações de aparência->Tema base->Preto'
|
||||||
Dark: ''
|
Dark: 'Configurações->Configurações de aparência->Tema base->Escuro'
|
||||||
Light: ''
|
Light: 'Configurações->Configurações de aparência->Tema base->Claro'
|
||||||
Main Color Theme:
|
Main Color Theme:
|
||||||
Main Color Theme: ''
|
Main Color Theme: 'Configurações->Configurações de aparência->Cor principal->Cor
|
||||||
Red: ''
|
principal'
|
||||||
Pink: ''
|
Red: 'Configurações->Configurações de aparência->Cor principal->Vermelha'
|
||||||
Purple: ''
|
Pink: 'Configurações->Configurações de aparência->Cor principal->Rosa'
|
||||||
Deep Purple: ''
|
Purple: 'Configurações->Configurações de aparência->Cor principal->Roxa'
|
||||||
Indigo: ''
|
Deep Purple: 'Configurações->Configurações de aparência->Cor principal->Roxa
|
||||||
Blue: ''
|
escura'
|
||||||
Light Blue: ''
|
Indigo: 'Configurações->Configurações de aparência->Cor principal->Anil'
|
||||||
Cyan: ''
|
Blue: 'Configurações->Configurações de aparência->Cor principal->Azul'
|
||||||
Teal: ''
|
Light Blue: 'Configurações->Configurações de aparência->Cor principal->Azul
|
||||||
Green: ''
|
claro'
|
||||||
Light Green: ''
|
Cyan: 'Configurações->Configurações de aparência->Cor principal->Ciano'
|
||||||
Lime: ''
|
Teal: 'Configurações->Configurações de aparência->Cor principal->Cerceta'
|
||||||
Yellow: ''
|
Green: 'Configurações->Configurações de aparência->Cor principal->Verde'
|
||||||
Amber: ''
|
Light Green: 'Configurações->Configurações de aparência->Cor principal->Verde
|
||||||
Orange: ''
|
claro'
|
||||||
Deep Orange: ''
|
Lime: 'Configurações->Configurações de aparência->Cor principal->Limão'
|
||||||
Secondary Color Theme: ''
|
Yellow: 'Configurações->Configurações de aparência->Cor principal->Amarelo'
|
||||||
|
Amber: 'Configurações->Configurações de aparência->Cor principal->Âmbar'
|
||||||
|
Orange: 'Configurações->Configurações de aparência->Cor principal->Laranja'
|
||||||
|
Deep Orange: 'Configurações->Configurações de aparência->Cor principal->Laranja
|
||||||
|
escura'
|
||||||
|
Secondary Color Theme: 'Configurações->Configurações de aparência->Cor secundária'
|
||||||
#* Main Color Theme
|
#* Main Color Theme
|
||||||
Player Settings:
|
Player Settings:
|
||||||
Player Settings: ''
|
Player Settings: 'Configurações->Configurações do Vídeo->Configurações do Vídeo'
|
||||||
Force Local Backend for Legacy Formats: ''
|
Force Local Backend for Legacy Formats: 'Configurações->Configurações do Vídeo->Forçar
|
||||||
Remember History: ''
|
motor local para formatos legados'
|
||||||
Play Next Video: ''
|
Remember History: 'Configurações->Configurações do Vídeo->Lembrar do histórico'
|
||||||
Turn on Subtitles by Default: ''
|
Play Next Video: 'Configurações->Configurações do Vídeo->Reproduzir próximo vídeo'
|
||||||
Autoplay Videos: ''
|
Turn on Subtitles by Default: 'Configurações->Configurações do Vídeo->Ativar legendas
|
||||||
Proxy Videos Through Invidious: ''
|
por padrão'
|
||||||
Autoplay Playlists: ''
|
Autoplay Videos: 'Configurações->Configurações do Vídeo->Reproduzir automaticamente'
|
||||||
Enable Theatre Mode by Default: ''
|
Proxy Videos Through Invidious: 'Configurações->Configurações do Vídeo->Usar o
|
||||||
Default Volume: ''
|
Invidious como proxy'
|
||||||
Default Playback Rate: ''
|
Autoplay Playlists: 'Configurações->Configurações do Vídeo->Reproduzir listas
|
||||||
|
automaticamente'
|
||||||
|
Enable Theatre Mode by Default: 'Configurações->Configurações do Vídeo->Habilitar
|
||||||
|
modo teatro por padrão'
|
||||||
|
Default Volume: 'Configurações->Configurações do Vídeo->Volume padrão'
|
||||||
|
Default Playback Rate: 'Configurações->Configurações do Vídeo->Velocidade de reprodução'
|
||||||
Default Video Format:
|
Default Video Format:
|
||||||
Default Video Format: ''
|
Default Video Format: 'Configurações->Configurações do Vídeo->Formato de vídeo->Formato
|
||||||
Dash Formats: ''
|
de vídeo padrão'
|
||||||
Legacy Formats: ''
|
Dash Formats: 'Configurações->Configurações do Vídeo->Formato de vídeo->Formatos
|
||||||
Audio Formats: ''
|
DASH'
|
||||||
|
Legacy Formats: 'Configurações->Configurações do Vídeo->Formato de vídeo->Formatos
|
||||||
|
legados'
|
||||||
|
Audio Formats: 'Configurações->Configurações do Vídeo->Formatos de vídeo->Formato
|
||||||
|
de áudio'
|
||||||
Default Quality:
|
Default Quality:
|
||||||
Default Quality: ''
|
Default Quality: 'Configurações->Configurações do Vídeo->Qualidade->Qualidade
|
||||||
Auto: ''
|
padrão'
|
||||||
144p: ''
|
Auto: 'Configurações->Configurações do Vídeo->Qualidade->Automática'
|
||||||
240p: ''
|
144p: 'Configurações->Configurações do Vídeo->Qualidade->144p'
|
||||||
360p: ''
|
240p: 'Configurações->Configurações do Vídeo->Qualidade->240p'
|
||||||
480p: ''
|
360p: 'Configurações->Configurações do Vídeo->Qualidade->360p'
|
||||||
720p: ''
|
480p: 'Configurações->Configurações do Vídeo->Qualidade->480p'
|
||||||
1080p: ''
|
720p: 'Configurações->Configurações do Vídeo->Qualidade->720p'
|
||||||
1440p: ''
|
1080p: 'Configurações->Configurações do Vídeo->Qualidade->1080p'
|
||||||
4k: ''
|
1440p: 'Configurações->Configurações do Vídeo->Qualidade->1440p'
|
||||||
8k: ''
|
4k: 'Configurações->Configurações do Vídeo->Qualidade->4k'
|
||||||
|
8k: 'Configurações->Configurações do Vídeo->Qualidade->8k'
|
||||||
Subscription Settings:
|
Subscription Settings:
|
||||||
Subscription Settings: ''
|
Subscription Settings: 'Configurações->Configurações de inscrições->Configurações
|
||||||
Hide Videos on Watch: ''
|
de inscrições'
|
||||||
|
Hide Videos on Watch: 'Configurações->Configurações de inscrições->Esconder vídeos
|
||||||
|
após assisti-los'
|
||||||
Subscriptions Export Format:
|
Subscriptions Export Format:
|
||||||
Subscriptions Export Format: ''
|
Subscriptions Export Format: 'Configurações->Configurações de inscrições->Formato
|
||||||
|
de exportação das inscrições->Formato de exportação das inscrições'
|
||||||
#& Freetube
|
#& Freetube
|
||||||
Newpipe: ''
|
Newpipe: 'Configurações->Configurações de inscrições->Formato de exportação
|
||||||
OPML: ''
|
das inscrições->Newpipe'
|
||||||
Manage Subscriptions: ''
|
OPML: 'Configurações->Configurações de inscrições->Formato de exportação das
|
||||||
Import Subscriptions: ''
|
inscrições->OPML'
|
||||||
Export Subscriptions: ''
|
Manage Subscriptions: 'Configurações->Configurações de inscrições->Gerenciar inscrições'
|
||||||
How do I import my subscriptions?: ''
|
Import Subscriptions: 'Configurações->Configurações de inscrições->Importar inscrições'
|
||||||
|
Export Subscriptions: 'Configurações->Configurações de inscrições->Exportar inscrições'
|
||||||
|
How do I import my subscriptions?: 'Configurações->Configurações de inscrições->Como
|
||||||
|
posso importar minhas inscrições?'
|
||||||
Advanced Settings:
|
Advanced Settings:
|
||||||
Advanced Settings: ''
|
Advanced Settings: 'Configurações->Configurações avançadas->Configurações avançadas'
|
||||||
Enable Debug Mode (Prints data to the console): ''
|
Enable Debug Mode (Prints data to the console): 'Configurações->Configurações
|
||||||
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': ''
|
avançadas->Habilitar modo de depuração (Mostra dados no console)'
|
||||||
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': ''
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': 'Configurações->Configurações
|
||||||
Use Tor / Proxy for API calls: ''
|
avançadas->Endereço de proxy (ex.: SOCKS5://127.0.0.1:9050)'
|
||||||
TEST PROXY: ''
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': 'Configurações->Configurações
|
||||||
|
avançadas->Clicar em "TESTAR PROXY" enviara uma requisição para https://ipinfo.io/json'
|
||||||
|
Use Tor / Proxy for API calls: 'Configurações->Configurações avançadas->Usar tor
|
||||||
|
/ proxy para chamadas da API'
|
||||||
|
TEST PROXY: 'Configurações->Configurações avançadas->TESTAR PROXY'
|
||||||
#& Invidious Instance (Default is https://invidio.us)
|
#& Invidious Instance (Default is https://invidio.us)
|
||||||
See Public Instances: ''
|
See Public Instances: 'Configurações->Configurações avançadas->Ver instâncias
|
||||||
|
públicas'
|
||||||
Clear History:
|
Clear History:
|
||||||
Clear History: ''
|
Clear History: 'Configurações->Configurações avançadas->Apagar histórico->Apagar
|
||||||
|
histórico'
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to delete your history?: ''
|
Are you sure you want to delete your history?: 'Configurações->Configurações
|
||||||
|
avançadas->Apagar histórico->Tens certeza que queres apagar teu histórico?'
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
Clear Subscriptions:
|
Clear Subscriptions:
|
||||||
Clear Subscriptions: ''
|
Clear Subscriptions: 'Configurações->Configurações avançadas->Apagar inscrições->Apagar
|
||||||
|
inscrições'
|
||||||
# On Click
|
# On Click
|
||||||
Are you sure you want to remove all subscriptions?: ''
|
Are you sure you want to remove all subscriptions?: 'Configurações->Configurações
|
||||||
|
avançadas->Apagar inscrições->Tens certeza que queres remover todas as tuas
|
||||||
|
incrições?'
|
||||||
#& Yes
|
#& Yes
|
||||||
#& No
|
#& No
|
||||||
|
|
||||||
About:
|
About:
|
||||||
#On About page
|
#On About page
|
||||||
About: ''
|
About: 'Sobre->Sobre'
|
||||||
#& About
|
#& About
|
||||||
'This software is FOSS and released under the GNU Affero General Public License v3.0.': ''
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': 'Sobre->Este
|
||||||
|
software é Livre e de Código Aberto sob a licença GNU Affero General Public Licence
|
||||||
|
v3.0 (AGPL-3.0).'
|
||||||
|
|
||||||
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >
|
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >-
|
||||||
|
Sobre->Encontrastes um problema? Tens uma sugestão de funcionalidade? Queres ajudar?
|
||||||
|
Veja como na nossa página na GitHub. PR são bem-vindas.
|
||||||
|
|
||||||
Thank you very much to the People and Projects that make FreeTube possible!: ''
|
Thank you very much to the People and Projects that make FreeTube possible!: 'Sobre->Muito
|
||||||
|
Obrigado a todas as pessoas e projetos que tornam o FreeTube possível!'
|
||||||
|
|
||||||
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': ''
|
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': 'Sobre->Queres
|
||||||
|
conversar? Junte-se ao nosso servidor Element/Matrix. Verifique as regras antes
|
||||||
|
de juntar-se.'
|
||||||
|
|
||||||
'Looking for help? Check out our Wiki page.': ''
|
'Looking for help? Check out our Wiki page.': 'Sobre->Procurastes ajuda? Veja na
|
||||||
|
nossa página Wiki.'
|
||||||
|
|
||||||
Check out our Firefox extension!: ''
|
Check out our Firefox extension!: 'Sobre->Experimente nosso complemento do Firefox!'
|
||||||
|
|
||||||
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': ''
|
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': 'Sobre->Gosta
|
||||||
|
de usar o Freetube, considere realizar uma doação via Liberapay ou via Bitcoin.'
|
||||||
|
|
||||||
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
||||||
|
|
||||||
Latest FreeTube News: ''
|
Latest FreeTube News: 'Sobre->Ultimas notícias sobre o FreeTube'
|
||||||
|
|
||||||
#On Channel Page
|
#On Channel Page
|
||||||
Channel:
|
Channel:
|
||||||
Subscriber: ''
|
Subscriber: 'Canal->Inscrito'
|
||||||
Subscribers: ''
|
Subscribers: 'Canal->Inscritos'
|
||||||
Subscribe: ''
|
Subscribe: 'Canal->Inscrever-se'
|
||||||
Unsubscribe: ''
|
Unsubscribe: 'Canal->Remover inscrição'
|
||||||
Search Channel: ''
|
Search Channel: 'Canal->Buscar Canal'
|
||||||
Your search results have returned 0 results: ''
|
Your search results have returned 0 results: 'Canal->Não tivemos nenhum resultado
|
||||||
Sort By: ''
|
para tua busca'
|
||||||
|
Sort By: 'Canal->Filtrar por'
|
||||||
Videos:
|
Videos:
|
||||||
Videos: ''
|
Videos: 'Canal->Vídeos->Vídeos'
|
||||||
This channel does not currently have any videos: ''
|
This channel does not currently have any videos: 'Canal->Vídeos->Este canal não
|
||||||
|
possui vídeos no momento'
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Newest: ''
|
Newest: 'Canal->Vídeos->Tipos de ordenação->Novos'
|
||||||
Oldest: ''
|
Oldest: 'Canal->Vídeos->Tipos de ordenação->Antigos'
|
||||||
Most Popular: ''
|
Most Popular: 'Canal->Vídeos->Tipos de ordenação->Mais populares'
|
||||||
Playlists:
|
Playlists:
|
||||||
Playlists: ''
|
Playlists: 'Canal->Listas->Listas'
|
||||||
This channel does not currently have any playlists: ''
|
This channel does not currently have any playlists: 'Canal->Listas->Este canal
|
||||||
|
não possui nenhuma lista no momento'
|
||||||
Sort Types:
|
Sort Types:
|
||||||
Last Video Added: ''
|
Last Video Added: 'Canal->Listas->Tipos de ordenação->Último vídeo adicionado'
|
||||||
Newest: ''
|
Newest: 'Canal->Listas->Tipos de ordenação->Novos'
|
||||||
Oldest: ''
|
Oldest: 'Canal->Listas->Tipos de ordenação->Antigos'
|
||||||
About:
|
About:
|
||||||
About: ''
|
About: 'Canal->Sobre->Sobre'
|
||||||
Channel Description: ''
|
Channel Description: 'Canal->Sobre->Descrição do canal'
|
||||||
Featured Channels: ''
|
Featured Channels: 'Canal->Sobre->Canais destacados'
|
||||||
Video:
|
Video:
|
||||||
Mark As Watched: ''
|
Mark As Watched: 'Vídeo->Marcar como assistido'
|
||||||
Remove From History: ''
|
Remove From History: 'Vídeo->Remover do histórico'
|
||||||
Video has been marked as watched: ''
|
Video has been marked as watched: 'Vídeo->O vídeo foi marcado como assistido'
|
||||||
Video has been removed from your history: ''
|
Video has been removed from your history: 'Vídeo->O vídeo foi removido do teu histórico'
|
||||||
Open in YouTube: ''
|
Open in YouTube: 'Vídeo->Abrir no YouTube'
|
||||||
Copy YouTube Link: ''
|
Copy YouTube Link: 'Vídeo->Copiar link do YouTube'
|
||||||
Open YouTube Embedded Player: ''
|
Open YouTube Embedded Player: 'Vídeo->Abrir vídeo do YouTube embutido'
|
||||||
Copy YouTube Embedded Player Link: ''
|
Copy YouTube Embedded Player Link: 'Vídeo->Copiar link do YouTube embutido'
|
||||||
Open in Invidious: ''
|
Open in Invidious: 'Vídeo->Abrir no Invidious'
|
||||||
Copy Invidious Link: ''
|
Copy Invidious Link: 'Vídeo->Copiar link do Invidious'
|
||||||
View: ''
|
View: 'Vídeo->Visualização'
|
||||||
Views: ''
|
Views: 'Vídeo->Visualizações'
|
||||||
# Context is "X People Watching"
|
# Context is "X People Watching"
|
||||||
Watching: ''
|
Watching: 'Vídeo->Assistindo'
|
||||||
Watched: ''
|
Watched: 'Vídeo->Assistido'
|
||||||
# As in a Live Video
|
# As in a Live Video
|
||||||
Live: ''
|
Live: 'Vídeo->Ao vivo'
|
||||||
Live Now: ''
|
Live Now: 'Vídeo->Ao vivo agora'
|
||||||
Live Chat: ''
|
Live Chat: 'Vídeo->Chat ao vivo'
|
||||||
Enable Live Chat: ''
|
Enable Live Chat: 'Vídeo->Habilitar chat ao vivo'
|
||||||
Live Chat is currently not supported in this build.: ''
|
Live Chat is currently not supported in this build.: 'Vídeo->Chat ao vivo não é
|
||||||
'Chat is disabled or the Live Stream has ended.': ''
|
suportado nessa versão.'
|
||||||
Live chat is enabled. Chat messages will appear here once sent.: ''
|
'Chat is disabled or the Live Stream has ended.': 'Vídeo->O chat está desativado
|
||||||
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': ''
|
ou a transmissão ao vivo se encerrou.'
|
||||||
|
Live chat is enabled. Chat messages will appear here once sent.: 'Vídeo->Chat ao
|
||||||
|
vivo habilitado. As mensagens irão aparecer uma vez enviadas.'
|
||||||
|
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': 'Vídeo->O
|
||||||
|
chat ao vivo não é suportado pela API do Invidious. Uma conexão com o YouTube
|
||||||
|
é necessária.'
|
||||||
Published:
|
Published:
|
||||||
Jan: ''
|
Jan: 'Vídeo->Publicados->Jan'
|
||||||
Feb: ''
|
Feb: 'Vídeo->Publicados->Fev'
|
||||||
Mar: ''
|
Mar: 'Vídeo->Publicados->Mar'
|
||||||
Apr: ''
|
Apr: 'Vídeo->Publicados->Abr'
|
||||||
May: ''
|
May: 'Vídeo->Publicados->Mai'
|
||||||
Jun: ''
|
Jun: 'Vídeo->Publicados->Jun'
|
||||||
Jul: ''
|
Jul: 'Vídeo->Publicados->Jul'
|
||||||
Aug: ''
|
Aug: 'Vídeo->Publicados->Ago'
|
||||||
Sep: ''
|
Sep: 'Vídeo->Publicados->Set'
|
||||||
Oct: ''
|
Oct: 'Vídeo->Publicados->Out'
|
||||||
Nov: ''
|
Nov: 'Vídeo->Publicados->Nov'
|
||||||
Dec: ''
|
Dec: 'Vídeo->Publicados->Dez'
|
||||||
Second: ''
|
Second: 'Vídeo->Publicados->Segundo'
|
||||||
Seconds: ''
|
Seconds: 'Vídeo->Publicados->Segundos'
|
||||||
Hour: ''
|
Hour: 'Vídeo->Publicados->Hora'
|
||||||
Hours: ''
|
Hours: 'Vídeo->Publicados->Horas'
|
||||||
Day: ''
|
Day: 'Vídeo->Publicados->Dia'
|
||||||
Days: ''
|
Days: 'Vídeo->Publicados->Dias'
|
||||||
Week: ''
|
Week: 'Vídeo->Publicados->Semana'
|
||||||
Weeks: ''
|
Weeks: 'Vídeo->Publicados->Semanas'
|
||||||
Month: ''
|
Month: 'Vídeo->Publicados->Mês'
|
||||||
Months: ''
|
Months: 'Vídeo->Publicados->Meses'
|
||||||
Year: ''
|
Year: 'Vídeo->Publicados->Ano'
|
||||||
Years: ''
|
Years: 'Vídeo->Publicados->Anos'
|
||||||
Ago: ''
|
Ago: 'Vídeo->Publicados->Atrás'
|
||||||
Upcoming: ''
|
Upcoming: 'Vídeo->Publicados->Futuramente'
|
||||||
Published on: ''
|
Published on: 'Vídeo->Publicado em'
|
||||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
Publicationtemplate: ''
|
Publicationtemplate: 'Vídeo->Template de publicação'
|
||||||
#& Videos
|
#& Videos
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
Newest: ''
|
Newest: 'Vídeo->Ordenar Por->Novos'
|
||||||
Oldest: ''
|
Oldest: 'Vídeo->Ordenar Por->Antigos'
|
||||||
#& Most Popular
|
#& Most Popular
|
||||||
#& Playlists
|
#& Playlists
|
||||||
Playlist:
|
Playlist:
|
||||||
#& About
|
#& About
|
||||||
View Full Playlist: ''
|
View Full Playlist: 'Vídeo->Ver lista completa'
|
||||||
Videos: ''
|
Videos: 'Lista->Vídeos'
|
||||||
View: ''
|
View: 'Lista->Visualização'
|
||||||
Views: ''
|
Views: 'Lista->Visualizações'
|
||||||
Last Updated On: ''
|
Last Updated On: 'Lista->Atualizado em'
|
||||||
Share Playlist:
|
Share Playlist:
|
||||||
Share Playlist: ''
|
Share Playlist: 'Lista->Compartilhas Lista->Compartilhar Lista'
|
||||||
Copy YouTube Link: ''
|
Copy YouTube Link: 'Lista->Compartilhar Lista->Copiar link do YouTube'
|
||||||
Open in YouTube: ''
|
Open in YouTube: 'Lista->Compartilhar Lista->Abrir no YouTube'
|
||||||
Copy Invidious Link: ''
|
Copy Invidious Link: 'Lista->Compartilhar Lista->Copiar link do Invidious'
|
||||||
Open in Invidious: ''
|
Open in Invidious: 'Lista->Compartilhar Lista->Abrir no Invidious'
|
||||||
|
|
||||||
# On Video Watch Page
|
# On Video Watch Page
|
||||||
#* Published
|
#* Published
|
||||||
#& Views
|
#& Views
|
||||||
Toggle Theatre Mode: ''
|
Toggle Theatre Mode: 'Alternar Modo Teatro'
|
||||||
Change Format:
|
Change Format:
|
||||||
Change Video Formats: ''
|
Change Video Formats: 'Mudar formato->Mudar formato do vídeo'
|
||||||
Use Dash Formats: ''
|
Use Dash Formats: 'Mudar formato->Usar formatos DASH'
|
||||||
Use Legacy Formats: ''
|
Use Legacy Formats: 'Mudar formato->Usar formatos legados'
|
||||||
Use Audio Formats: ''
|
Use Audio Formats: 'Mudar formato->Usar formato de áudio'
|
||||||
Share:
|
Share:
|
||||||
Share Video: ''
|
Share Video: 'Compartilhar->Compartilhar vídeo'
|
||||||
Copy Link: ''
|
Copy Link: 'Compartilhar->Copiar link'
|
||||||
Open Link: ''
|
Open Link: 'Compartilhar->Abrir link'
|
||||||
Copy Embed: ''
|
Copy Embed: 'Compartilhar->Copiar embutido'
|
||||||
Open Embed: ''
|
Open Embed: 'Compartilhar->Abrir embutido'
|
||||||
# On Click
|
# On Click
|
||||||
Invidious URL copied to clipboard: ''
|
Invidious URL copied to clipboard: 'Compartilhar->O URL do Invidious está na área
|
||||||
Invidious Embed URL copied to clipboard: ''
|
de tranferência'
|
||||||
YouTube URL copied to clipboard: ''
|
Invidious Embed URL copied to clipboard: 'Compartilhar->O URL embutido do Invidious
|
||||||
YouTube Embed URL copied to clipboard: ''
|
está na área de transferência'
|
||||||
Mini Player: ''
|
YouTube URL copied to clipboard: 'Compartilhar->O URL do YouTube está na área de
|
||||||
|
transferência'
|
||||||
|
YouTube Embed URL copied to clipboard: 'Compartilhar->O URL embutido do YouTube
|
||||||
|
está na área de transferência'
|
||||||
|
Mini Player: 'Visualizador Pequeno'
|
||||||
Comments:
|
Comments:
|
||||||
Comments: ''
|
Comments: 'Comentários->Comentários'
|
||||||
Click to View Comments: ''
|
Click to View Comments: 'Comentários->Clique para ver os Comentários'
|
||||||
Getting comment replies, please wait: ''
|
Getting comment replies, please wait: 'Comentários->Buscando respostas, por favor,
|
||||||
Show Comments: ''
|
aguarde'
|
||||||
Hide Comments: ''
|
Show Comments: 'Comentários->Mostrar comentários'
|
||||||
|
Hide Comments: 'Comentários->Esconder comentários'
|
||||||
# Context: View 10 Replies, View 1 Reply
|
# Context: View 10 Replies, View 1 Reply
|
||||||
View: ''
|
View: 'Comentários->Ver'
|
||||||
Hide: ''
|
Hide: 'Comentários->Esconder'
|
||||||
Replies: ''
|
Replies: 'Comentários->Respostas'
|
||||||
Reply: ''
|
Reply: 'Comentários->Resposta'
|
||||||
There are no comments available for this video: ''
|
There are no comments available for this video: 'Comentários->Não há comentários
|
||||||
Load More Comments: ''
|
disponíveis neste vídeo'
|
||||||
Up Next: ''
|
Load More Comments: 'Comentários->Buscar mais comentários'
|
||||||
|
Up Next: 'Próximo'
|
||||||
|
|
||||||
# Toast Messages
|
# Toast Messages
|
||||||
Local API Error (Click to copy): ''
|
Local API Error (Click to copy): 'Erro da API local (clique para copiar)'
|
||||||
Invidious API Error (Click to copy): ''
|
Invidious API Error (Click to copy): 'Erro da API do Invidious (clique para copiar)'
|
||||||
Falling back to Invidious API: ''
|
Falling back to Invidious API: 'Recorrendo à API do Invidious'
|
||||||
Falling back to the local API: ''
|
Falling back to the local API: 'Recorrendo à API local'
|
||||||
Subscriptions have not yet been implemented: ''
|
Subscriptions have not yet been implemented: 'Inscrições ainda não foram implementadas'
|
||||||
Loop is now disabled: ''
|
Loop is now disabled: 'O ciclo foi desativado'
|
||||||
Loop is now enabled: ''
|
Loop is now enabled: 'O ciclo está ativado'
|
||||||
Shuffle is now disabled: ''
|
Shuffle is now disabled: 'Embaralhamento foi desativado'
|
||||||
Shuffle is now enabled: ''
|
Shuffle is now enabled: 'Embaralhamento foi ativado'
|
||||||
Playing Next Video: ''
|
Playing Next Video: 'Reproduzindo próximo vídeo'
|
||||||
Playing Previous Video: ''
|
Playing Previous Video: 'Reproduzindo vídeo anterior'
|
||||||
Playing next video in 5 seconds. Click to cancel: ''
|
Playing next video in 5 seconds. Click to cancel: 'Reproduzindo o próximo vídeo em
|
||||||
Canceled next video autoplay: ''
|
5 segundos. Clique para cancelar'
|
||||||
'The playlist has ended. Enable loop to continue playing': ''
|
Canceled next video autoplay: 'Auto-reprodução foi cancelada para o próximo vídeo'
|
||||||
|
'The playlist has ended. Enable loop to continue playing': 'A lista acabou. Habilite
|
||||||
|
o ciclo para continuar reproduzindo'
|
||||||
|
|
||||||
Yes: ''
|
Yes: 'Sim'
|
||||||
No: ''
|
No: 'Não'
|
||||||
|
|
|
@ -0,0 +1,409 @@
|
||||||
|
FreeTube: 'FreeTube'
|
||||||
|
# Currently on Subscriptions, Playlists, and History
|
||||||
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
|
Эта часть приложения еще не готова. Вернитесь позже, когда будет достигнут прогресс.
|
||||||
|
|
||||||
|
# Webkit Menu Bar
|
||||||
|
File: 'Файл'
|
||||||
|
Quit: 'Выйти'
|
||||||
|
Edit: 'Редактирование'
|
||||||
|
Undo: 'Отмена'
|
||||||
|
Redo: 'Повторить'
|
||||||
|
Cut: 'Вырезать'
|
||||||
|
Copy: 'Копировать'
|
||||||
|
Paste: 'Вставить'
|
||||||
|
Delete: 'Удалить'
|
||||||
|
Select all: 'Выбрать все'
|
||||||
|
Reload: 'Перезагрузить'
|
||||||
|
Force Reload: 'Принудительная перезагрузка'
|
||||||
|
Toggle Developer Tools: 'Переключить инструменты разработчика'
|
||||||
|
Actual size: 'Фактический размер'
|
||||||
|
Zoom in: 'Увеличить'
|
||||||
|
Zoom out: 'Уменьшить'
|
||||||
|
Toggle fullscreen: 'Включить полноэкранный режим'
|
||||||
|
Window: 'Окно'
|
||||||
|
Minimize: 'Свернуть'
|
||||||
|
Close: 'Закрыть'
|
||||||
|
Back: 'Назад'
|
||||||
|
Forward: 'Вперёд'
|
||||||
|
|
||||||
|
# Search Bar
|
||||||
|
Search / Go to URL: 'Поиск / Перейти по URL'
|
||||||
|
# In Filter Button
|
||||||
|
Search Filters:
|
||||||
|
Search Filters: 'Фильтры поиска'
|
||||||
|
Sort By:
|
||||||
|
Sort By: 'Сортировать по'
|
||||||
|
Most Relevant: 'Наиболее релевантным'
|
||||||
|
Rating: 'Рейтингу'
|
||||||
|
Upload Date: 'Дате загрузки'
|
||||||
|
View Count: 'Количеству просмотров'
|
||||||
|
Time:
|
||||||
|
Time: 'Время'
|
||||||
|
Any Time: 'Любое время'
|
||||||
|
Last Hour: 'Последний час'
|
||||||
|
Today: 'Сегодня'
|
||||||
|
This Week: 'На этой неделе'
|
||||||
|
This Month: 'В этом месяце'
|
||||||
|
This Year: 'В этом году'
|
||||||
|
Type:
|
||||||
|
Type: 'Тип'
|
||||||
|
All Types: 'Все типы'
|
||||||
|
Videos: 'Видео'
|
||||||
|
Channels: 'Каналы'
|
||||||
|
#& Playlists
|
||||||
|
Duration:
|
||||||
|
Duration: 'Длительность'
|
||||||
|
All Durations: 'Все длительности'
|
||||||
|
Short (< 4 minutes): 'Короткие (<4 минут)'
|
||||||
|
Long (> 20 minutes): 'Длинные (> 20 минут)'
|
||||||
|
# On Search Page
|
||||||
|
Search Results: 'Результаты поиска'
|
||||||
|
Fetching results. Please wait: 'Получение результатов. Пожалуйста, подождите'
|
||||||
|
Fetch more results: 'Получить больше результатов'
|
||||||
|
# Sidebar
|
||||||
|
Subscriptions:
|
||||||
|
# On Subscriptions Page
|
||||||
|
Subscriptions: 'Подписки'
|
||||||
|
Latest Subscriptions: 'Последние подписки'
|
||||||
|
'Your Subscription list is currently empty. Start adding subscriptions to see them here.': 'Ваш
|
||||||
|
список подписок в настоящее время пуст. Начните добавлять подписки, чтобы увидеть
|
||||||
|
их здесь.'
|
||||||
|
'Getting Subscriptions. Please wait.': 'Получение подписок. Пожалуйста, подождите.'
|
||||||
|
Trending: 'Тренды'
|
||||||
|
Most Popular: 'Самые популярные'
|
||||||
|
Playlists: 'Плейлисты'
|
||||||
|
User Playlists:
|
||||||
|
Your Playlists: 'Ваши плейлисты'
|
||||||
|
History:
|
||||||
|
# On History Page
|
||||||
|
History: 'История'
|
||||||
|
Watch History: 'Посмотреть историю'
|
||||||
|
Your history list is currently empty.: 'Ваш список истории в настоящее время пуст.'
|
||||||
|
Settings:
|
||||||
|
# On Settings Page
|
||||||
|
Settings: 'Настройки'
|
||||||
|
General Settings:
|
||||||
|
General Settings: 'Общие настройки'
|
||||||
|
Fallback to Non-Preferred Backend on Failure: 'Возврат к нежелательному бэкэнду
|
||||||
|
в случае сбоя'
|
||||||
|
Enable Search Suggestions: 'Включить поисковые предложения'
|
||||||
|
Default Landing Page: 'Целевая страница по умолчанию'
|
||||||
|
Locale Preference: 'Локальные предпочтения'
|
||||||
|
Preferred API Backend:
|
||||||
|
Preferred API Backend: 'Предпочитаемый API бэкэнд'
|
||||||
|
Local API: 'Локальный API'
|
||||||
|
Invidious API: 'Invidious API'
|
||||||
|
Video View Type:
|
||||||
|
Video View Type: 'Тип просмотра видео'
|
||||||
|
Grid: 'Сетка'
|
||||||
|
List: 'Список'
|
||||||
|
Thumbnail Preference:
|
||||||
|
Thumbnail Preference: 'Настройки миниатюр'
|
||||||
|
Default: 'По умолчанию'
|
||||||
|
Beginning: 'В начале'
|
||||||
|
Middle: 'В середине'
|
||||||
|
End: 'В конце'
|
||||||
|
'Invidious Instance (Default is https://invidio.us)': 'Экземпляр Invidious (по
|
||||||
|
умолчанию https://invidio.us)'
|
||||||
|
Region for Trending: 'Регион для трендов'
|
||||||
|
#! List countries
|
||||||
|
Theme Settings:
|
||||||
|
Theme Settings: 'Настройки темы'
|
||||||
|
Match Top Bar with Main Color: 'Совместить верхнюю панель с основным цветом'
|
||||||
|
Base Theme:
|
||||||
|
Base Theme: 'Базовая тема'
|
||||||
|
Black: 'Чёрная'
|
||||||
|
Dark: 'Тёмная'
|
||||||
|
Light: 'Светлая'
|
||||||
|
Main Color Theme:
|
||||||
|
Main Color Theme: 'Основная цветовая тема'
|
||||||
|
Red: 'Красная'
|
||||||
|
Pink: 'Розовая'
|
||||||
|
Purple: 'Фиолетовая'
|
||||||
|
Deep Purple: 'Тёмно-фиолетовая'
|
||||||
|
Indigo: 'Индиго'
|
||||||
|
Blue: 'Синия'
|
||||||
|
Light Blue: 'Светло-синия'
|
||||||
|
Cyan: 'Голубая'
|
||||||
|
Teal: 'Бирюзовая'
|
||||||
|
Green: 'Зелёная'
|
||||||
|
Light Green: 'Светло-зелёная'
|
||||||
|
Lime: 'Лаймовая'
|
||||||
|
Yellow: 'Жёлтая'
|
||||||
|
Amber: 'Янтарная'
|
||||||
|
Orange: 'Оранжевая'
|
||||||
|
Deep Orange: 'Тёмно-оранжевая'
|
||||||
|
Secondary Color Theme: 'Тема вторичного цвета'
|
||||||
|
#* Main Color Theme
|
||||||
|
Player Settings:
|
||||||
|
Player Settings: 'Настройки плеера'
|
||||||
|
Force Local Backend for Legacy Formats: 'Принудительно использовать локальный
|
||||||
|
бэкэнд для устаревших форматов'
|
||||||
|
Remember History: 'Запоминать историю'
|
||||||
|
Play Next Video: 'Воспроизводить следующее видео'
|
||||||
|
Turn on Subtitles by Default: 'Включить субтитры по умолчанию'
|
||||||
|
Autoplay Videos: 'Автовоспроизведение видео'
|
||||||
|
Proxy Videos Through Invidious: 'Прокси-видео через Invidious'
|
||||||
|
Autoplay Playlists: 'Авто воспроизведение плейлистов'
|
||||||
|
Enable Theatre Mode by Default: 'Включить режим театра по умолчанию'
|
||||||
|
Default Volume: 'Громкость по умолчанию'
|
||||||
|
Default Playback Rate: 'Скорость воспроизведения по умолчанию'
|
||||||
|
Default Video Format:
|
||||||
|
Default Video Format: 'Формат видео по умолчанию'
|
||||||
|
Dash Formats: 'Dash форматы'
|
||||||
|
Legacy Formats: 'Устаревшие форматы'
|
||||||
|
Audio Formats: 'Аудио форматы'
|
||||||
|
Default Quality:
|
||||||
|
Default Quality: 'Качество по умолчанию'
|
||||||
|
Auto: 'Авто'
|
||||||
|
144p: '144p'
|
||||||
|
240p: '240p'
|
||||||
|
360p: '360p'
|
||||||
|
480p: '480p'
|
||||||
|
720p: '720p'
|
||||||
|
1080p: '1080p'
|
||||||
|
1440p: '1440p'
|
||||||
|
4k: '4k'
|
||||||
|
8k: '8k'
|
||||||
|
Subscription Settings:
|
||||||
|
Subscription Settings: 'Настройки подписки'
|
||||||
|
Hide Videos on Watch: 'Скрыть видео после просмотра'
|
||||||
|
Subscriptions Export Format:
|
||||||
|
Subscriptions Export Format: 'Формат экспорта подписок'
|
||||||
|
#& Freetube
|
||||||
|
Newpipe: 'Newpipe'
|
||||||
|
OPML: 'OPML'
|
||||||
|
Manage Subscriptions: 'Управление подписками'
|
||||||
|
Import Subscriptions: 'Импорт подписок'
|
||||||
|
Export Subscriptions: 'Экспорт подписок'
|
||||||
|
How do I import my subscriptions?: 'Как мне импортировать свои подписки?'
|
||||||
|
Advanced Settings:
|
||||||
|
Advanced Settings: 'Расширенные настройки'
|
||||||
|
Enable Debug Mode (Prints data to the console): 'Включить режим отладки (выводит
|
||||||
|
данные на консоль)'
|
||||||
|
'Proxy Address (Example: SOCKS5://127.0.0.1:9050 )': 'Прокси-адрес (пример: SOCKS5://127.0.0.1:9050
|
||||||
|
)'
|
||||||
|
'Clicking "TEST PROXY" button will send a request to https://ipinfo.io/json': 'Нажатие
|
||||||
|
кнопки "ТЕСТ ПРОКСИ" отправит запрос на https://ipinfo.io/json'
|
||||||
|
Use Tor / Proxy for API calls: 'Использовать Tor / Прокси для вызовов API'
|
||||||
|
TEST PROXY: 'ТЕСТ ПРОКСИ'
|
||||||
|
#& Invidious Instance (Default is https://invidio.us)
|
||||||
|
See Public Instances: 'См. общедоступные экземпляры'
|
||||||
|
Clear History:
|
||||||
|
Clear History: 'Очистить историю'
|
||||||
|
# On Click
|
||||||
|
Are you sure you want to delete your history?: 'Вы уверены, что хотите удалить
|
||||||
|
свою историю?'
|
||||||
|
#& Yes
|
||||||
|
#& No
|
||||||
|
Clear Subscriptions:
|
||||||
|
Clear Subscriptions: 'Очистить подписки'
|
||||||
|
# On Click
|
||||||
|
Are you sure you want to remove all subscriptions?: 'Вы уверены, что хотите
|
||||||
|
удалить все подписки?'
|
||||||
|
#& Yes
|
||||||
|
#& No
|
||||||
|
|
||||||
|
About:
|
||||||
|
#On About page
|
||||||
|
About: 'О программе'
|
||||||
|
#& About
|
||||||
|
'This software is FOSS and released under the GNU Affero General Public License v3.0.': 'Это
|
||||||
|
программное обеспечение с авторским левом распространяется под свободной лицензией
|
||||||
|
AGPL-3.0.'
|
||||||
|
|
||||||
|
'Found a bug? Want to suggest a feature? Want to help out? Check out our GitHub page. Pull requests are welcome.': >-
|
||||||
|
Нашли ошибку? Хотите предложить функцию? Хотите помочь? Посетите нашу страницу
|
||||||
|
GitHub. Запросы на объединение приветствуются.
|
||||||
|
|
||||||
|
Thank you very much to the People and Projects that make FreeTube possible!: 'Большое
|
||||||
|
спасибо людям и проектам, которые сделали FreeTube возможным!'
|
||||||
|
|
||||||
|
'Want to chat? Join our Element / Matrix Server . Please check the rules before joining.': 'Хотите
|
||||||
|
пообщаться? Присоединяйтесь к нашему серверу Element / Matrix. Пожалуйста, ознакомьтесь
|
||||||
|
с правилами перед тем, как присоединиться.'
|
||||||
|
|
||||||
|
'Looking for help? Check out our Wiki page.': 'Нужна помощь? Посетите нашу вики-страницу.'
|
||||||
|
|
||||||
|
Check out our Firefox extension!: 'Ознакомьтесь с нашим расширением для Firefox!'
|
||||||
|
|
||||||
|
'If you enjoy using FreeTube, consider donating via Liberapay or through our Bitcoin address.': 'Если
|
||||||
|
вам нравится использовать FreeTube, рассмотрите возможность пожертвования через
|
||||||
|
Liberapay или через наш биткойн-адрес.'
|
||||||
|
|
||||||
|
#~ 'BTC: 1Lih7Ho5gnxb1CwPD4o59ss78pwo2T91eS'
|
||||||
|
|
||||||
|
Latest FreeTube News: 'Последние новости FreeTube'
|
||||||
|
|
||||||
|
#On Channel Page
|
||||||
|
Channel:
|
||||||
|
Subscriber: 'Подписчик'
|
||||||
|
Subscribers: 'Подписчиков'
|
||||||
|
Subscribe: 'Подписаться'
|
||||||
|
Unsubscribe: 'Отписаться'
|
||||||
|
Search Channel: 'Поиск канала'
|
||||||
|
Your search results have returned 0 results: 'По вашему запросу найдено 0 результатов'
|
||||||
|
Sort By: 'Сортировать по'
|
||||||
|
Videos:
|
||||||
|
Videos: 'Видео'
|
||||||
|
This channel does not currently have any videos: 'На этом канале в настоящее время
|
||||||
|
нет видео'
|
||||||
|
Sort Types:
|
||||||
|
Newest: 'Новым'
|
||||||
|
Oldest: 'Старым'
|
||||||
|
Most Popular: 'Самым популярным'
|
||||||
|
Playlists:
|
||||||
|
Playlists: 'Плейлисты'
|
||||||
|
This channel does not currently have any playlists: 'На этом канале в настоящее
|
||||||
|
время нет плейлистов'
|
||||||
|
Sort Types:
|
||||||
|
Last Video Added: 'Последнему добавленному видео'
|
||||||
|
Newest: 'Новым'
|
||||||
|
Oldest: 'Старым'
|
||||||
|
About:
|
||||||
|
About: 'О канале'
|
||||||
|
Channel Description: 'Описание канала'
|
||||||
|
Featured Channels: 'Избранные каналы'
|
||||||
|
Video:
|
||||||
|
Mark As Watched: 'Отметить как просмотренное'
|
||||||
|
Remove From History: 'Удалить из истории'
|
||||||
|
Video has been marked as watched: 'Видео было отмечено как просмотренное'
|
||||||
|
Video has been removed from your history: 'Видео было удалено из вашей истории'
|
||||||
|
Open in YouTube: 'Открыть в YouTube'
|
||||||
|
Copy YouTube Link: 'Скопировать ссылку YouTube'
|
||||||
|
Open YouTube Embedded Player: 'Открыть встроенный проигрыватель YouTube'
|
||||||
|
Copy YouTube Embedded Player Link: 'Скопировать ссылку на встроенный проигрыватель
|
||||||
|
YouTube'
|
||||||
|
Open in Invidious: 'Открыть в Invidious'
|
||||||
|
Copy Invidious Link: 'Скопировать ссылку Invidious'
|
||||||
|
View: 'Вид'
|
||||||
|
Views: 'Просмотры'
|
||||||
|
# Context is "X People Watching"
|
||||||
|
Watching: 'Смотреть'
|
||||||
|
Watched: 'Просмотрено'
|
||||||
|
# As in a Live Video
|
||||||
|
Live: 'Live'
|
||||||
|
Live Now: 'Прямой эфир'
|
||||||
|
Live Chat: 'Живой чат'
|
||||||
|
Enable Live Chat: 'Включить живой чат'
|
||||||
|
Live Chat is currently not supported in this build.: 'В настоящее время живой чат
|
||||||
|
в этом билде не поддерживается.'
|
||||||
|
'Chat is disabled or the Live Stream has ended.': 'Чат отключён или прямая трансляция
|
||||||
|
закончилась.'
|
||||||
|
Live chat is enabled. Chat messages will appear here once sent.: 'Живой чат включён.
|
||||||
|
Сообщения чата будут отображаться здесь после отправки.'
|
||||||
|
'Live Chat is currently not supported with the Invidious API. A direct connection to YouTube is required.': 'Живой
|
||||||
|
чат в настоящее время не поддерживает Invidious API. Требуется прямое подключение
|
||||||
|
к YouTube.'
|
||||||
|
Published:
|
||||||
|
Jan: 'Янв'
|
||||||
|
Feb: 'Фев'
|
||||||
|
Mar: 'Мар'
|
||||||
|
Apr: 'Апр'
|
||||||
|
May: 'Май'
|
||||||
|
Jun: 'Июн'
|
||||||
|
Jul: 'Июл'
|
||||||
|
Aug: 'Авг'
|
||||||
|
Sep: 'Сен'
|
||||||
|
Oct: 'Окт'
|
||||||
|
Nov: 'Ноя'
|
||||||
|
Dec: 'Дек'
|
||||||
|
Second: 'Секунд'
|
||||||
|
Seconds: 'Секунды'
|
||||||
|
Hour: 'Час'
|
||||||
|
Hours: 'Часов'
|
||||||
|
Day: 'День'
|
||||||
|
Days: 'Дней'
|
||||||
|
Week: 'Неделя'
|
||||||
|
Weeks: 'Недель'
|
||||||
|
Month: 'Месяц'
|
||||||
|
Months: 'Месяцев'
|
||||||
|
Year: 'Год'
|
||||||
|
Years: 'Лет'
|
||||||
|
Ago: 'Назад'
|
||||||
|
Upcoming: 'Скоро премьера'
|
||||||
|
Published on: 'Опубликовано'
|
||||||
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
|
Publicationtemplate: '$ % назад'
|
||||||
|
#& Videos
|
||||||
|
Videos:
|
||||||
|
#& Sort By
|
||||||
|
Sort By:
|
||||||
|
Newest: 'Новым'
|
||||||
|
Oldest: 'Старым'
|
||||||
|
#& Most Popular
|
||||||
|
#& Playlists
|
||||||
|
Playlist:
|
||||||
|
#& About
|
||||||
|
View Full Playlist: 'Посмотреть весь плейлист'
|
||||||
|
Videos: 'Видео'
|
||||||
|
View: 'Вид'
|
||||||
|
Views: 'Просмотров'
|
||||||
|
Last Updated On: 'Последнее обновление'
|
||||||
|
Share Playlist:
|
||||||
|
Share Playlist: 'Поделиться плейлистом'
|
||||||
|
Copy YouTube Link: 'Скопировать ссылку YouTube'
|
||||||
|
Open in YouTube: 'Открыть в YouTube'
|
||||||
|
Copy Invidious Link: 'Скопировать ссылку Invidious'
|
||||||
|
Open in Invidious: 'Открыть в Invidious'
|
||||||
|
|
||||||
|
# On Video Watch Page
|
||||||
|
#* Published
|
||||||
|
#& Views
|
||||||
|
Toggle Theatre Mode: 'Переключить режим театра'
|
||||||
|
Change Format:
|
||||||
|
Change Video Formats: 'Изменить форматы видео'
|
||||||
|
Use Dash Formats: 'Использовать форматы Dash'
|
||||||
|
Use Legacy Formats: 'Использовать устаревшие форматы'
|
||||||
|
Use Audio Formats: 'Использовать аудио форматы'
|
||||||
|
Share:
|
||||||
|
Share Video: 'Поделиться видео'
|
||||||
|
Copy Link: 'Скопировать ссылку'
|
||||||
|
Open Link: 'Открыть ссылку'
|
||||||
|
Copy Embed: 'Скопировать встраиваемые'
|
||||||
|
Open Embed: 'Открыть встраиваемые'
|
||||||
|
# On Click
|
||||||
|
Invidious URL copied to clipboard: 'invidious URL скопирован в буфер обмена'
|
||||||
|
Invidious Embed URL copied to clipboard: 'Invidious Встраиваемый URL скопирован
|
||||||
|
в буфер обмена'
|
||||||
|
YouTube URL copied to clipboard: 'YouTube URL скопирован в буфер обмена'
|
||||||
|
YouTube Embed URL copied to clipboard: 'YouTube Встраиваемый URL скопирован в буфер
|
||||||
|
обмена'
|
||||||
|
Mini Player: 'Мини-плеер'
|
||||||
|
Comments:
|
||||||
|
Comments: 'Комментарии'
|
||||||
|
Click to View Comments: 'Нажмите, чтобы просмотреть комментарии'
|
||||||
|
Getting comment replies, please wait: 'Получение ответов на комментарии, пожалуйста,
|
||||||
|
подождите'
|
||||||
|
Show Comments: 'Показать комментарии'
|
||||||
|
Hide Comments: 'Скрыть комментарии'
|
||||||
|
# Context: View 10 Replies, View 1 Reply
|
||||||
|
View: 'Вид'
|
||||||
|
Hide: 'Скрыть'
|
||||||
|
Replies: 'Ответы'
|
||||||
|
Reply: 'Ответ'
|
||||||
|
There are no comments available for this video: 'К этому видео нет комментариев'
|
||||||
|
Load More Comments: 'Загрузить больше комментариев'
|
||||||
|
Up Next: 'Следующий'
|
||||||
|
|
||||||
|
# Toast Messages
|
||||||
|
Local API Error (Click to copy): 'Ошибка локального API (Нажмите, чтобы скопировать)'
|
||||||
|
Invidious API Error (Click to copy): 'Ошибка invidious API (Нажмите, чтобы скопировать)'
|
||||||
|
Falling back to Invidious API: 'Возврат к Invidious API'
|
||||||
|
Falling back to the local API: 'Возврат к локальному API'
|
||||||
|
Subscriptions have not yet been implemented: 'Подписки ещё не реализованы'
|
||||||
|
Loop is now disabled: 'Цикл теперь отключён'
|
||||||
|
Loop is now enabled: 'Цикл теперь включён'
|
||||||
|
Shuffle is now disabled: 'Перемешивание теперь отключено'
|
||||||
|
Shuffle is now enabled: 'Перемешивание теперь включено'
|
||||||
|
Playing Next Video: 'Воспроизвести следующее видео'
|
||||||
|
Playing Previous Video: 'Воспроизвести предыдущее видео'
|
||||||
|
Playing next video in 5 seconds. Click to cancel: 'Воспроизведение следующего видео
|
||||||
|
через 5 секунд. Нажмите, чтобы отменить'
|
||||||
|
Canceled next video autoplay: 'Отменено автовоспроизведение следующего видео'
|
||||||
|
'The playlist has ended. Enable loop to continue playing': 'Плейлист закончился.
|
||||||
|
Включите цикл, чтобы продолжить воспроизведение'
|
||||||
|
|
||||||
|
Yes: 'Да'
|
||||||
|
No: 'Нет'
|
|
@ -1,6 +1,6 @@
|
||||||
FreeTube: 'FreeTube'
|
FreeTube: 'FreeTube'
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
应用此部分尚未完成。有了进展再来。
|
应用此部分尚未完成。有了进展再来。
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
|
@ -77,6 +77,7 @@ History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: '历史'
|
History: '历史'
|
||||||
Watch History: '观看历史'
|
Watch History: '观看历史'
|
||||||
|
Your history list is currently empty.: 您的历史列表目前是空的。
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: '设置'
|
Settings: '设置'
|
||||||
|
@ -298,6 +299,10 @@ Video:
|
||||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
Publicationtemplate: '$ % 以前'
|
Publicationtemplate: '$ % 以前'
|
||||||
#& Videos
|
#& Videos
|
||||||
|
Video has been removed from your history: 视频已经从您的历史中删除
|
||||||
|
Mark As Watched: 标记为已观看
|
||||||
|
Video has been marked as watched: 视频已经被标记为已观看
|
||||||
|
Remove From History: 从历史中删除
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FreeTube: 'FreeTube'
|
FreeTube: 'FreeTube'
|
||||||
# Currently on Subscriptions, Playlists, and History
|
# Currently on Subscriptions, Playlists, and History
|
||||||
'This part of the app is not ready yet. Come back later when progress has been made.': >
|
'This part of the app is not ready yet. Come back later when progress has been made.': >-
|
||||||
應用此部分尚未完成。有了進展再來。
|
應用此部分尚未完成。有了進展再來。
|
||||||
|
|
||||||
# Webkit Menu Bar
|
# Webkit Menu Bar
|
||||||
|
@ -77,6 +77,7 @@ History:
|
||||||
# On History Page
|
# On History Page
|
||||||
History: '曆史'
|
History: '曆史'
|
||||||
Watch History: '觀看曆史'
|
Watch History: '觀看曆史'
|
||||||
|
Your history list is currently empty.: 您的曆史清單目前是空的。
|
||||||
Settings:
|
Settings:
|
||||||
# On Settings Page
|
# On Settings Page
|
||||||
Settings: '設定'
|
Settings: '設定'
|
||||||
|
@ -298,6 +299,10 @@ Video:
|
||||||
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
# $ is replaced with the number and % with the unit (days, hours, minutes...)
|
||||||
Publicationtemplate: '$ % 以前'
|
Publicationtemplate: '$ % 以前'
|
||||||
#& Videos
|
#& Videos
|
||||||
|
Video has been removed from your history: 視訊已經從您的曆史中移除
|
||||||
|
Video has been marked as watched: 視訊已經被記號為已觀看
|
||||||
|
Remove From History: 從曆史中移除
|
||||||
|
Mark As Watched: 記號為已觀看
|
||||||
Videos:
|
Videos:
|
||||||
#& Sort By
|
#& Sort By
|
||||||
Sort By:
|
Sort By:
|
||||||
|
|
Loading…
Reference in New Issue