IRremoteESP8266
defaults.h
Go to the documentation of this file.
1 // Copyright 2019 - David Conran (@crankyoldgit)
2 // The default text to use throughout the library.
3 // The library will use this text if no locale (_IR_LOCALE_) is set or if
4 // the locale doesn't define particular values.
5 // If they are defined, this file should NOT override them.
6 //
7 // This file should contain a #define for every translateable/locale dependant
8 // string used by the library. Language specific files don't have to include
9 // everything.
10 //
11 // NOTE: ASCII/UTF-8 characters only. Unicode is NOT supported.
12 //
13 // The defaults are English (AU) / en-AU. Australia (AU) is pretty much the same
14 // as English (UK) for this libraries use case.
15 #ifndef LOCALE_DEFAULTS_H_
16 #define LOCALE_DEFAULTS_H_
17 
18 #ifndef D_STR_UNKNOWN
19 #define D_STR_UNKNOWN "UNKNOWN"
20 #endif // D_STR_UNKNOWN
21 #ifndef D_STR_PROTOCOL
22 #define D_STR_PROTOCOL "Protocol"
23 #endif // D_STR_PROTOCOL
24 #ifndef D_STR_POWER
25 #define D_STR_POWER "Power"
26 #endif // D_STR_POWER
27 #ifndef D_STR_PREVIOUS
28 #define D_STR_PREVIOUS "Previous"
29 #endif // D_STR_PREVIOUS
30 #ifndef D_STR_ON
31 #define D_STR_ON "On"
32 #endif // D_STR_ON
33 #ifndef D_STR_OFF
34 #define D_STR_OFF "Off"
35 #endif // D_STR_OFF
36 #ifndef D_STR_MODE
37 #define D_STR_MODE "Mode"
38 #endif // D_STR_MODE
39 #ifndef D_STR_TOGGLE
40 #define D_STR_TOGGLE "Toggle"
41 #endif // D_STR_TOGGLE
42 #ifndef D_STR_TURBO
43 #define D_STR_TURBO "Turbo"
44 #endif // D_STR_TURBO
45 #ifndef D_STR_SUPER
46 #define D_STR_SUPER "Super"
47 #endif // D_STR_SUPER
48 #ifndef D_STR_SLEEP
49 #define D_STR_SLEEP "Sleep"
50 #endif // D_STR_SLEEP
51 #ifndef D_STR_LIGHT
52 #define D_STR_LIGHT "Light"
53 #endif // D_STR_LIGHT
54 #ifndef D_STR_POWERFUL
55 #define D_STR_POWERFUL "Powerful"
56 #endif // D_STR_POWERFUL
57 #ifndef D_STR_QUIET
58 #define D_STR_QUIET "Quiet"
59 #endif // D_STR_QUIET
60 #ifndef D_STR_ECONO
61 #define D_STR_ECONO "Econo"
62 #endif // D_STR_ECONO
63 #ifndef D_STR_SWING
64 #define D_STR_SWING "Swing"
65 #endif // D_STR_SWING
66 #ifndef D_STR_SWINGH
67 #define D_STR_SWINGH D_STR_SWING"(H)" // Set `D_STR_SWING` first!
68 #endif // D_STR_SWINGH
69 #ifndef D_STR_SWINGV
70 #define D_STR_SWINGV D_STR_SWING"(V)" // Set `D_STR_SWING` first!
71 #endif // D_STR_SWINGV
72 #ifndef D_STR_BEEP
73 #define D_STR_BEEP "Beep"
74 #endif // D_STR_BEEP
75 #ifndef D_STR_MOULD
76 #define D_STR_MOULD "Mould"
77 #endif // D_STR_MOULD
78 #ifndef D_STR_CLEAN
79 #define D_STR_CLEAN "Clean"
80 #endif // D_STR_CLEAN
81 #ifndef D_STR_PURIFY
82 #define D_STR_PURIFY "Purify"
83 #endif // D_STR_PURIFY
84 #ifndef D_STR_TIMER
85 #define D_STR_TIMER "Timer"
86 #endif // D_STR_TIMER
87 #ifndef D_STR_ONTIMER
88 #define D_STR_ONTIMER D_STR_ON " " D_STR_TIMER // Set `D_STR_ON` first!
89 #endif // D_STR_ONTIMER
90 #ifndef D_STR_OFFTIMER
91 #define D_STR_OFFTIMER D_STR_OFF " " D_STR_TIMER // Set `D_STR_OFF` first!
92 #endif // D_STR_OFFTIMER
93 #ifndef D_STR_CLOCK
94 #define D_STR_CLOCK "Clock"
95 #endif // D_STR_CLOCK
96 #ifndef D_STR_COMMAND
97 #define D_STR_COMMAND "Command"
98 #endif // D_STR_COMMAND
99 #ifndef D_STR_XFAN
100 #define D_STR_XFAN "XFan"
101 #endif // D_STR_XFAN
102 #ifndef D_STR_HEALTH
103 #define D_STR_HEALTH "Health"
104 #endif // D_STR_HEALTH
105 #ifndef D_STR_MODEL
106 #define D_STR_MODEL "Model"
107 #endif // D_STR_MODEL
108 #ifndef D_STR_TEMP
109 #define D_STR_TEMP "Temp"
110 #endif // D_STR_TEMP
111 #ifndef D_STR_IFEEL
112 #define D_STR_IFEEL "IFeel"
113 #endif // D_STR_IFEEL
114 #ifndef D_STR_HUMID
115 #define D_STR_HUMID "Humid"
116 #endif // D_STR_HUMID
117 #ifndef D_STR_SAVE
118 #define D_STR_SAVE "Save"
119 #endif // D_STR_SAVE
120 #ifndef D_STR_EYE
121 #define D_STR_EYE "Eye"
122 #endif // D_STR_EYE
123 #ifndef D_STR_FOLLOW
124 #define D_STR_FOLLOW "Follow"
125 #endif // D_STR_FOLLOW
126 #ifndef D_STR_ION
127 #define D_STR_ION "Ion"
128 #endif // D_STR_ION
129 #ifndef D_STR_FRESH
130 #define D_STR_FRESH "Fresh"
131 #endif // D_STR_FRESH
132 #ifndef D_STR_HOLD
133 #define D_STR_HOLD "Hold"
134 #endif // D_STR_HOLD
135 #ifndef D_STR_8C_HEAT
136 #define D_STR_8C_HEAT "8C " D_STR_HEAT // Set `D_STR_HEAT` first!
137 #endif // D_STR_8C_HEAT
138 #ifndef D_STR_BUTTON
139 #define D_STR_BUTTON "Button"
140 #endif // D_STR_BUTTON
141 #ifndef D_STR_NIGHT
142 #define D_STR_NIGHT "Night"
143 #endif // D_STR_NIGHT
144 #ifndef D_STR_SILENT
145 #define D_STR_SILENT "Silent"
146 #endif // D_STR_SILENT
147 #ifndef D_STR_FILTER
148 #define D_STR_FILTER "Filter"
149 #endif // D_STR_FILTER
150 #ifndef D_STR_3D
151 #define D_STR_3D "3D"
152 #endif // D_STR_3D
153 #ifndef D_STR_CELSIUS
154 #define D_STR_CELSIUS "Celsius"
155 #endif // D_STR_CELSIUS
156 #ifndef D_STR_UP
157 #define D_STR_UP "Up"
158 #endif // D_STR_UP
159 #ifndef D_STR_TEMPUP
160 #define D_STR_TEMPUP D_STR_TEMP " " D_STR_UP // Set `D_STR_TEMP` first!
161 #endif // D_STR_TEMPUP
162 #ifndef D_STR_DOWN
163 #define D_STR_DOWN "Down"
164 #endif // D_STR_DOWN
165 #ifndef D_STR_TEMPDOWN
166 #define D_STR_TEMPDOWN D_STR_TEMP " " D_STR_DOWN // Set `D_STR_TEMP` first!
167 #endif // D_STR_TEMPDOWN
168 #ifndef D_STR_CHANGE
169 #define D_STR_CHANGE "Change"
170 #endif // D_STR_CHANGE
171 #ifndef D_STR_START
172 #define D_STR_START "Start"
173 #endif // D_STR_START
174 #ifndef D_STR_STOP
175 #define D_STR_STOP "Stop"
176 #endif // D_STR_STOP
177 #ifndef D_STR_MOVE
178 #define D_STR_MOVE "Move"
179 #endif // D_STR_MOVE
180 #ifndef D_STR_SET
181 #define D_STR_SET "Set"
182 #endif // D_STR_SET
183 #ifndef D_STR_CANCEL
184 #define D_STR_CANCEL "Cancel"
185 #endif // D_STR_CANCEL
186 #ifndef D_STR_COMFORT
187 #define D_STR_COMFORT "Comfort"
188 #endif // D_STR_COMFORT
189 #ifndef D_STR_SENSOR
190 #define D_STR_SENSOR "Sensor"
191 #endif // D_STR_SENSOR
192 #ifndef D_STR_DISPLAY
193 #define D_STR_DISPLAY "Display"
194 #endif // D_STR_DISPLAY
195 #ifndef D_STR_WEEKLY
196 #define D_STR_WEEKLY "Weekly"
197 #endif // D_STR_WEEKLY
198 #ifndef D_STR_WEEKLYTIMER
199 #define D_STR_WEEKLYTIMER D_STR_WEEKLY " " D_STR_TIMER // Needs `D_STR_WEEKLY`!
200 #endif // D_STR_WEEKLYTIMER
201 #ifndef D_STR_WIFI
202 #define D_STR_WIFI "WiFi"
203 #endif // D_STR_WIFI
204 #ifndef D_STR_LAST
205 #define D_STR_LAST "Last"
206 #endif // D_STR_LAST
207 #ifndef D_STR_FAST
208 #define D_STR_FAST "Fast"
209 #endif // D_STR_FAST
210 #ifndef D_STR_SLOW
211 #define D_STR_SLOW "Slow"
212 #endif // D_STR_SLOW
213 #ifndef D_STR_AIRFLOW
214 #define D_STR_AIRFLOW "Air Flow"
215 #endif // D_STR_AIRFLOW
216 #ifndef D_STR_STEP
217 #define D_STR_STEP "Step"
218 #endif // D_STR_STEP
219 #ifndef D_STR_NA
220 #define D_STR_NA "N/A"
221 #endif // D_STR_NA
222 #ifndef D_STR_INSIDE
223 #define D_STR_INSIDE "Inside"
224 #endif // D_STR_INSIDE
225 #ifndef D_STR_OUTSIDE
226 #define D_STR_OUTSIDE "Outside"
227 #endif // D_STR_OUTSIDE
228 #ifndef D_STR_LOUD
229 #define D_STR_LOUD "Loud"
230 #endif // D_STR_LOUD
231 #ifndef D_STR_UPPER
232 #define D_STR_UPPER "Upper"
233 #endif // D_STR_UPPER
234 #ifndef D_STR_LOWER
235 #define D_STR_LOWER "Lower"
236 #endif // D_STR_LOWER
237 #ifndef D_STR_BREEZE
238 #define D_STR_BREEZE "Breeze"
239 #endif // D_STR_BREEZE
240 #ifndef D_STR_CIRCULATE
241 #define D_STR_CIRCULATE "Circulate"
242 #endif // D_STR_CIRCULATE
243 #ifndef D_STR_CEILING
244 #define D_STR_CEILING "Ceiling"
245 #endif // D_STR_CEILING
246 #ifndef D_STR_WALL
247 #define D_STR_WALL "Wall"
248 #endif // D_STR_WALL
249 #ifndef D_STR_ROOM
250 #define D_STR_ROOM "Room"
251 #endif // D_STR_ROOM
252 #ifndef D_STR_6THSENSE
253 #define D_STR_6THSENSE "6th Sense"
254 #endif // D_STR_6THSENSE
255 #ifndef D_STR_ZONEFOLLOW
256 #define D_STR_ZONEFOLLOW "Zone Follow"
257 #endif // D_STR_ZONEFOLLOW
258 #ifndef D_STR_FIXED
259 #define D_STR_FIXED "Fixed"
260 #endif // D_STR_FIXED
261 
262 #ifndef D_STR_AUTO
263 #define D_STR_AUTO "Auto"
264 #endif // D_STR_AUTO
265 #ifndef D_STR_AUTOMATIC
266 #define D_STR_AUTOMATIC "Automatic"
267 #endif // D_STR_AUTOMATIC
268 #ifndef D_STR_MANUAL
269 #define D_STR_MANUAL "Manual"
270 #endif // D_STR_MANUAL
271 #ifndef D_STR_COOL
272 #define D_STR_COOL "Cool"
273 #endif // D_STR_COOL
274 #ifndef D_STR_HEAT
275 #define D_STR_HEAT "Heat"
276 #endif // D_STR_HEAT
277 #ifndef D_STR_FAN
278 #define D_STR_FAN "Fan"
279 #endif // D_STR_FAN
280 #ifndef D_STR_FANONLY
281 #define D_STR_FANONLY "fan_only"
282 #endif // D_STR_FANONLY
283 #ifndef D_STR_DRY
284 #define D_STR_DRY "Dry"
285 #endif // D_STR_DRY
286 
287 #ifndef D_STR_MAX
288 #define D_STR_MAX "Max"
289 #endif // D_STR_MAX
290 #ifndef D_STR_MAXIMUM
291 #define D_STR_MAXIMUM "Maximum"
292 #endif // D_STR_MAXIMUM
293 #ifndef D_STR_MIN
294 #define D_STR_MIN "Min"
295 #endif // D_STR_MIN
296 #ifndef D_STR_MINIMUM
297 #define D_STR_MINIMUM "Minimum"
298 #endif // D_STR_MINIMUM
299 #ifndef D_STR_MED
300 #define D_STR_MED "Med"
301 #endif // D_STR_MED
302 #ifndef D_STR_MEDIUM
303 #define D_STR_MEDIUM "Medium"
304 #endif // D_STR_MEDIUM
305 
306 #ifndef D_STR_HIGHEST
307 #define D_STR_HIGHEST "Highest"
308 #endif // D_STR_HIGHEST
309 #ifndef D_STR_HIGH
310 #define D_STR_HIGH "High"
311 #endif // D_STR_HIGH
312 #ifndef D_STR_HI
313 #define D_STR_HI "Hi"
314 #endif // D_STR_HI
315 #ifndef D_STR_MID
316 #define D_STR_MID "Mid"
317 #endif // D_STR_MID
318 #ifndef D_STR_MIDDLE
319 #define D_STR_MIDDLE "Middle"
320 #endif // D_STR_MIDDLE
321 #ifndef D_STR_LOW
322 #define D_STR_LOW "Low"
323 #endif // D_STR_LOW
324 #ifndef D_STR_LO
325 #define D_STR_LO "Lo"
326 #endif // D_STR_LO
327 #ifndef D_STR_LOWEST
328 #define D_STR_LOWEST "Lowest"
329 #endif // D_STR_LOWEST
330 #ifndef D_STR_RIGHT
331 #define D_STR_RIGHT "Right"
332 #endif // D_STR_RIGHT
333 #ifndef D_STR_MAXRIGHT
334 #define D_STR_MAXRIGHT D_STR_MAX " " D_STR_RIGHT // Set `D_STR_MAX` first!
335 #endif // D_STR_MAXRIGHT
336 #ifndef D_STR_RIGHTMAX_NOSPACE
337 #define D_STR_RIGHTMAX_NOSPACE D_STR_RIGHT D_STR_MAX // Set `D_STR_MAX` first!
338 #endif // D_STR_RIGHTMAX_NOSPACE
339 #ifndef D_STR_LEFT
340 #define D_STR_LEFT "Left"
341 #endif // D_STR_LEFT
342 #ifndef D_STR_MAXLEFT
343 #define D_STR_MAXLEFT D_STR_MAX " " D_STR_LEFT // Set `D_STR_MAX` first!
344 #endif // D_STR_MAXLEFT
345 #ifndef D_STR_LEFTMAX_NOSPACE
346 #define D_STR_LEFTMAX_NOSPACE D_STR_LEFT D_STR_MAX // Set `D_STR_MAX` first!
347 #endif // D_STR_LEFTMAX_NOSPACE
348 #ifndef D_STR_WIDE
349 #define D_STR_WIDE "Wide"
350 #endif // D_STR_WIDE
351 #ifndef D_STR_CENTRE
352 #define D_STR_CENTRE "Centre"
353 #endif // D_STR_CENTRE
354 #ifndef D_STR_TOP
355 #define D_STR_TOP "Top"
356 #endif // D_STR_TOP
357 #ifndef D_STR_BOTTOM
358 #define D_STR_BOTTOM "Bottom"
359 #endif // D_STR_BOTTOM
360 
361 // Compound words/phrases/descriptions from pre-defined words.
362 // Note: Obviously these need to be defined *after* their component words.
363 #ifndef D_STR_EYEAUTO
364 #define D_STR_EYEAUTO D_STR_EYE " " D_STR_AUTO
365 #endif // D_STR_EYEAUTO
366 #ifndef D_STR_LIGHTTOGGLE
367 #define D_STR_LIGHTTOGGLE D_STR_LIGHT " " D_STR_TOGGLE
368 #endif // D_STR_LIGHTTOGGLE
369 #ifndef D_STR_OUTSIDEQUIET
370 #define D_STR_OUTSIDEQUIET D_STR_OUTSIDE " " D_STR_QUIET
371 #endif // D_STR_OUTSIDEQUIET
372 #ifndef D_STR_POWERTOGGLE
373 #define D_STR_POWERTOGGLE D_STR_POWER " " D_STR_TOGGLE
374 #endif // D_STR_POWERTOGGLE
375 #ifndef D_STR_POWERBUTTON
376 #define D_STR_POWERBUTTON D_STR_POWER " " D_STR_BUTTON
377 #endif // D_STR_POWERBUTTON
378 #ifndef D_STR_PREVIOUSPOWER
379 #define D_STR_PREVIOUSPOWER D_STR_PREVIOUS " " D_STR_POWER
380 #endif // D_STR_PREVIOUSPOWER
381 #ifndef D_STR_DISPLAYTEMP
382 #define D_STR_DISPLAYTEMP D_STR_DISPLAY " " D_STR_TEMP
383 #endif // D_STR_DISPLAYTEMP
384 #ifndef D_STR_SENSORTEMP
385 #define D_STR_SENSORTEMP D_STR_SENSOR " " D_STR_TEMP
386 #endif // D_STR_SENSORTEMP
387 #ifndef D_STR_SLEEP_TIMER
388 #define D_STR_SLEEP_TIMER D_STR_SLEEP " " D_STR_TIMER
389 #endif // D_STR_SLEEP_TIMER
390 #ifndef D_STR_SWINGVMODE
391 #define D_STR_SWINGVMODE D_STR_SWINGV " " D_STR_MODE
392 #endif // D_STR_SWINGVMODE
393 #ifndef D_STR_SWINGVTOGGLE
394 #define D_STR_SWINGVTOGGLE D_STR_SWINGV " " D_STR_TOGGLE
395 #endif // D_STR_SWINGVTOGGLE
396 
397 // Separators
398 #ifndef D_CHR_TIME_SEP
399 #define D_CHR_TIME_SEP ':'
400 #endif // D_CHR_TIME_SEP
401 #ifndef D_STR_SPACELBRACE
402 #define D_STR_SPACELBRACE " ("
403 #endif // D_STR_SPACELBRACE
404 #ifndef D_STR_COMMASPACE
405 #define D_STR_COMMASPACE ", "
406 #endif // D_STR_COMMASPACE
407 #ifndef D_STR_COLONSPACE
408 #define D_STR_COLONSPACE ": "
409 #endif // D_STR_COLONSPACE
410 
411 #ifndef D_STR_DAY
412 #define D_STR_DAY "Day"
413 #endif // D_STR_DAY
414 #ifndef D_STR_DAYS
415 #define D_STR_DAYS D_STR_DAY "s"
416 #endif // D_STR_DAYS
417 #ifndef D_STR_HOUR
418 #define D_STR_HOUR "Hour"
419 #endif // D_STR_HOUR
420 #ifndef D_STR_HOURS
421 #define D_STR_HOURS D_STR_HOUR "s"
422 #endif // D_STR_HOURS
423 #ifndef D_STR_MINUTE
424 #define D_STR_MINUTE "Minute"
425 #endif // D_STR_MINUTE
426 #ifndef D_STR_MINUTES
427 #define D_STR_MINUTES D_STR_MINUTE "s"
428 #endif // D_STR_MINUTES
429 #ifndef D_STR_SECOND
430 #define D_STR_SECOND "Second"
431 #endif // D_STR_SECOND
432 #ifndef D_STR_SECONDS
433 #define D_STR_SECONDS D_STR_SECOND "s"
434 #endif // D_STR_SECONDS
435 #ifndef D_STR_NOW
436 #define D_STR_NOW "Now"
437 #endif // D_STR_NOW
438 #ifndef D_STR_THREELETTERDAYS
439 #define D_STR_THREELETTERDAYS "SunMonTueWedThuFriSat"
440 #endif // D_STR_THREELETTERDAYS
441 
442 #ifndef D_STR_YES
443 #define D_STR_YES "Yes"
444 #endif // D_STR_YES
445 #ifndef D_STR_NO
446 #define D_STR_NO "No"
447 #endif // D_STR_NO
448 #ifndef D_STR_TRUE
449 #define D_STR_TRUE "True"
450 #endif // D_STR_TRUE
451 #ifndef D_STR_FALSE
452 #define D_STR_FALSE "False"
453 #endif // D_STR_FALSE
454 
455 #ifndef D_STR_REPEAT
456 #define D_STR_REPEAT "Repeat"
457 #endif // D_STR_REPEAT
458 #ifndef D_STR_CODE
459 #define D_STR_CODE "Code"
460 #endif // D_STR_CODE
461 #ifndef D_STR_BITS
462 #define D_STR_BITS "Bits"
463 #endif // D_STR_BITS
464 
465 // Protocols Names
466 #ifndef D_STR_AIRWELL
467 #define D_STR_AIRWELL "AIRWELL"
468 #endif // D_STR_AIRWELL
469 #ifndef D_STR_AIWA_RC_T501
470 #define D_STR_AIWA_RC_T501 "AIWA_RC_T501"
471 #endif // D_STR_AIWA_RC_T501
472 #ifndef D_STR_AMCOR
473 #define D_STR_AMCOR "AMCOR"
474 #endif // D_STR_AMCOR
475 #ifndef D_STR_ARGO
476 #define D_STR_ARGO "ARGO"
477 #endif // D_STR_ARGO
478 #ifndef D_STR_CARRIER_AC
479 #define D_STR_CARRIER_AC "CARRIER_AC"
480 #endif // D_STR_CARRIER_AC
481 #ifndef D_STR_CARRIER_AC40
482 #define D_STR_CARRIER_AC40 D_STR_CARRIER_AC "40"
483 #endif // D_STR_CARRIER_AC40
484 #ifndef D_STR_CARRIER_AC64
485 #define D_STR_CARRIER_AC64 D_STR_CARRIER_AC "64"
486 #endif // D_STR_CARRIER_AC64
487 #ifndef D_STR_COOLIX
488 #define D_STR_COOLIX "COOLIX"
489 #endif // D_STR_COOLIX
490 #ifndef D_STR_CORONA_AC
491 #define D_STR_CORONA_AC "CORONA_AC"
492 #endif // D_STR_CORONA_AC
493 #ifndef D_STR_DAIKIN
494 #define D_STR_DAIKIN "DAIKIN"
495 #endif // D_STR_DAIKIN
496 #ifndef D_STR_DAIKIN128
497 #define D_STR_DAIKIN128 "DAIKIN128"
498 #endif // D_STR_DAIKIN128
499 #ifndef D_STR_DAIKIN152
500 #define D_STR_DAIKIN152 "DAIKIN152"
501 #endif // D_STR_DAIKIN152
502 #ifndef D_STR_DAIKIN160
503 #define D_STR_DAIKIN160 "DAIKIN160"
504 #endif // D_STR_DAIKIN160
505 #ifndef D_STR_DAIKIN176
506 #define D_STR_DAIKIN176 "DAIKIN176"
507 #endif // D_STR_DAIKIN176
508 #ifndef D_STR_DAIKIN2
509 #define D_STR_DAIKIN2 "DAIKIN2"
510 #endif // D_STR_DAIKIN2
511 #ifndef D_STR_DAIKIN216
512 #define D_STR_DAIKIN216 "DAIKIN216"
513 #endif // D_STR_DAIKIN216
514 #ifndef D_STR_DAIKIN64
515 #define D_STR_DAIKIN64 "DAIKIN64"
516 #endif // D_STR_DAIKIN64
517 #ifndef D_STR_DELONGHI_AC
518 #define D_STR_DELONGHI_AC "DELONGHI_AC"
519 #endif // D_STR_DELONGHI_AC
520 #ifndef D_STR_DENON
521 #define D_STR_DENON "DENON"
522 #endif // D_STR_DENON
523 #ifndef D_STR_DISH
524 #define D_STR_DISH "DISH"
525 #endif // D_STR_DISH
526 #ifndef D_STR_DOSHISHA
527 #define D_STR_DOSHISHA "DOSHISHA"
528 #endif // D_STR_DOSHISHA
529 #ifndef D_STR_ELECTRA_AC
530 #define D_STR_ELECTRA_AC "ELECTRA_AC"
531 #endif // D_STR_ELECTRA_AC
532 #ifndef D_STR_EPSON
533 #define D_STR_EPSON "EPSON"
534 #endif // D_STR_EPSON
535 #ifndef D_STR_FUJITSU_AC
536 #define D_STR_FUJITSU_AC "FUJITSU_AC"
537 #endif // D_STR_FUJITSU_AC
538 #ifndef D_STR_GICABLE
539 #define D_STR_GICABLE "GICABLE"
540 #endif // D_STR_GICABLE
541 #ifndef D_STR_GLOBALCACHE
542 #define D_STR_GLOBALCACHE "GLOBALCACHE"
543 #endif // D_STR_GLOBALCACHE
544 #ifndef D_STR_GOODWEATHER
545 #define D_STR_GOODWEATHER "GOODWEATHER"
546 #endif // D_STR_GOODWEATHER
547 #ifndef D_STR_GREE
548 #define D_STR_GREE "GREE"
549 #endif // D_STR_GREE
550 #ifndef D_STR_HAIER_AC
551 #define D_STR_HAIER_AC "HAIER_AC"
552 #endif // D_STR_HAIER_AC
553 #ifndef D_STR_HAIER_AC_YRW02
554 #define D_STR_HAIER_AC_YRW02 "HAIER_AC_YRW02"
555 #endif // D_STR_HAIER_AC_YRW02
556 #ifndef D_STR_HITACHI_AC
557 #define D_STR_HITACHI_AC "HITACHI_AC"
558 #endif // D_STR_HITACHI_AC
559 #ifndef D_STR_HITACHI_AC1
560 #define D_STR_HITACHI_AC1 "HITACHI_AC1"
561 #endif // D_STR_HITACHI_AC1
562 #ifndef D_STR_HITACHI_AC2
563 #define D_STR_HITACHI_AC2 "HITACHI_AC2"
564 #endif // D_STR_HITACHI_AC2
565 #ifndef D_STR_HITACHI_AC3
566 #define D_STR_HITACHI_AC3 "HITACHI_AC3"
567 #endif // D_STR_HITACHI_AC3
568 #ifndef D_STR_HITACHI_AC344
569 #define D_STR_HITACHI_AC344 "HITACHI_AC344"
570 #endif // D_STR_HITACHI_AC344
571 #ifndef D_STR_HITACHI_AC424
572 #define D_STR_HITACHI_AC424 "HITACHI_AC424"
573 #endif // D_STR_HITACHI_AC424
574 #ifndef D_STR_INAX
575 #define D_STR_INAX "INAX"
576 #endif // D_STR_INAX
577 #ifndef D_STR_JVC
578 #define D_STR_JVC "JVC"
579 #endif // D_STR_JVC
580 #ifndef D_STR_KELVINATOR
581 #define D_STR_KELVINATOR "KELVINATOR"
582 #endif // D_STR_KELVINATOR
583 #ifndef D_STR_LASERTAG
584 #define D_STR_LASERTAG "LASERTAG"
585 #endif // D_STR_LASERTAG
586 #ifndef D_STR_LEGOPF
587 #define D_STR_LEGOPF "LEGOPF"
588 #endif // D_STR_LEGOPF
589 #ifndef D_STR_LG
590 #define D_STR_LG "LG"
591 #endif // D_STR_LG
592 #ifndef D_STR_LG2
593 #define D_STR_LG2 "LG2"
594 #endif // D_STR_LG2
595 #ifndef D_STR_LUTRON
596 #define D_STR_LUTRON "LUTRON"
597 #endif // D_STR_LUTRON
598 #ifndef D_STR_MAGIQUEST
599 #define D_STR_MAGIQUEST "MAGIQUEST"
600 #endif // D_STR_MAGIQUEST
601 #ifndef D_STR_MIDEA
602 #define D_STR_MIDEA "MIDEA"
603 #endif // D_STR_MIDEA
604 #ifndef D_STR_MIDEA24
605 #define D_STR_MIDEA24 "MIDEA24"
606 #endif // D_STR_MIDEA24
607 #ifndef D_STR_MITSUBISHI
608 #define D_STR_MITSUBISHI "MITSUBISHI"
609 #endif // D_STR_MITSUBISHI
610 #ifndef D_STR_MITSUBISHI112
611 #define D_STR_MITSUBISHI112 "MITSUBISHI112"
612 #endif // D_STR_MITSUBISHI112
613 #ifndef D_STR_MITSUBISHI136
614 #define D_STR_MITSUBISHI136 "MITSUBISHI136"
615 #endif // D_STR_MITSUBISHI136
616 #ifndef D_STR_MITSUBISHI2
617 #define D_STR_MITSUBISHI2 "MITSUBISHI2"
618 #endif // D_STR_MITSUBISHI2
619 #ifndef D_STR_MITSUBISHI_AC
620 #define D_STR_MITSUBISHI_AC "MITSUBISHI_AC"
621 #endif // D_STR_MITSUBISHI_AC
622 #ifndef D_STR_MITSUBISHI_HEAVY_152
623 #define D_STR_MITSUBISHI_HEAVY_152 "MITSUBISHI_HEAVY_152"
624 #endif // D_STR_MITSUBISHI_HEAVY_152
625 #ifndef D_STR_MITSUBISHI_HEAVY_88
626 #define D_STR_MITSUBISHI_HEAVY_88 "MITSUBISHI_HEAVY_88"
627 #endif // D_STR_MITSUBISHI_HEAVY_88
628 #ifndef D_STR_MULTIBRACKETS
629 #define D_STR_MULTIBRACKETS "MULTIBRACKETS"
630 #endif // D_STR_MULTIBRACKETS
631 #ifndef D_STR_MWM
632 #define D_STR_MWM "MWM"
633 #endif // D_STR_MWM
634 #ifndef D_STR_NEC
635 #define D_STR_NEC "NEC"
636 #endif // D_STR_NEC
637 #ifndef D_STR_NEC_LIKE
638 #define D_STR_NEC_LIKE D_STR_NEC "_LIKE"
639 #endif // D_STR_NEC_LIKE
640 #ifndef D_STR_NEC_NON_STRICT
641 #define D_STR_NEC_NON_STRICT D_STR_NEC " (NON-STRICT)"
642 #endif // D_STR_NEC_NON_STRICT
643 #ifndef D_STR_NEOCLIMA
644 #define D_STR_NEOCLIMA "NEOCLIMA"
645 #endif // D_STR_NEOCLIMA
646 #ifndef D_STR_NIKAI
647 #define D_STR_NIKAI "NIKAI"
648 #endif // D_STR_NIKAI
649 #ifndef D_STR_PANASONIC
650 #define D_STR_PANASONIC "PANASONIC"
651 #endif // D_STR_PANASONIC
652 #ifndef D_STR_PANASONIC_AC
653 #define D_STR_PANASONIC_AC "PANASONIC_AC"
654 #endif // D_STR_PANASONIC_AC
655 #ifndef D_STR_PIONEER
656 #define D_STR_PIONEER "PIONEER"
657 #endif // D_STR_PIONEER
658 #ifndef D_STR_PRONTO
659 #define D_STR_PRONTO "PRONTO"
660 #endif // D_STR_PRONTO
661 #ifndef D_STR_RAW
662 #define D_STR_RAW "RAW"
663 #endif // D_STR_RAW
664 #ifndef D_STR_RC5
665 #define D_STR_RC5 "RC5"
666 #endif // D_STR_RC5
667 #ifndef D_STR_RC5X
668 #define D_STR_RC5X "RC5X"
669 #endif // D_STR_RC5X
670 #ifndef D_STR_RC6
671 #define D_STR_RC6 "RC6"
672 #endif // D_STR_RC6
673 #ifndef D_STR_RCMM
674 #define D_STR_RCMM "RCMM"
675 #endif // D_STR_RCMM
676 #ifndef D_STR_SAMSUNG
677 #define D_STR_SAMSUNG "SAMSUNG"
678 #endif // D_STR_SAMSUNG
679 #ifndef D_STR_SAMSUNG36
680 #define D_STR_SAMSUNG36 "SAMSUNG36"
681 #endif // D_STR_SAMSUNG36
682 #ifndef D_STR_SAMSUNG_AC
683 #define D_STR_SAMSUNG_AC "SAMSUNG_AC"
684 #endif // D_STR_SAMSUNG_AC
685 #ifndef D_STR_SANYO
686 #define D_STR_SANYO "SANYO"
687 #endif // D_STR_SANYO
688 #ifndef D_STR_SANYO_LC7461
689 #define D_STR_SANYO_LC7461 "SANYO_LC7461"
690 #endif // D_STR_SANYO_LC7461
691 #ifndef D_STR_SHARP
692 #define D_STR_SHARP "SHARP"
693 #endif // D_STR_SHARP
694 #ifndef D_STR_SHARP_AC
695 #define D_STR_SHARP_AC "SHARP_AC"
696 #endif // D_STR_SHARP_AC
697 #ifndef D_STR_SHERWOOD
698 #define D_STR_SHERWOOD "SHERWOOD"
699 #endif // D_STR_SHERWOOD
700 #ifndef D_STR_SONY
701 #define D_STR_SONY "SONY"
702 #endif // D_STR_SONY
703 #ifndef D_STR_SONY_38K
704 #define D_STR_SONY_38K "SONY_38K"
705 #endif // D_STR_SONY_38K
706 #ifndef D_STR_SYMPHONY
707 #define D_STR_SYMPHONY "SYMPHONY"
708 #endif // D_STR_SYMPHONY
709 #ifndef D_STR_TCL112AC
710 #define D_STR_TCL112AC "TCL112AC"
711 #endif // D_STR_TCL112AC
712 #ifndef D_STR_TECO
713 #define D_STR_TECO "TECO"
714 #endif // D_STR_TECO
715 #ifndef D_STR_TOSHIBA_AC
716 #define D_STR_TOSHIBA_AC "TOSHIBA_AC"
717 #endif // D_STR_TOSHIBA_AC
718 #ifndef D_STR_TROTEC
719 #define D_STR_TROTEC "TROTEC"
720 #endif // D_STR_TROTEC
721 #ifndef D_STR_UNUSED
722 #define D_STR_UNUSED "UNUSED"
723 #endif // D_STR_UNUSED
724 #ifndef D_STR_VESTEL_AC
725 #define D_STR_VESTEL_AC "VESTEL_AC"
726 #endif // D_STR_VESTEL_AC
727 #ifndef D_STR_WHIRLPOOL_AC
728 #define D_STR_WHIRLPOOL_AC "WHIRLPOOL_AC"
729 #endif // D_STR_WHIRLPOOL_AC
730 #ifndef D_STR_WHYNTER
731 #define D_STR_WHYNTER "WHYNTER"
732 #endif // D_STR_WHYNTER
733 #ifndef D_STR_ZEPEAL
734 #define D_STR_ZEPEAL "ZEPEAL"
735 #endif // D_STR_ZEPEAL
736 
737 // IRrecvDumpV2+
738 #ifndef D_STR_TIMESTAMP
739 #define D_STR_TIMESTAMP "Timestamp"
740 #endif // D_STR_TIMESTAMP
741 #ifndef D_STR_LIBRARY
742 #define D_STR_LIBRARY "Library"
743 #endif // D_STR_LIBRARY
744 #ifndef D_STR_MESGDESC
745 #define D_STR_MESGDESC "Mesg Desc."
746 #endif // D_STR_MESGDESC
747 #ifndef D_STR_IRRECVDUMP_STARTUP
748 #define D_STR_IRRECVDUMP_STARTUP \
749  "IRrecvDump is now running and waiting for IR input on Pin %d"
750 #endif // D_STR_IRRECVDUMP_STARTUP
751 #ifndef D_WARN_BUFFERFULL
752 #define D_WARN_BUFFERFULL \
753  "WARNING: IR code is too big for buffer (>= %d). " \
754  "This result shouldn't be trusted until this is resolved. " \
755  "Edit & increase `kCaptureBufferSize`."
756 #endif // D_WARN_BUFFERFULL
757 
758 #endif // LOCALE_DEFAULTS_H_