Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Pavlov <di-smash007@mail.ru>2022-04-11 14:54:38 +0300
committerGitHub <noreply@github.com>2022-04-11 14:54:38 +0300
commitb22ad77bbe5c922adcc0459db29a1ac68acc92e4 (patch)
tree13c7162b0f4a3b83aac5daf8ef0e0095cf971c9d /applications/applications.c
parent7d022c6fda24ef10a5606c00c73b82297b2af8b5 (diff)
[FL-2438] Correct grammar in menus and application names (#1102)
* [FL-2403] Changed (Name and save) buttons name * [FL-2403] NFC Reading revert LED color to blue * [FL-2438] Capital_letter_menu_names * [FL-2438] Capital_letter_menu_names * [FL-2438] Rename and unify menu items with capitals * [FL-2438] Capital_letter_menu_and_returned_Empty_folder * [FL-2438] Capital_letter_menu_and_returned_Empty_folder_label * [FL-2438] Capital_letter_menu_and_returned_Empty_folder_label_reformating Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/applications.c b/applications/applications.c
index b4df86a9..24279d82 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -207,7 +207,7 @@ const size_t FLIPPER_ON_SYSTEM_START_COUNT =
// Plugin menu
const FlipperApplication FLIPPER_PLUGINS[] = {
#ifdef APP_BLE_HID
- {.app = bt_hid_app, .name = "Bluetooth remote", .stack_size = 1024, .icon = NULL},
+ {.app = bt_hid_app, .name = "Bluetooth Remote", .stack_size = 1024, .icon = NULL},
#endif
#ifdef APP_MUSIC_PLAYER
@@ -244,7 +244,7 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
#endif
#ifdef APP_USB_MOUSE
- {.app = usb_mouse_app, .name = "USB Mouse demo", .stack_size = 1024, .icon = NULL},
+ {.app = usb_mouse_app, .name = "USB Mouse Demo", .stack_size = 1024, .icon = NULL},
#endif
#ifdef APP_UART_ECHO
@@ -295,7 +295,7 @@ const FlipperApplication FLIPPER_SETTINGS_APPS[] = {
#ifdef SRV_NOTIFICATION
{.app = notification_settings_app,
- .name = "LCD and notifications",
+ .name = "LCD and Notifications",
.stack_size = 1024,
.icon = NULL},
#endif