Skip to content

Commit ee90297

Browse files
committed
Translation note
1 parent 64dbd7d commit ee90297

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Translation.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Translation
2+
If you would like to contribute a translation, look at the file `translation.c` in the source code.
3+
Currently translations are compiled in at compile time with #defines (nothing complex).
4+
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.
5+
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.

workspace/TS100/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ void startGUITask(void const * argument) {
672672
lcd.clearScreen(); //Ensure the buffer starts clean
673673
lcd.setCursor(0, 0); //Position the cursor at the 0,0 (top left)
674674
lcd.setFont(1); //small font
675-
lcd.print((char*) "V2.00"); //Print version number
675+
lcd.print((char*) "V2.00a4"); //Print version number
676676
lcd.setCursor(0, 8); //second line
677677
lcd.print(__DATE__); //print the compile date
678678
lcd.refresh();

0 commit comments

Comments
 (0)