quintodrome/ui/src/i18n/en.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
3 KiB
JavaScript
Raw Normal View History

2020-02-07 05:40:52 -09:00
import deepmerge from 'deepmerge'
import englishMessages from 'ra-language-english'
export default deepmerge(englishMessages, {
languageName: 'English',
2020-02-07 05:40:52 -09:00
resources: {
song: {
name: 'Song |||| Songs',
2020-02-07 05:40:52 -09:00
fields: {
albumArtist: 'Album Artist',
duration: 'Time',
trackNumber: 'Track #',
playCount: 'Plays',
2020-02-07 05:40:52 -09:00
},
2020-05-01 06:22:24 -08:00
actions: {
playNow: 'Play Now',
addToQueue: 'Play Later',
},
2020-02-07 05:40:52 -09:00
},
album: {
2020-04-27 19:22:17 -08:00
name: 'Album |||| Albums',
2020-02-07 05:40:52 -09:00
fields: {
albumArtist: 'Album Artist',
artist: 'Artist',
duration: 'Time',
songCount: 'Songs',
playCount: 'Plays',
},
actions: {
2020-05-01 06:22:24 -08:00
playAll: 'Play Now',
playNext: 'Play Next',
addToQueue: 'Play Later',
shuffle: 'Shuffle',
2020-02-07 05:40:52 -09:00
},
},
2020-04-27 19:22:17 -08:00
artist: {
name: 'Artist |||| Artists',
},
user: {
name: 'User |||| Users',
fields: {
userName: 'Username',
},
2020-04-27 19:22:17 -08:00
},
player: {
name: 'Player |||| Players',
},
transcoding: {
name: 'Transcoding |||| Transcodings',
},
2020-02-07 05:40:52 -09:00
},
ra: {
auth: {
welcome1: 'Thanks for installing Navidrome!',
welcome2: 'To start, create an admin user',
confirmPassword: 'Confirm Password',
buttonCreateAdmin: 'Create Admin',
},
validation: {
invalidChars: 'Please only use letter and numbers',
passwordDoesNotMatch: 'Password does not match',
},
},
2020-04-29 07:58:42 -08:00
message: {
note: 'NOTE',
transcodingDisabled:
'Changing the transcoding configuration through the web interface is disabled for security ' +
'reasons. If you would like to change (edit or add) transcoding options, restart the server with ' +
'the %{config} configuration option.',
transcodingEnabled:
'Navidrome is currently running with %{config}, making it possible to run system ' +
'commands from the transcoding settings using the web interface. We recommend to disable it for security reasons ' +
'and only enable it when configuring Transcoding options.',
},
2020-02-07 05:40:52 -09:00
menu: {
library: 'Library',
settings: 'Settings',
version: 'Version %{version}',
theme: 'Theme',
personal: {
name: 'Personal',
options: {
theme: 'Theme',
language: 'Language',
},
},
2020-02-07 05:40:52 -09:00
},
player: {
playListsText: 'Play Queue',
openText: 'Open',
closeText: 'Close',
notContentText: 'No music',
clickToPlayText: 'Click to play',
clickToPauseText: 'Click to pause',
nextTrackText: 'Next track',
previousTrackText: 'Previous track',
reloadText: 'Reload',
volumeText: 'Volume',
toggleLyricText: 'Toggle lyric',
toggleMiniModeText: 'Minimize',
destroyText: 'Destroy',
downloadText: 'Download',
removeAudioListsText: 'Delete audio lists',
controllerTitle: '',
clickToDeleteText: `Click to delete %{name}`,
emptyLyricText: 'No lyric',
2020-02-07 05:40:52 -09:00
playModeText: {
order: 'In order',
orderLoop: 'Repeat',
singleLoop: 'Repeat One',
shufflePlay: 'Shuffle',
},
},
})