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_10C_HEAT
139 #define D_STR_10C_HEAT "10C " D_STR_HEAT // Set `D_STR_HEAT` first!
140 #endif // D_STR_10C_HEAT
141 #ifndef D_STR_BUTTON
142 #define D_STR_BUTTON "Button"
143 #endif // D_STR_BUTTON
144 #ifndef D_STR_NIGHT
145 #define D_STR_NIGHT "Night"
146 #endif // D_STR_NIGHT
147 #ifndef D_STR_SILENT
148 #define D_STR_SILENT "Silent"
149 #endif // D_STR_SILENT
150 #ifndef D_STR_FILTER
151 #define D_STR_FILTER "Filter"
152 #endif // D_STR_FILTER
153 #ifndef D_STR_3D
154 #define D_STR_3D "3D"
155 #endif // D_STR_3D
156 #ifndef D_STR_CELSIUS
157 #define D_STR_CELSIUS "Celsius"
158 #endif // D_STR_CELSIUS
159 #ifndef D_STR_FAHRENHEIT
160 #define D_STR_FAHRENHEIT "Fahrenheit"
161 #endif // D_STR_FAHRENHEIT
162 #ifndef D_STR_CELSIUS_FAHRENHEIT
163 #define D_STR_CELSIUS_FAHRENHEIT D_STR_CELSIUS "/" D_STR_FAHRENHEIT
164 #endif // D_STR_CELSIUS_FAHRENHEIT
165 #ifndef D_STR_UP
166 #define D_STR_UP "Up"
167 #endif // D_STR_UP
168 #ifndef D_STR_TEMPUP
169 #define D_STR_TEMPUP D_STR_TEMP " " D_STR_UP // Set `D_STR_TEMP` first!
170 #endif // D_STR_TEMPUP
171 #ifndef D_STR_DOWN
172 #define D_STR_DOWN "Down"
173 #endif // D_STR_DOWN
174 #ifndef D_STR_TEMPDOWN
175 #define D_STR_TEMPDOWN D_STR_TEMP " " D_STR_DOWN // Set `D_STR_TEMP` first!
176 #endif // D_STR_TEMPDOWN
177 #ifndef D_STR_CHANGE
178 #define D_STR_CHANGE "Change"
179 #endif // D_STR_CHANGE
180 #ifndef D_STR_START
181 #define D_STR_START "Start"
182 #endif // D_STR_START
183 #ifndef D_STR_STOP
184 #define D_STR_STOP "Stop"
185 #endif // D_STR_STOP
186 #ifndef D_STR_MOVE
187 #define D_STR_MOVE "Move"
188 #endif // D_STR_MOVE
189 #ifndef D_STR_SET
190 #define D_STR_SET "Set"
191 #endif // D_STR_SET
192 #ifndef D_STR_CANCEL
193 #define D_STR_CANCEL "Cancel"
194 #endif // D_STR_CANCEL
195 #ifndef D_STR_COMFORT
196 #define D_STR_COMFORT "Comfort"
197 #endif // D_STR_COMFORT
198 #ifndef D_STR_SENSOR
199 #define D_STR_SENSOR "Sensor"
200 #endif // D_STR_SENSOR
201 #ifndef D_STR_DISPLAY
202 #define D_STR_DISPLAY "Display"
203 #endif // D_STR_DISPLAY
204 #ifndef D_STR_WEEKLY
205 #define D_STR_WEEKLY "Weekly"
206 #endif // D_STR_WEEKLY
207 #ifndef D_STR_WEEKLYTIMER
208 #define D_STR_WEEKLYTIMER D_STR_WEEKLY " " D_STR_TIMER // Needs `D_STR_WEEKLY`!
209 #endif // D_STR_WEEKLYTIMER
210 #ifndef D_STR_WIFI
211 #define D_STR_WIFI "WiFi"
212 #endif // D_STR_WIFI
213 #ifndef D_STR_LAST
214 #define D_STR_LAST "Last"
215 #endif // D_STR_LAST
216 #ifndef D_STR_FAST
217 #define D_STR_FAST "Fast"
218 #endif // D_STR_FAST
219 #ifndef D_STR_SLOW
220 #define D_STR_SLOW "Slow"
221 #endif // D_STR_SLOW
222 #ifndef D_STR_AIRFLOW
223 #define D_STR_AIRFLOW "Air Flow"
224 #endif // D_STR_AIRFLOW
225 #ifndef D_STR_STEP
226 #define D_STR_STEP "Step"
227 #endif // D_STR_STEP
228 #ifndef D_STR_NA
229 #define D_STR_NA "N/A"
230 #endif // D_STR_NA
231 #ifndef D_STR_INSIDE
232 #define D_STR_INSIDE "Inside"
233 #endif // D_STR_INSIDE
234 #ifndef D_STR_OUTSIDE
235 #define D_STR_OUTSIDE "Outside"
236 #endif // D_STR_OUTSIDE
237 #ifndef D_STR_LOUD
238 #define D_STR_LOUD "Loud"
239 #endif // D_STR_LOUD
240 #ifndef D_STR_UPPER
241 #define D_STR_UPPER "Upper"
242 #endif // D_STR_UPPER
243 #ifndef D_STR_LOWER
244 #define D_STR_LOWER "Lower"
245 #endif // D_STR_LOWER
246 #ifndef D_STR_BREEZE
247 #define D_STR_BREEZE "Breeze"
248 #endif // D_STR_BREEZE
249 #ifndef D_STR_CIRCULATE
250 #define D_STR_CIRCULATE "Circulate"
251 #endif // D_STR_CIRCULATE
252 #ifndef D_STR_CEILING
253 #define D_STR_CEILING "Ceiling"
254 #endif // D_STR_CEILING
255 #ifndef D_STR_WALL
256 #define D_STR_WALL "Wall"
257 #endif // D_STR_WALL
258 #ifndef D_STR_ROOM
259 #define D_STR_ROOM "Room"
260 #endif // D_STR_ROOM
261 #ifndef D_STR_6THSENSE
262 #define D_STR_6THSENSE "6th Sense"
263 #endif // D_STR_6THSENSE
264 #ifndef D_STR_ZONEFOLLOW
265 #define D_STR_ZONEFOLLOW "Zone Follow"
266 #endif // D_STR_ZONEFOLLOW
267 #ifndef D_STR_FIXED
268 #define D_STR_FIXED "Fixed"
269 #endif // D_STR_FIXED
270 #ifndef D_STR_TYPE
271 #define D_STR_TYPE "Type"
272 #endif // D_STR_TYPE
273 #ifndef D_STR_SPECIAL
274 #define D_STR_SPECIAL "Special"
275 #endif // D_STR_SPECIAL
276 #ifndef D_STR_RECYCLE
277 #define D_STR_RECYCLE "Recycle"
278 #endif // D_STR_RECYCLE
279 #ifndef D_STR_ID
280 #define D_STR_ID "Id"
281 #endif // D_STR_ID
282 
283 #ifndef D_STR_AUTO
284 #define D_STR_AUTO "Auto"
285 #endif // D_STR_AUTO
286 #ifndef D_STR_AUTOMATIC
287 #define D_STR_AUTOMATIC "Automatic"
288 #endif // D_STR_AUTOMATIC
289 #ifndef D_STR_MANUAL
290 #define D_STR_MANUAL "Manual"
291 #endif // D_STR_MANUAL
292 #ifndef D_STR_COOL
293 #define D_STR_COOL "Cool"
294 #endif // D_STR_COOL
295 #ifndef D_STR_HEAT
296 #define D_STR_HEAT "Heat"
297 #endif // D_STR_HEAT
298 #ifndef D_STR_FAN
299 #define D_STR_FAN "Fan"
300 #endif // D_STR_FAN
301 #ifndef D_STR_FANONLY
302 #define D_STR_FANONLY "fan_only"
303 #endif // D_STR_FANONLY
304 #ifndef D_STR_DRY
305 #define D_STR_DRY "Dry"
306 #endif // D_STR_DRY
307 
308 #ifndef D_STR_MAX
309 #define D_STR_MAX "Max"
310 #endif // D_STR_MAX
311 #ifndef D_STR_MAXIMUM
312 #define D_STR_MAXIMUM "Maximum"
313 #endif // D_STR_MAXIMUM
314 #ifndef D_STR_MIN
315 #define D_STR_MIN "Min"
316 #endif // D_STR_MIN
317 #ifndef D_STR_MINIMUM
318 #define D_STR_MINIMUM "Minimum"
319 #endif // D_STR_MINIMUM
320 #ifndef D_STR_MED
321 #define D_STR_MED "Med"
322 #endif // D_STR_MED
323 #ifndef D_STR_MEDIUM
324 #define D_STR_MEDIUM "Medium"
325 #endif // D_STR_MEDIUM
326 
327 #ifndef D_STR_HIGHEST
328 #define D_STR_HIGHEST "Highest"
329 #endif // D_STR_HIGHEST
330 #ifndef D_STR_HIGH
331 #define D_STR_HIGH "High"
332 #endif // D_STR_HIGH
333 #ifndef D_STR_HI
334 #define D_STR_HI "Hi"
335 #endif // D_STR_HI
336 #ifndef D_STR_MID
337 #define D_STR_MID "Mid"
338 #endif // D_STR_MID
339 #ifndef D_STR_MIDDLE
340 #define D_STR_MIDDLE "Middle"
341 #endif // D_STR_MIDDLE
342 #ifndef D_STR_LOW
343 #define D_STR_LOW "Low"
344 #endif // D_STR_LOW
345 #ifndef D_STR_LO
346 #define D_STR_LO "Lo"
347 #endif // D_STR_LO
348 #ifndef D_STR_LOWEST
349 #define D_STR_LOWEST "Lowest"
350 #endif // D_STR_LOWEST
351 #ifndef D_STR_RIGHT
352 #define D_STR_RIGHT "Right"
353 #endif // D_STR_RIGHT
354 #ifndef D_STR_MAXRIGHT
355 #define D_STR_MAXRIGHT D_STR_MAX " " D_STR_RIGHT // Set `D_STR_MAX` first!
356 #endif // D_STR_MAXRIGHT
357 #ifndef D_STR_RIGHTMAX_NOSPACE
358 #define D_STR_RIGHTMAX_NOSPACE D_STR_RIGHT D_STR_MAX // Set `D_STR_MAX` first!
359 #endif // D_STR_RIGHTMAX_NOSPACE
360 #ifndef D_STR_LEFT
361 #define D_STR_LEFT "Left"
362 #endif // D_STR_LEFT
363 #ifndef D_STR_MAXLEFT
364 #define D_STR_MAXLEFT D_STR_MAX " " D_STR_LEFT // Set `D_STR_MAX` first!
365 #endif // D_STR_MAXLEFT
366 #ifndef D_STR_LEFTMAX_NOSPACE
367 #define D_STR_LEFTMAX_NOSPACE D_STR_LEFT D_STR_MAX // Set `D_STR_MAX` first!
368 #endif // D_STR_LEFTMAX_NOSPACE
369 #ifndef D_STR_WIDE
370 #define D_STR_WIDE "Wide"
371 #endif // D_STR_WIDE
372 #ifndef D_STR_CENTRE
373 #define D_STR_CENTRE "Centre"
374 #endif // D_STR_CENTRE
375 #ifndef D_STR_TOP
376 #define D_STR_TOP "Top"
377 #endif // D_STR_TOP
378 #ifndef D_STR_BOTTOM
379 #define D_STR_BOTTOM "Bottom"
380 #endif // D_STR_BOTTOM
381 
382 // Compound words/phrases/descriptions from pre-defined words.
383 // Note: Obviously these need to be defined *after* their component words.
384 #ifndef D_STR_ECONOTOGGLE
385 #define D_STR_ECONOTOGGLE D_STR_ECONO " " D_STR_TOGGLE
386 #endif // D_STR_ECONOTOGGLE
387 #ifndef D_STR_EYEAUTO
388 #define D_STR_EYEAUTO D_STR_EYE " " D_STR_AUTO
389 #endif // D_STR_EYEAUTO
390 #ifndef D_STR_LIGHTTOGGLE
391 #define D_STR_LIGHTTOGGLE D_STR_LIGHT " " D_STR_TOGGLE
392 #endif // D_STR_LIGHTTOGGLE
393 #ifndef D_STR_OUTSIDEQUIET
394 #define D_STR_OUTSIDEQUIET D_STR_OUTSIDE " " D_STR_QUIET
395 #endif // D_STR_OUTSIDEQUIET
396 #ifndef D_STR_POWERTOGGLE
397 #define D_STR_POWERTOGGLE D_STR_POWER " " D_STR_TOGGLE
398 #endif // D_STR_POWERTOGGLE
399 #ifndef D_STR_POWERBUTTON
400 #define D_STR_POWERBUTTON D_STR_POWER " " D_STR_BUTTON
401 #endif // D_STR_POWERBUTTON
402 #ifndef D_STR_PREVIOUSPOWER
403 #define D_STR_PREVIOUSPOWER D_STR_PREVIOUS " " D_STR_POWER
404 #endif // D_STR_PREVIOUSPOWER
405 #ifndef D_STR_DISPLAYTEMP
406 #define D_STR_DISPLAYTEMP D_STR_DISPLAY " " D_STR_TEMP
407 #endif // D_STR_DISPLAYTEMP
408 #ifndef D_STR_SENSORTEMP
409 #define D_STR_SENSORTEMP D_STR_SENSOR " " D_STR_TEMP
410 #endif // D_STR_SENSORTEMP
411 #ifndef D_STR_SLEEP_TIMER
412 #define D_STR_SLEEP_TIMER D_STR_SLEEP " " D_STR_TIMER
413 #endif // D_STR_SLEEP_TIMER
414 #ifndef D_STR_SWINGVMODE
415 #define D_STR_SWINGVMODE D_STR_SWINGV " " D_STR_MODE
416 #endif // D_STR_SWINGVMODE
417 #ifndef D_STR_SWINGVTOGGLE
418 #define D_STR_SWINGVTOGGLE D_STR_SWINGV " " D_STR_TOGGLE
419 #endif // D_STR_SWINGVTOGGLE
420 #ifndef D_STR_TURBOTOGGLE
421 #define D_STR_TURBOTOGGLE D_STR_TURBO " " D_STR_TOGGLE
422 #endif // D_STR_TURBOTOGGLE
423 
424 // Separators
425 #ifndef D_CHR_TIME_SEP
426 #define D_CHR_TIME_SEP ':'
427 #endif // D_CHR_TIME_SEP
428 #ifndef D_STR_SPACELBRACE
429 #define D_STR_SPACELBRACE " ("
430 #endif // D_STR_SPACELBRACE
431 #ifndef D_STR_COMMASPACE
432 #define D_STR_COMMASPACE ", "
433 #endif // D_STR_COMMASPACE
434 #ifndef D_STR_COLONSPACE
435 #define D_STR_COLONSPACE ": "
436 #endif // D_STR_COLONSPACE
437 
438 #ifndef D_STR_DAY
439 #define D_STR_DAY "Day"
440 #endif // D_STR_DAY
441 #ifndef D_STR_DAYS
442 #define D_STR_DAYS D_STR_DAY "s"
443 #endif // D_STR_DAYS
444 #ifndef D_STR_HOUR
445 #define D_STR_HOUR "Hour"
446 #endif // D_STR_HOUR
447 #ifndef D_STR_HOURS
448 #define D_STR_HOURS D_STR_HOUR "s"
449 #endif // D_STR_HOURS
450 #ifndef D_STR_MINUTE
451 #define D_STR_MINUTE "Minute"
452 #endif // D_STR_MINUTE
453 #ifndef D_STR_MINUTES
454 #define D_STR_MINUTES D_STR_MINUTE "s"
455 #endif // D_STR_MINUTES
456 #ifndef D_STR_SECOND
457 #define D_STR_SECOND "Second"
458 #endif // D_STR_SECOND
459 #ifndef D_STR_SECONDS
460 #define D_STR_SECONDS D_STR_SECOND "s"
461 #endif // D_STR_SECONDS
462 #ifndef D_STR_NOW
463 #define D_STR_NOW "Now"
464 #endif // D_STR_NOW
465 #ifndef D_STR_THREELETTERDAYS
466 #define D_STR_THREELETTERDAYS "SunMonTueWedThuFriSat"
467 #endif // D_STR_THREELETTERDAYS
468 
469 #ifndef D_STR_YES
470 #define D_STR_YES "Yes"
471 #endif // D_STR_YES
472 #ifndef D_STR_NO
473 #define D_STR_NO "No"
474 #endif // D_STR_NO
475 #ifndef D_STR_TRUE
476 #define D_STR_TRUE "True"
477 #endif // D_STR_TRUE
478 #ifndef D_STR_FALSE
479 #define D_STR_FALSE "False"
480 #endif // D_STR_FALSE
481 
482 #ifndef D_STR_REPEAT
483 #define D_STR_REPEAT "Repeat"
484 #endif // D_STR_REPEAT
485 #ifndef D_STR_CODE
486 #define D_STR_CODE "Code"
487 #endif // D_STR_CODE
488 #ifndef D_STR_BITS
489 #define D_STR_BITS "Bits"
490 #endif // D_STR_BITS
491 
492 // Protocols Names
493 #ifndef D_STR_AIRWELL
494 #define D_STR_AIRWELL "AIRWELL"
495 #endif // D_STR_AIRWELL
496 #ifndef D_STR_AIWA_RC_T501
497 #define D_STR_AIWA_RC_T501 "AIWA_RC_T501"
498 #endif // D_STR_AIWA_RC_T501
499 #ifndef D_STR_AMCOR
500 #define D_STR_AMCOR "AMCOR"
501 #endif // D_STR_AMCOR
502 #ifndef D_STR_ARGO
503 #define D_STR_ARGO "ARGO"
504 #endif // D_STR_ARGO
505 #ifndef D_STR_CARRIER_AC
506 #define D_STR_CARRIER_AC "CARRIER_AC"
507 #endif // D_STR_CARRIER_AC
508 #ifndef D_STR_CARRIER_AC40
509 #define D_STR_CARRIER_AC40 D_STR_CARRIER_AC "40"
510 #endif // D_STR_CARRIER_AC40
511 #ifndef D_STR_CARRIER_AC64
512 #define D_STR_CARRIER_AC64 D_STR_CARRIER_AC "64"
513 #endif // D_STR_CARRIER_AC64
514 #ifndef D_STR_COOLIX
515 #define D_STR_COOLIX "COOLIX"
516 #endif // D_STR_COOLIX
517 #ifndef D_STR_CORONA_AC
518 #define D_STR_CORONA_AC "CORONA_AC"
519 #endif // D_STR_CORONA_AC
520 #ifndef D_STR_DAIKIN
521 #define D_STR_DAIKIN "DAIKIN"
522 #endif // D_STR_DAIKIN
523 #ifndef D_STR_DAIKIN128
524 #define D_STR_DAIKIN128 "DAIKIN128"
525 #endif // D_STR_DAIKIN128
526 #ifndef D_STR_DAIKIN152
527 #define D_STR_DAIKIN152 "DAIKIN152"
528 #endif // D_STR_DAIKIN152
529 #ifndef D_STR_DAIKIN160
530 #define D_STR_DAIKIN160 "DAIKIN160"
531 #endif // D_STR_DAIKIN160
532 #ifndef D_STR_DAIKIN176
533 #define D_STR_DAIKIN176 "DAIKIN176"
534 #endif // D_STR_DAIKIN176
535 #ifndef D_STR_DAIKIN2
536 #define D_STR_DAIKIN2 "DAIKIN2"
537 #endif // D_STR_DAIKIN2
538 #ifndef D_STR_DAIKIN216
539 #define D_STR_DAIKIN216 "DAIKIN216"
540 #endif // D_STR_DAIKIN216
541 #ifndef D_STR_DAIKIN64
542 #define D_STR_DAIKIN64 "DAIKIN64"
543 #endif // D_STR_DAIKIN64
544 #ifndef D_STR_DELONGHI_AC
545 #define D_STR_DELONGHI_AC "DELONGHI_AC"
546 #endif // D_STR_DELONGHI_AC
547 #ifndef D_STR_DENON
548 #define D_STR_DENON "DENON"
549 #endif // D_STR_DENON
550 #ifndef D_STR_DISH
551 #define D_STR_DISH "DISH"
552 #endif // D_STR_DISH
553 #ifndef D_STR_DOSHISHA
554 #define D_STR_DOSHISHA "DOSHISHA"
555 #endif // D_STR_DOSHISHA
556 #ifndef D_STR_ECOCLIM
557 #define D_STR_ECOCLIM "ECOCLIM"
558 #endif // D_STR_ECOCLIM
559 #ifndef D_STR_ELECTRA_AC
560 #define D_STR_ELECTRA_AC "ELECTRA_AC"
561 #endif // D_STR_ELECTRA_AC
562 #ifndef D_STR_ELITESCREENS
563 #define D_STR_ELITESCREENS "ELITESCREENS"
564 #endif // D_STR_ELITESCREENS
565 #ifndef D_STR_EPSON
566 #define D_STR_EPSON "EPSON"
567 #endif // D_STR_EPSON
568 #ifndef D_STR_FUJITSU_AC
569 #define D_STR_FUJITSU_AC "FUJITSU_AC"
570 #endif // D_STR_FUJITSU_AC
571 #ifndef D_STR_GICABLE
572 #define D_STR_GICABLE "GICABLE"
573 #endif // D_STR_GICABLE
574 #ifndef D_STR_GLOBALCACHE
575 #define D_STR_GLOBALCACHE "GLOBALCACHE"
576 #endif // D_STR_GLOBALCACHE
577 #ifndef D_STR_GOODWEATHER
578 #define D_STR_GOODWEATHER "GOODWEATHER"
579 #endif // D_STR_GOODWEATHER
580 #ifndef D_STR_GREE
581 #define D_STR_GREE "GREE"
582 #endif // D_STR_GREE
583 #ifndef D_STR_HAIER_AC
584 #define D_STR_HAIER_AC "HAIER_AC"
585 #endif // D_STR_HAIER_AC
586 #ifndef D_STR_HAIER_AC_YRW02
587 #define D_STR_HAIER_AC_YRW02 "HAIER_AC_YRW02"
588 #endif // D_STR_HAIER_AC_YRW02
589 #ifndef D_STR_HITACHI_AC
590 #define D_STR_HITACHI_AC "HITACHI_AC"
591 #endif // D_STR_HITACHI_AC
592 #ifndef D_STR_HITACHI_AC1
593 #define D_STR_HITACHI_AC1 "HITACHI_AC1"
594 #endif // D_STR_HITACHI_AC1
595 #ifndef D_STR_HITACHI_AC2
596 #define D_STR_HITACHI_AC2 "HITACHI_AC2"
597 #endif // D_STR_HITACHI_AC2
598 #ifndef D_STR_HITACHI_AC3
599 #define D_STR_HITACHI_AC3 "HITACHI_AC3"
600 #endif // D_STR_HITACHI_AC3
601 #ifndef D_STR_HITACHI_AC344
602 #define D_STR_HITACHI_AC344 "HITACHI_AC344"
603 #endif // D_STR_HITACHI_AC344
604 #ifndef D_STR_HITACHI_AC424
605 #define D_STR_HITACHI_AC424 "HITACHI_AC424"
606 #endif // D_STR_HITACHI_AC424
607 #ifndef D_STR_INAX
608 #define D_STR_INAX "INAX"
609 #endif // D_STR_INAX
610 #ifndef D_STR_JVC
611 #define D_STR_JVC "JVC"
612 #endif // D_STR_JVC
613 #ifndef D_STR_KELVINATOR
614 #define D_STR_KELVINATOR "KELVINATOR"
615 #endif // D_STR_KELVINATOR
616 #ifndef D_STR_LASERTAG
617 #define D_STR_LASERTAG "LASERTAG"
618 #endif // D_STR_LASERTAG
619 #ifndef D_STR_LEGOPF
620 #define D_STR_LEGOPF "LEGOPF"
621 #endif // D_STR_LEGOPF
622 #ifndef D_STR_LG
623 #define D_STR_LG "LG"
624 #endif // D_STR_LG
625 #ifndef D_STR_LG2
626 #define D_STR_LG2 "LG2"
627 #endif // D_STR_LG2
628 #ifndef D_STR_LUTRON
629 #define D_STR_LUTRON "LUTRON"
630 #endif // D_STR_LUTRON
631 #ifndef D_STR_MAGIQUEST
632 #define D_STR_MAGIQUEST "MAGIQUEST"
633 #endif // D_STR_MAGIQUEST
634 #ifndef D_STR_METZ
635 #define D_STR_METZ "METZ"
636 #endif // D_STR_METZ
637 #ifndef D_STR_MIDEA
638 #define D_STR_MIDEA "MIDEA"
639 #endif // D_STR_MIDEA
640 #ifndef D_STR_MIDEA24
641 #define D_STR_MIDEA24 "MIDEA24"
642 #endif // D_STR_MIDEA24
643 #ifndef D_STR_MILESTAG2
644 #define D_STR_MILESTAG2 "MILESTAG2"
645 #endif // D_STR_MILESTAG2
646 #ifndef D_STR_MIRAGE
647 #define D_STR_MIRAGE "MIRAGE"
648 #endif // D_STR_MIRAGE
649 #ifndef D_STR_MITSUBISHI
650 #define D_STR_MITSUBISHI "MITSUBISHI"
651 #endif // D_STR_MITSUBISHI
652 #ifndef D_STR_MITSUBISHI112
653 #define D_STR_MITSUBISHI112 "MITSUBISHI112"
654 #endif // D_STR_MITSUBISHI112
655 #ifndef D_STR_MITSUBISHI136
656 #define D_STR_MITSUBISHI136 "MITSUBISHI136"
657 #endif // D_STR_MITSUBISHI136
658 #ifndef D_STR_MITSUBISHI2
659 #define D_STR_MITSUBISHI2 "MITSUBISHI2"
660 #endif // D_STR_MITSUBISHI2
661 #ifndef D_STR_MITSUBISHI_AC
662 #define D_STR_MITSUBISHI_AC "MITSUBISHI_AC"
663 #endif // D_STR_MITSUBISHI_AC
664 #ifndef D_STR_MITSUBISHI_HEAVY_152
665 #define D_STR_MITSUBISHI_HEAVY_152 "MITSUBISHI_HEAVY_152"
666 #endif // D_STR_MITSUBISHI_HEAVY_152
667 #ifndef D_STR_MITSUBISHI_HEAVY_88
668 #define D_STR_MITSUBISHI_HEAVY_88 "MITSUBISHI_HEAVY_88"
669 #endif // D_STR_MITSUBISHI_HEAVY_88
670 #ifndef D_STR_MULTIBRACKETS
671 #define D_STR_MULTIBRACKETS "MULTIBRACKETS"
672 #endif // D_STR_MULTIBRACKETS
673 #ifndef D_STR_MWM
674 #define D_STR_MWM "MWM"
675 #endif // D_STR_MWM
676 #ifndef D_STR_NEC
677 #define D_STR_NEC "NEC"
678 #endif // D_STR_NEC
679 #ifndef D_STR_NEC_LIKE
680 #define D_STR_NEC_LIKE D_STR_NEC "_LIKE"
681 #endif // D_STR_NEC_LIKE
682 #ifndef D_STR_NEC_NON_STRICT
683 #define D_STR_NEC_NON_STRICT D_STR_NEC " (NON-STRICT)"
684 #endif // D_STR_NEC_NON_STRICT
685 #ifndef D_STR_NEOCLIMA
686 #define D_STR_NEOCLIMA "NEOCLIMA"
687 #endif // D_STR_NEOCLIMA
688 #ifndef D_STR_NIKAI
689 #define D_STR_NIKAI "NIKAI"
690 #endif // D_STR_NIKAI
691 #ifndef D_STR_PANASONIC
692 #define D_STR_PANASONIC "PANASONIC"
693 #endif // D_STR_PANASONIC
694 #ifndef D_STR_PANASONIC_AC
695 #define D_STR_PANASONIC_AC "PANASONIC_AC"
696 #endif // D_STR_PANASONIC_AC
697 #ifndef D_STR_PANASONIC_AC32
698 #define D_STR_PANASONIC_AC32 D_STR_PANASONIC_AC"32"
699 #endif // D_STR_PANASONIC_AC32
700 #ifndef D_STR_PIONEER
701 #define D_STR_PIONEER "PIONEER"
702 #endif // D_STR_PIONEER
703 #ifndef D_STR_PRONTO
704 #define D_STR_PRONTO "PRONTO"
705 #endif // D_STR_PRONTO
706 #ifndef D_STR_RAW
707 #define D_STR_RAW "RAW"
708 #endif // D_STR_RAW
709 #ifndef D_STR_RC5
710 #define D_STR_RC5 "RC5"
711 #endif // D_STR_RC5
712 #ifndef D_STR_RC5X
713 #define D_STR_RC5X "RC5X"
714 #endif // D_STR_RC5X
715 #ifndef D_STR_RC6
716 #define D_STR_RC6 "RC6"
717 #endif // D_STR_RC6
718 #ifndef D_STR_RCMM
719 #define D_STR_RCMM "RCMM"
720 #endif // D_STR_RCMM
721 #ifndef D_STR_SAMSUNG
722 #define D_STR_SAMSUNG "SAMSUNG"
723 #endif // D_STR_SAMSUNG
724 #ifndef D_STR_SAMSUNG36
725 #define D_STR_SAMSUNG36 "SAMSUNG36"
726 #endif // D_STR_SAMSUNG36
727 #ifndef D_STR_SAMSUNG_AC
728 #define D_STR_SAMSUNG_AC "SAMSUNG_AC"
729 #endif // D_STR_SAMSUNG_AC
730 #ifndef D_STR_SANYO
731 #define D_STR_SANYO "SANYO"
732 #endif // D_STR_SANYO
733 #ifndef D_STR_SANYO_AC
734 #define D_STR_SANYO_AC "SANYO_AC"
735 #endif // D_STR_SANYO_AC
736 #ifndef D_STR_SANYO_LC7461
737 #define D_STR_SANYO_LC7461 "SANYO_LC7461"
738 #endif // D_STR_SANYO_LC7461
739 #ifndef D_STR_SHARP
740 #define D_STR_SHARP "SHARP"
741 #endif // D_STR_SHARP
742 #ifndef D_STR_SHARP_AC
743 #define D_STR_SHARP_AC "SHARP_AC"
744 #endif // D_STR_SHARP_AC
745 #ifndef D_STR_SHERWOOD
746 #define D_STR_SHERWOOD "SHERWOOD"
747 #endif // D_STR_SHERWOOD
748 #ifndef D_STR_SONY
749 #define D_STR_SONY "SONY"
750 #endif // D_STR_SONY
751 #ifndef D_STR_SONY_38K
752 #define D_STR_SONY_38K "SONY_38K"
753 #endif // D_STR_SONY_38K
754 #ifndef D_STR_SYMPHONY
755 #define D_STR_SYMPHONY "SYMPHONY"
756 #endif // D_STR_SYMPHONY
757 #ifndef D_STR_TCL112AC
758 #define D_STR_TCL112AC "TCL112AC"
759 #endif // D_STR_TCL112AC
760 #ifndef D_STR_TECHNIBEL_AC
761 #define D_STR_TECHNIBEL_AC "TECHNIBEL_AC"
762 #endif // D_STR_TECHNIBEL_AC
763 #ifndef D_STR_TECO
764 #define D_STR_TECO "TECO"
765 #endif // D_STR_TECO
766 #ifndef D_STR_TOSHIBA_AC
767 #define D_STR_TOSHIBA_AC "TOSHIBA_AC"
768 #endif // D_STR_TOSHIBA_AC
769 #ifndef D_STR_TRANSCOLD
770 #define D_STR_TRANSCOLD "TRANSCOLD"
771 #endif // D_STR_TRANSCOLD
772 #ifndef D_STR_TROTEC
773 #define D_STR_TROTEC "TROTEC"
774 #endif // D_STR_TROTEC
775 #ifndef D_STR_TRUMA
776 #define D_STR_TRUMA "TRUMA"
777 #endif // D_STR_TRUMA
778 #ifndef D_STR_UNUSED
779 #define D_STR_UNUSED "UNUSED"
780 #endif // D_STR_UNUSED
781 #ifndef D_STR_VESTEL_AC
782 #define D_STR_VESTEL_AC "VESTEL_AC"
783 #endif // D_STR_VESTEL_AC
784 #ifndef D_STR_VOLTAS
785 #define D_STR_VOLTAS "VOLTAS"
786 #endif // D_STR_VOLTAS
787 #ifndef D_STR_WHIRLPOOL_AC
788 #define D_STR_WHIRLPOOL_AC "WHIRLPOOL_AC"
789 #endif // D_STR_WHIRLPOOL_AC
790 #ifndef D_STR_WHYNTER
791 #define D_STR_WHYNTER "WHYNTER"
792 #endif // D_STR_WHYNTER
793 #ifndef D_STR_XMP
794 #define D_STR_XMP "XMP"
795 #endif // D_STR_XMP
796 #ifndef D_STR_ZEPEAL
797 #define D_STR_ZEPEAL "ZEPEAL"
798 #endif // D_STR_ZEPEAL
799 
800 // IRrecvDumpV2+
801 #ifndef D_STR_TIMESTAMP
802 #define D_STR_TIMESTAMP "Timestamp"
803 #endif // D_STR_TIMESTAMP
804 #ifndef D_STR_LIBRARY
805 #define D_STR_LIBRARY "Library"
806 #endif // D_STR_LIBRARY
807 #ifndef D_STR_MESGDESC
808 #define D_STR_MESGDESC "Mesg Desc."
809 #endif // D_STR_MESGDESC
810 #ifndef D_STR_TOLERANCE
811 #define D_STR_TOLERANCE "Tolerance"
812 #endif // D_STR_TOLERANCE
813 #ifndef D_STR_IRRECVDUMP_STARTUP
814 #define D_STR_IRRECVDUMP_STARTUP \
815  "IRrecvDump is now running and waiting for IR input on Pin %d"
816 #endif // D_STR_IRRECVDUMP_STARTUP
817 #ifndef D_WARN_BUFFERFULL
818 #define D_WARN_BUFFERFULL \
819  "WARNING: IR code is too big for buffer (>= %d). " \
820  "This result shouldn't be trusted until this is resolved. " \
821  "Edit & increase `kCaptureBufferSize`."
822 #endif // D_WARN_BUFFERFULL
823 
824 #endif // LOCALE_DEFAULTS_H_