Skip to content

Commit c09924c

Browse files
committed
FIX: Fixed inconsistencies between texts
Fixed few more inconsistencies between text on Flipper. Similar fixes as on PR flipperdevices#1496
1 parent 1d50a59 commit c09924c

15 files changed

+36
-36
lines changed

applications/archive/views/archive_browser_view.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ static void render_item_menu(Canvas* canvas, ArchiveBrowserViewModel* model) {
4949

5050
string_t menu[MENU_ITEMS];
5151

52-
string_init_set_str(menu[0], "Run in app");
52+
string_init_set_str(menu[0], "Run In App");
5353
string_init_set_str(menu[1], "Pin");
5454
string_init_set_str(menu[2], "Rename");
5555
string_init_set_str(menu[3], "Delete");

applications/desktop/views/desktop_view_locked.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static void desktop_view_locked_draw(Canvas* canvas, void* model) {
124124
} else if(view_state == DesktopViewLockedStateLockedHintShown) {
125125
canvas_set_font(canvas, FontSecondary);
126126
elements_bold_rounded_frame(canvas, 14, 2 + STATUS_BAR_Y_SHIFT, 99, 48);
127-
elements_multiline_text(canvas, 65, 20 + STATUS_BAR_Y_SHIFT, "To unlock\npress:");
127+
elements_multiline_text(canvas, 65, 20 + STATUS_BAR_Y_SHIFT, "To Unlock\nPress:");
128128
canvas_draw_icon(canvas, 65, 36 + STATUS_BAR_Y_SHIFT, &I_Pin_back_arrow_10x8);
129129
canvas_draw_icon(canvas, 80, 36 + STATUS_BAR_Y_SHIFT, &I_Pin_back_arrow_10x8);
130130
canvas_draw_icon(canvas, 95, 36 + STATUS_BAR_Y_SHIFT, &I_Pin_back_arrow_10x8);

applications/lfrfid/scene/lfrfid_app_scene_save_name.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void LfRfidAppSceneSaveName::on_enter(LfRfidApp* app, bool /* need_restore */) {
1515
}
1616

1717
auto text_input = app->view_controller.get<TextInputVM>();
18-
text_input->set_header_text("Name the card");
18+
text_input->set_header_text("Name The Card");
1919

2020
text_input->set_result_callback(
2121
save_callback,

applications/nfc/scenes/nfc_scene_mf_classic_dict_attack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static void nfc_scene_mf_classic_dict_attack_prepare_view(Nfc* nfc, DictAttackSt
5757

5858
// If failed to load user dictionary - try flipper dictionary
5959
if(!dict) {
60-
FURI_LOG_E(TAG, "User dictionary not found");
60+
FURI_LOG_E(TAG, "User Dictionary Not Found");
6161
state = DictAttackStateFlipperDictInProgress;
6262
}
6363
}
@@ -66,7 +66,7 @@ static void nfc_scene_mf_classic_dict_attack_prepare_view(Nfc* nfc, DictAttackSt
6666
dict_attack_set_header(nfc->dict_attack, "Mf Classic Flipper Dict.");
6767
dict = mf_classic_dict_alloc(MfClassicDictTypeFlipper);
6868
if(!dict) {
69-
FURI_LOG_E(TAG, "Flipper dictionary not found");
69+
FURI_LOG_E(TAG, "Flipper Dictionary Not Found");
7070
// Pass through to let worker handle the failure
7171
}
7272
}

applications/nfc/scenes/nfc_scene_mf_classic_keys.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ void nfc_scene_mf_classic_keys_on_enter(void* context) {
2828
widget_add_string_element(
2929
nfc->widget, 0, 0, AlignLeft, AlignTop, FontPrimary, "MF Classic Keys");
3030
char temp_str[32];
31-
snprintf(temp_str, sizeof(temp_str), "Flipper dict: %ld", flipper_dict_keys_total);
31+
snprintf(temp_str, sizeof(temp_str), "Flipper Dict: %ld", flipper_dict_keys_total);
3232
widget_add_string_element(nfc->widget, 0, 20, AlignLeft, AlignTop, FontSecondary, temp_str);
33-
snprintf(temp_str, sizeof(temp_str), "User dict: %ld", user_dict_keys_total);
33+
snprintf(temp_str, sizeof(temp_str), "User Dict: %ld", user_dict_keys_total);
3434
widget_add_string_element(nfc->widget, 0, 32, AlignLeft, AlignTop, FontSecondary, temp_str);
3535
widget_add_button_element(
3636
nfc->widget, GuiButtonTypeCenter, "Add", nfc_scene_mf_classic_keys_widget_callback, nfc);

applications/nfc/scenes/nfc_scene_mf_ultralight_key_input.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void nfc_scene_mf_ultralight_key_input_on_enter(void* context) {
1111

1212
// Setup view
1313
ByteInput* byte_input = nfc->byte_input;
14-
byte_input_set_header_text(byte_input, "Enter the password in hex");
14+
byte_input_set_header_text(byte_input, "Enter The Password In Hex");
1515
byte_input_set_result_callback(
1616
byte_input,
1717
nfc_scene_mf_ultralight_key_input_byte_input_callback,

applications/nfc/scenes/nfc_scene_mf_ultralight_read_auth.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ void nfc_scene_mf_ultralight_read_auth_set_state(Nfc* nfc, NfcSceneMfUlReadState
2626
if(state == NfcSceneMfUlReadStateDetecting) {
2727
popup_reset(nfc->popup);
2828
popup_set_text(
29-
nfc->popup, "Apply card to\nFlipper's back", 97, 24, AlignCenter, AlignTop);
29+
nfc->popup, "Apply Card To\nFlipper's Back", 97, 24, AlignCenter, AlignTop);
3030
popup_set_icon(nfc->popup, 0, 8, &I_NFC_manual);
3131
} else if(state == NfcSceneMfUlReadStateReading) {
3232
popup_reset(nfc->popup);
3333
popup_set_header(
34-
nfc->popup, "Reading card\nDon't move...", 85, 24, AlignCenter, AlignTop);
34+
nfc->popup, "Reading Card\nDon't Move...", 85, 24, AlignCenter, AlignTop);
3535
popup_set_icon(nfc->popup, 12, 23, &A_Loading_24);
3636
} else if(state == NfcSceneMfUlReadStateNotSupportedCard) {
3737
popup_reset(nfc->popup);
38-
popup_set_header(nfc->popup, "Wrong type of card!", 64, 3, AlignCenter, AlignTop);
38+
popup_set_header(nfc->popup, "Wrong Type Of Card!", 64, 3, AlignCenter, AlignTop);
3939
popup_set_text(
4040
nfc->popup,
41-
"Only MIFARE\nUltralight & NTAG\n are supported",
41+
"Only MIFARE\nUltralight & NTAG\n Are Supported",
4242
4,
4343
22,
4444
AlignLeft,

applications/nfc/scenes/nfc_scene_mf_ultralight_unlock_warn.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ void nfc_scene_mf_ultralight_unlock_warn_on_enter(void* context) {
1313
dialog_ex_set_context(dialog_ex, nfc);
1414
dialog_ex_set_result_callback(dialog_ex, nfc_scene_mf_ultralight_unlock_warn_dialog_callback);
1515

16-
dialog_ex_set_header(dialog_ex, "Risky function!", 64, 4, AlignCenter, AlignTop);
16+
dialog_ex_set_header(dialog_ex, "Risky Function!", 64, 4, AlignCenter, AlignTop);
1717
dialog_ex_set_text(
18-
dialog_ex, "Wrong password\ncan block your\ncard.", 4, 18, AlignLeft, AlignTop);
18+
dialog_ex, "Wrong password\ncan block your\ncard!", 4, 18, AlignLeft, AlignTop);
1919
dialog_ex_set_icon(dialog_ex, 73, 17, &I_DolphinFirstStart8_56x51);
2020
dialog_ex_set_center_button_text(dialog_ex, "OK");
2121

applications/nfc/scenes/nfc_scene_read.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ void nfc_scene_read_set_state(Nfc* nfc, NfcSceneReadState state) {
2525
if(state == NfcSceneReadStateDetecting) {
2626
popup_reset(nfc->popup);
2727
popup_set_text(
28-
nfc->popup, "Apply card to\nFlipper's back", 97, 24, AlignCenter, AlignTop);
28+
nfc->popup, "Apply Card To\nFlipper's Back", 97, 24, AlignCenter, AlignTop);
2929
popup_set_icon(nfc->popup, 0, 8, &I_NFC_manual);
3030
} else if(state == NfcSceneReadStateReading) {
3131
popup_reset(nfc->popup);
3232
popup_set_header(
33-
nfc->popup, "Reading card\nDon't move...", 85, 24, AlignCenter, AlignTop);
33+
nfc->popup, "Reading Card\nDon't Move...", 85, 24, AlignCenter, AlignTop);
3434
popup_set_icon(nfc->popup, 12, 23, &A_Loading_24);
3535
}
3636
scene_manager_set_scene_state(nfc->scene_manager, NfcSceneRead, state);

applications/nfc/scenes/nfc_scene_save_name.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void nfc_scene_save_name_on_enter(void* context) {
2222
} else {
2323
nfc_text_store_set(nfc, nfc->dev->dev_name);
2424
}
25-
text_input_set_header_text(text_input, "Name the card");
25+
text_input_set_header_text(text_input, "Name The Card");
2626
text_input_set_result_callback(
2727
text_input,
2828
nfc_scene_save_name_text_input_callback,

0 commit comments

Comments
 (0)