Added a new string to disambiguate between config files and other file types.
This commit is contained in:
parent
66e4d1f8e6
commit
1d2c019162
|
@ -101,6 +101,7 @@ extern "C" {
|
|||
*/
|
||||
#define FOREACH_MSG_MISC(FN) \
|
||||
/** File can't be opened */ FN(FILE_CANT_OPEN) \
|
||||
/** File can't be opened */ FN(FILE_CANT_OPEN_CFG) \
|
||||
/** Not a file */ FN(FILE_NOT_FILE) \
|
||||
/** line %d column %d */ FN(LINE_COLUMN_STRING) \
|
||||
/** Document content looks like %s */ FN(STRING_CONTENT_LOOKS) \
|
||||
|
|
|
@ -1588,6 +1588,7 @@ static languageDefinition language_en = { whichPluralForm_en, {
|
|||
** @rename enum generator FOREACH_MSG_MISC
|
||||
********************************************/
|
||||
{ FILE_CANT_OPEN, 0, "Can't open \"%s\"\n" },
|
||||
{ FILE_CANT_OPEN_CFG, 0, "Can't open configuration file \"%s\"\n" },
|
||||
{ FILE_NOT_FILE, 0, "\"%s\" is not a file!\n" },
|
||||
{ LINE_COLUMN_STRING, 0, "line %d column %d - " },
|
||||
{ STRING_CONTENT_LOOKS, 0, "Document content looks like %s" },
|
||||
|
|
Loading…
Reference in a new issue