Skip to content

Commit 30820b8

Browse files
nminaylovskotopes
andauthored
[FL-2464, FL-2466] RFID, ibutton text fix #1413
Co-authored-by: あく <alleteam@gmail.com>
1 parent ac60d18 commit 30820b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

applications/ibutton/scenes/ibutton_scene_retry_confirm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void ibutton_scene_retry_confirm_on_enter(void* context) {
2121
widget_add_string_element(
2222
widget, 64, 19, AlignCenter, AlignBottom, FontPrimary, "Return to reading?");
2323
widget_add_string_element(
24-
widget, 64, 29, AlignCenter, AlignBottom, FontSecondary, "All unsaved data will be lost");
24+
widget, 64, 29, AlignCenter, AlignBottom, FontSecondary, "All unsaved data will be lost.");
2525

2626
view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewWidget);
2727
}

applications/infrared/scenes/infrared_scene_ask_back.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void infrared_scene_ask_back_on_enter(void* context) {
1616
}
1717

1818
dialog_ex_set_text(
19-
dialog_ex, "All unsaved data\nwill be lost", 64, 31, AlignCenter, AlignCenter);
19+
dialog_ex, "All unsaved data\nwill be lost.", 64, 31, AlignCenter, AlignCenter);
2020
dialog_ex_set_icon(dialog_ex, 0, 0, NULL);
2121
dialog_ex_set_left_button_text(dialog_ex, "Exit");
2222
dialog_ex_set_center_button_text(dialog_ex, NULL);

applications/infrared/scenes/infrared_scene_ask_retry.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void infrared_scene_ask_retry_on_enter(void* context) {
1111

1212
dialog_ex_set_header(dialog_ex, "Return to reading?", 64, 0, AlignCenter, AlignTop);
1313
dialog_ex_set_text(
14-
dialog_ex, "All unsaved data\nwill be lost", 64, 31, AlignCenter, AlignCenter);
14+
dialog_ex, "All unsaved data\nwill be lost.", 64, 31, AlignCenter, AlignCenter);
1515
dialog_ex_set_icon(dialog_ex, 0, 0, NULL);
1616
dialog_ex_set_left_button_text(dialog_ex, "Exit");
1717
dialog_ex_set_center_button_text(dialog_ex, NULL);

applications/lfrfid/scene/lfrfid_app_scene_retry_confirm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void LfRfidAppSceneRetryConfirm::on_enter(LfRfidApp* app, bool /* need_restore *
1919

2020
line_1->set_text("Return to reading?", 64, 19, 128 - 2, AlignCenter, AlignBottom, FontPrimary);
2121
line_2->set_text(
22-
"All unsaved data will be lost", 64, 29, 0, AlignCenter, AlignBottom, FontSecondary);
22+
"All unsaved data will be lost.", 64, 29, 0, AlignCenter, AlignBottom, FontSecondary);
2323

2424
app->view_controller.switch_to<ContainerVM>();
2525
}

0 commit comments

Comments
 (0)