identify self-made images

Origin commit data
------------------
Commit: 551cd5f289
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-10-21 (Sun, 21 Oct 2018)

Origin message was:
------------------
- identify self-made images
This commit is contained in:
vanhofen
2018-10-21 23:56:22 +02:00
parent 8acab9c0a7
commit e3105b8c29
5 changed files with 6 additions and 0 deletions

View File

@@ -774,6 +774,7 @@ flashupdate.type_beta Beta
flashupdate.type_locale Sprachdatei
flashupdate.type_nightly Nightly
flashupdate.type_release Release
flashupdate.type_selfmade Eigenbau
flashupdate.type_settings Einstellungen
flashupdate.type_text Text
flashupdate.type_unknown Unbekannt

View File

@@ -774,6 +774,7 @@ flashupdate.type_beta Beta
flashupdate.type_locale Locale
flashupdate.type_nightly Nightly
flashupdate.type_release Release
flashupdate.type_selfmade Self made
flashupdate.type_settings Settings
flashupdate.type_text Text
flashupdate.type_unknown Unknown

View File

@@ -557,6 +557,8 @@ const char *CFlashVersionInfo::getType(bool localized) const
return (localized ? g_Locale->getText(LOCALE_FLASHUPDATE_TYPE_BETA) : "Beta");
case '2':
return (localized ? g_Locale->getText(LOCALE_FLASHUPDATE_TYPE_NIGHTLY) : "Nightly");
case '9':
return (localized ? g_Locale->getText(LOCALE_FLASHUPDATE_TYPE_SELFMADE) : "Self-made");
case 'L':
return (localized ? g_Locale->getText(LOCALE_FLASHUPDATE_TYPE_LOCALE) : "Locale");
case 'S':

View File

@@ -801,6 +801,7 @@ typedef enum
LOCALE_FLASHUPDATE_TYPE_LOCALE,
LOCALE_FLASHUPDATE_TYPE_NIGHTLY,
LOCALE_FLASHUPDATE_TYPE_RELEASE,
LOCALE_FLASHUPDATE_TYPE_SELFMADE,
LOCALE_FLASHUPDATE_TYPE_SETTINGS,
LOCALE_FLASHUPDATE_TYPE_TEXT,
LOCALE_FLASHUPDATE_TYPE_UNKNOWN,

View File

@@ -801,6 +801,7 @@ const char * locale_real_names[] =
"flashupdate.type_locale",
"flashupdate.type_nightly",
"flashupdate.type_release",
"flashupdate.type_selfmade",
"flashupdate.type_settings",
"flashupdate.type_text",
"flashupdate.type_unknown",