diff options
author | Colomban Wendling <ban@herbesfolles.org> | 2012-09-08 21:49:11 +0200 |
---|---|---|
committer | Colomban Wendling <ban@herbesfolles.org> | 2012-09-08 21:49:11 +0200 |
commit | 580fe992b298ebe0dda18b1d286b0a06bc7d5e3b (patch) | |
tree | 8a67b31f97069a82c24f001a39583daacfe44f50 /include/SciLexer.h | |
parent | d3274754216291aad17111312b2b7749bb99a362 (diff) | |
download | scintilla-mirror-580fe992b298ebe0dda18b1d286b0a06bc7d5e3b.tar.gz |
Rewrite the GetText translation (po) lexer
The old one had a few bugs and was somewhat limited, this one should
hopefully fix the issues. The new one should behave like the old one
but adding some more styles and following better the file format.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 57b5cf6e7..85ba2a1cc 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1354,6 +1354,13 @@ #define SCE_PO_MSGCTXT 6 #define SCE_PO_MSGCTXT_TEXT 7 #define SCE_PO_FUZZY 8 +#define SCE_PO_PROGRAMMER_COMMENT 9 +#define SCE_PO_REFERENCE 10 +#define SCE_PO_FLAGS 11 +#define SCE_PO_MSGID_TEXT_EOL 12 +#define SCE_PO_MSGSTR_TEXT_EOL 13 +#define SCE_PO_MSGCTXT_TEXT_EOL 14 +#define SCE_PO_ERROR 15 #define SCE_PAS_DEFAULT 0 #define SCE_PAS_IDENTIFIER 1 #define SCE_PAS_COMMENT 2 |