summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/eulogium.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/eulogium.c b/src/eulogium.c
index 7111baf..30a68d2 100644
--- a/src/eulogium.c
+++ b/src/eulogium.c
@@ -31,6 +31,21 @@
#define MONTH (4UL * WEEK)
#define YEAR (52UL * WEEK)
+/* TODO this LUT can be much improved */
+char *griffin_print_status[] = {
+ gettext_noop("Unknown"),
+ gettext_noop("Disconnected"),
+ gettext_noop("Error"),
+ gettext_noop("First Run Wizard"),
+ gettext_noop("IDLE"),
+ gettext_noop("Slicing"),
+ gettext_noop("Heating"),
+ gettext_noop("Printing"),
+ gettext_noop("Cooling down"),
+ gettext_noop("Wait for Removal"),
+ gettext_noop("Paused"),
+};
+
/* TODO Create def for a menu/screen to house all the buttons */
static void _on_print_abort_ret(void *data EINA_UNUSED, const Eldbus_Message *msg, Eldbus_Pending *pending EINA_UNUSED);