]>
Commit | Line | Data |
---|---|---|
1 | /* these files need to be written in utf-8 */ | |
2 | ||
3 | var LANG = new Object(); | |
4 | // Messages | |
5 | LANG.VOLUME ='Volume'; | |
6 | LANG.BITRATE ='Bitrate: '; | |
7 | LANG.POSITION ='Position: '; | |
8 | LANG.CROP ='Crop'; | |
9 | LANG.CROP_SELECTION ="Crop to selection"; | |
10 | LANG.CLEAR_PLAYLIST ="Clear playlist"; | |
11 | ||
12 | LANG.PLAY ="Play"; | |
13 | LANG.STOP ="Stop"; | |
14 | ||
15 | ||
16 | LANG.WAIT_LOADING ="Loading.."; | |
17 | LANG.WAIT_UPDATING_DB ="Updating database.." | |
18 | LANG.WAIT_UPDATING_PL ="Updating playlist, please wait.."; | |
19 | LANG.WAIT_REMOVING ="Removing.."; | |
20 | LANG.WAIT_ADDING ="Adding.."; | |
21 | LANG.WAIT_ADDING_PL ="Adding playlist.."; | |
22 | LANG.WAIT_SEARCHING = "Searching.."; | |
23 | ||
24 | LANG.UPDATE_DB ="Update DB"; | |
25 | LANG.ARTIST ="Artist"; | |
26 | LANG.TITLE ="Title"; | |
27 | LANG.ALBUM ="Album"; | |
28 | LANG.GENRE ="Genre"; | |
29 | LANG.FILENAME ="Filename"; | |
30 | LANG.FILESYSTEM ="Filesystem"; | |
31 | LANG.LYRICS ="Lyrics"; | |
32 | LANG.SEARCH ="Search"; | |
33 | LANG.ADD ="Add"; | |
34 | LANG.EDIT ="Edit"; | |
35 | LANG.DELETE ="Delete"; | |
36 | LANG.CONFIRM_REMOVE ="Really remove"; | |
37 | LANG.YES ="Yes"; | |
38 | LANG.NO ="No"; | |
39 | LANG.BY_URL ="By URL"; | |
40 | LANG.FROM_FILE ="From file"; | |
41 | LANG.TEXT ="Text"; | |
42 | LANG.OUTPUTS ="Outputs"; | |
43 | LANG.CLOSE ="Close"; | |
44 | LANG.SAVE ="Save"; | |
45 | LANG.REFETCH ="Refetch"; | |
46 | LANG.HIDE ="Hide"; | |
47 | LANG.AUTOPLAY ="Autoplay"; | |
48 | LANG.NO_AUTOPLAY ="No autoplay"; | |
49 | LANG.STREAMING ="Streaming"; | |
50 | ||
51 | LANG.ANYTAG ="Any tag"; | |
52 | LANG.COMPOSER ="Composer"; | |
53 | LANG.PERFORMER ="Performer"; | |
54 | LANG.DATE ="Date"; | |
55 | ||
56 | ||
57 | LANG.PL_SAVE_AS ="Save playlist as: "; | |
58 | LANG.PL_SAVING ="Saving playlist"; | |
59 | ||
60 | LANG.REPEAT ="Repeat"; | |
61 | LANG.RANDOM ="Random"; | |
62 | LANG.XFADE ="X-Fade: "; | |
63 | ||
64 | LANG.QUICK_ADD ="Quick add"; | |
65 | ||
66 | LANG.ALBUM_REVIEW ="Album review"; | |
67 | LANG.ALBUM_DESC ="Album description"; | |
68 | // e.g. album review for some album by some artist, the spaces are important | |
69 | LANG.ALBUM_AA_NAME =" for %s by %s"; | |
70 | LANG.ALBUM_AMAZON ="Album on amazon.com (new window)"; | |
71 | ||
72 | LANG.JUMP_CURRENT = "Jump to currently playing song [Space]"; | |
73 | LANG.PAGINATION_FOLLOW = "Following currently playing song"; | |
74 | LANG.PAGINATION_NOFOLLOW= "Not following currently playing song"; | |
75 | ||
76 | LANG.LYRICWIKI_LYRIC = "%s lyric at lyricwiki.org"; // add/edit lyric at .. | |
77 | ||
78 | // ERRORS | |
79 | LANG.E_CONNECT ="Unable to connect to MPD server"; | |
80 | LANG.E_INVALID_RESPONSE ="Server returned invalid response"; | |
81 | LANG.E_INVALID_RESULT ="Invalid result from server"; | |
82 | LANG.E_NO_RESPONSE ="Unable to get response from server"; | |
83 | LANG.E_CONNECT ="Unable to connect to mpd"; | |
84 | LANG.E_INIT ="Init failed " | |
85 | LANG.E_INIT_PL ="Failed to initialize playlist"; | |
86 | LANG.E_PL_MOVE ="Moving in playlist failed"; | |
87 | LANG.E_REMOVE ="Could not remove songs"; | |
88 | LANG.E_FAILED_ADD ="Failed to add"; | |
89 | LANG.E_FAILED_ADD_PL ="Failed to add playlist"; | |
90 | LANG.E_FAILED_SAVE_PL ="Failed to save playlist"; | |
91 | LANG.E_FAILED_LOAD_DIR ="Failed to load directory list"; | |
92 | LANG.E_NOTHING_FOUND ="Nothing found.."; | |
93 | LANG.E_NO_OUTPUTS ="No outputs found"; | |
94 | LANG.E_NOT_FOUND ="Did not find any %ss."; // We didn't find any of these | |
95 | LANG.E_MISSING_CACHE ="Missing cache dir"; | |
96 | LANG.E_MISSING_AA_NAME ="Missing artist or album name."; | |
97 | LANG.E_MISSING_AS_NAME ="Missing artist or song-title."; | |
98 | LANG.E_LYRICS_NOT_FOUND ="Lyrics not found"; | |
99 | LANG.E_MISSING_LYRICS ="We seem to be missing the lyrics.."; // this should be something better | |
100 | LANG.E_LYRICS_FAILURE ="Retrieval of lyrics failed"; | |
101 | LANG.E_COMM_PROBLEM ="Communication problem"; | |
102 | LANG.E_GET_INFO ="Unable to get information"; | |
103 | ||
104 | LANG.RECOMMEND_RECOMMENDATIONS = "Recommendations "; | |
105 | LANG.RECOMMEND_EMPTY_PLAYLIST ="To fetch recommendations based on your playlist you need to have something in your playlist"; | |
106 | LANG.RECOMMEND_ADDTOPLAYLIST ="Add to playlist"; | |
107 | LANG.RECOMMEND_SIMILAR ="Similar artists from your library"; | |
108 | LANG.RECOMMEND_ARTISTS ="Recommended artists"; | |
109 | ||
110 | ||
111 | /* Don't need translation, but needs to be here: */ | |
112 | LANG.NT_AMAZON = "[Amazon.com]"; |