1+ #pragma once
2+ #include < string>
3+
4+ namespace esphome
5+ {
6+ namespace philips_coffee_machine
7+ {
8+ #if defined(PHILIPS_COFFEE_LANG_en_US)
9+ #define PHILIPS_COFFEE_LANG_DEFAULT
10+ #elif defined(PHILIPS_COFFEE_LANG_de_DE)
11+ const std::string state_unknown = " Unbekannt" ;
12+ const std::string state_off = " Aus" ;
13+ const std::string state_idle = " Bereit" ;
14+ const std::string state_cleaning = " Spült" ;
15+ const std::string state_preparing = " Vorbereitung" ;
16+ const std::string state_water_empty = " Wasser leer" ;
17+ const std::string state_waste_warning = " Abfallcontainerwarnung" ;
18+ const std::string state_error = " Fehler" ;
19+
20+ const std::string state_ground_coffee_selected = " Vorgemahlener Kaffee ausgewählt" ;
21+ const std::string state_coffee_programming_mode = " Kaffee Programmiermodus ausgewählt" ;
22+ const std::string state_coffee_selected = " Kaffee ausgewählt" ;
23+ const std::string state_coffee_2x_selected = " 2x Kaffee ausgewählt" ;
24+ const std::string state_coffee_brewing = " Bereitet Kaffee zu" ;
25+ const std::string state_coffee_2x_brewing = " Bereitet 2x Kaffee zu" ;
26+
27+ const std::string state_ground_espresso_selected = " Vorgemahlener Espresso ausgewählt" ;
28+ const std::string state_espresso_programming_mode = " Espresso Programmiermodus ausgewählt" ;
29+ const std::string state_espresso_selected = " Espresso ausgewählt" ;
30+ const std::string state_espresso_2x_selected = " 2x Espresso ausgewählt" ;
31+ const std::string state_espresso_brewing = " Bereitet Espresso zu" ;
32+ const std::string state_espresso_2x_brewing = " Bereitet 2x Espresso zu" ;
33+
34+ const std::string state_ground_americano_selected = " Vorgemahlener Americano ausgewählt" ;
35+ const std::string state_americano_programming_mode = " Americano Programmiermodus ausgewählt" ;
36+ const std::string state_americano_selected = " Americano ausgewählt" ;
37+ const std::string state_americano_2x_selected = " 2x Americano ausgewählt" ;
38+ const std::string state_americano_brewing = " Bereitet Americano zu" ;
39+ const std::string state_americano_2x_brewing = " Bereitet 2x Americano zu" ;
40+
41+ const std::string state_ground_cappuccino_selected = " Vorgemahlener Cappuccino ausgewählt" ;
42+ const std::string state_cappuccino_programming_mode = " Cappuccino Programmiermodus ausgewählt" ;
43+ const std::string state_cappuccino_selected = " Cappuccino ausgewählt" ;
44+ const std::string state_cappuccino_brewing = " Bereitet Cappuccino zu" ;
45+
46+ const std::string state_ground_latte_selected = " Vorgemahlener Latte macchiato ausgewählt" ;
47+ const std::string state_latte_programming_mode = " Latte macchiato Programmiermodus ausgewählt" ;
48+ const std::string state_latte_selected = " Latte macchiato ausgewählt" ;
49+ const std::string state_latte_brewing = " Bereitet Latte macchiato zu" ;
50+
51+ const std::string state_hot_water_programming_mode = " Heißes Wasser Programmiermodus ausgewählt" ;
52+ const std::string state_hot_water_selected = " Heißes Wasser ausgewählt" ;
53+ const std::string state_hot_water_brewing = " Bereitet heißes Wasser zu" ;
54+
55+ const std::string state_steam_selected = " Dampf ausgewählt" ;
56+ const std::string state_steam_brewing = " Bereitet Dampf zu" ;
57+ #else
58+ #define PHILIPS_COFFEE_LANG_DEFAULT
59+ #endif
60+
61+ #ifdef PHILIPS_COFFEE_LANG_DEFAULT
62+ const std::string state_unknown = " Unknown" ;
63+ const std::string state_off = " Off" ;
64+ const std::string state_idle = " Idle" ;
65+ const std::string state_cleaning = " Cleaning" ;
66+ const std::string state_preparing = " Preparing" ;
67+ const std::string state_water_empty = " Water empty" ;
68+ const std::string state_waste_warning = " Waste container warning" ;
69+ const std::string state_error = " Error" ;
70+
71+ const std::string state_ground_coffee_selected = " Pre-ground Coffee selected" ;
72+ const std::string state_coffee_programming_mode = " Coffee programming mode selected" ;
73+ const std::string state_coffee_selected = " Coffee selected" ;
74+ const std::string state_coffee_2x_selected = " 2x Coffee selected" ;
75+ const std::string state_coffee_brewing = " Brewing Coffee" ;
76+ const std::string state_coffee_2x_brewing = " Brewing 2x Coffee" ;
77+
78+ const std::string state_ground_espresso_selected = " Pre-ground Espresso selected" ;
79+ const std::string state_espresso_programming_mode = " Espresso programming mode selected" ;
80+ const std::string state_espresso_selected = " Espresso selected" ;
81+ const std::string state_espresso_2x_selected = " 2x Espresso selected" ;
82+ const std::string state_espresso_brewing = " Brewing Espresso" ;
83+ const std::string state_espresso_2x_brewing = " Brewing 2x Espresso" ;
84+
85+ const std::string state_ground_americano_selected = " Pre-ground Americano selected" ;
86+ const std::string state_americano_programming_mode = " Americano programming mode selected" ;
87+ const std::string state_americano_selected = " Americano selected" ;
88+ const std::string state_americano_2x_selected = " 2x Americano selected" ;
89+ const std::string state_americano_brewing = " Brewing Americano" ;
90+ const std::string state_americano_2x_brewing = " Brewing 2x Americano" ;
91+
92+ const std::string state_ground_cappuccino_selected = " Pre-ground Cappuccino selected" ;
93+ const std::string state_cappuccino_programming_mode = " Cappuccino programming mode selected" ;
94+ const std::string state_cappuccino_selected = " Cappuccino selected" ;
95+ const std::string state_cappuccino_brewing = " Brewing Cappuccino" ;
96+
97+ const std::string state_ground_latte_selected = " Pre-ground Latte Macchiato selected" ;
98+ const std::string state_latte_programming_mode = " Latte Macchiato programming mode selected" ;
99+ const std::string state_latte_selected = " Latte Macchiato selected" ;
100+ const std::string state_latte_brewing = " Brewing Latte Macchiato" ;
101+
102+ const std::string state_hot_water_programming_mode = " Hot water programming mode selected" ;
103+ const std::string state_hot_water_selected = " Hot water selected" ;
104+ const std::string state_hot_water_brewing = " Making Hot Water" ;
105+
106+ const std::string state_steam_selected = " Steam selected" ;
107+ const std::string state_steam_brewing = " Making Steam" ;
108+ #endif
109+ } // namespace philips_coffee_machine
110+ } // namespace esphome
0 commit comments