mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-22 20:43:07 +00:00
[FL-3470] Rename Applications to Apps (#2939)
* Applications are now apps * Desktop: Apps in settings Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
parent
7a45db3881
commit
3e8e999909
3 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#define RECORD_LOADER "loader"
|
||||
#define LOADER_APPLICATIONS_NAME "Applications"
|
||||
#define LOADER_APPLICATIONS_NAME "Apps"
|
||||
|
||||
typedef struct Loader Loader;
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ static void loader_cli_print_usage() {
|
|||
}
|
||||
|
||||
static void loader_cli_list() {
|
||||
printf("Applications:\r\n");
|
||||
printf("Apps:\r\n");
|
||||
for(size_t i = 0; i < FLIPPER_APPS_COUNT; i++) {
|
||||
printf("\t%s\r\n", FLIPPER_APPS[i].name);
|
||||
}
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
|
||||
#define APPS_COUNT (FLIPPER_APPS_COUNT + FLIPPER_EXTERNAL_APPS_COUNT)
|
||||
|
||||
#define EXTERNAL_BROWSER_NAME ("Applications")
|
||||
#define EXTERNAL_BROWSER_NAME ("Apps")
|
||||
#define EXTERNAL_BROWSER_INDEX (APPS_COUNT + 1)
|
||||
|
||||
#define EXTERNAL_APPLICATION_NAME ("[External Application]")
|
||||
#define EXTERNAL_APPLICATION_NAME ("[Select App]")
|
||||
#define EXTERNAL_APPLICATION_INDEX (APPS_COUNT + 2)
|
||||
|
||||
#define PRESELECTED_SPECIAL 0xffffffff
|
||||
|
|
Loading…
Reference in a new issue