mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-24 01:07:41 +00:00
feat(developer): change Info_UnsupportedCharactersDetected to ERROR_UnsupportedCharactersDetected
as in PR 14569 it is ERROR... whereas in PR 12564 it is still INFO...
This commit is contained in:
parent
7104233222
commit
2f50528d7c
1 changed files with 6 additions and 4 deletions
|
|
@ -53,10 +53,12 @@ export class ConverterMessages {
|
|||
`Output file for '${def(o.outputFilename)}' could not be written.`
|
||||
);
|
||||
|
||||
static INFO_UnsupportedCharactersDetected = SevInfo | 0x0007;
|
||||
static Info_UnsupportedCharactersDetected = (o: { inputFilename: string, keymap_index: string, key: string, KeyName: string, output: string; }) => m(
|
||||
this.INFO_UnsupportedCharactersDetected,
|
||||
`INFO: Input file ${def(o.inputFilename)} contains unsupported character '${def(o.output)}' at keyMap index ${def(o.keymap_index)} on Keycode ${def(o.key)} (${def(o.KeyName)})`
|
||||
static ERROR_UnsupportedCharactersDetected = SevError | 0x0007;
|
||||
static Error_UnsupportedCharactersDetected = (o: { inputFilename: string, keymap_index: string, KeyName: string, output: string; }) => m(
|
||||
this.ERROR_UnsupportedCharactersDetected,
|
||||
`Input file ${def(o.inputFilename)}
|
||||
contains unsupported character '${def(o.output)}'
|
||||
at ${def(o.keymap_index)} ${def(o.KeyName)} .`
|
||||
);
|
||||
|
||||
static ERROR_InvalidFile = SevError | 0x0008;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue