Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions mkapp/app/language/es_es.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ HDZero BW = "HDZero BW"
Wide = "Ancho"
Narrow = "Estrecho"
Back = "Atrás"
Connected = "Conectado"
Disconnected = "Desconectado"
Signal detected = "Señal detectada"
No signal = "Sin señal"
Analog input requires Expansion Module = "Entrada análoga requiere Módulo de Expansión"

; image setting
Image Setting = "Imagen"
Expand Down
5 changes: 3 additions & 2 deletions mkapp/app/language/ru_ru.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ HDZero BW = "HDZero BW"
Wide = "Wide"
Narrow = "Narrow"
Back = "Назад"
Connected = "Подключен"
Disconnected = "Не подключен"
Signal detected = "Подключен"
No signal = "Не подключен"
Analog input requires Expansion Module = "Аналоговое подключение требует модуль расширения"

; image setting
Image Setting = "Изображение"
Expand Down
5 changes: 3 additions & 2 deletions mkapp/app/language/zh_hans.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ HDZero BW = "HDZero带宽"
Wide = "宽带"
Narrow = "窄带"
Back = "返回"
Connected = "已连接"
Disconnected = "未连接"
Signal detected = "检测到信号"
No signal = "无信号"
Analog input requires Expansion Module = "模拟输入需要扩展模块"

; image setting
Image Setting = "图像设置"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/page_source.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ static lv_obj_t *page_source_create(lv_obj_t *parent, panel_arr_t *arr) {

char *state2string(uint8_t status) {
static char buf[32];
snprintf(buf, sizeof(buf), "#%s %s#", status ? "00FF00" : "C0C0C0", status ? _lang("Connected") : _lang("Disconnected"));
snprintf(buf, sizeof(buf), "#%s %s#", status ? "00FF00" : "C0C0C0", status ? _lang("Signal detected") : _lang("No signal"));
return buf;
}

Expand Down