1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-21 06:23:34 +01:00
TegraExplorer/source/tegraexplorer/common/strings.c

46 lines
736 B
C
Raw Normal View History

2020-03-17 23:41:09 +00:00
#include "common.h"
const char *gfx_file_size_names[] = {
"B ",
"KB",
"MB",
"GB"
};
const char *menu_sd_states[] = {
"\nUnmount SD",
"\nMount SD"
};
const char *emmc_fs_entries[] = {
2020-03-18 22:58:32 +00:00
"SAFE",
2020-03-17 23:41:09 +00:00
"SYSTEM",
2020-03-18 22:58:32 +00:00
"USER"
2020-03-18 11:18:39 +00:00
};
const char *utils_err_codes[] = {
"OK",
"I/O ERROR",
2020-03-18 22:58:32 +00:00
"NO DISK",
2020-03-18 11:18:39 +00:00
"NOT READY",
"NO FILE",
"NO PATH",
"PATH INVALID",
"ACCESS DENIED",
"ACCESS DENIED",
"INVALID PTR",
"PROTECTED",
"INVALID DRIVE",
"NO MEM",
"NO FAT",
"MKFS ABORT"
2020-03-18 22:58:32 +00:00
};
const char *utils_err_codes_te[] = { // these start at 50
"SAME LOC",
"DISK WRITE FAILED",
"EMPTY CLIPBOARD",
"DEFENITION OF INSANITY"
"FOLDER ROOT"
"DEST PART OF SRC"
2020-03-17 23:41:09 +00:00
};