Skip to content

Commit

Permalink
Add i18n for "Enter text" placeholder
Browse files Browse the repository at this point in the history
Add i18n for "Enter text" placeholder in screen.c
  • Loading branch information
droberin authored Nov 3, 2024
1 parent 4c90f61 commit e189508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generated/ui_320x240/screens.c
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ void create_screen_main_screen() {
lv_obj_set_pos(obj, 6, -1);
lv_obj_set_size(obj, LV_PCT(85), 25);
lv_textarea_set_max_length(obj, 237);
lv_textarea_set_placeholder_text(obj, "Enter Text ...");
lv_textarea_set_placeholder_text(obj, _("Enter Text ..."));
lv_textarea_set_one_line(obj, true);
lv_textarea_set_password_mode(obj, false);
lv_obj_add_flag(obj, LV_OBJ_FLAG_SCROLL_CHAIN);
Expand Down

0 comments on commit e189508

Please sign in to comment.