diff --git a/radio/src/gui/colorlcd/model_setup.cpp b/radio/src/gui/colorlcd/model_setup.cpp index 13c28fae5..b0f916bcc 100644 --- a/radio/src/gui/colorlcd/model_setup.cpp +++ b/radio/src/gui/colorlcd/model_setup.cpp @@ -1024,9 +1024,8 @@ void ModelSetupPage::build(FormWindow * window) TimerData * timer = &g_model.timers[i]; // Timer label - char timerLabel[8]; - strAppendStringWithIndex(timerLabel, STR_TIMER, i + 1); - new Subtitle(window, grid.getLineSlot(), timerLabel); + strAppendStringWithIndex(reusableBuffer.moduleSetup.msg, STR_TIMER, i + 1); + new Subtitle(window, grid.getLineSlot(), reusableBuffer.moduleSetup.msg); grid.nextLine(); auto group = new FormGroup(window, grid.getFieldSlot(), FORM_BORDER_FOCUS_ONLY | PAINT_CHILDREN_FIRST); diff --git a/tools/commit-tests.sh b/tools/commit-tests.sh index b9a336b01..0530eb65f 100755 --- a/tools/commit-tests.sh +++ b/tools/commit-tests.sh @@ -214,7 +214,7 @@ fi if [[ " TX16S COLORLCD ALL " =~ \ ${FLAVOR}\ ]] ; then # OpenTX on TX16S boards rm -rf ./* || true - cmake "${COMMON_OPTIONS}" -DPCB=X10 -DPCBREV=TX16S -DHELI=YES -DLUA=YES -DGVARS=YES "${SRCDIR}" + cmake "${COMMON_OPTIONS}" -DPCB=X10 -DPCBREV=TX16S -DHELI=YES -DLUA=YES -DGVARS=YES -DTRANSLATIONS=CN "${SRCDIR}" make -j"${CORES}" ${FIRMARE_TARGET} make -j"${CORES}" libsimulator make -j"${CORES}" tests-radio