-
Notifications
You must be signed in to change notification settings - Fork 0
/
tunefinder.cd
208 lines (208 loc) · 3.13 KB
/
tunefinder.cd
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
; tunefinder.cd
; Catalog description for TuneFinder
; $VER: tunefinder.cd 1.0 (09.11.2024)
; GUI Labels
MSG_NAME (1//)
Name
;
MSG_COUNTRY (2//)
Country
;
MSG_CODEC (3//)
Codec
;
MSG_TAGS (4//)
Tags
;
MSG_BITRATE (5//)
Bitrate
;
MSG_UNKNOWN (6//)
Unknown
;
MSG_LIMIT (7//)
Limit
;
MSG_URL (8//)
URL
;
; GUI Actions
MSG_SEARCH (10//)
Search
;
MSG_SAVE (11//)
Save All
;
MSG_CANCEL (12//)
Cancel
;
MSG_PLAY (13//)
Play
;
MSG_QUIT (14//)
Quit
;
MSG_SAVE_SINGLE (15//)
Save One
;
MSG_STOP (16//)
Stop
;
MSG_FAVORITE (17//)
Fav+
;
MSG_UNFAVORITE (18//)
Fav-
;
; GUI States
MSG_READY (20//)
Ready
;
MSG_SETTINGS (21//)
Settings...
;
MSG_API_SETTINGS (22//)
API Settings
;
MSG_STATION_DETAILS (23//)
Station Details
;
MSG_PROJECT (24//)
Project
;
MSG_ABOUT (25//)
About...
;
MSG_SEARCHING (26//)
Searching
;
MSG_FAVORITES (27//)
Favorites
;
MSG_ICONIFY (28//)
Iconify
;
; Options and Settings
MSG_HOST (30//)
API Host
;
MSG_PORT (31//)
API Port
;
MSG_HTTPS_ONLY (32//)
HTTPS Only
;
MSG_HIDE_BROKEN (33//)
Hide Broken
;
; Status Messages with Parameters
MSG_FOUND_STATIONS (40//)
Found %d stations
;
MSG_PLAYING_STATION (41//)
Playing: %s
;
MSG_SETTINGS_LOADED (42//)
Settings loaded.
;
MSG_SETTINGS_SAVED (43//)
Settings saved.
;
MSG_SEARCH_COMPLETED (44//)
Search completed. Found %d stations.
;
MSG_FILE_SAVED (45//)
File saved: %s
;
MSG_SET_SAVED (46//)
Settings saved: %s:%u
;
MSG_NO_STATIONS_FOUND (47//)
No stations found
;
MSG_FAVORITE_ADDED (48//)
Added to favorites
;
MSG_FAVORITE_REMOVED (49//)
Station removed from favorites
;
; Error Messages - Settings Related
MSG_INVALID_PORT (50//)
Invalid port number, keeping current: %ld
;
MSG_FAILED_WRITE_PORT_SET (51//)
Failed to write port setting
;
MSG_FAILED_WRITE_HOST_SETTING (52//)
Failed to write host setting
;
MSG_INVALID_LIMIT (53//)
Invalid limit value, keeping current: %ld
;
MSG_FAILED_WRITE_LIMIT_SET (54//)
Failed to write limit setting
;
MSG_FAILED_ADD_FAVORITE (55//)
Failed to add to favorites
;
MSG_FAILED_REMOVE_FAVORITE (56//)
Failed to remove from favorites
;
; Error Messages - File Operations
MSG_FAILED_FILE_SAVE (60//)
Failed to save file
;
MSG_FAILED_ACCESS (61//)
Failed to access %s
;
MSG_FAILED_CREAT_PORT_FILE (62//)
Failed to create port settings file: %s
;
MSG_FAILED_CREAT_HOST_SET_FILE (63//)
Failed to create host settings file: %s
;
MSG_FAILED_CREAT_LIMIT_FILE (64//)
Failed to create limit settings file: %s
;
; Error Messages - Directory Operations
MSG_CREATED_SET_DIR (70//)
Created settings directory: %s
;
MSG_FAIL_CREATE_SET_DIR (71//)
Failed to create directory: %s
;
; Error Messages - Network Related
MSG_HTTP_REQ_FAILED (80//)
HTTP request failed
;
MSG_FAILED_RESOLV_HOST (81//)
Failed to resolve host
;
MSG_FAILED_CONN_SERV (82//)
Failed to connect to server
;
MSG_FAILED_SEND_REQ (83//)
Failed to send request
;
MSG_TIMEOUT (84//)
Timeout waiting for data
;
MSG_FAILED_CR_SOC (85//)
Failed to create socket
;
MSG_FAILED_ALL_BUFF (86//)
Failed to allocate buffers
;
MSG_INVALID_HOST (87//)
Invalid host
;
; Error Messages - External Programs
MSG_FAILED_START_PLAYBACK (90//)
Failed to start playback
;
MSG_AMIGAAMP_NOT_RUNNING (91//)
AmigaAMP is not running
;
MSG_STOPPING_PLAYBACK (92//)
Playback stopped
;