From ee9029703b5fbb5243519c1260302603c7d5aace Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sat, 7 Oct 2017 11:58:19 +1100 Subject: [PATCH] Translation note --- Translation.md | 5 +++++ workspace/TS100/src/main.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 Translation.md diff --git a/Translation.md b/Translation.md new file mode 100644 index 00000000..dde8740e --- /dev/null +++ b/Translation.md @@ -0,0 +1,5 @@ +# Translation +If you would like to contribute a translation, look at the file `translation.c` in the source code. +Currently translations are compiled in at compile time with #defines (nothing complex). +So all you need to do is add another section formatted like the english one that is there and either create a pull request or a github issue for inclusion. +If the glyphs required already exist in the fonts then support should be quick. Otherwise it may take longer for the fonts to be created. \ No newline at end of file diff --git a/workspace/TS100/src/main.cpp b/workspace/TS100/src/main.cpp index 99f688ed..f5537bb1 100644 --- a/workspace/TS100/src/main.cpp +++ b/workspace/TS100/src/main.cpp @@ -672,7 +672,7 @@ void startGUITask(void const * argument) { lcd.clearScreen(); //Ensure the buffer starts clean lcd.setCursor(0, 0); //Position the cursor at the 0,0 (top left) lcd.setFont(1); //small font - lcd.print((char*) "V2.00"); //Print version number + lcd.print((char*) "V2.00a4"); //Print version number lcd.setCursor(0, 8); //second line lcd.print(__DATE__); //print the compile date lcd.refresh();