-
Notifications
You must be signed in to change notification settings - Fork 14
/
en.js
107 lines (106 loc) · 3.98 KB
/
en.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
;(function(module) {
'use strict';
module.config(function(localeProvider) {
localeProvider.locale('en', {
language: 'en',
displayName: 'English',
messages: {
'About': 'About',
'Add server': 'Add server',
'Add stream': 'Add stream',
'Add to playlist': 'Add to playlist',
'Add to tracklist': 'Add to tracklist',
'Album artist': 'Album artist',
'Album': 'Album',
'Any': 'Any',
'Artist': 'Artist',
'Back': 'Back',
'Bitrate': 'Bitrate',
'Cancel': 'Cancel',
'Clear cache': 'Clear cache',
'Clear tracklist': 'Clear tracklist',
'Clear': 'Clear',
'Comment': 'Comment',
'Composer': 'Composer',
'Configured servers': 'Configured servers',
'ConnectionError': 'Connection error',
'Consume mode': 'Consume mode',
'Cover art': 'Cover art',
'Create playlist': 'Create playlist',
'Date': 'Date',
'Debug messages': 'Debug messages',
'Default click action': 'Default click action',
'Default': 'Default',
'Delete playlist': 'Delete playlist',
'Delete': 'Delete',
'Disc number': 'Disc number',
'Done': 'Done',
'Duration': 'Duration',
'Edit playlist': 'Edit playlist',
'Edit playlists': 'Edit playlists',
'Edit tracklist': 'Edit tracklist',
'Error': 'Error',
'Exit': 'Exit',
'Find exact': 'Find exact',
'Genre': 'Genre',
'Host': 'Host',
'Ignore': 'Ignore',
'Language': 'Language',
'Library': 'Library',
'Licenses': 'Licenses',
'Logging': 'Logging',
'Look and feel': 'Look and feel',
'Mopidy servers': 'Mopidy servers',
'Name': 'Name',
'No servers found': 'No servers found',
'Nothing playing': 'Nothing playing',
'OK': 'OK',
'Path': 'Path',
'Performer': 'Performer',
'Play next': 'Play next',
'Play now': 'Play now',
'Playback': 'Playback',
'Playlists': 'Playlists',
'Please make sure Zeroconf is enabled for any Mopidy servers in the same WiFi network as your device.': 'Please make sure Zeroconf is enabled for any Mopidy servers in the same WiFi network as your device.',
'Port': 'Port',
'Pull to refresh': 'Pull to refresh',
'Remove server': 'Remove server',
'Replace tracklist': 'Replace tracklist',
'Request timeout': 'Request timeout',
'Reset all settings to default values and restart application': 'Reset all settings to default values and restart application',
'Reset': 'Reset',
'Restart application': 'Restart application',
'Restart': 'Restart',
'Retry': 'Retry',
'Save as': 'Save as',
'Save': 'Save',
'Search here': 'Search here',
'Search results': 'Search results',
'Search term': 'Search term',
'Search {name}': 'Search {name}',
'Search': 'Search',
'Secure connection': 'Secure connection',
'ServerError': 'Server error',
'Settings': 'Settings',
'Share': 'Share',
'Show track info': 'Show track info',
'Sort by name': 'Sort by name',
'Sort by scheme': 'Sort by scheme',
'Theme': 'Theme',
'Then pull to refresh, or add a server manually.': 'Then pull to refresh, or add a server manually.',
'TimeoutError': 'Timeout error',
'Track info': 'Track info',
'Track number': 'Track number',
'Track': 'Track',
'Tracklist': 'Tracklist',
'Translations': 'Translations',
'URI': 'URI',
'URL': 'URL',
'Volume keys': 'Volume keys',
'{count} seconds': '{count, plural, one{1 second} other{# seconds}}',
'{count} tracks': '{count, plural, =0{No tracks} one{1 track} other{# tracks}}',
'{index} of {count}': '{index} of {count}',
}
});
});
})(angular.module('app.locale.en', ['app.services.locale']));