diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-06-06 18:32:04 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-06-06 18:32:04 +0200 |
commit | 8c1d31ef16745cee07059788386cd88c718092ac (patch) | |
tree | e944221ef69f38393790e337e85eb9edfe17a559 /client/i18n | |
parent | a909440c7671075127a98cffd7f1714114fc17bd (diff) |
code organization
Diffstat (limited to 'client/i18n')
-rw-r--r-- | client/i18n/en_us.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/client/i18n/en_us.h b/client/i18n/en_us.h index 5547db5..ff3ae91 100644 --- a/client/i18n/en_us.h +++ b/client/i18n/en_us.h @@ -17,3 +17,29 @@ #define W2_UI_MODE_MAZE "maze" #define W2_UI_MODE_SCAL "sensor calibration" #define W2_UI_MODE_SPIN "wet floor simulation" +#define W2_UI_TAB_LABEL_START "info" +#define W2_UI_TAB_LABEL_DIRC "direct control" +#define W2_UI_TAB_LABEL_ERRCATCH "logs" +#define W2_UI_TAB_LABEL_MCFG "map" +#define W2_UI_TAB_LABEL_ORDERS "orders" +#define W2_UI_TAB_LABEL_MODE "set mode" +#define W2_UI_TAB_START_MESSAGE "" \ + "welcome to the wall-e2 console application!\n" \ + "this is client version " W2_BUILD_STR "\n" \ + "\n" \ + "this application is functionally similar to a BIOS.\n" \ + "here's a brief summary of keyboard commands:\n" \ + "\n" \ + "<left>/<right>, <h>/<l> switch tabs\n" \ + "<up>/<down>, <j>/<k> select option\n" \ + "<enter>, <i> edit option\n" \ + "<home>, <g> scroll to top\n" \ + "<end>, <G> scroll to bottom\n" \ + "<escape> back\n" \ + "<q> exit\n" \ + "\n" \ + "tab shortcuts:\n" \ + "<N> info <o> orders\n" \ + "<S> logs <M> set mode\n" \ + "<d> direct control <m> map\n" + |