summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-08-27 11:40:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-08-28 08:07:09 +0200
commit33ecd0d5c4fff9511a8436513936a3f7044a775a (patch)
treec25809adda140ff89d9f2a2b6dfadba17e188fb0 /svtools
parent554834484a3323f73b5aeace246bcd9635368967 (diff)
Change OUStringLiteral from char[] to char16_t[]
This is a prerequisite for making conversion from OUStringLiteral to OUString more efficient at least for C++20 (by replacing its internals with a constexpr- generated sal_uString-compatible layout with a SAL_STRING_STATIC_FLAG refCount, conditionally for C++20 for now). For a configure-wise bare-bones build on Linux, size reported by `du -bs instdir` grew by 118792 bytes from 1155636636 to 1155755428. In most places just a u"..." string literal prefix had to be added. In some places char const a[] = "..."; variables have been changed to char16_t, and a few places required even further changes to code (which prompted the addition of include/o3tl/string_view.hxx helper function o3tl::equalsIgnoreAsciiCase and the additional OUString::createFromAscii overload). For all uses of macros expanding to string literals, the relevant uses have been rewritten as u"" MACRO instead of changing the macro definitions. It should be possible to change at least some of those macro definitions (and drop the u"" from their call sites) in follow-up commits. Change-Id: Iec4ef1a057d412d22443312d40c6a8a290dc6144 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101483 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/colorcfg.cxx100
-rw-r--r--svtools/source/svhtml/htmlkywd.cxx1287
-rw-r--r--svtools/source/svrtf/rtfkeywd.cxx2210
3 files changed, 1799 insertions, 1798 deletions
diff --git a/svtools/source/config/colorcfg.cxx b/svtools/source/config/colorcfg.cxx
index abd6952e4783..1f1163b6d2a3 100644
--- a/svtools/source/config/colorcfg.cxx
+++ b/svtools/source/config/colorcfg.cxx
@@ -107,56 +107,56 @@ uno::Sequence< OUString> GetPropertyNames(const OUString& rScheme)
};
static const ColorConfigEntryData_Impl cNames[] =
{
- { OUStringLiteral("/DocColor") ,false },
- { OUStringLiteral("/DocBoundaries") ,true },
- { OUStringLiteral("/AppBackground") ,false },
- { OUStringLiteral("/ObjectBoundaries"),true },
- { OUStringLiteral("/TableBoundaries") ,true },
- { OUStringLiteral("/FontColor") ,false },
- { OUStringLiteral("/Links") ,true },
- { OUStringLiteral("/LinksVisited") ,true },
- { OUStringLiteral("/Spell") ,false },
- { OUStringLiteral("/SmartTags") ,false },
- { OUStringLiteral("/Shadow") , true },
- { OUStringLiteral("/WriterTextGrid") ,false },
- { OUStringLiteral("/WriterFieldShadings"),true },
- { OUStringLiteral("/WriterIdxShadings") ,true },
- { OUStringLiteral("/WriterDirectCursor") ,true },
- { OUStringLiteral("/WriterScriptIndicator") ,false },
- { OUStringLiteral("/WriterSectionBoundaries") ,true },
- { OUStringLiteral("/WriterHeaderFooterMark") ,false },
- { OUStringLiteral("/WriterPageBreaks") ,false },
- { OUStringLiteral("/HTMLSGML") ,false },
- { OUStringLiteral("/HTMLComment") ,false },
- { OUStringLiteral("/HTMLKeyword") ,false },
- { OUStringLiteral("/HTMLUnknown") ,false },
- { OUStringLiteral("/CalcGrid") ,false },
- { OUStringLiteral("/CalcPageBreak"), false },
- { OUStringLiteral("/CalcPageBreakManual"), false },
- { OUStringLiteral("/CalcPageBreakAutomatic"), false },
- { OUStringLiteral("/CalcDetective") ,false },
- { OUStringLiteral("/CalcDetectiveError") ,false },
- { OUStringLiteral("/CalcReference") ,false },
- { OUStringLiteral("/CalcNotesBackground") ,false },
- { OUStringLiteral("/CalcValue") ,false },
- { OUStringLiteral("/CalcFormula") ,false },
- { OUStringLiteral("/CalcText") ,false },
- { OUStringLiteral("/CalcProtectedBackground") ,false },
- { OUStringLiteral("/DrawGrid") ,true },
- { OUStringLiteral("/BASICIdentifier"), false },
- { OUStringLiteral("/BASICComment") , false },
- { OUStringLiteral("/BASICNumber") , false },
- { OUStringLiteral("/BASICString") , false },
- { OUStringLiteral("/BASICOperator") , false },
- { OUStringLiteral("/BASICKeyword") , false },
- { OUStringLiteral("/BASICError"), false },
- { OUStringLiteral("/SQLIdentifier"), false },
- { OUStringLiteral("/SQLNumber"), false },
- { OUStringLiteral("/SQLString"), false },
- { OUStringLiteral("/SQLOperator"), false },
- { OUStringLiteral("/SQLKeyword"), false },
- { OUStringLiteral("/SQLParameter"), false },
- { OUStringLiteral("/SQLComment"), false }
+ { OUStringLiteral(u"/DocColor") ,false },
+ { OUStringLiteral(u"/DocBoundaries") ,true },
+ { OUStringLiteral(u"/AppBackground") ,false },
+ { OUStringLiteral(u"/ObjectBoundaries"),true },
+ { OUStringLiteral(u"/TableBoundaries") ,true },
+ { OUStringLiteral(u"/FontColor") ,false },
+ { OUStringLiteral(u"/Links") ,true },
+ { OUStringLiteral(u"/LinksVisited") ,true },
+ { OUStringLiteral(u"/Spell") ,false },
+ { OUStringLiteral(u"/SmartTags") ,false },
+ { OUStringLiteral(u"/Shadow") , true },
+ { OUStringLiteral(u"/WriterTextGrid") ,false },
+ { OUStringLiteral(u"/WriterFieldShadings"),true },
+ { OUStringLiteral(u"/WriterIdxShadings") ,true },
+ { OUStringLiteral(u"/WriterDirectCursor") ,true },
+ { OUStringLiteral(u"/WriterScriptIndicator") ,false },
+ { OUStringLiteral(u"/WriterSectionBoundaries") ,true },
+ { OUStringLiteral(u"/WriterHeaderFooterMark") ,false },
+ { OUStringLiteral(u"/WriterPageBreaks") ,false },
+ { OUStringLiteral(u"/HTMLSGML") ,false },
+ { OUStringLiteral(u"/HTMLComment") ,false },
+ { OUStringLiteral(u"/HTMLKeyword") ,false },
+ { OUStringLiteral(u"/HTMLUnknown") ,false },
+ { OUStringLiteral(u"/CalcGrid") ,false },
+ { OUStringLiteral(u"/CalcPageBreak"), false },
+ { OUStringLiteral(u"/CalcPageBreakManual"), false },
+ { OUStringLiteral(u"/CalcPageBreakAutomatic"), false },
+ { OUStringLiteral(u"/CalcDetective") ,false },
+ { OUStringLiteral(u"/CalcDetectiveError") ,false },
+ { OUStringLiteral(u"/CalcReference") ,false },
+ { OUStringLiteral(u"/CalcNotesBackground") ,false },
+ { OUStringLiteral(u"/CalcValue") ,false },
+ { OUStringLiteral(u"/CalcFormula") ,false },
+ { OUStringLiteral(u"/CalcText") ,false },
+ { OUStringLiteral(u"/CalcProtectedBackground") ,false },
+ { OUStringLiteral(u"/DrawGrid") ,true },
+ { OUStringLiteral(u"/BASICIdentifier"), false },
+ { OUStringLiteral(u"/BASICComment") , false },
+ { OUStringLiteral(u"/BASICNumber") , false },
+ { OUStringLiteral(u"/BASICString") , false },
+ { OUStringLiteral(u"/BASICOperator") , false },
+ { OUStringLiteral(u"/BASICKeyword") , false },
+ { OUStringLiteral(u"/BASICError"), false },
+ { OUStringLiteral(u"/SQLIdentifier"), false },
+ { OUStringLiteral(u"/SQLNumber"), false },
+ { OUStringLiteral(u"/SQLString"), false },
+ { OUStringLiteral(u"/SQLOperator"), false },
+ { OUStringLiteral(u"/SQLKeyword"), false },
+ { OUStringLiteral(u"/SQLParameter"), false },
+ { OUStringLiteral(u"/SQLComment"), false }
};
uno::Sequence<OUString> aNames(2 * ColorConfigEntryCount);
diff --git a/svtools/source/svhtml/htmlkywd.cxx b/svtools/source/svhtml/htmlkywd.cxx
index 5cdbfe242dc8..6d2fda7c433e 100644
--- a/svtools/source/svhtml/htmlkywd.cxx
+++ b/svtools/source/svhtml/htmlkywd.cxx
@@ -19,8 +19,9 @@
#include <algorithm>
+#include <string_view>
+
#include <sal/types.h>
-#include <string.h>
#include <rtl/ustring.hxx>
#include <svtools/htmltokn.h>
#include <svtools/htmlkywd.hxx>
@@ -39,19 +40,19 @@ struct TokenEntry
template<typename T>
static bool sortCompare(const TokenEntry<T> & lhs, const TokenEntry<T> & rhs)
{
- return strcmp(lhs.sToken.data, rhs.sToken.data) < 0;
+ return std::u16string_view(lhs.sToken) < std::u16string_view(rhs.sToken);
}
template<typename T>
static bool findCompare(const TokenEntry<T> & lhs, const OUString & rhs)
{
- return rhs.compareToAscii(lhs.sToken.data) > 0;
+ return lhs.sToken < rhs;
}
template<typename T, size_t LEN>
static T search(TokenEntry<T> const (&dataTable)[LEN], const OUString & key, T notFoundValue)
{
auto findIt = std::lower_bound( std::begin(dataTable), std::end(dataTable),
key, findCompare<T> );
- if (findIt != std::end(dataTable) && key.compareToAscii(findIt->sToken.data)==0)
+ if (findIt != std::end(dataTable) && key == findIt->sToken)
return findIt->nToken;
return notFoundValue;
}
@@ -60,116 +61,116 @@ using HTML_TokenEntry = TokenEntry<HtmlTokenId>;
// this array is sorted by the name (even if it doesn't look like it from the constant names)
HTML_TokenEntry const aHTMLTokenTab[] = {
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_comment), HtmlTokenId::COMMENT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_doctype), HtmlTokenId::DOCTYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_anchor), HtmlTokenId::ANCHOR_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_abbreviation), HtmlTokenId::ABBREVIATION_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_acronym), HtmlTokenId::ACRONYM_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_address), HtmlTokenId::ADDRESS_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_applet), HtmlTokenId::APPLET_ON}, // HotJava
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_area), HtmlTokenId::AREA}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_author), HtmlTokenId::AUTHOR_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_bold), HtmlTokenId::BOLD_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_banner), HtmlTokenId::BANNER_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_base), HtmlTokenId::BASE}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_basefont), HtmlTokenId::BASEFONT_ON}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_bigprint), HtmlTokenId::BIGPRINT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_blink), HtmlTokenId::BLINK_ON}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_blockquote), HtmlTokenId::BLOCKQUOTE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_body), HtmlTokenId::BODY_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_blockquote30), HtmlTokenId::BLOCKQUOTE30_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_linebreak), HtmlTokenId::LINEBREAK},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_caption), HtmlTokenId::CAPTION_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_center), HtmlTokenId::CENTER_ON}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_citiation), HtmlTokenId::CITIATION_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_code), HtmlTokenId::CODE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_col), HtmlTokenId::COL_ON}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_colgroup), HtmlTokenId::COLGROUP_ON}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_comment2), HtmlTokenId::COMMENT2_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_credit), HtmlTokenId::CREDIT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_dd), HtmlTokenId::DD_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_deletedtext), HtmlTokenId::DELETEDTEXT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_definstance), HtmlTokenId::DEFINSTANCE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_dirlist), HtmlTokenId::DIRLIST_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_division), HtmlTokenId::DIVISION_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_deflist), HtmlTokenId::DEFLIST_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_dt), HtmlTokenId::DT_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_emphasis), HtmlTokenId::EMPHASIS_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_embed), HtmlTokenId::EMBED}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_figure), HtmlTokenId::FIGURE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_footnote), HtmlTokenId::FOOTNOTE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_font), HtmlTokenId::FONT_ON}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_form), HtmlTokenId::FORM_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_frame), HtmlTokenId::FRAME_ON}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_frameset), HtmlTokenId::FRAMESET_ON}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head1), HtmlTokenId::HEAD1_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head2), HtmlTokenId::HEAD2_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head3), HtmlTokenId::HEAD3_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head4), HtmlTokenId::HEAD4_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head5), HtmlTokenId::HEAD5_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head6), HtmlTokenId::HEAD6_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_head), HtmlTokenId::HEAD_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_horzrule), HtmlTokenId::HORZRULE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_html), HtmlTokenId::HTML_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_italic), HtmlTokenId::ITALIC_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_iframe), HtmlTokenId::IFRAME_ON}, // IE 3.0b2
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_image), HtmlTokenId::IMAGE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_input), HtmlTokenId::INPUT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_insertedtext), HtmlTokenId::INSERTEDTEXT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_keyboard), HtmlTokenId::KEYBOARD_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_language), HtmlTokenId::LANGUAGE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_listheader), HtmlTokenId::LISTHEADER_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_li), HtmlTokenId::LI_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_link), HtmlTokenId::LINK}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_listing), HtmlTokenId::LISTING_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_map), HtmlTokenId::MAP_ON}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_marquee), HtmlTokenId::MARQUEE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_menulist), HtmlTokenId::MENULIST_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_meta), HtmlTokenId::META}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_multicol), HtmlTokenId::MULTICOL_ON}, // Netscape 3.0b5
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_nobr), HtmlTokenId::NOBR_ON}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_noembed), HtmlTokenId::NOEMBED_ON}, // Netscape 2.0 ???
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_noframe), HtmlTokenId::NOFRAMES_ON}, // Netscape 2.0 ???
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_noframes), HtmlTokenId::NOFRAMES_ON}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_noscript), HtmlTokenId::NOSCRIPT_ON}, // Netscape 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_note), HtmlTokenId::NOTE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_object), HtmlTokenId::OBJECT_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_orderlist), HtmlTokenId::ORDERLIST_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_option), HtmlTokenId::OPTION},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_parabreak), HtmlTokenId::PARABREAK_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_param), HtmlTokenId::PARAM}, // HotJava
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_person), HtmlTokenId::PERSON_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_plaintext2), HtmlTokenId::PLAINTEXT2_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_preformtxt), HtmlTokenId::PREFORMTXT_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_shortquote), HtmlTokenId::SHORTQUOTE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_strikethrough), HtmlTokenId::STRIKETHROUGH_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_sample), HtmlTokenId::SAMPLE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_script), HtmlTokenId::SCRIPT_ON}, // HTML 3.2
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_sdfield), HtmlTokenId::SDFIELD_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_select), HtmlTokenId::SELECT_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_smallprint), HtmlTokenId::SMALLPRINT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_spacer), HtmlTokenId::SPACER}, // Netscape 3.0b5
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_span), HtmlTokenId::SPAN_ON}, // Style Sheets
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_strike), HtmlTokenId::STRIKE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_strong), HtmlTokenId::STRONG_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_style), HtmlTokenId::STYLE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_subscript), HtmlTokenId::SUBSCRIPT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_superscript), HtmlTokenId::SUPERSCRIPT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_plaintext), HtmlTokenId::PLAINTEXT_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_table), HtmlTokenId::TABLE_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_tbody), HtmlTokenId::TBODY_ON}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_tabledata), HtmlTokenId::TABLEDATA_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_textarea), HtmlTokenId::TEXTAREA_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_tfoot), HtmlTokenId::TFOOT_ON}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_tableheader), HtmlTokenId::TABLEHEADER_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_thead), HtmlTokenId::THEAD_ON}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_title), HtmlTokenId::TITLE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_tablerow), HtmlTokenId::TABLEROW_ON}, // HTML 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_teletype), HtmlTokenId::TELETYPE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_underline), HtmlTokenId::UNDERLINE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_unorderlist), HtmlTokenId::UNORDERLIST_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_variable), HtmlTokenId::VARIABLE_ON},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_xmp), HtmlTokenId::XMP_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_comment), HtmlTokenId::COMMENT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_doctype), HtmlTokenId::DOCTYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_anchor), HtmlTokenId::ANCHOR_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_abbreviation), HtmlTokenId::ABBREVIATION_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_acronym), HtmlTokenId::ACRONYM_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_address), HtmlTokenId::ADDRESS_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_applet), HtmlTokenId::APPLET_ON}, // HotJava
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_area), HtmlTokenId::AREA}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_author), HtmlTokenId::AUTHOR_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_bold), HtmlTokenId::BOLD_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_banner), HtmlTokenId::BANNER_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_base), HtmlTokenId::BASE}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_basefont), HtmlTokenId::BASEFONT_ON}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_bigprint), HtmlTokenId::BIGPRINT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_blink), HtmlTokenId::BLINK_ON}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_blockquote), HtmlTokenId::BLOCKQUOTE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_body), HtmlTokenId::BODY_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_blockquote30), HtmlTokenId::BLOCKQUOTE30_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_linebreak), HtmlTokenId::LINEBREAK},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_caption), HtmlTokenId::CAPTION_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_center), HtmlTokenId::CENTER_ON}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_citiation), HtmlTokenId::CITIATION_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_code), HtmlTokenId::CODE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_col), HtmlTokenId::COL_ON}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_colgroup), HtmlTokenId::COLGROUP_ON}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_comment2), HtmlTokenId::COMMENT2_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_credit), HtmlTokenId::CREDIT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_dd), HtmlTokenId::DD_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_deletedtext), HtmlTokenId::DELETEDTEXT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_definstance), HtmlTokenId::DEFINSTANCE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_dirlist), HtmlTokenId::DIRLIST_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_division), HtmlTokenId::DIVISION_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_deflist), HtmlTokenId::DEFLIST_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_dt), HtmlTokenId::DT_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_emphasis), HtmlTokenId::EMPHASIS_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_embed), HtmlTokenId::EMBED}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_figure), HtmlTokenId::FIGURE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_footnote), HtmlTokenId::FOOTNOTE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_font), HtmlTokenId::FONT_ON}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_form), HtmlTokenId::FORM_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_frame), HtmlTokenId::FRAME_ON}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_frameset), HtmlTokenId::FRAMESET_ON}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head1), HtmlTokenId::HEAD1_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head2), HtmlTokenId::HEAD2_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head3), HtmlTokenId::HEAD3_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head4), HtmlTokenId::HEAD4_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head5), HtmlTokenId::HEAD5_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head6), HtmlTokenId::HEAD6_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_head), HtmlTokenId::HEAD_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_horzrule), HtmlTokenId::HORZRULE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_html), HtmlTokenId::HTML_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_italic), HtmlTokenId::ITALIC_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_iframe), HtmlTokenId::IFRAME_ON}, // IE 3.0b2
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_image), HtmlTokenId::IMAGE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_input), HtmlTokenId::INPUT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_insertedtext), HtmlTokenId::INSERTEDTEXT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_keyboard), HtmlTokenId::KEYBOARD_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_language), HtmlTokenId::LANGUAGE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_listheader), HtmlTokenId::LISTHEADER_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_li), HtmlTokenId::LI_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_link), HtmlTokenId::LINK}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_listing), HtmlTokenId::LISTING_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_map), HtmlTokenId::MAP_ON}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_marquee), HtmlTokenId::MARQUEE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_menulist), HtmlTokenId::MENULIST_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_meta), HtmlTokenId::META}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_multicol), HtmlTokenId::MULTICOL_ON}, // Netscape 3.0b5
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_nobr), HtmlTokenId::NOBR_ON}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_noembed), HtmlTokenId::NOEMBED_ON}, // Netscape 2.0 ???
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_noframe), HtmlTokenId::NOFRAMES_ON}, // Netscape 2.0 ???
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_noframes), HtmlTokenId::NOFRAMES_ON}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_noscript), HtmlTokenId::NOSCRIPT_ON}, // Netscape 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_note), HtmlTokenId::NOTE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_object), HtmlTokenId::OBJECT_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_orderlist), HtmlTokenId::ORDERLIST_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_option), HtmlTokenId::OPTION},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_parabreak), HtmlTokenId::PARABREAK_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_param), HtmlTokenId::PARAM}, // HotJava
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_person), HtmlTokenId::PERSON_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_plaintext2), HtmlTokenId::PLAINTEXT2_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_preformtxt), HtmlTokenId::PREFORMTXT_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_shortquote), HtmlTokenId::SHORTQUOTE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_strikethrough), HtmlTokenId::STRIKETHROUGH_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_sample), HtmlTokenId::SAMPLE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_script), HtmlTokenId::SCRIPT_ON}, // HTML 3.2
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_sdfield), HtmlTokenId::SDFIELD_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_select), HtmlTokenId::SELECT_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_smallprint), HtmlTokenId::SMALLPRINT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_spacer), HtmlTokenId::SPACER}, // Netscape 3.0b5
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_span), HtmlTokenId::SPAN_ON}, // Style Sheets
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_strike), HtmlTokenId::STRIKE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_strong), HtmlTokenId::STRONG_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_style), HtmlTokenId::STYLE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_subscript), HtmlTokenId::SUBSCRIPT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_superscript), HtmlTokenId::SUPERSCRIPT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_plaintext), HtmlTokenId::PLAINTEXT_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_table), HtmlTokenId::TABLE_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_tbody), HtmlTokenId::TBODY_ON}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_tabledata), HtmlTokenId::TABLEDATA_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_textarea), HtmlTokenId::TEXTAREA_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_tfoot), HtmlTokenId::TFOOT_ON}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_tableheader), HtmlTokenId::TABLEHEADER_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_thead), HtmlTokenId::THEAD_ON}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_title), HtmlTokenId::TITLE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_tablerow), HtmlTokenId::TABLEROW_ON}, // HTML 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_teletype), HtmlTokenId::TELETYPE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_underline), HtmlTokenId::UNDERLINE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_unorderlist), HtmlTokenId::UNORDERLIST_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_variable), HtmlTokenId::VARIABLE_ON},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_xmp), HtmlTokenId::XMP_ON},
};
@@ -194,268 +195,268 @@ using HTML_CharEntry = TokenEntry<sal_Unicode>;
static bool bSortCharKeyWords = false;
static HTML_CharEntry aHTMLCharNameTab[] = {
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_lt), 60},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_gt), 62},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_amp), 38},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_quot), 34},
-
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Agrave), 192},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Aacute), 193},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Acirc), 194},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Atilde), 195},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Auml), 196},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Aring), 197},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_AElig), 198},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ccedil), 199},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Egrave), 200},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Eacute), 201},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ecirc), 202},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Euml), 203},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Igrave), 204},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Iacute), 205},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Icirc), 206},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Iuml), 207},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_ETH), 208},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ntilde), 209},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ograve), 210},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Oacute), 211},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ocirc), 212},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Otilde), 213},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ouml), 214},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Oslash), 216},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ugrave), 217},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Uacute), 218},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Ucirc), 219},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Uuml), 220},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_Yacute), 221},
-
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_THORN), 222},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_C_szlig), 223},
-
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_agrave), 224},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_aacute), 225},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_acirc), 226},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_atilde), 227},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_auml), 228},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_aring), 229},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_aelig), 230},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ccedil), 231},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_egrave), 232},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_eacute), 233},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ecirc), 234},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_euml), 235},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_igrave), 236},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_iacute), 237},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_icirc), 238},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_iuml), 239},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_eth), 240},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ntilde), 241},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ograve), 242},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_oacute), 243},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ocirc), 244},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_otilde), 245},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ouml), 246},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_oslash), 248},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ugrave), 249},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_uacute), 250},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ucirc), 251},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_uuml), 252},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_yacute), 253},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_thorn), 254},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_yuml), 255},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_lt), 60},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_gt), 62},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_amp), 38},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_quot), 34},
+
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Agrave), 192},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Aacute), 193},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Acirc), 194},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Atilde), 195},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Auml), 196},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Aring), 197},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_AElig), 198},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ccedil), 199},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Egrave), 200},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Eacute), 201},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ecirc), 202},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Euml), 203},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Igrave), 204},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Iacute), 205},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Icirc), 206},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Iuml), 207},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_ETH), 208},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ntilde), 209},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ograve), 210},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Oacute), 211},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ocirc), 212},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Otilde), 213},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ouml), 214},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Oslash), 216},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ugrave), 217},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Uacute), 218},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Ucirc), 219},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Uuml), 220},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_Yacute), 221},
+
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_THORN), 222},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_C_szlig), 223},
+
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_agrave), 224},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_aacute), 225},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_acirc), 226},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_atilde), 227},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_auml), 228},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_aring), 229},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_aelig), 230},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ccedil), 231},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_egrave), 232},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_eacute), 233},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ecirc), 234},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_euml), 235},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_igrave), 236},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_iacute), 237},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_icirc), 238},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_iuml), 239},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_eth), 240},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ntilde), 241},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ograve), 242},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_oacute), 243},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ocirc), 244},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_otilde), 245},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ouml), 246},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_oslash), 248},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ugrave), 249},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_uacute), 250},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ucirc), 251},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_uuml), 252},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_yacute), 253},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_thorn), 254},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_yuml), 255},
// special characters
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_acute), 180},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_brvbar), 166},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_cedil), 184},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_cent), 162},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_copy), 169},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_curren), 164},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_deg), 176},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_divide), 247},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_frac12), 189},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_frac14), 188},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_frac34), 190},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_iexcl), 161},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_iquest), 191},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_laquo), 171},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_macr), 175},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_micro), 181},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_middot), 183},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_not), 172},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ordf), 170},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ordm), 186},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_para), 182},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_plusmn), 177},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_pound), 163},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_raquo), 187},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_reg), 174},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sect), 167},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sup1), 185},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sup2), 178},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sup3), 179},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_times), 215},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_uml), 168},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_yen), 165},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_acute), 180},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_brvbar), 166},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_cedil), 184},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_cent), 162},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_copy), 169},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_curren), 164},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_deg), 176},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_divide), 247},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_frac12), 189},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_frac14), 188},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_frac34), 190},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_iexcl), 161},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_iquest), 191},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_laquo), 171},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_macr), 175},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_micro), 181},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_middot), 183},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_not), 172},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ordf), 170},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ordm), 186},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_para), 182},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_plusmn), 177},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_pound), 163},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_raquo), 187},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_reg), 174},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sect), 167},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sup1), 185},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sup2), 178},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sup3), 179},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_times), 215},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_uml), 168},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_yen), 165},
// special characters), which will be converted to tokens !!!
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_nbsp), 1},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_shy), 2},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_nbsp), 1},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_shy), 2},
// HTML4
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_OElig), 338},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_oelig), 339},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Scaron), 352},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_scaron), 353},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Yuml), 376},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_fnof), 402},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_circ), 710},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_tilde), 732},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Alpha), 913},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Beta), 914},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Gamma), 915},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Delta), 916},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Epsilon), 917},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Zeta), 918},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Eta), 919},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Theta), 920},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Iota), 921},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Kappa), 922},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Lambda), 923},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Mu), 924},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Nu), 925},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Xi), 926},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Omicron), 927},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Pi), 928},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Rho), 929},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Sigma), 931},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Tau), 932},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Upsilon), 933},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Phi), 934},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Chi), 935},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Psi), 936},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Omega), 937},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_alpha), 945},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_beta), 946},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_gamma), 947},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_delta), 948},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_epsilon), 949},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_zeta), 950},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_eta), 951},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_theta), 952},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_iota), 953},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_kappa), 954},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lambda), 955},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_mu), 956},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_nu), 957},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_xi), 958},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_omicron), 959},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_pi), 960},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rho), 961},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sigmaf), 962},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sigma), 963},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_tau), 964},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_upsilon), 965},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_phi), 966},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_chi), 967},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_psi), 968},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_omega), 969},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_thetasym), 977},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_upsih), 978},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_piv), 982},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ensp), 8194},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_emsp), 8195},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_thinsp), 8201},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_zwnj), 8204},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_zwj), 8205},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lrm), 8206},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rlm), 8207},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ndash), 8211},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_mdash), 8212},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lsquo), 8216},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rsquo), 8217},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sbquo), 8218},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ldquo), 8220},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rdquo), 8221},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_bdquo), 8222},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_dagger), 8224},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Dagger), 8225},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_bull), 8226},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_hellip), 8230},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_permil), 8240},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_prime), 8242},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_Prime), 8243},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lsaquo), 8249},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rsaquo), 8250},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_oline), 8254},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_frasl), 8260},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_euro), 8364},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_image), 8465},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_weierp), 8472},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_real), 8476},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_trade), 8482},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_alefsym), 8501},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_larr), 8592},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_uarr), 8593},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rarr), 8594},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_darr), 8595},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_harr), 8596},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_crarr), 8629},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lArr), 8656},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_uArr), 8657},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rArr), 8658},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_dArr), 8659},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_hArr), 8660},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_forall), 8704},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_part), 8706},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_exist), 8707},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_empty), 8709},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_nabla), 8711},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_isin), 8712},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_notin), 8713},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ni), 8715},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_prod), 8719},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sum), 8721},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_minus), 8722},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lowast), 8727},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_radic), 8730},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_prop), 8733},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_infin), 8734},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ang), 8736},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_and), 8743},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_or), 8744},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_cap), 8745},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_cup), 8746},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_int), 8747},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_there4), 8756},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sim), 8764},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_cong), 8773},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_asymp), 8776},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ne), 8800},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_equiv), 8801},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_le), 8804},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_ge), 8805},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sub), 8834},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sup), 8835},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_nsub), 8836},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sube), 8838},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_supe), 8839},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_oplus), 8853},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_otimes), 8855},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_perp), 8869},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_sdot), 8901},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lceil), 8968},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rceil), 8969},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lfloor), 8970},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rfloor), 8971},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_lang), 9001},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_rang), 9002},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_loz), 9674},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_spades), 9824},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_clubs), 9827},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_hearts), 9829},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_S_diams), 9830}
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_OElig), 338},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_oelig), 339},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Scaron), 352},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_scaron), 353},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Yuml), 376},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_fnof), 402},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_circ), 710},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_tilde), 732},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Alpha), 913},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Beta), 914},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Gamma), 915},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Delta), 916},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Epsilon), 917},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Zeta), 918},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Eta), 919},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Theta), 920},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Iota), 921},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Kappa), 922},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Lambda), 923},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Mu), 924},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Nu), 925},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Xi), 926},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Omicron), 927},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Pi), 928},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Rho), 929},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Sigma), 931},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Tau), 932},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Upsilon), 933},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Phi), 934},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Chi), 935},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Psi), 936},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Omega), 937},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_alpha), 945},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_beta), 946},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_gamma), 947},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_delta), 948},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_epsilon), 949},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_zeta), 950},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_eta), 951},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_theta), 952},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_iota), 953},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_kappa), 954},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lambda), 955},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_mu), 956},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_nu), 957},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_xi), 958},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_omicron), 959},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_pi), 960},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rho), 961},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sigmaf), 962},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sigma), 963},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_tau), 964},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_upsilon), 965},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_phi), 966},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_chi), 967},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_psi), 968},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_omega), 969},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_thetasym), 977},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_upsih), 978},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_piv), 982},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ensp), 8194},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_emsp), 8195},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_thinsp), 8201},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_zwnj), 8204},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_zwj), 8205},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lrm), 8206},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rlm), 8207},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ndash), 8211},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_mdash), 8212},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lsquo), 8216},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rsquo), 8217},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sbquo), 8218},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ldquo), 8220},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rdquo), 8221},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_bdquo), 8222},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_dagger), 8224},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Dagger), 8225},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_bull), 8226},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_hellip), 8230},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_permil), 8240},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_prime), 8242},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_Prime), 8243},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lsaquo), 8249},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rsaquo), 8250},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_oline), 8254},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_frasl), 8260},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_euro), 8364},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_image), 8465},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_weierp), 8472},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_real), 8476},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_trade), 8482},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_alefsym), 8501},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_larr), 8592},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_uarr), 8593},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rarr), 8594},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_darr), 8595},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_harr), 8596},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_crarr), 8629},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lArr), 8656},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_uArr), 8657},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rArr), 8658},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_dArr), 8659},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_hArr), 8660},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_forall), 8704},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_part), 8706},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_exist), 8707},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_empty), 8709},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_nabla), 8711},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_isin), 8712},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_notin), 8713},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ni), 8715},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_prod), 8719},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sum), 8721},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_minus), 8722},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lowast), 8727},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_radic), 8730},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_prop), 8733},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_infin), 8734},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ang), 8736},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_and), 8743},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_or), 8744},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_cap), 8745},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_cup), 8746},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_int), 8747},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_there4), 8756},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sim), 8764},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_cong), 8773},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_asymp), 8776},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ne), 8800},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_equiv), 8801},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_le), 8804},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_ge), 8805},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sub), 8834},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sup), 8835},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_nsub), 8836},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sube), 8838},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_supe), 8839},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_oplus), 8853},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_otimes), 8855},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_perp), 8869},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_sdot), 8901},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lceil), 8968},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rceil), 8969},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lfloor), 8970},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rfloor), 8971},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_lang), 9001},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_rang), 9002},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_loz), 9674},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_spades), 9824},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_clubs), 9827},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_hearts), 9829},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_S_diams), 9830}
};
sal_Unicode GetHTMLCharName( const OUString& rName )
@@ -478,156 +479,156 @@ using HTML_OptionEntry = TokenEntry<HtmlOptionId>;
static HTML_OptionEntry aHTMLOptionTab[] = {
// Attributes without value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_checked), HtmlOptionId::CHECKED},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_compact), HtmlOptionId::COMPACT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_declare), HtmlOptionId::DECLARE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_disabled), HtmlOptionId::DISABLED},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_ismap), HtmlOptionId::ISMAP},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_mayscript), HtmlOptionId::MAYSCRIPT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_multiple), HtmlOptionId::MULTIPLE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_nohref), HtmlOptionId::NOHREF}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_noresize), HtmlOptionId::NORESIZE}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_noshade), HtmlOptionId::NOSHADE}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_nowrap), HtmlOptionId::NOWRAP},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_sdfixed), HtmlOptionId::SDFIXED},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_selected), HtmlOptionId::SELECTED},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_checked), HtmlOptionId::CHECKED},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_compact), HtmlOptionId::COMPACT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_declare), HtmlOptionId::DECLARE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_disabled), HtmlOptionId::DISABLED},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_ismap), HtmlOptionId::ISMAP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_mayscript), HtmlOptionId::MAYSCRIPT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_multiple), HtmlOptionId::MULTIPLE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_nohref), HtmlOptionId::NOHREF}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_noresize), HtmlOptionId::NORESIZE}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_noshade), HtmlOptionId::NOSHADE}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_nowrap), HtmlOptionId::NOWRAP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_sdfixed), HtmlOptionId::SDFIXED},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_selected), HtmlOptionId::SELECTED},
// Attributes with a string value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_accept), HtmlOptionId::ACCEPT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_accesskey), HtmlOptionId::ACCESSKEY},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_alt), HtmlOptionId::ALT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_axis), HtmlOptionId::AXIS},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_char), HtmlOptionId::CHAR}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_charset), HtmlOptionId::CHARSET},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_class), HtmlOptionId::CLASS},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_code), HtmlOptionId::CODE}, // HotJava
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_codetype), HtmlOptionId::CODETYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_content), HtmlOptionId::CONTENT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_coords), HtmlOptionId::COORDS}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_enctype), HtmlOptionId::ENCTYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_face), HtmlOptionId::FACE}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_frameborder), HtmlOptionId::FRAMEBORDER}, // IExplorer 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_httpequiv), HtmlOptionId::HTTPEQUIV},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_language), HtmlOptionId::LANGUAGE}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_name), HtmlOptionId::NAME},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_prompt), HtmlOptionId::PROMPT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_shape), HtmlOptionId::SHAPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_standby), HtmlOptionId::STANDBY},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_style), HtmlOptionId::STYLE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_title), HtmlOptionId::TITLE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_value), HtmlOptionId::VALUE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDval), HtmlOptionId::SDVAL}, // StarDiv NumberValue
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDnum), HtmlOptionId::SDNUM}, // StarDiv NumberFormat
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_sdlibrary), HtmlOptionId::SDLIBRARY},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_sdmodule), HtmlOptionId::SDMODULE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_accept), HtmlOptionId::ACCEPT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_accesskey), HtmlOptionId::ACCESSKEY},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_alt), HtmlOptionId::ALT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_axis), HtmlOptionId::AXIS},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_char), HtmlOptionId::CHAR}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_charset), HtmlOptionId::CHARSET},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_class), HtmlOptionId::CLASS},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_code), HtmlOptionId::CODE}, // HotJava
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_codetype), HtmlOptionId::CODETYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_content), HtmlOptionId::CONTENT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_coords), HtmlOptionId::COORDS}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_enctype), HtmlOptionId::ENCTYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_face), HtmlOptionId::FACE}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_frameborder), HtmlOptionId::FRAMEBORDER}, // IExplorer 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_httpequiv), HtmlOptionId::HTTPEQUIV},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_language), HtmlOptionId::LANGUAGE}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_name), HtmlOptionId::NAME},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_prompt), HtmlOptionId::PROMPT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_shape), HtmlOptionId::SHAPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_standby), HtmlOptionId::STANDBY},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_style), HtmlOptionId::STYLE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_title), HtmlOptionId::TITLE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_value), HtmlOptionId::VALUE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDval), HtmlOptionId::SDVAL}, // StarDiv NumberValue
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDnum), HtmlOptionId::SDNUM}, // StarDiv NumberFormat
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_sdlibrary), HtmlOptionId::SDLIBRARY},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_sdmodule), HtmlOptionId::SDMODULE},
// Attributes with a SGML identifier value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_id), HtmlOptionId::ID},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_target), HtmlOptionId::TARGET}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_to), HtmlOptionId::TO},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_id), HtmlOptionId::ID},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_target), HtmlOptionId::TARGET}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_to), HtmlOptionId::TO},
// Attributes with a URI value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_action), HtmlOptionId::ACTION},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_archive), HtmlOptionId::ARCHIVE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_background), HtmlOptionId::BACKGROUND},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_classid), HtmlOptionId::CLASSID},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_codebase), HtmlOptionId::CODEBASE}, // HotJava
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_data), HtmlOptionId::DATA},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_href), HtmlOptionId::HREF},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_script), HtmlOptionId::SCRIPT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_src), HtmlOptionId::SRC},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_usemap), HtmlOptionId::USEMAP}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_action), HtmlOptionId::ACTION},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_archive), HtmlOptionId::ARCHIVE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_background), HtmlOptionId::BACKGROUND},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_classid), HtmlOptionId::CLASSID},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_codebase), HtmlOptionId::CODEBASE}, // HotJava
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_data), HtmlOptionId::DATA},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_href), HtmlOptionId::HREF},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_script), HtmlOptionId::SCRIPT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_src), HtmlOptionId::SRC},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_usemap), HtmlOptionId::USEMAP}, // Netscape 2.0
// Attributes with a color value (all Netscape versions)
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_alink), HtmlOptionId::ALINK},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_bgcolor), HtmlOptionId::BGCOLOR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_bordercolor), HtmlOptionId::BORDERCOLOR}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_bordercolorlight), HtmlOptionId::BORDERCOLORLIGHT}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_bordercolordark), HtmlOptionId::BORDERCOLORDARK}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_color), HtmlOptionId::COLOR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_link), HtmlOptionId::LINK},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_text), HtmlOptionId::TEXT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_vlink), HtmlOptionId::VLINK},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_alink), HtmlOptionId::ALINK},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_bgcolor), HtmlOptionId::BGCOLOR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_bordercolor), HtmlOptionId::BORDERCOLOR}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_bordercolorlight), HtmlOptionId::BORDERCOLORLIGHT}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_bordercolordark), HtmlOptionId::BORDERCOLORDARK}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_color), HtmlOptionId::COLOR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_link), HtmlOptionId::LINK},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_text), HtmlOptionId::TEXT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_vlink), HtmlOptionId::VLINK},
// Attributes with a numerical value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_border), HtmlOptionId::BORDER},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_cellspacing),HtmlOptionId::CELLSPACING}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_cellpadding),HtmlOptionId::CELLPADDING}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_charoff), HtmlOptionId::CHAROFF}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_colspan), HtmlOptionId::COLSPAN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_framespacing), HtmlOptionId::FRAMESPACING}, // IExplorer 3.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_gutter), HtmlOptionId::GUTTER}, // Netscape 3.0b5
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_height), HtmlOptionId::HEIGHT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_hspace), HtmlOptionId::HSPACE}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_left), HtmlOptionId::LEFT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_loop), HtmlOptionId::LOOP}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_marginheight),HtmlOptionId::MARGINHEIGHT}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_marginwidth),HtmlOptionId::MARGINWIDTH}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_maxlength), HtmlOptionId::MAXLENGTH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_rowspan), HtmlOptionId::ROWSPAN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_scrollamount), HtmlOptionId::SCROLLAMOUNT}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_scrolldelay), HtmlOptionId::SCROLLDELAY}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_span), HtmlOptionId::SPAN}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_tabindex), HtmlOptionId::TABINDEX},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_vspace), HtmlOptionId::VSPACE}, // Netscape
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_width), HtmlOptionId::WIDTH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_zindex), HtmlOptionId::ZINDEX},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_border), HtmlOptionId::BORDER},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_cellspacing),HtmlOptionId::CELLSPACING}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_cellpadding),HtmlOptionId::CELLPADDING}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_charoff), HtmlOptionId::CHAROFF}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_colspan), HtmlOptionId::COLSPAN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_framespacing), HtmlOptionId::FRAMESPACING}, // IExplorer 3.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_gutter), HtmlOptionId::GUTTER}, // Netscape 3.0b5
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_height), HtmlOptionId::HEIGHT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_hspace), HtmlOptionId::HSPACE}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_left), HtmlOptionId::LEFT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_loop), HtmlOptionId::LOOP}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_marginheight),HtmlOptionId::MARGINHEIGHT}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_marginwidth),HtmlOptionId::MARGINWIDTH}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_maxlength), HtmlOptionId::MAXLENGTH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_rowspan), HtmlOptionId::ROWSPAN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_scrollamount), HtmlOptionId::SCROLLAMOUNT}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_scrolldelay), HtmlOptionId::SCROLLDELAY}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_span), HtmlOptionId::SPAN}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_tabindex), HtmlOptionId::TABINDEX},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_vspace), HtmlOptionId::VSPACE}, // Netscape
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_width), HtmlOptionId::WIDTH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_zindex), HtmlOptionId::ZINDEX},
// Attributes with enum values
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_behavior), HtmlOptionId::BEHAVIOR}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_clear), HtmlOptionId::CLEAR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_dir), HtmlOptionId::DIR}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_direction), HtmlOptionId::DIRECTION}, // IExplorer 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_format), HtmlOptionId::FORMAT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_frame), HtmlOptionId::FRAME}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_lang), HtmlOptionId::LANG},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_method), HtmlOptionId::METHOD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_rel), HtmlOptionId::REL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_rev), HtmlOptionId::REV},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_rules), HtmlOptionId::RULES}, // HTML 3 Table Model Draft
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_scrolling), HtmlOptionId::SCROLLING}, // Netscape 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_sdreadonly), HtmlOptionId::SDREADONLY},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_subtype), HtmlOptionId::SUBTYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_type), HtmlOptionId::TYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_valign), HtmlOptionId::VALIGN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_valuetype), HtmlOptionId::VALUETYPE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_wrap), HtmlOptionId::WRAP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_behavior), HtmlOptionId::BEHAVIOR}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_clear), HtmlOptionId::CLEAR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_dir), HtmlOptionId::DIR}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_direction), HtmlOptionId::DIRECTION}, // IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_format), HtmlOptionId::FORMAT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_frame), HtmlOptionId::FRAME}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_lang), HtmlOptionId::LANG},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_method), HtmlOptionId::METHOD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_rel), HtmlOptionId::REL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_rev), HtmlOptionId::REV},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_rules), HtmlOptionId::RULES}, // HTML 3 Table Model Draft
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_scrolling), HtmlOptionId::SCROLLING}, // Netscape 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_sdreadonly), HtmlOptionId::SDREADONLY},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_subtype), HtmlOptionId::SUBTYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_type), HtmlOptionId::TYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_valign), HtmlOptionId::VALIGN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_valuetype), HtmlOptionId::VALUETYPE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_wrap), HtmlOptionId::WRAP},
// Attributes with script code value
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onblur), HtmlOptionId::ONBLUR}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onchange), HtmlOptionId::ONCHANGE}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onclick), HtmlOptionId::ONCLICK}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onfocus), HtmlOptionId::ONFOCUS}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onload), HtmlOptionId::ONLOAD}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onmouseover), HtmlOptionId::ONMOUSEOVER}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onreset), HtmlOptionId::ONRESET}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onselect), HtmlOptionId::ONSELECT}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onsubmit), HtmlOptionId::ONSUBMIT}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onunload), HtmlOptionId::ONUNLOAD}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onabort), HtmlOptionId::ONABORT}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onerror), HtmlOptionId::ONERROR}, // JavaScript
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_onmouseout), HtmlOptionId::ONMOUSEOUT}, // JavaScript
-
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonblur), HtmlOptionId::SDONBLUR}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonchange), HtmlOptionId::SDONCHANGE}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonclick), HtmlOptionId::SDONCLICK}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonfocus), HtmlOptionId::SDONFOCUS}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonload), HtmlOptionId::SDONLOAD}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonmouseover), HtmlOptionId::SDONMOUSEOVER}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonreset), HtmlOptionId::SDONRESET}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonselect), HtmlOptionId::SDONSELECT}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonsubmit), HtmlOptionId::SDONSUBMIT}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonunload), HtmlOptionId::SDONUNLOAD}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonabort), HtmlOptionId::SDONABORT}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonerror), HtmlOptionId::SDONERROR}, // StarBasic
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_SDonmouseout), HtmlOptionId::SDONMOUSEOUT}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onblur), HtmlOptionId::ONBLUR}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onchange), HtmlOptionId::ONCHANGE}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onclick), HtmlOptionId::ONCLICK}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onfocus), HtmlOptionId::ONFOCUS}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onload), HtmlOptionId::ONLOAD}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onmouseover), HtmlOptionId::ONMOUSEOVER}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onreset), HtmlOptionId::ONRESET}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onselect), HtmlOptionId::ONSELECT}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onsubmit), HtmlOptionId::ONSUBMIT}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onunload), HtmlOptionId::ONUNLOAD}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onabort), HtmlOptionId::ONABORT}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onerror), HtmlOptionId::ONERROR}, // JavaScript
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_onmouseout), HtmlOptionId::ONMOUSEOUT}, // JavaScript
+
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonblur), HtmlOptionId::SDONBLUR}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonchange), HtmlOptionId::SDONCHANGE}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonclick), HtmlOptionId::SDONCLICK}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonfocus), HtmlOptionId::SDONFOCUS}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonload), HtmlOptionId::SDONLOAD}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonmouseover), HtmlOptionId::SDONMOUSEOVER}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonreset), HtmlOptionId::SDONRESET}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonselect), HtmlOptionId::SDONSELECT}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonsubmit), HtmlOptionId::SDONSUBMIT}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonunload), HtmlOptionId::SDONUNLOAD}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonabort), HtmlOptionId::SDONABORT}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonerror), HtmlOptionId::SDONERROR}, // StarBasic
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_SDonmouseout), HtmlOptionId::SDONMOUSEOUT}, // StarBasic
// Attributes with context sensitive values
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_align), HtmlOptionId::ALIGN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_cols), HtmlOptionId::COLS}, // Netscape 2.0 vs HTML 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_rows), HtmlOptionId::ROWS}, // Netscape 2.0 vs HTML 2.0
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_size), HtmlOptionId::SIZE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_HTML_O_start), HtmlOptionId::START}, // Netscape 2.0 vs IExplorer 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_align), HtmlOptionId::ALIGN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_cols), HtmlOptionId::COLS}, // Netscape 2.0 vs HTML 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_rows), HtmlOptionId::ROWS}, // Netscape 2.0 vs HTML 2.0
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_size), HtmlOptionId::SIZE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_HTML_O_start), HtmlOptionId::START}, // Netscape 2.0 vs IExplorer 2.0
};
HtmlOptionId GetHTMLOption( const OUString& rName )
@@ -653,146 +654,146 @@ static bool bSortColorKeyWords = false;
// "http://www.uio.no/~mnbjerke/colors_w.html")
// "http://www.infi.net/wwwimages/colorindex.html" seem to be buggy.
HTML_ColorEntry const aHTMLColorNameTab[] = {
- { OUStringLiteral("aliceblue"), 0x00f0f8ffUL },
- { OUStringLiteral("antiquewhite"), 0x00faebd7UL },
- { OUStringLiteral("aqua"), 0x0000ffffUL },
- { OUStringLiteral("aquamarine"), 0x007fffd4UL },
- { OUStringLiteral("azure"), 0x00f0ffffUL },
- { OUStringLiteral("beige"), 0x00f5f5dcUL },
- { OUStringLiteral("bisque"), 0x00ffe4c4UL },
- { OUStringLiteral("black"), 0x00000000UL },
- { OUStringLiteral("blanchedalmond"), 0x00ffebcdUL },
- { OUStringLiteral("blue"), 0x000000ffUL },
- { OUStringLiteral("blueviolet"), 0x008a2be2UL },
- { OUStringLiteral("brown"), 0x00a52a2aUL },
- { OUStringLiteral("burlywood"), 0x00deb887UL },
- { OUStringLiteral("cadetblue"), 0x005f9ea0UL },
- { OUStringLiteral("chartreuse"), 0x007fff00UL },
- { OUStringLiteral("chocolate"), 0x00d2691eUL },
- { OUStringLiteral("coral"), 0x00ff7f50UL },
- { OUStringLiteral("cornflowerblue"), 0x006495edUL },
- { OUStringLiteral("cornsilk"), 0x00fff8dcUL },
- { OUStringLiteral("crimson"), 0x00dc143cUL },
- { OUStringLiteral("cyan"), 0x0000ffffUL },
- { OUStringLiteral("darkblue"), 0x0000008bUL },
- { OUStringLiteral("darkcyan"), 0x00008b8bUL },
- { OUStringLiteral("darkgoldenrod"), 0x00b8860bUL },
- { OUStringLiteral("darkgray"), 0x00a9a9a9UL },
- { OUStringLiteral("darkgreen"), 0x00006400UL },
- { OUStringLiteral("darkkhaki"), 0x00bdb76bUL },
- { OUStringLiteral("darkmagenta"), 0x008b008bUL },
- { OUStringLiteral("darkolivegreen"), 0x00556b2fUL },
- { OUStringLiteral("darkorange"), 0x00ff8c00UL },
- { OUStringLiteral("darkorchid"), 0x009932ccUL },
- { OUStringLiteral("darkred"), 0x008b0000UL },
- { OUStringLiteral("darksalmon"), 0x00e9967aUL },
- { OUStringLiteral("darkseagreen"), 0x008fbc8fUL },
- { OUStringLiteral("darkslateblue"), 0x00483d8bUL },
- { OUStringLiteral("darkslategray"), 0x002f4f4fUL },
- { OUStringLiteral("darkturquoise"), 0x0000ced1UL },
- { OUStringLiteral("darkviolet"), 0x009400d3UL },
- { OUStringLiteral("deeppink"), 0x00ff1493UL },
- { OUStringLiteral("deepskyblue"), 0x0000bfffUL },
- { OUStringLiteral("dimgray"), 0x00696969UL },
- { OUStringLiteral("dodgerblue"), 0x001e90ffUL },
- { OUStringLiteral("firebrick"), 0x00b22222UL },
- { OUStringLiteral("floralwhite"), 0x00fffaf0UL },
- { OUStringLiteral("forestgreen"), 0x00228b22UL },
- { OUStringLiteral("fuchsia"), 0x00ff00ffUL },
- { OUStringLiteral("gainsboro"), 0x00dcdcdcUL },
- { OUStringLiteral("ghostwhite"), 0x00f8f8ffUL },
- { OUStringLiteral("gold"), 0x00ffd700UL },
- { OUStringLiteral("goldenrod"), 0x00daa520UL },
- { OUStringLiteral("gray"), 0x00808080UL },
- { OUStringLiteral("green"), 0x00008000UL },
- { OUStringLiteral("greenyellow"), 0x00adff2fUL },
- { OUStringLiteral("honeydew"), 0x00f0fff0UL },
- { OUStringLiteral("hotpink"), 0x00ff69b4UL },
- { OUStringLiteral("indianred"), 0x00cd5c5cUL },
- { OUStringLiteral("indigo"), 0x004b0082UL },
- { OUStringLiteral("ivory"), 0x00fffff0UL },
- { OUStringLiteral("khaki"), 0x00f0e68cUL },
- { OUStringLiteral("lavender"), 0x00e6e6faUL },
- { OUStringLiteral("lavenderblush"), 0x00fff0f5UL },
- { OUStringLiteral("lawngreen"), 0x007cfc00UL },
- { OUStringLiteral("lemonchiffon"), 0x00fffacdUL },
- { OUStringLiteral("lightblue"), 0x00add8e6UL },
- { OUStringLiteral("lightcoral"), 0x00f08080UL },
- { OUStringLiteral("lightcyan"), 0x00e0ffffUL },
- { OUStringLiteral("lightgoldenrodyellow"), 0x00fafad2UL },
- { OUStringLiteral("lightgreen"), 0x0090ee90UL },
- { OUStringLiteral("lightgrey"), 0x00d3d3d3UL },
- { OUStringLiteral("lightpink"), 0x00ffb6c1UL },
- { OUStringLiteral("lightsalmon"), 0x00ffa07aUL },
- { OUStringLiteral("lightseagreen"), 0x0020b2aaUL },
- { OUStringLiteral("lightskyblue"), 0x0087cefaUL },
- { OUStringLiteral("lightslategray"), 0x00778899UL },
- { OUStringLiteral("lightsteelblue"), 0x00b0c4deUL },
- { OUStringLiteral("lightyellow"), 0x00ffffe0UL },
- { OUStringLiteral("lime"), 0x0000ff00UL },
- { OUStringLiteral("limegreen"), 0x0032cd32UL },
- { OUStringLiteral("linen"), 0x00faf0e6UL },
- { OUStringLiteral("magenta"), 0x00ff00ffUL },
- { OUStringLiteral("maroon"), 0x00800000UL },
- { OUStringLiteral("mediumaquamarine"), 0x0066cdaaUL },
- { OUStringLiteral("mediumblue"), 0x000000cdUL },
- { OUStringLiteral("mediumorchid"), 0x00ba55d3UL },
- { OUStringLiteral("mediumpurple"), 0x009370dbUL },
- { OUStringLiteral("mediumseagreen"), 0x003cb371UL },
- { OUStringLiteral("mediumslateblue"), 0x007b68eeUL },
- { OUStringLiteral("mediumspringgreen"), 0x0000fa9aUL },
- { OUStringLiteral("mediumturquoise"), 0x0048d1ccUL },
- { OUStringLiteral("mediumvioletred"), 0x00c71585UL },
- { OUStringLiteral("midnightblue"), 0x00191970UL },
- { OUStringLiteral("mintcream"), 0x00f5fffaUL },
- { OUStringLiteral("mistyrose"), 0x00ffe4e1UL },
- { OUStringLiteral("moccasin"), 0x00ffe4b5UL },
- { OUStringLiteral("navajowhite"), 0x00ffdeadUL },
- { OUStringLiteral("navy"), 0x00000080UL },
- { OUStringLiteral("oldlace"), 0x00fdf5e6UL },
- { OUStringLiteral("olive"), 0x00808000UL },
- { OUStringLiteral("olivedrab"), 0x006b8e23UL },
- { OUStringLiteral("orange"), 0x00ffa500UL },
- { OUStringLiteral("orangered"), 0x00ff4500UL },
- { OUStringLiteral("orchid"), 0x00da70d6UL },
- { OUStringLiteral("palegoldenrod"), 0x00eee8aaUL },
- { OUStringLiteral("palegreen"), 0x0098fb98UL },
- { OUStringLiteral("paleturquoise"), 0x00afeeeeUL },
- { OUStringLiteral("palevioletred"), 0x00db7093UL },
- { OUStringLiteral("papayawhip"), 0x00ffefd5UL },
- { OUStringLiteral("peachpuff"), 0x00ffdab9UL },
- { OUStringLiteral("peru"), 0x00cd853fUL },
- { OUStringLiteral("pink"), 0x00ffc0cbUL },
- { OUStringLiteral("plum"), 0x00dda0ddUL },
- { OUStringLiteral("powderblue"), 0x00b0e0e6UL },
- { OUStringLiteral("purple"), 0x00800080UL },
- { OUStringLiteral("red"), 0x00ff0000UL },
- { OUStringLiteral("rosybrown"), 0x00bc8f8fUL },
- { OUStringLiteral("royalblue"), 0x004169e1UL },
- { OUStringLiteral("saddlebrown"), 0x008b4513UL },
- { OUStringLiteral("salmon"), 0x00fa8072UL },
- { OUStringLiteral("sandybrown"), 0x00f4a460UL },
- { OUStringLiteral("seagreen"), 0x002e8b57UL },
- { OUStringLiteral("seashell"), 0x00fff5eeUL },
- { OUStringLiteral("sienna"), 0x00a0522dUL },
- { OUStringLiteral("silver"), 0x00c0c0c0UL },
- { OUStringLiteral("skyblue"), 0x0087ceebUL },
- { OUStringLiteral("slateblue"), 0x006a5acdUL },
- { OUStringLiteral("slategray"), 0x00708090UL },
- { OUStringLiteral("snow"), 0x00fffafaUL },
- { OUStringLiteral("springgreen"), 0x0000ff7fUL },
- { OUStringLiteral("steelblue"), 0x004682b4UL },
- { OUStringLiteral("tan"), 0x00d2b48cUL },
- { OUStringLiteral("teal"), 0x00008080UL },
- { OUStringLiteral("thistle"), 0x00d8bfd8UL },
- { OUStringLiteral("tomato"), 0x00ff6347UL },
- { OUStringLiteral("turquoise"), 0x0040e0d0UL },
- { OUStringLiteral("violet"), 0x00ee82eeUL },
- { OUStringLiteral("wheat"), 0x00f5deb3UL },
- { OUStringLiteral("white"), 0x00ffffffUL },
- { OUStringLiteral("whitesmoke"), 0x00f5f5f5UL },
- { OUStringLiteral("yellow"), 0x00ffff00UL },
- { OUStringLiteral("yellowgreen"), 0x009acd32UL }
+ { OUStringLiteral(u"aliceblue"), 0x00f0f8ffUL },
+ { OUStringLiteral(u"antiquewhite"), 0x00faebd7UL },
+ { OUStringLiteral(u"aqua"), 0x0000ffffUL },
+ { OUStringLiteral(u"aquamarine"), 0x007fffd4UL },
+ { OUStringLiteral(u"azure"), 0x00f0ffffUL },
+ { OUStringLiteral(u"beige"), 0x00f5f5dcUL },
+ { OUStringLiteral(u"bisque"), 0x00ffe4c4UL },
+ { OUStringLiteral(u"black"), 0x00000000UL },
+ { OUStringLiteral(u"blanchedalmond"), 0x00ffebcdUL },
+ { OUStringLiteral(u"blue"), 0x000000ffUL },
+ { OUStringLiteral(u"blueviolet"), 0x008a2be2UL },
+ { OUStringLiteral(u"brown"), 0x00a52a2aUL },
+ { OUStringLiteral(u"burlywood"), 0x00deb887UL },
+ { OUStringLiteral(u"cadetblue"), 0x005f9ea0UL },
+ { OUStringLiteral(u"chartreuse"), 0x007fff00UL },
+ { OUStringLiteral(u"chocolate"), 0x00d2691eUL },
+ { OUStringLiteral(u"coral"), 0x00ff7f50UL },
+ { OUStringLiteral(u"cornflowerblue"), 0x006495edUL },
+ { OUStringLiteral(u"cornsilk"), 0x00fff8dcUL },
+ { OUStringLiteral(u"crimson"), 0x00dc143cUL },
+ { OUStringLiteral(u"cyan"), 0x0000ffffUL },
+ { OUStringLiteral(u"darkblue"), 0x0000008bUL },
+ { OUStringLiteral(u"darkcyan"), 0x00008b8bUL },
+ { OUStringLiteral(u"darkgoldenrod"), 0x00b8860bUL },
+ { OUStringLiteral(u"darkgray"), 0x00a9a9a9UL },
+ { OUStringLiteral(u"darkgreen"), 0x00006400UL },
+ { OUStringLiteral(u"darkkhaki"), 0x00bdb76bUL },
+ { OUStringLiteral(u"darkmagenta"), 0x008b008bUL },
+ { OUStringLiteral(u"darkolivegreen"), 0x00556b2fUL },
+ { OUStringLiteral(u"darkorange"), 0x00ff8c00UL },
+ { OUStringLiteral(u"darkorchid"), 0x009932ccUL },
+ { OUStringLiteral(u"darkred"), 0x008b0000UL },
+ { OUStringLiteral(u"darksalmon"), 0x00e9967aUL },
+ { OUStringLiteral(u"darkseagreen"), 0x008fbc8fUL },
+ { OUStringLiteral(u"darkslateblue"), 0x00483d8bUL },
+ { OUStringLiteral(u"darkslategray"), 0x002f4f4fUL },
+ { OUStringLiteral(u"darkturquoise"), 0x0000ced1UL },
+ { OUStringLiteral(u"darkviolet"), 0x009400d3UL },
+ { OUStringLiteral(u"deeppink"), 0x00ff1493UL },
+ { OUStringLiteral(u"deepskyblue"), 0x0000bfffUL },
+ { OUStringLiteral(u"dimgray"), 0x00696969UL },
+ { OUStringLiteral(u"dodgerblue"), 0x001e90ffUL },
+ { OUStringLiteral(u"firebrick"), 0x00b22222UL },
+ { OUStringLiteral(u"floralwhite"), 0x00fffaf0UL },
+ { OUStringLiteral(u"forestgreen"), 0x00228b22UL },
+ { OUStringLiteral(u"fuchsia"), 0x00ff00ffUL },
+ { OUStringLiteral(u"gainsboro"), 0x00dcdcdcUL },
+ { OUStringLiteral(u"ghostwhite"), 0x00f8f8ffUL },
+ { OUStringLiteral(u"gold"), 0x00ffd700UL },
+ { OUStringLiteral(u"goldenrod"), 0x00daa520UL },
+ { OUStringLiteral(u"gray"), 0x00808080UL },
+ { OUStringLiteral(u"green"), 0x00008000UL },
+ { OUStringLiteral(u"greenyellow"), 0x00adff2fUL },
+ { OUStringLiteral(u"honeydew"), 0x00f0fff0UL },
+ { OUStringLiteral(u"hotpink"), 0x00ff69b4UL },
+ { OUStringLiteral(u"indianred"), 0x00cd5c5cUL },
+ { OUStringLiteral(u"indigo"), 0x004b0082UL },
+ { OUStringLiteral(u"ivory"), 0x00fffff0UL },
+ { OUStringLiteral(u"khaki"), 0x00f0e68cUL },
+ { OUStringLiteral(u"lavender"), 0x00e6e6faUL },
+ { OUStringLiteral(u"lavenderblush"), 0x00fff0f5UL },
+ { OUStringLiteral(u"lawngreen"), 0x007cfc00UL },
+ { OUStringLiteral(u"lemonchiffon"), 0x00fffacdUL },
+ { OUStringLiteral(u"lightblue"), 0x00add8e6UL },
+ { OUStringLiteral(u"lightcoral"), 0x00f08080UL },
+ { OUStringLiteral(u"lightcyan"), 0x00e0ffffUL },
+ { OUStringLiteral(u"lightgoldenrodyellow"), 0x00fafad2UL },
+ { OUStringLiteral(u"lightgreen"), 0x0090ee90UL },
+ { OUStringLiteral(u"lightgrey"), 0x00d3d3d3UL },
+ { OUStringLiteral(u"lightpink"), 0x00ffb6c1UL },
+ { OUStringLiteral(u"lightsalmon"), 0x00ffa07aUL },
+ { OUStringLiteral(u"lightseagreen"), 0x0020b2aaUL },
+ { OUStringLiteral(u"lightskyblue"), 0x0087cefaUL },
+ { OUStringLiteral(u"lightslategray"), 0x00778899UL },
+ { OUStringLiteral(u"lightsteelblue"), 0x00b0c4deUL },
+ { OUStringLiteral(u"lightyellow"), 0x00ffffe0UL },
+ { OUStringLiteral(u"lime"), 0x0000ff00UL },
+ { OUStringLiteral(u"limegreen"), 0x0032cd32UL },
+ { OUStringLiteral(u"linen"), 0x00faf0e6UL },
+ { OUStringLiteral(u"magenta"), 0x00ff00ffUL },
+ { OUStringLiteral(u"maroon"), 0x00800000UL },
+ { OUStringLiteral(u"mediumaquamarine"), 0x0066cdaaUL },
+ { OUStringLiteral(u"mediumblue"), 0x000000cdUL },
+ { OUStringLiteral(u"mediumorchid"), 0x00ba55d3UL },
+ { OUStringLiteral(u"mediumpurple"), 0x009370dbUL },
+ { OUStringLiteral(u"mediumseagreen"), 0x003cb371UL },
+ { OUStringLiteral(u"mediumslateblue"), 0x007b68eeUL },
+ { OUStringLiteral(u"mediumspringgreen"), 0x0000fa9aUL },
+ { OUStringLiteral(u"mediumturquoise"), 0x0048d1ccUL },
+ { OUStringLiteral(u"mediumvioletred"), 0x00c71585UL },
+ { OUStringLiteral(u"midnightblue"), 0x00191970UL },
+ { OUStringLiteral(u"mintcream"), 0x00f5fffaUL },
+ { OUStringLiteral(u"mistyrose"), 0x00ffe4e1UL },
+ { OUStringLiteral(u"moccasin"), 0x00ffe4b5UL },
+ { OUStringLiteral(u"navajowhite"), 0x00ffdeadUL },
+ { OUStringLiteral(u"navy"), 0x00000080UL },
+ { OUStringLiteral(u"oldlace"), 0x00fdf5e6UL },
+ { OUStringLiteral(u"olive"), 0x00808000UL },
+ { OUStringLiteral(u"olivedrab"), 0x006b8e23UL },
+ { OUStringLiteral(u"orange"), 0x00ffa500UL },
+ { OUStringLiteral(u"orangered"), 0x00ff4500UL },
+ { OUStringLiteral(u"orchid"), 0x00da70d6UL },
+ { OUStringLiteral(u"palegoldenrod"), 0x00eee8aaUL },
+ { OUStringLiteral(u"palegreen"), 0x0098fb98UL },
+ { OUStringLiteral(u"paleturquoise"), 0x00afeeeeUL },
+ { OUStringLiteral(u"palevioletred"), 0x00db7093UL },
+ { OUStringLiteral(u"papayawhip"), 0x00ffefd5UL },
+ { OUStringLiteral(u"peachpuff"), 0x00ffdab9UL },
+ { OUStringLiteral(u"peru"), 0x00cd853fUL },
+ { OUStringLiteral(u"pink"), 0x00ffc0cbUL },
+ { OUStringLiteral(u"plum"), 0x00dda0ddUL },
+ { OUStringLiteral(u"powderblue"), 0x00b0e0e6UL },
+ { OUStringLiteral(u"purple"), 0x00800080UL },
+ { OUStringLiteral(u"red"), 0x00ff0000UL },
+ { OUStringLiteral(u"rosybrown"), 0x00bc8f8fUL },
+ { OUStringLiteral(u"royalblue"), 0x004169e1UL },
+ { OUStringLiteral(u"saddlebrown"), 0x008b4513UL },
+ { OUStringLiteral(u"salmon"), 0x00fa8072UL },
+ { OUStringLiteral(u"sandybrown"), 0x00f4a460UL },
+ { OUStringLiteral(u"seagreen"), 0x002e8b57UL },
+ { OUStringLiteral(u"seashell"), 0x00fff5eeUL },
+ { OUStringLiteral(u"sienna"), 0x00a0522dUL },
+ { OUStringLiteral(u"silver"), 0x00c0c0c0UL },
+ { OUStringLiteral(u"skyblue"), 0x0087ceebUL },
+ { OUStringLiteral(u"slateblue"), 0x006a5acdUL },
+ { OUStringLiteral(u"slategray"), 0x00708090UL },
+ { OUStringLiteral(u"snow"), 0x00fffafaUL },
+ { OUStringLiteral(u"springgreen"), 0x0000ff7fUL },
+ { OUStringLiteral(u"steelblue"), 0x004682b4UL },
+ { OUStringLiteral(u"tan"), 0x00d2b48cUL },
+ { OUStringLiteral(u"teal"), 0x00008080UL },
+ { OUStringLiteral(u"thistle"), 0x00d8bfd8UL },
+ { OUStringLiteral(u"tomato"), 0x00ff6347UL },
+ { OUStringLiteral(u"turquoise"), 0x0040e0d0UL },
+ { OUStringLiteral(u"violet"), 0x00ee82eeUL },
+ { OUStringLiteral(u"wheat"), 0x00f5deb3UL },
+ { OUStringLiteral(u"white"), 0x00ffffffUL },
+ { OUStringLiteral(u"whitesmoke"), 0x00f5f5f5UL },
+ { OUStringLiteral(u"yellow"), 0x00ffff00UL },
+ { OUStringLiteral(u"yellowgreen"), 0x009acd32UL }
};
sal_uInt32 GetHTMLColor( const OUString& rName )
diff --git a/svtools/source/svrtf/rtfkeywd.cxx b/svtools/source/svrtf/rtfkeywd.cxx
index 410aa5d3791c..216bc59512da 100644
--- a/svtools/source/svrtf/rtfkeywd.cxx
+++ b/svtools/source/svrtf/rtfkeywd.cxx
@@ -22,7 +22,7 @@
#include <svtools/rtftoken.h>
#include <algorithm>
-#include <string.h>
+#include <string_view>
namespace {
@@ -39,1139 +39,1139 @@ struct RTF_TokenEntry
static bool bSortKeyWords = false;
static RTF_TokenEntry aRTFTokenTab[] = {
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_IGNORE), RTF_IGNOREFLAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTF), RTF_RTF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ANSI), RTF_ANSITYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MAC), RTF_MACTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PC), RTF_PCTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PCA), RTF_PCATYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NEXTCSET), RTF_NEXTTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_STYLESHEET), RTF_STYLESHEET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBASEDON), RTF_SBASEDON},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SNEXT), RTF_SNEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FONTTBL), RTF_FONTTBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DEFF), RTF_DEFF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FNIL), RTF_FNIL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FROMAN), RTF_FROMAN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FSWISS), RTF_FSWISS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FMODERN), RTF_FMODERN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FSCRIPT), RTF_FSCRIPT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FDECOR), RTF_FDECOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTECH), RTF_FTECH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FCHARSET), RTF_FCHARSET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FALT), RTF_FALT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FPRQ), RTF_FPRQ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLORTBL), RTF_COLORTBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RED), RTF_RED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GREEN), RTF_GREEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BLUE), RTF_BLUE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CF), RTF_CF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CB), RTF_CB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_INFO), RTF_INFO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TITLE), RTF_TITLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUBJECT), RTF_SUBJECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AUTHOR), RTF_AUTHOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OPERATOR), RTF_OPERATOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_KEYWORDS), RTF_KEYWORDS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COMMENT), RTF_COMMENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERSION), RTF_VERSION},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOCCOMM), RTF_DOCCOMM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERN), RTF_VERN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CREATIM), RTF_CREATIM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVTIM), RTF_REVTIM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PRINTIM), RTF_PRINTIM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BUPTIM), RTF_BUPTIM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EDMINS), RTF_EDMINS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOFPAGES), RTF_NOFPAGES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOFWORDS), RTF_NOFWORDS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOFCHARS), RTF_NOFCHARS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ID), RTF_ID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_YR), RTF_YR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MO), RTF_MO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DY), RTF_DY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HR), RTF_HR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MIN), RTF_MIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ANNOTATION), RTF_ANNOTATION},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATNID), RTF_ATNID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTNOTE), RTF_FOOTNOTE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTER), RTF_FOOTER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERL), RTF_FOOTERL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERR), RTF_FOOTERR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERF), RTF_FOOTERF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADER), RTF_HEADER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERL), RTF_HEADERL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERR), RTF_HEADERR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERF), RTF_HEADERF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_XE), RTF_XE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BXE), RTF_BXE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_IXE), RTF_IXE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RXE), RTF_RXE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TXE), RTF_TXE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TC), RTF_TC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TCF), RTF_TCF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TCL), RTF_TCL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKSTART), RTF_BKMKSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKEND), RTF_BKMKEND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICT), RTF_PICT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICW), RTF_PICW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICH), RTF_PICH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WBMBITSPIXEL), RTF_WBMBITSPIXEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WBMPLANES), RTF_WBMPLANES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WBMWIDTHBYTES), RTF_WBMWIDTHBYTES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICWGOAL), RTF_PICWGOAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICHGOAL), RTF_PICHGOAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BIN), RTF_BIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICSCALEX), RTF_PICSCALEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICSCALEY), RTF_PICSCALEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICSCALED), RTF_PICSCALED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WBITMAP), RTF_WBITMAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WMETAFILE), RTF_WMETAFILE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MACPICT), RTF_MACPICT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICCROPT), RTF_PICCROPT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICCROPB), RTF_PICCROPB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICCROPL), RTF_PICCROPL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICCROPR), RTF_PICCROPR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FIELD), RTF_FIELD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDDIRTY), RTF_FLDDIRTY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDEDIT), RTF_FLDEDIT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDLOCK), RTF_FLDLOCK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDPRIV), RTF_FLDPRIV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDINST), RTF_FLDINST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDRSLT), RTF_FLDRSLT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PAPERW), RTF_PAPERW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PAPERH), RTF_PAPERH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGL), RTF_MARGL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGR), RTF_MARGR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGT), RTF_MARGT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGB), RTF_MARGB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FACINGP), RTF_FACINGP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GUTTER), RTF_GUTTER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DEFTAB), RTF_DEFTAB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WIDOWCTRL), RTF_WIDOWCTRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHHOTZ), RTF_HYPHHOTZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNSEP), RTF_FTNSEP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNSEPC), RTF_FTNSEPC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNCN), RTF_FTNCN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ENDNOTES), RTF_ENDNOTES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ENDDOC), RTF_ENDDOC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNTJ), RTF_FTNTJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNBJ), RTF_FTNBJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNSTART), RTF_FTNSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNRESTART), RTF_FTNRESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNSTART), RTF_PGNSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINESTART), RTF_LINESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LANDSCAPE), RTF_LANDSCAPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRACWIDTH), RTF_FRACWIDTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NEXTFILE), RTF_NEXTFILE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TEMPLATE), RTF_TEMPLATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MAKEBACKUP), RTF_MAKEBACKUP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DEFFORMAT), RTF_DEFFORMAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVISIONS), RTF_REVISIONS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGMIRROR), RTF_MARGMIRROR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVPROP), RTF_REVPROP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVBAR), RTF_REVBAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTD), RTF_SECTD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBKNONE), RTF_SBKNONE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBKCOL), RTF_SBKCOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBKPAGE), RTF_SBKPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBKEVEN), RTF_SBKEVEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBKODD), RTF_SBKODD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNSTARTS), RTF_PGNSTARTS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNCONT), RTF_PGNCONT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNRESTART), RTF_PGNRESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNDEC), RTF_PGNDEC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNUCRM), RTF_PGNUCRM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNLCRM), RTF_PGNLCRM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNUCLTR), RTF_PGNUCLTR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNLCLTR), RTF_PGNLCLTR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNX), RTF_PGNX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNY), RTF_PGNY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERY), RTF_HEADERY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERY), RTF_FOOTERY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINEMOD), RTF_LINEMOD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINEX), RTF_LINEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINESTARTS), RTF_LINESTARTS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINERESTART), RTF_LINERESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINEPPAGE), RTF_LINEPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINECONT), RTF_LINECONT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERTALT), RTF_VERTALT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERTALB), RTF_VERTALB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERTALC), RTF_VERTALC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VERTALJ), RTF_VERTALJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLS), RTF_COLS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLSX), RTF_COLSX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLNO), RTF_COLNO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLSR), RTF_COLSR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLW), RTF_COLW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINEBETCOL), RTF_LINEBETCOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ENDNHERE), RTF_ENDNHERE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TITLEPG), RTF_TITLEPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PARD), RTF_PARD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_S), RTF_S},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_QL), RTF_QL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_QR), RTF_QR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_QJ), RTF_QJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_QC), RTF_QC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FI), RTF_FI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LI), RTF_LI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LIN), RTF_LIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RI), RTF_RI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RIN), RTF_RIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SB), RTF_SB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SA), RTF_SA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SL), RTF_SL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_INTBL), RTF_INTBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_KEEP), RTF_KEEP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_KEEPN), RTF_KEEPN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVEL), RTF_LEVEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SBYS), RTF_SBYS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PAGEBB), RTF_PAGEBB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOLINE), RTF_NOLINE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TX), RTF_TX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TQL), RTF_TQL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TQR), RTF_TQR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TQC), RTF_TQC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TQDEC), RTF_TQDEC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TB), RTF_TB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRT), RTF_BRDRT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRB), RTF_BRDRB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRL), RTF_BRDRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRR), RTF_BRDRR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BOX), RTF_BOX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRS), RTF_BRDRS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTH), RTF_BRDRTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRSH), RTF_BRDRSH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDB), RTF_BRDRDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDOT), RTF_BRDRDOT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRHAIR), RTF_BRDRHAIR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRSP), RTF_BRSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLDOT), RTF_TLDOT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLHYPH), RTF_TLHYPH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLUL), RTF_TLUL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLTH), RTF_TLTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSX), RTF_POSX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSXC), RTF_POSXC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSXI), RTF_POSXI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSXL), RTF_POSXL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSXO), RTF_POSXO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSXR), RTF_POSXR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSY), RTF_POSY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYIL), RTF_POSYIL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYT), RTF_POSYT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYC), RTF_POSYC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYB), RTF_POSYB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ABSW), RTF_ABSW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DXFRTEXT), RTF_DXFRTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PVMRG), RTF_PVMRG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PVPG), RTF_PVPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PHMRG), RTF_PHMRG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PHPG), RTF_PHPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PHCOL), RTF_PHCOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBRDRB), RTF_CLBRDRB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBRDRT), RTF_CLBRDRT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBRDRL), RTF_CLBRDRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBRDRR), RTF_CLBRDRR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADL), RTF_CLPADL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADT), RTF_CLPADT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADB), RTF_CLPADB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADR), RTF_CLPADR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADFL), RTF_CLPADFL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADFT), RTF_CLPADFT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADFB), RTF_CLPADFB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLPADFR), RTF_CLPADFR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TROWD), RTF_TROWD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRQL), RTF_TRQL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRQR), RTF_TRQR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRQC), RTF_TRQC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRGAPH), RTF_TRGAPH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRRH), RTF_TRRH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRLEFT), RTF_TRLEFT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CELLX), RTF_CELLX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLMGF), RTF_CLMGF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLMRG), RTF_CLMRG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PLAIN), RTF_PLAIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_B), RTF_B},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_I), RTF_I},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_STRIKE), RTF_STRIKE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OUTL), RTF_OUTL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHAD), RTF_SHAD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SCAPS), RTF_SCAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CAPS), RTF_CAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_V), RTF_V},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_F), RTF_F},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FS), RTF_FS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EXPND), RTF_EXPND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EXPNDTW), RTF_EXPNDTW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_KERNING), RTF_KERNING},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UL), RTF_UL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULW), RTF_ULW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULD), RTF_ULD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULDB), RTF_ULDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULNONE), RTF_ULNONE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UP), RTF_UP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DN), RTF_DN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVISED), RTF_REVISED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUB), RTF_SUB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOSUPERSUB), RTF_NOSUPERSUB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUPER), RTF_SUPER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHDATE), RTF_CHDATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHTIME), RTF_CHTIME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHPGN), RTF_CHPGN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHFTN), RTF_CHFTN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHATN), RTF_CHATN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHFTNSEP), RTF_CHFTNSEP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHFTNSEPC), RTF_CHFTNSEPC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FORMULA), RTF_FORMULA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOBREAK), RTF_NONBREAKINGSPACE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OPTHYPH), RTF_OPTIONALHYPHEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOBRKHYPH), RTF_NONBREAKINGHYPHEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEXCHAR), RTF_HEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CELL), RTF_CELL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ROW), RTF_ROW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PAR), RTF_PAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECT), RTF_SECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PAGE), RTF_PAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COLUMN), RTF_COLUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINE), RTF_LINE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TAB), RTF_TAB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUBENTRY), RTF_SUBENTRYINDEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_IGNORE), RTF_IGNOREFLAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTF), RTF_RTF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ANSI), RTF_ANSITYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MAC), RTF_MACTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PC), RTF_PCTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PCA), RTF_PCATYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NEXTCSET), RTF_NEXTTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_STYLESHEET), RTF_STYLESHEET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBASEDON), RTF_SBASEDON},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SNEXT), RTF_SNEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FONTTBL), RTF_FONTTBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DEFF), RTF_DEFF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FNIL), RTF_FNIL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FROMAN), RTF_FROMAN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FSWISS), RTF_FSWISS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FMODERN), RTF_FMODERN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FSCRIPT), RTF_FSCRIPT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FDECOR), RTF_FDECOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTECH), RTF_FTECH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FCHARSET), RTF_FCHARSET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FALT), RTF_FALT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FPRQ), RTF_FPRQ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLORTBL), RTF_COLORTBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RED), RTF_RED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GREEN), RTF_GREEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BLUE), RTF_BLUE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CF), RTF_CF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CB), RTF_CB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_INFO), RTF_INFO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TITLE), RTF_TITLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUBJECT), RTF_SUBJECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AUTHOR), RTF_AUTHOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OPERATOR), RTF_OPERATOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_KEYWORDS), RTF_KEYWORDS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COMMENT), RTF_COMMENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERSION), RTF_VERSION},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOCCOMM), RTF_DOCCOMM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERN), RTF_VERN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CREATIM), RTF_CREATIM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVTIM), RTF_REVTIM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PRINTIM), RTF_PRINTIM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BUPTIM), RTF_BUPTIM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EDMINS), RTF_EDMINS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOFPAGES), RTF_NOFPAGES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOFWORDS), RTF_NOFWORDS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOFCHARS), RTF_NOFCHARS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ID), RTF_ID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_YR), RTF_YR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MO), RTF_MO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DY), RTF_DY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HR), RTF_HR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MIN), RTF_MIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ANNOTATION), RTF_ANNOTATION},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATNID), RTF_ATNID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTNOTE), RTF_FOOTNOTE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTER), RTF_FOOTER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERL), RTF_FOOTERL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERR), RTF_FOOTERR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERF), RTF_FOOTERF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADER), RTF_HEADER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERL), RTF_HEADERL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERR), RTF_HEADERR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERF), RTF_HEADERF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_XE), RTF_XE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BXE), RTF_BXE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_IXE), RTF_IXE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RXE), RTF_RXE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TXE), RTF_TXE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TC), RTF_TC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TCF), RTF_TCF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TCL), RTF_TCL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKSTART), RTF_BKMKSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKEND), RTF_BKMKEND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICT), RTF_PICT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICW), RTF_PICW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICH), RTF_PICH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WBMBITSPIXEL), RTF_WBMBITSPIXEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WBMPLANES), RTF_WBMPLANES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WBMWIDTHBYTES), RTF_WBMWIDTHBYTES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICWGOAL), RTF_PICWGOAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICHGOAL), RTF_PICHGOAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BIN), RTF_BIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICSCALEX), RTF_PICSCALEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICSCALEY), RTF_PICSCALEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICSCALED), RTF_PICSCALED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WBITMAP), RTF_WBITMAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WMETAFILE), RTF_WMETAFILE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MACPICT), RTF_MACPICT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICCROPT), RTF_PICCROPT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICCROPB), RTF_PICCROPB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICCROPL), RTF_PICCROPL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICCROPR), RTF_PICCROPR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FIELD), RTF_FIELD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDDIRTY), RTF_FLDDIRTY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDEDIT), RTF_FLDEDIT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDLOCK), RTF_FLDLOCK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDPRIV), RTF_FLDPRIV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDINST), RTF_FLDINST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDRSLT), RTF_FLDRSLT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PAPERW), RTF_PAPERW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PAPERH), RTF_PAPERH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGL), RTF_MARGL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGR), RTF_MARGR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGT), RTF_MARGT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGB), RTF_MARGB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FACINGP), RTF_FACINGP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GUTTER), RTF_GUTTER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DEFTAB), RTF_DEFTAB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WIDOWCTRL), RTF_WIDOWCTRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHHOTZ), RTF_HYPHHOTZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNSEP), RTF_FTNSEP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNSEPC), RTF_FTNSEPC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNCN), RTF_FTNCN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ENDNOTES), RTF_ENDNOTES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ENDDOC), RTF_ENDDOC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNTJ), RTF_FTNTJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNBJ), RTF_FTNBJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNSTART), RTF_FTNSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNRESTART), RTF_FTNRESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNSTART), RTF_PGNSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINESTART), RTF_LINESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LANDSCAPE), RTF_LANDSCAPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRACWIDTH), RTF_FRACWIDTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NEXTFILE), RTF_NEXTFILE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TEMPLATE), RTF_TEMPLATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MAKEBACKUP), RTF_MAKEBACKUP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DEFFORMAT), RTF_DEFFORMAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVISIONS), RTF_REVISIONS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGMIRROR), RTF_MARGMIRROR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVPROP), RTF_REVPROP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVBAR), RTF_REVBAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTD), RTF_SECTD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBKNONE), RTF_SBKNONE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBKCOL), RTF_SBKCOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBKPAGE), RTF_SBKPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBKEVEN), RTF_SBKEVEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBKODD), RTF_SBKODD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNSTARTS), RTF_PGNSTARTS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNCONT), RTF_PGNCONT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNRESTART), RTF_PGNRESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNDEC), RTF_PGNDEC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNUCRM), RTF_PGNUCRM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNLCRM), RTF_PGNLCRM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNUCLTR), RTF_PGNUCLTR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNLCLTR), RTF_PGNLCLTR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNX), RTF_PGNX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNY), RTF_PGNY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERY), RTF_HEADERY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERY), RTF_FOOTERY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINEMOD), RTF_LINEMOD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINEX), RTF_LINEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINESTARTS), RTF_LINESTARTS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINERESTART), RTF_LINERESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINEPPAGE), RTF_LINEPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINECONT), RTF_LINECONT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERTALT), RTF_VERTALT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERTALB), RTF_VERTALB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERTALC), RTF_VERTALC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VERTALJ), RTF_VERTALJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLS), RTF_COLS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLSX), RTF_COLSX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLNO), RTF_COLNO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLSR), RTF_COLSR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLW), RTF_COLW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINEBETCOL), RTF_LINEBETCOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ENDNHERE), RTF_ENDNHERE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TITLEPG), RTF_TITLEPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PARD), RTF_PARD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_S), RTF_S},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_QL), RTF_QL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_QR), RTF_QR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_QJ), RTF_QJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_QC), RTF_QC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FI), RTF_FI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LI), RTF_LI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LIN), RTF_LIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RI), RTF_RI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RIN), RTF_RIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SB), RTF_SB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SA), RTF_SA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SL), RTF_SL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_INTBL), RTF_INTBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_KEEP), RTF_KEEP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_KEEPN), RTF_KEEPN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVEL), RTF_LEVEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SBYS), RTF_SBYS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PAGEBB), RTF_PAGEBB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOLINE), RTF_NOLINE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TX), RTF_TX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TQL), RTF_TQL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TQR), RTF_TQR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TQC), RTF_TQC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TQDEC), RTF_TQDEC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TB), RTF_TB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRT), RTF_BRDRT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRB), RTF_BRDRB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRL), RTF_BRDRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRR), RTF_BRDRR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BOX), RTF_BOX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRS), RTF_BRDRS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTH), RTF_BRDRTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRSH), RTF_BRDRSH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDB), RTF_BRDRDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDOT), RTF_BRDRDOT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRHAIR), RTF_BRDRHAIR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRSP), RTF_BRSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLDOT), RTF_TLDOT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLHYPH), RTF_TLHYPH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLUL), RTF_TLUL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLTH), RTF_TLTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSX), RTF_POSX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSXC), RTF_POSXC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSXI), RTF_POSXI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSXL), RTF_POSXL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSXO), RTF_POSXO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSXR), RTF_POSXR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSY), RTF_POSY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYIL), RTF_POSYIL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYT), RTF_POSYT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYC), RTF_POSYC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYB), RTF_POSYB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ABSW), RTF_ABSW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DXFRTEXT), RTF_DXFRTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PVMRG), RTF_PVMRG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PVPG), RTF_PVPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PHMRG), RTF_PHMRG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PHPG), RTF_PHPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PHCOL), RTF_PHCOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRB), RTF_CLBRDRB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRT), RTF_CLBRDRT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRL), RTF_CLBRDRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRR), RTF_CLBRDRR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADL), RTF_CLPADL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADT), RTF_CLPADT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADB), RTF_CLPADB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADR), RTF_CLPADR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADFL), RTF_CLPADFL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADFT), RTF_CLPADFT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADFB), RTF_CLPADFB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLPADFR), RTF_CLPADFR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TROWD), RTF_TROWD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRQL), RTF_TRQL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRQR), RTF_TRQR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRQC), RTF_TRQC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRGAPH), RTF_TRGAPH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRRH), RTF_TRRH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRLEFT), RTF_TRLEFT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CELLX), RTF_CELLX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLMGF), RTF_CLMGF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLMRG), RTF_CLMRG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PLAIN), RTF_PLAIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_B), RTF_B},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_I), RTF_I},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_STRIKE), RTF_STRIKE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OUTL), RTF_OUTL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHAD), RTF_SHAD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SCAPS), RTF_SCAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CAPS), RTF_CAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_V), RTF_V},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_F), RTF_F},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FS), RTF_FS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EXPND), RTF_EXPND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EXPNDTW), RTF_EXPNDTW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_KERNING), RTF_KERNING},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UL), RTF_UL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULW), RTF_ULW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULD), RTF_ULD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULDB), RTF_ULDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULNONE), RTF_ULNONE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UP), RTF_UP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DN), RTF_DN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVISED), RTF_REVISED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUB), RTF_SUB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOSUPERSUB), RTF_NOSUPERSUB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUPER), RTF_SUPER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHDATE), RTF_CHDATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHTIME), RTF_CHTIME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHPGN), RTF_CHPGN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHFTN), RTF_CHFTN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHATN), RTF_CHATN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHFTNSEP), RTF_CHFTNSEP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHFTNSEPC), RTF_CHFTNSEPC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FORMULA), RTF_FORMULA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOBREAK), RTF_NONBREAKINGSPACE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OPTHYPH), RTF_OPTIONALHYPHEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOBRKHYPH), RTF_NONBREAKINGHYPHEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEXCHAR), RTF_HEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CELL), RTF_CELL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ROW), RTF_ROW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PAR), RTF_PAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECT), RTF_SECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PAGE), RTF_PAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COLUMN), RTF_COLUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINE), RTF_LINE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TAB), RTF_TAB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUBENTRY), RTF_SUBENTRYINDEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DEFLANG), RTF_DEFLANG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LANG), RTF_LANG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PMMETAFILE), RTF_OSMETAFILE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DIBITMAP), RTF_DIBITMAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_KEYCODE), RTF_KEYCODE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FN), RTF_FNKEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ALT), RTF_ALTKEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHIFT), RTF_SHIFTKEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CTRL), RTF_CTRLKEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHDPL), RTF_CHDATEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHDPA), RTF_CHDATEA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EMDASH), RTF_EMDASH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ENDASH), RTF_ENDASH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BULLET), RTF_BULLET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LQUOTE), RTF_LQUOTE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RQUOTE), RTF_RQUOTE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LDBLQUOTE), RTF_LDBLQUOTE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RDBLQUOTE), RTF_RDBLQUOTE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DEFLANG), RTF_DEFLANG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LANG), RTF_LANG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PMMETAFILE), RTF_OSMETAFILE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DIBITMAP), RTF_DIBITMAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_KEYCODE), RTF_KEYCODE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FN), RTF_FNKEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ALT), RTF_ALTKEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHIFT), RTF_SHIFTKEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CTRL), RTF_CTRLKEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHDPL), RTF_CHDATEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHDPA), RTF_CHDATEA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EMDASH), RTF_EMDASH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ENDASH), RTF_ENDASH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BULLET), RTF_BULLET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LQUOTE), RTF_LQUOTE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RQUOTE), RTF_RQUOTE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LDBLQUOTE), RTF_LDBLQUOTE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RDBLQUOTE), RTF_RDBLQUOTE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKCOLF), RTF_BKMKCOLF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKCOLL), RTF_BKMKCOLL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PSOVER), RTF_PSOVER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOCTEMP), RTF_DOCTEMP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BINFSXN), RTF_BINFSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BINSXN), RTF_BINSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGWSXN), RTF_PGWSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGHSXN), RTF_PGHSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGLSXN), RTF_MARGLSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGRSXN), RTF_MARGRSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGTSXN), RTF_MARGTSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MARGBSXN), RTF_MARGBSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GUTTERSXN), RTF_GUTTERSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LNDSCPSXN), RTF_LNDSCPSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FACPGSXN), RTF_FACPGSXN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLEQ), RTF_TLEQ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRBTW), RTF_BRDRBTW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRBAR), RTF_BRDRBAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRW), RTF_BRDRW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRCF), RTF_BRDRCF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ABSH), RTF_ABSH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PVPARA), RTF_PVPARA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOWRAP), RTF_NOWRAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTX), RTF_DFRMTXTX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTY), RTF_DFRMTXTY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DROPCAPLI), RTF_DROPCAPLI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DROPCAPT), RTF_DROPCAPT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ABSNOOVRLP), RTF_ABSNOOVRLP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSNEGX), RTF_POSNEGX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSNEGY), RTF_POSNEGY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DELETED), RTF_DELETED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKCOLF), RTF_BKMKCOLF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKCOLL), RTF_BKMKCOLL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PSOVER), RTF_PSOVER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOCTEMP), RTF_DOCTEMP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BINFSXN), RTF_BINFSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BINSXN), RTF_BINSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGWSXN), RTF_PGWSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGHSXN), RTF_PGHSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGLSXN), RTF_MARGLSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGRSXN), RTF_MARGRSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGTSXN), RTF_MARGTSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MARGBSXN), RTF_MARGBSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GUTTERSXN), RTF_GUTTERSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LNDSCPSXN), RTF_LNDSCPSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FACPGSXN), RTF_FACPGSXN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLEQ), RTF_TLEQ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRBTW), RTF_BRDRBTW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRBAR), RTF_BRDRBAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRW), RTF_BRDRW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRCF), RTF_BRDRCF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ABSH), RTF_ABSH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PVPARA), RTF_PVPARA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOWRAP), RTF_NOWRAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTX), RTF_DFRMTXTX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTY), RTF_DFRMTXTY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DROPCAPLI), RTF_DROPCAPLI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DROPCAPT), RTF_DROPCAPT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ABSNOOVRLP), RTF_ABSNOOVRLP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSNEGX), RTF_POSNEGX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSNEGY), RTF_POSNEGY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DELETED), RTF_DELETED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHADING), RTF_SHADING},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGHORIZ), RTF_BGHORIZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGVERT), RTF_BGVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGFDIAG), RTF_BGFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGBDIAG), RTF_BGBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGCROSS), RTF_BGCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDCROSS), RTF_BGDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKHORIZ), RTF_BGDKHORIZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKVERT), RTF_BGDKVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKFDIAG), RTF_BGDKFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKBDIAG), RTF_BGDKBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKCROSS), RTF_BGDKCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BGDKDCROSS), RTF_BGDKDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CFPAT), RTF_CFPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CBPAT), RTF_CBPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHADING), RTF_SHADING},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGHORIZ), RTF_BGHORIZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGVERT), RTF_BGVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGFDIAG), RTF_BGFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGBDIAG), RTF_BGBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGCROSS), RTF_BGCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDCROSS), RTF_BGDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKHORIZ), RTF_BGDKHORIZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKVERT), RTF_BGDKVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKFDIAG), RTF_BGDKFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKBDIAG), RTF_BGDKBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKCROSS), RTF_BGDKCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BGDKDCROSS), RTF_BGDKDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CFPAT), RTF_CFPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CBPAT), RTF_CBPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLSHDNG), RTF_CLSHDNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGHORIZ), RTF_CLBGHORIZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGVERT), RTF_CLBGVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGFDIAG), RTF_CLBGFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGBDIAG), RTF_CLBGBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGCROSS), RTF_CLBGCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDCROSS), RTF_CLBGDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKHOR), RTF_CLBGDKHOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKVERT), RTF_CLBGDKVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKFDIAG), RTF_CLBGDKFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKBDIAG), RTF_CLBGDKBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKCROSS), RTF_CLBGDKCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLBGDKDCROSS), RTF_CLBGDKDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLCFPAT), RTF_CLCFPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLCBPAT), RTF_CLCBPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLSHDNG), RTF_CLSHDNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGHORIZ), RTF_CLBGHORIZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGVERT), RTF_CLBGVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGFDIAG), RTF_CLBGFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGBDIAG), RTF_CLBGBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGCROSS), RTF_CLBGCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDCROSS), RTF_CLBGDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKHOR), RTF_CLBGDKHOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKVERT), RTF_CLBGDKVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKFDIAG), RTF_CLBGDKFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKBDIAG), RTF_CLBGDKBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKCROSS), RTF_CLBGDKCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKDCROSS), RTF_CLBGDKDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLCFPAT), RTF_CLCFPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLCBPAT), RTF_CLCBPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AB), RTF_AB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ACAPS), RTF_ACAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ACF), RTF_ACF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ADDITIVE), RTF_ADDITIVE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ADN), RTF_ADN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AENDDOC), RTF_AENDDOC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AENDNOTES), RTF_AENDNOTES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AEXPND), RTF_AEXPND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AF), RTF_AF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFS), RTF_AFS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNBJ), RTF_AFTNBJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNCN), RTF_AFTNCN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNALC), RTF_AFTNNALC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNAR), RTF_AFTNNAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNAUC), RTF_AFTNNAUC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNCHI), RTF_AFTNNCHI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNRLC), RTF_AFTNNRLC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNRUC), RTF_AFTNNRUC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNRESTART), RTF_AFTNRESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNRSTCONT), RTF_AFTNRSTCONT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNSEP), RTF_AFTNSEP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNSEPC), RTF_AFTNSEPC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNSTART), RTF_AFTNSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNTJ), RTF_AFTNTJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AI), RTF_AI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ALANG), RTF_ALANG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ALLPROT), RTF_ALLPROT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ANNOTPROT), RTF_ANNOTPROT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AOUTL), RTF_AOUTL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ASCAPS), RTF_ASCAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ASHAD), RTF_ASHAD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ASTRIKE), RTF_ASTRIKE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATNAUTHOR), RTF_ATNAUTHOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATNICN), RTF_ATNICN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATNREF), RTF_ATNREF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATNTIME), RTF_ATNTIME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATRFEND), RTF_ATRFEND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ATRFSTART), RTF_ATRFSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AUL), RTF_AUL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AULD), RTF_AULD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AULDB), RTF_AULDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AULNONE), RTF_AULNONE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AULW), RTF_AULW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AUP), RTF_AUP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKPUB), RTF_BKMKPUB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDASH), RTF_BRDRDASH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRKFRM), RTF_BRKFRM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CCHS), RTF_CCHS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CPG), RTF_CPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CS), RTF_CS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CVMME), RTF_CVMME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DATAFIELD), RTF_DATAFIELD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DO), RTF_DO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBXCOLUMN), RTF_DOBXCOLUMN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBXMARGIN), RTF_DOBXMARGIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBXPAGE), RTF_DOBXPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBYMARGIN), RTF_DOBYMARGIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBYPAGE), RTF_DOBYPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOBYPARA), RTF_DOBYPARA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DODHGT), RTF_DODHGT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOLOCK), RTF_DOLOCK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPAENDHOL), RTF_DPAENDHOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPAENDL), RTF_DPAENDL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPAENDSOL), RTF_DPAENDSOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPAENDW), RTF_DPAENDW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPARC), RTF_DPARC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPARCFLIPX), RTF_DPARCFLIPX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPARCFLIPY), RTF_DPARCFLIPY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPASTARTHOL), RTF_DPASTARTHOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPASTARTL), RTF_DPASTARTL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPASTARTSOL), RTF_DPASTARTSOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPASTARTW), RTF_DPASTARTW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCALLOUT), RTF_DPCALLOUT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOA), RTF_DPCOA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOACCENT), RTF_DPCOACCENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOBESTFIT), RTF_DPCOBESTFIT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOBORDER), RTF_DPCOBORDER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCODABS), RTF_DPCODABS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCODBOTTOM), RTF_DPCODBOTTOM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCODCENTER), RTF_DPCODCENTER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCODTOP), RTF_DPCODTOP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOLENGTH), RTF_DPCOLENGTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOMINUSX), RTF_DPCOMINUSX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOMINUSY), RTF_DPCOMINUSY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOOFFSET), RTF_DPCOOFFSET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOSMARTA), RTF_DPCOSMARTA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOTDOUBLE), RTF_DPCOTDOUBLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOTRIGHT), RTF_DPCOTRIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOTSINGLE), RTF_DPCOTSINGLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOTTRIPLE), RTF_DPCOTTRIPLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCOUNT), RTF_DPCOUNT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPELLIPSE), RTF_DPELLIPSE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPENDGROUP), RTF_DPENDGROUP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLBGCB), RTF_DPFILLBGCB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLBGCG), RTF_DPFILLBGCG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLBGCR), RTF_DPFILLBGCR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLBGGRAY), RTF_DPFILLBGGRAY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLBGPAL), RTF_DPFILLBGPAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLFGCB), RTF_DPFILLFGCB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLFGCG), RTF_DPFILLFGCG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLFGCR), RTF_DPFILLFGCR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLFGGRAY), RTF_DPFILLFGGRAY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLFGPAL), RTF_DPFILLFGPAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPFILLPAT), RTF_DPFILLPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPGROUP), RTF_DPGROUP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINE), RTF_DPLINE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINECOB), RTF_DPLINECOB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINECOG), RTF_DPLINECOG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINECOR), RTF_DPLINECOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEDADO), RTF_DPLINEDADO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEDADODO), RTF_DPLINEDADODO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEDASH), RTF_DPLINEDASH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEDOT), RTF_DPLINEDOT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEGRAY), RTF_DPLINEGRAY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEHOLLOW), RTF_DPLINEHOLLOW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEPAL), RTF_DPLINEPAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINESOLID), RTF_DPLINESOLID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPLINEW), RTF_DPLINEW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPPOLYCOUNT), RTF_DPPOLYCOUNT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPPOLYGON), RTF_DPPOLYGON},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPPOLYLINE), RTF_DPPOLYLINE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPPTX), RTF_DPPTX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPPTY), RTF_DPPTY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPRECT), RTF_DPRECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPROUNDR), RTF_DPROUNDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPSHADOW), RTF_DPSHADOW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPSHADX), RTF_DPSHADX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPSHADY), RTF_DPSHADY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPTXBX), RTF_DPTXBX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPTXBXMAR), RTF_DPTXBXMAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPTXBXTEXT), RTF_DPTXBXTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPX), RTF_DPX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPXSIZE), RTF_DPXSIZE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPY), RTF_DPY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPYSIZE), RTF_DPYSIZE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DS), RTF_DS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EMSPACE), RTF_EMSPACE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ENSPACE), RTF_ENSPACE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FBIDI), RTF_FBIDI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FET), RTF_FET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FID), RTF_FID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FILE), RTF_FILE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FILETBL), RTF_FILETBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDALT), RTF_FLDALT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FNETWORK), RTF_FNETWORK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FONTEMB), RTF_FONTEMB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FONTFILE), RTF_FONTFILE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FORMDISP), RTF_FORMDISP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FORMPROT), RTF_FORMPROT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FORMSHADE), RTF_FORMSHADE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOSNUM), RTF_FOSNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRELATIVE), RTF_FRELATIVE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNALT), RTF_FTNALT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNIL), RTF_FTNIL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNALC), RTF_FTNNALC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNAR), RTF_FTNNAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNAUC), RTF_FTNNAUC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNCHI), RTF_FTNNCHI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNRLC), RTF_FTNNRLC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNRUC), RTF_FTNNRUC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNRSTCONT), RTF_FTNRSTCONT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNRSTPG), RTF_FTNRSTPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTTRUETYPE), RTF_FTTRUETYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FVALIDDOS), RTF_FVALIDDOS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FVALIDHPFS), RTF_FVALIDHPFS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FVALIDMAC), RTF_FVALIDMAC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FVALIDNTFS), RTF_FVALIDNTFS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHAUTO), RTF_HYPHAUTO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHCAPS), RTF_HYPHCAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHCONSEC), RTF_HYPHCONSEC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHPAR), RTF_HYPHPAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINKSELF), RTF_LINKSELF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINKSTYLES), RTF_LINKSTYLES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRCH), RTF_LTRCH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRDOC), RTF_LTRDOC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRMARK), RTF_LTRMARK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRPAR), RTF_LTRPAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRROW), RTF_LTRROW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LTRSECT), RTF_LTRSECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOCOLBAL), RTF_NOCOLBAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOEXTRASPRL), RTF_NOEXTRASPRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOTABIND), RTF_NOTABIND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOWIDCTLPAR), RTF_NOWIDCTLPAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJALIAS), RTF_OBJALIAS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJALIGN), RTF_OBJALIGN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJAUTLINK), RTF_OBJAUTLINK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJCLASS), RTF_OBJCLASS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJCROPB), RTF_OBJCROPB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJCROPL), RTF_OBJCROPL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJCROPR), RTF_OBJCROPR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJCROPT), RTF_OBJCROPT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJDATA), RTF_OBJDATA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJECT), RTF_OBJECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJEMB), RTF_OBJEMB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJH), RTF_OBJH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJICEMB), RTF_OBJICEMB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJLINK), RTF_OBJLINK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJLOCK), RTF_OBJLOCK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJNAME), RTF_OBJNAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJPUB), RTF_OBJPUB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJSCALEX), RTF_OBJSCALEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJSCALEY), RTF_OBJSCALEY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJSECT), RTF_OBJSECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJSETSIZE), RTF_OBJSETSIZE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJSUB), RTF_OBJSUB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJTIME), RTF_OBJTIME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJTRANSY), RTF_OBJTRANSY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJUPDATE), RTF_OBJUPDATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJW), RTF_OBJW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OTBLRUL), RTF_OTBLRUL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHN), RTF_PGNHN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHNSC), RTF_PGNHNSC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHNSH), RTF_PGNHNSH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHNSM), RTF_PGNHNSM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHNSN), RTF_PGNHNSN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNHNSP), RTF_PGNHNSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICBMP), RTF_PICBMP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICBPP), RTF_PICBPP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PN), RTF_PN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNACROSS), RTF_PNACROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNB), RTF_PNB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNCAPS), RTF_PNCAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNCARD), RTF_PNCARD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNCF), RTF_PNCF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNDEC), RTF_PNDEC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNF), RTF_PNF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNFS), RTF_PNFS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNHANG), RTF_PNHANG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNI), RTF_PNI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNINDENT), RTF_PNINDENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLCLTR), RTF_PNLCLTR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLCRM), RTF_PNLCRM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLVL), RTF_PNLVL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLVLBLT), RTF_PNLVLBLT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLVLBODY), RTF_PNLVLBODY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNLVLCONT), RTF_PNLVLCONT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNNUMONCE), RTF_PNNUMONCE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNORD), RTF_PNORD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNORDT), RTF_PNORDT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNPREV), RTF_PNPREV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNQC), RTF_PNQC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNQL), RTF_PNQL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNQR), RTF_PNQR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRESTART), RTF_PNRESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNSCAPS), RTF_PNSCAPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNSECLVL), RTF_PNSECLVL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNSP), RTF_PNSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNSTART), RTF_PNSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNSTRIKE), RTF_PNSTRIKE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNTEXT), RTF_PNTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNTXTA), RTF_PNTXTA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNTXTB), RTF_PNTXTB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNUCLTR), RTF_PNUCLTR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNUCRM), RTF_PNUCRM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNUL), RTF_PNUL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNULD), RTF_PNULD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNULDB), RTF_PNULDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNULNONE), RTF_PNULNONE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNULW), RTF_PNULW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PRCOLBL), RTF_PRCOLBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PRINTDATA), RTF_PRINTDATA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PSZ), RTF_PSZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PUBAUTO), RTF_PUBAUTO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RESULT), RTF_RESULT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVAUTH), RTF_REVAUTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVDTTM), RTF_REVDTTM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVPROT), RTF_REVPROT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVTBL), RTF_REVTBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RSLTBMP), RTF_RSLTBMP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RSLTMERGE), RTF_RSLTMERGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RSLTPICT), RTF_RSLTPICT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RSLTRTF), RTF_RSLTRTF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RSLTTXT), RTF_RSLTTXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLCH), RTF_RTLCH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLDOC), RTF_RTLDOC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLMARK), RTF_RTLMARK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLPAR), RTF_RTLPAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLROW), RTF_RTLROW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_RTLSECT), RTF_RTLSECT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SEC), RTF_SEC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTNUM), RTF_SECTNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTUNLOCKED), RTF_SECTUNLOCKED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SLMULT), RTF_SLMULT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SOFTCOL), RTF_SOFTCOL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SOFTLHEIGHT), RTF_SOFTLHEIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SOFTLINE), RTF_SOFTLINE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SOFTPAGE), RTF_SOFTPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SPRSSPBF), RTF_SPRSSPBF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SPRSTSP), RTF_SPRSTSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUBDOCUMENT), RTF_SUBDOCUMENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SWPBDR), RTF_SWPBDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TCN), RTF_TCN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRANSMF), RTF_TRANSMF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRB), RTF_TRBRDRB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRH), RTF_TRBRDRH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRL), RTF_TRBRDRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRR), RTF_TRBRDRR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRT), RTF_TRBRDRT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRBRDRV), RTF_TRBRDRV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRHDR), RTF_TRHDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRKEEP), RTF_TRKEEP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDB), RTF_TRPADDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDL), RTF_TRPADDL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDR), RTF_TRPADDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDT), RTF_TRPADDT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDFB), RTF_TRPADDFB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDFL), RTF_TRPADDFL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDFR), RTF_TRPADDFR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRPADDFT), RTF_TRPADDFT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AB), RTF_AB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ACAPS), RTF_ACAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ACF), RTF_ACF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ADDITIVE), RTF_ADDITIVE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ADN), RTF_ADN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AENDDOC), RTF_AENDDOC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AENDNOTES), RTF_AENDNOTES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AEXPND), RTF_AEXPND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AF), RTF_AF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFS), RTF_AFS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNBJ), RTF_AFTNBJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNCN), RTF_AFTNCN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNALC), RTF_AFTNNALC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNAR), RTF_AFTNNAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNAUC), RTF_AFTNNAUC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNCHI), RTF_AFTNNCHI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNRLC), RTF_AFTNNRLC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNRUC), RTF_AFTNNRUC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNRESTART), RTF_AFTNRESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNRSTCONT), RTF_AFTNRSTCONT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNSEP), RTF_AFTNSEP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNSEPC), RTF_AFTNSEPC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNSTART), RTF_AFTNSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNTJ), RTF_AFTNTJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AI), RTF_AI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ALANG), RTF_ALANG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ALLPROT), RTF_ALLPROT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ANNOTPROT), RTF_ANNOTPROT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AOUTL), RTF_AOUTL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ASCAPS), RTF_ASCAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ASHAD), RTF_ASHAD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ASTRIKE), RTF_ASTRIKE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATNAUTHOR), RTF_ATNAUTHOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATNICN), RTF_ATNICN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATNREF), RTF_ATNREF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATNTIME), RTF_ATNTIME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATRFEND), RTF_ATRFEND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ATRFSTART), RTF_ATRFSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AUL), RTF_AUL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AULD), RTF_AULD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AULDB), RTF_AULDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AULNONE), RTF_AULNONE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AULW), RTF_AULW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AUP), RTF_AUP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKPUB), RTF_BKMKPUB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASH), RTF_BRDRDASH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRKFRM), RTF_BRKFRM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CCHS), RTF_CCHS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CPG), RTF_CPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CS), RTF_CS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CVMME), RTF_CVMME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DATAFIELD), RTF_DATAFIELD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DO), RTF_DO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBXCOLUMN), RTF_DOBXCOLUMN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBXMARGIN), RTF_DOBXMARGIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBXPAGE), RTF_DOBXPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBYMARGIN), RTF_DOBYMARGIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBYPAGE), RTF_DOBYPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOBYPARA), RTF_DOBYPARA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DODHGT), RTF_DODHGT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOLOCK), RTF_DOLOCK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPAENDHOL), RTF_DPAENDHOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPAENDL), RTF_DPAENDL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPAENDSOL), RTF_DPAENDSOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPAENDW), RTF_DPAENDW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPARC), RTF_DPARC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPARCFLIPX), RTF_DPARCFLIPX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPARCFLIPY), RTF_DPARCFLIPY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTHOL), RTF_DPASTARTHOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTL), RTF_DPASTARTL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTSOL), RTF_DPASTARTSOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTW), RTF_DPASTARTW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCALLOUT), RTF_DPCALLOUT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOA), RTF_DPCOA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOACCENT), RTF_DPCOACCENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOBESTFIT), RTF_DPCOBESTFIT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOBORDER), RTF_DPCOBORDER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCODABS), RTF_DPCODABS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCODBOTTOM), RTF_DPCODBOTTOM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCODCENTER), RTF_DPCODCENTER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCODTOP), RTF_DPCODTOP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOLENGTH), RTF_DPCOLENGTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOMINUSX), RTF_DPCOMINUSX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOMINUSY), RTF_DPCOMINUSY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOOFFSET), RTF_DPCOOFFSET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOSMARTA), RTF_DPCOSMARTA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOTDOUBLE), RTF_DPCOTDOUBLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOTRIGHT), RTF_DPCOTRIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOTSINGLE), RTF_DPCOTSINGLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOTTRIPLE), RTF_DPCOTTRIPLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCOUNT), RTF_DPCOUNT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPELLIPSE), RTF_DPELLIPSE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPENDGROUP), RTF_DPENDGROUP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCB), RTF_DPFILLBGCB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCG), RTF_DPFILLBGCG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCR), RTF_DPFILLBGCR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGGRAY), RTF_DPFILLBGGRAY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGPAL), RTF_DPFILLBGPAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCB), RTF_DPFILLFGCB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCG), RTF_DPFILLFGCG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCR), RTF_DPFILLFGCR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGGRAY), RTF_DPFILLFGGRAY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGPAL), RTF_DPFILLFGPAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPFILLPAT), RTF_DPFILLPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPGROUP), RTF_DPGROUP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINE), RTF_DPLINE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOB), RTF_DPLINECOB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOG), RTF_DPLINECOG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOR), RTF_DPLINECOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDADO), RTF_DPLINEDADO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDADODO), RTF_DPLINEDADODO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDASH), RTF_DPLINEDASH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDOT), RTF_DPLINEDOT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEGRAY), RTF_DPLINEGRAY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEHOLLOW), RTF_DPLINEHOLLOW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEPAL), RTF_DPLINEPAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINESOLID), RTF_DPLINESOLID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPLINEW), RTF_DPLINEW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPPOLYCOUNT), RTF_DPPOLYCOUNT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPPOLYGON), RTF_DPPOLYGON},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPPOLYLINE), RTF_DPPOLYLINE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPPTX), RTF_DPPTX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPPTY), RTF_DPPTY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPRECT), RTF_DPRECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPROUNDR), RTF_DPROUNDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPSHADOW), RTF_DPSHADOW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPSHADX), RTF_DPSHADX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPSHADY), RTF_DPSHADY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPTXBX), RTF_DPTXBX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPTXBXMAR), RTF_DPTXBXMAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPTXBXTEXT), RTF_DPTXBXTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPX), RTF_DPX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPXSIZE), RTF_DPXSIZE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPY), RTF_DPY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPYSIZE), RTF_DPYSIZE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DS), RTF_DS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EMSPACE), RTF_EMSPACE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ENSPACE), RTF_ENSPACE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FBIDI), RTF_FBIDI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FET), RTF_FET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FID), RTF_FID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FILE), RTF_FILE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FILETBL), RTF_FILETBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDALT), RTF_FLDALT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FNETWORK), RTF_FNETWORK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FONTEMB), RTF_FONTEMB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FONTFILE), RTF_FONTFILE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FORMDISP), RTF_FORMDISP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FORMPROT), RTF_FORMPROT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FORMSHADE), RTF_FORMSHADE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOSNUM), RTF_FOSNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRELATIVE), RTF_FRELATIVE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNALT), RTF_FTNALT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNIL), RTF_FTNIL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNALC), RTF_FTNNALC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNAR), RTF_FTNNAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNAUC), RTF_FTNNAUC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNCHI), RTF_FTNNCHI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNRLC), RTF_FTNNRLC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNRUC), RTF_FTNNRUC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNRSTCONT), RTF_FTNRSTCONT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNRSTPG), RTF_FTNRSTPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTTRUETYPE), RTF_FTTRUETYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FVALIDDOS), RTF_FVALIDDOS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FVALIDHPFS), RTF_FVALIDHPFS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FVALIDMAC), RTF_FVALIDMAC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FVALIDNTFS), RTF_FVALIDNTFS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHAUTO), RTF_HYPHAUTO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHCAPS), RTF_HYPHCAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHCONSEC), RTF_HYPHCONSEC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHPAR), RTF_HYPHPAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINKSELF), RTF_LINKSELF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINKSTYLES), RTF_LINKSTYLES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRCH), RTF_LTRCH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRDOC), RTF_LTRDOC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRMARK), RTF_LTRMARK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRPAR), RTF_LTRPAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRROW), RTF_LTRROW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LTRSECT), RTF_LTRSECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOCOLBAL), RTF_NOCOLBAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOEXTRASPRL), RTF_NOEXTRASPRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOTABIND), RTF_NOTABIND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOWIDCTLPAR), RTF_NOWIDCTLPAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJALIAS), RTF_OBJALIAS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJALIGN), RTF_OBJALIGN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJAUTLINK), RTF_OBJAUTLINK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJCLASS), RTF_OBJCLASS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPB), RTF_OBJCROPB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPL), RTF_OBJCROPL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPR), RTF_OBJCROPR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPT), RTF_OBJCROPT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJDATA), RTF_OBJDATA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJECT), RTF_OBJECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJEMB), RTF_OBJEMB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJH), RTF_OBJH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJICEMB), RTF_OBJICEMB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJLINK), RTF_OBJLINK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJLOCK), RTF_OBJLOCK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJNAME), RTF_OBJNAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJPUB), RTF_OBJPUB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJSCALEX), RTF_OBJSCALEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJSCALEY), RTF_OBJSCALEY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJSECT), RTF_OBJSECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJSETSIZE), RTF_OBJSETSIZE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJSUB), RTF_OBJSUB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJTIME), RTF_OBJTIME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJTRANSY), RTF_OBJTRANSY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJUPDATE), RTF_OBJUPDATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJW), RTF_OBJW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OTBLRUL), RTF_OTBLRUL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHN), RTF_PGNHN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSC), RTF_PGNHNSC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSH), RTF_PGNHNSH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSM), RTF_PGNHNSM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSN), RTF_PGNHNSN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSP), RTF_PGNHNSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICBMP), RTF_PICBMP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICBPP), RTF_PICBPP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PN), RTF_PN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNACROSS), RTF_PNACROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNB), RTF_PNB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNCAPS), RTF_PNCAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNCARD), RTF_PNCARD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNCF), RTF_PNCF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNDEC), RTF_PNDEC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNF), RTF_PNF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNFS), RTF_PNFS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNHANG), RTF_PNHANG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNI), RTF_PNI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNINDENT), RTF_PNINDENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLCLTR), RTF_PNLCLTR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLCRM), RTF_PNLCRM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLVL), RTF_PNLVL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLVLBLT), RTF_PNLVLBLT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLVLBODY), RTF_PNLVLBODY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNLVLCONT), RTF_PNLVLCONT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNNUMONCE), RTF_PNNUMONCE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNORD), RTF_PNORD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNORDT), RTF_PNORDT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNPREV), RTF_PNPREV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNQC), RTF_PNQC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNQL), RTF_PNQL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNQR), RTF_PNQR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRESTART), RTF_PNRESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNSCAPS), RTF_PNSCAPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNSECLVL), RTF_PNSECLVL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNSP), RTF_PNSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNSTART), RTF_PNSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNSTRIKE), RTF_PNSTRIKE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNTEXT), RTF_PNTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNTXTA), RTF_PNTXTA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNTXTB), RTF_PNTXTB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNUCLTR), RTF_PNUCLTR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNUCRM), RTF_PNUCRM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNUL), RTF_PNUL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNULD), RTF_PNULD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNULDB), RTF_PNULDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNULNONE), RTF_PNULNONE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNULW), RTF_PNULW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PRCOLBL), RTF_PRCOLBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PRINTDATA), RTF_PRINTDATA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PSZ), RTF_PSZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PUBAUTO), RTF_PUBAUTO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RESULT), RTF_RESULT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVAUTH), RTF_REVAUTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVDTTM), RTF_REVDTTM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVPROT), RTF_REVPROT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVTBL), RTF_REVTBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RSLTBMP), RTF_RSLTBMP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RSLTMERGE), RTF_RSLTMERGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RSLTPICT), RTF_RSLTPICT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RSLTRTF), RTF_RSLTRTF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RSLTTXT), RTF_RSLTTXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLCH), RTF_RTLCH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLDOC), RTF_RTLDOC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLMARK), RTF_RTLMARK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLPAR), RTF_RTLPAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLROW), RTF_RTLROW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_RTLSECT), RTF_RTLSECT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SEC), RTF_SEC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTNUM), RTF_SECTNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTUNLOCKED), RTF_SECTUNLOCKED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SLMULT), RTF_SLMULT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SOFTCOL), RTF_SOFTCOL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SOFTLHEIGHT), RTF_SOFTLHEIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SOFTLINE), RTF_SOFTLINE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SOFTPAGE), RTF_SOFTPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SPRSSPBF), RTF_SPRSSPBF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SPRSTSP), RTF_SPRSTSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUBDOCUMENT), RTF_SUBDOCUMENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SWPBDR), RTF_SWPBDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TCN), RTF_TCN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRANSMF), RTF_TRANSMF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRB), RTF_TRBRDRB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRH), RTF_TRBRDRH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRL), RTF_TRBRDRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRR), RTF_TRBRDRR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRT), RTF_TRBRDRT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRV), RTF_TRBRDRV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRHDR), RTF_TRHDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRKEEP), RTF_TRKEEP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDB), RTF_TRPADDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDL), RTF_TRPADDL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDR), RTF_TRPADDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDT), RTF_TRPADDT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFB), RTF_TRPADDFB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFL), RTF_TRPADDFL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFR), RTF_TRPADDFR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFT), RTF_TRPADDFT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WRAPTRSP), RTF_WRAPTRSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_XEF), RTF_XEF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ZWJ), RTF_ZWJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ZWNJ), RTF_ZWNJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WRAPTRSP), RTF_WRAPTRSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_XEF), RTF_XEF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ZWJ), RTF_ZWJ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ZWNJ), RTF_ZWNJ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ABSLOCK), RTF_ABSLOCK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ADJUSTRIGHT), RTF_ADJUSTRIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNCHOSUNG), RTF_AFTNNCHOSUNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNCNUM), RTF_AFTNNCNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNDBAR), RTF_AFTNNDBAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNDBNUM), RTF_AFTNNDBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMD), RTF_AFTNNDBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMK), RTF_AFTNNDBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMT), RTF_AFTNNDBNUMT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNGANADA), RTF_AFTNNGANADA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNGBNUM), RTF_AFTNNGBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMD), RTF_AFTNNGBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMK), RTF_AFTNNGBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNGBNUML), RTF_AFTNNGBNUML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNZODIAC), RTF_AFTNNZODIAC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNZODIACD), RTF_AFTNNZODIACD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_AFTNNZODIACL), RTF_AFTNNZODIACL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ANIMTEXT), RTF_ANIMTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ANSICPG), RTF_ANSICPG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BACKGROUND), RTF_BACKGROUND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BDBFHDR), RTF_BDBFHDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BLIPTAG), RTF_BLIPTAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BLIPUID), RTF_BLIPUID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BLIPUPI), RTF_BLIPUPI},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRART), RTF_BRDRART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDASHD), RTF_BRDRDASHD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDASHDD), RTF_BRDRDASHDD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDASHDOTSTR),RTF_BRDRDASHDOTSTR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRDASHSM), RTF_BRDRDASHSM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRINSET), RTF_BRDRINSET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDROUTSET), RTF_BRDROUTSET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDREMBOSS), RTF_BRDREMBOSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRENGRAVE), RTF_BRDRENGRAVE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRFRAME), RTF_BRDRFRAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTHTNLG), RTF_BRDRTHTNLG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTHTNMG), RTF_BRDRTHTNMG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTHTNSG), RTF_BRDRTHTNSG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHLG), RTF_BRDRTNTHLG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHMG), RTF_BRDRTNTHMG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHSG), RTF_BRDRTNTHSG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNLG), RTF_BRDRTNTHTNLG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNMG), RTF_BRDRTNTHTNMG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNSG), RTF_BRDRTNTHTNSG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRTRIPLE), RTF_BRDRTRIPLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRWAVY), RTF_BRDRWAVY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDRWAVYDB), RTF_BRDRWAVYDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CATEGORY), RTF_CATEGORY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CGRID), RTF_CGRID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHARSCALEX), RTF_CHARSCALEX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGBDIAG), RTF_CHBGBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGCROSS), RTF_CHBGCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDCROSS), RTF_CHBGDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKBDIAG), RTF_CHBGDKBDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKCROSS), RTF_CHBGDKCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKDCROSS), RTF_CHBGDKDCROSS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKFDIAG), RTF_CHBGDKFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKHORIZ), RTF_CHBGDKHORIZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGDKVERT), RTF_CHBGDKVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGFDIAG), RTF_CHBGFDIAG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGHORIZ), RTF_CHBGHORIZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBGVERT), RTF_CHBGVERT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHBRDR), RTF_CHBRDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHCBPAT), RTF_CHCBPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHCFPAT), RTF_CHCFPAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CHSHDNG), RTF_CHSHDNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLTXLRTB), RTF_CLTXLRTB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLTXTBRL), RTF_CLTXTBRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLVERTALB), RTF_CLVERTALB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLVERTALC), RTF_CLVERTALC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLVERTALT), RTF_CLVERTALT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLVMGF), RTF_CLVMGF},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLVMRG), RTF_CLVMRG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLTXTBRLV), RTF_CLTXTBRLV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLTXBTLR), RTF_CLTXBTLR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CLTXLRTBV), RTF_CLTXLRTBV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_COMPANY), RTF_COMPANY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CRAUTH), RTF_CRAUTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_CRDATE), RTF_CRDATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DATE), RTF_DATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DEFLANGFE), RTF_DEFLANGFE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRAUTH), RTF_DFRAUTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRDATE), RTF_DFRDATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRSTART), RTF_DFRSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRSTOP), RTF_DFRSTOP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRXST), RTF_DFRXST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DGMARGIN), RTF_DGMARGIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DNTBLNSBDB), RTF_DNTBLNSBDB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOCTYPE), RTF_DOCTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DOCVAR), RTF_DOCVAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DPCODESCENT), RTF_DPCODESCENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EMBO), RTF_EMBO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EMFBLIP), RTF_EMFBLIP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_EXPSHRTN), RTF_EXPSHRTN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FAAUTO), RTF_FAAUTO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FBIAS), RTF_FBIAS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFDEFRES), RTF_FFDEFRES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFDEFTEXT), RTF_FFDEFTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFENTRYMCR), RTF_FFENTRYMCR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFEXITMCR), RTF_FFEXITMCR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFFORMAT), RTF_FFFORMAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFHASLISTBOX), RTF_FFHASLISTBOX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFHELPTEXT), RTF_FFHELPTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFHPS), RTF_FFHPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFL), RTF_FFL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFMAXLEN), RTF_FFMAXLEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFNAME), RTF_FFNAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFOWNHELP), RTF_FFOWNHELP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFOWNSTAT), RTF_FFOWNSTAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFPROT), RTF_FFPROT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFRECALC), RTF_FFRECALC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFRES), RTF_FFRES},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFSIZE), RTF_FFSIZE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFSTATTEXT), RTF_FFSTATTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFTYPE), RTF_FFTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FFTYPETXT), RTF_FFTYPETXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLDTYPE), RTF_FLDTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FNAME), RTF_FNAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FORMFIELD), RTF_FORMFIELD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FROMTEXT), RTF_FROMTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNCHOSUNG), RTF_FTNNCHOSUNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNCNUM), RTF_FTNNCNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNDBAR), RTF_FTNNDBAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNDBNUM), RTF_FTNNDBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNDBNUMD), RTF_FTNNDBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNDBNUMK), RTF_FTNNDBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNDBNUMT), RTF_FTNNDBNUMT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNGANADA), RTF_FTNNGANADA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNGBNUM), RTF_FTNNGBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNGBNUMD), RTF_FTNNGBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNGBNUMK), RTF_FTNNGBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNGBNUML), RTF_FTNNGBNUML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNZODIAC), RTF_FTNNZODIAC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNZODIACD), RTF_FTNNZODIACD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FTNNZODIACL), RTF_FTNNZODIACL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_G), RTF_G},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GCW), RTF_GCW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GRIDTBL), RTF_GRIDTBL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HIGHLIGHT), RTF_HIGHLIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HLFR), RTF_HLFR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HLINKBASE), RTF_HLINKBASE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HLLOC), RTF_HLLOC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HLSRC), RTF_HLSRC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ILVL), RTF_ILVL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_IMPR), RTF_IMPR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_JPEGBLIP), RTF_JPEGBLIP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELFOLLOW), RTF_LEVELFOLLOW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELINDENT), RTF_LEVELINDENT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELJC), RTF_LEVELJC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELLEGAL), RTF_LEVELLEGAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELNFC), RTF_LEVELNFC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELNORESTART),RTF_LEVELNORESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELNUMBERS), RTF_LEVELNUMBERS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELOLD), RTF_LEVELOLD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELPREV), RTF_LEVELPREV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELPREVSPACE),RTF_LEVELPREVSPACE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELSPACE), RTF_LEVELSPACE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELSTARTAT), RTF_LEVELSTARTAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LEVELTEXT), RTF_LEVELTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LINKVAL), RTF_LINKVAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LIST), RTF_LIST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTID), RTF_LISTID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTLEVEL), RTF_LISTLEVEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTNAME), RTF_LISTNAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDE), RTF_LISTOVERRIDE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDECOUNT), RTF_LISTOVERRIDECOUNT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDEFORMAT), RTF_LISTOVERRIDEFORMAT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDESTART), RTF_LISTOVERRIDESTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTOVERRIDETABLE), RTF_LISTOVERRIDETABLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTRESTARTHDN),RTF_LISTRESTARTHDN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTSIMPLE), RTF_LISTSIMPLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTTABLE), RTF_LISTTABLE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTTEMPLATEID),RTF_LISTTEMPLATEID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LISTTEXT), RTF_LISTTEXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LS), RTF_LS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LYTEXCTTP), RTF_LYTEXCTTP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LYTPRTMET), RTF_LYTPRTMET},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MANAGER), RTF_MANAGER},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_MSMCAP), RTF_MSMCAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOFCHARSWS), RTF_NOFCHARSWS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOLEAD), RTF_NOLEAD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NONSHPPICT), RTF_NONSHPPICT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOSECTEXPAND), RTF_NOSECTEXPAND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOSNAPLINEGRID),RTF_NOSNAPLINEGRID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOSPACEFORUL), RTF_NOSPACEFORUL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOULTRLSPC), RTF_NOULTRLSPC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOXLATTOYEN), RTF_NOXLATTOYEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJATTPH), RTF_OBJATTPH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJHTML), RTF_OBJHTML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OBJOCX), RTF_OBJOCX},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLDLINEWRAP), RTF_OLDLINEWRAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OUTLINELEVEL), RTF_OUTLINELEVEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OVERLAY), RTF_OVERLAY},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PANOSE), RTF_PANOSE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRB), RTF_PGBRDRB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRFOOT), RTF_PGBRDRFOOT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRHEAD), RTF_PGBRDRHEAD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRL), RTF_PGBRDRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDROPT), RTF_PGBRDROPT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRR), RTF_PGBRDRR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRSNAP), RTF_PGBRDRSNAP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRDRT), RTF_PGBRDRT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNCHOSUNG), RTF_PGNCHOSUNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNCNUM), RTF_PGNCNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNDBNUMK), RTF_PGNDBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNDBNUMT), RTF_PGNDBNUMT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNGANADA), RTF_PGNGANADA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNGBNUM), RTF_PGNGBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNGBNUMD), RTF_PGNGBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNGBNUMK), RTF_PGNGBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNGBNUML), RTF_PGNGBNUML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNZODIAC), RTF_PGNZODIAC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNZODIACD), RTF_PGNZODIACD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGNZODIACL), RTF_PGNZODIACL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PICPROP), RTF_PICPROP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNAIUEO), RTF_PNAIUEO},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNAIUEOD), RTF_PNAIUEOD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNCHOSUNG), RTF_PNCHOSUNG},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNDBNUMD), RTF_PNDBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNDBNUMK), RTF_PNDBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNDBNUML), RTF_PNDBNUML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNDBNUMT), RTF_PNDBNUMT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGANADA), RTF_PNGANADA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGBLIP), RTF_PNGBLIP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGBNUM), RTF_PNGBNUM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGBNUMD), RTF_PNGBNUMD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGBNUMK), RTF_PNGBNUMK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNGBNUML), RTF_PNGBNUML},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRAUTH), RTF_PNRAUTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRDATE), RTF_PNRDATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRNFC), RTF_PNRNFC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRNOT), RTF_PNRNOT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRPNBR), RTF_PNRPNBR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRRGB), RTF_PNRRGB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRSTART), RTF_PNRSTART},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRSTOP), RTF_PNRSTOP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNRXST), RTF_PNRXST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNZODIAC), RTF_PNZODIAC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNZODIACD), RTF_PNZODIACD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PNZODIACL), RTF_PNZODIACL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LFOLEVEL), RTF_LFOLEVEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYIN), RTF_POSYIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_POSYOUT), RTF_POSYOUT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PRIVATE), RTF_PRIVATE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PROPNAME), RTF_PROPNAME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PROPTYPE), RTF_PROPTYPE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVAUTHDEL), RTF_REVAUTHDEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_REVDTTMDEL), RTF_REVDTTMDEL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SAUTOUPD), RTF_SAUTOUPD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTDEFAULTCL), RTF_SECTDEFAULTCL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTEXPAND), RTF_SECTEXPAND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTLINEGRID), RTF_SECTLINEGRID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTSPECIFYCL), RTF_SECTSPECIFYCL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SECTSPECIFYL), RTF_SECTSPECIFYL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHIDDEN), RTF_SHIDDEN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBOTTOM), RTF_SHPBOTTOM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBXCOLUMN), RTF_SHPBXCOLUMN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBXMARGIN), RTF_SHPBXMARGIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBXPAGE), RTF_SHPBXPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBYMARGIN), RTF_SHPBYMARGIN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBYPAGE), RTF_SHPBYPAGE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBYPARA), RTF_SHPBYPARA},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPFBLWTXT), RTF_SHPFBLWTXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPFHDR), RTF_SHPFHDR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPGRP), RTF_SHPGRP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPINST), RTF_SHPINST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPLEFT), RTF_SHPLEFT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPLID), RTF_SHPLID},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPLOCKANCHOR), RTF_SHPLOCKANCHOR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPPICT), RTF_SHPPICT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPRIGHT), RTF_SHPRIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPRSLT), RTF_SHPRSLT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPTOP), RTF_SHPTOP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPTXT), RTF_SHPTXT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPWRK), RTF_SHPWRK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPWR), RTF_SHPWR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPZ), RTF_SHPZ},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SPRSBSP), RTF_SPRSBSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SPRSLNSP), RTF_SPRSLNSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SPRSTSM), RTF_SPRSTSM},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_STATICVAL), RTF_STATICVAL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_STEXTFLOW), RTF_STEXTFLOW},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_STRIKED), RTF_STRIKED},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SUBFONTBYSIZE), RTF_SUBFONTBYSIZE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TCELLD), RTF_TCELLD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TIME), RTF_TIME},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TRUNCATEFONTHEIGHT), RTF_TRUNCATEFONTHEIGHT},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UC), RTF_UC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UD), RTF_UD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULDASH), RTF_ULDASH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULDASHD), RTF_ULDASHD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULDASHDD), RTF_ULDASHDD},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTH), RTF_ULTH},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULWAVE), RTF_ULWAVE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULC), RTF_ULC},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_U), RTF_U},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UPR), RTF_UPR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_USERPROPS), RTF_USERPROPS},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VIEWKIND), RTF_VIEWKIND},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VIEWSCALE), RTF_VIEWSCALE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_VIEWZK), RTF_VIEWZK},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WIDCTLPAR), RTF_WIDCTLPAR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WINDOWCAPTION), RTF_WINDOWCAPTION},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WPEQN), RTF_WPEQN},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WPJST), RTF_WPJST},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_WPSP), RTF_WPSP},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_YXE), RTF_YXE},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRMTXLRTB), RTF_FRMTXLRTB},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRMTXTBRL), RTF_FRMTXTBRL},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRMTXBTLR), RTF_FRMTXBTLR},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRMTXLRTBV), RTF_FRMTXLRTBV},
-{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FRMTXTBRLV), RTF_FRMTXTBRLV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ABSLOCK), RTF_ABSLOCK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ADJUSTRIGHT), RTF_ADJUSTRIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNCHOSUNG), RTF_AFTNNCHOSUNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNCNUM), RTF_AFTNNCNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBAR), RTF_AFTNNDBAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBNUM), RTF_AFTNNDBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMD), RTF_AFTNNDBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMK), RTF_AFTNNDBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMT), RTF_AFTNNDBNUMT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGANADA), RTF_AFTNNGANADA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGBNUM), RTF_AFTNNGBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMD), RTF_AFTNNGBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMK), RTF_AFTNNGBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGBNUML), RTF_AFTNNGBNUML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNZODIAC), RTF_AFTNNZODIAC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNZODIACD), RTF_AFTNNZODIACD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_AFTNNZODIACL), RTF_AFTNNZODIACL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ANIMTEXT), RTF_ANIMTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ANSICPG), RTF_ANSICPG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BACKGROUND), RTF_BACKGROUND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BDBFHDR), RTF_BDBFHDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BLIPTAG), RTF_BLIPTAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BLIPUID), RTF_BLIPUID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BLIPUPI), RTF_BLIPUPI},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRART), RTF_BRDRART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHD), RTF_BRDRDASHD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHDD), RTF_BRDRDASHDD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHDOTSTR),RTF_BRDRDASHDOTSTR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHSM), RTF_BRDRDASHSM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRINSET), RTF_BRDRINSET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDROUTSET), RTF_BRDROUTSET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDREMBOSS), RTF_BRDREMBOSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRENGRAVE), RTF_BRDRENGRAVE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRFRAME), RTF_BRDRFRAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNLG), RTF_BRDRTHTNLG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNMG), RTF_BRDRTHTNMG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNSG), RTF_BRDRTHTNSG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHLG), RTF_BRDRTNTHLG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHMG), RTF_BRDRTNTHMG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHSG), RTF_BRDRTNTHSG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNLG), RTF_BRDRTNTHTNLG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNMG), RTF_BRDRTNTHTNMG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNSG), RTF_BRDRTNTHTNSG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRTRIPLE), RTF_BRDRTRIPLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRWAVY), RTF_BRDRWAVY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDRWAVYDB), RTF_BRDRWAVYDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CATEGORY), RTF_CATEGORY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CGRID), RTF_CGRID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHARSCALEX), RTF_CHARSCALEX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGBDIAG), RTF_CHBGBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGCROSS), RTF_CHBGCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDCROSS), RTF_CHBGDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKBDIAG), RTF_CHBGDKBDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKCROSS), RTF_CHBGDKCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKDCROSS), RTF_CHBGDKDCROSS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKFDIAG), RTF_CHBGDKFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKHORIZ), RTF_CHBGDKHORIZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKVERT), RTF_CHBGDKVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGFDIAG), RTF_CHBGFDIAG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGHORIZ), RTF_CHBGHORIZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBGVERT), RTF_CHBGVERT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHBRDR), RTF_CHBRDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHCBPAT), RTF_CHCBPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHCFPAT), RTF_CHCFPAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CHSHDNG), RTF_CHSHDNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLTXLRTB), RTF_CLTXLRTB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLTXTBRL), RTF_CLTXTBRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALB), RTF_CLVERTALB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALC), RTF_CLVERTALC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALT), RTF_CLVERTALT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLVMGF), RTF_CLVMGF},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLVMRG), RTF_CLVMRG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLTXTBRLV), RTF_CLTXTBRLV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLTXBTLR), RTF_CLTXBTLR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CLTXLRTBV), RTF_CLTXLRTBV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_COMPANY), RTF_COMPANY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CRAUTH), RTF_CRAUTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_CRDATE), RTF_CRDATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DATE), RTF_DATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DEFLANGFE), RTF_DEFLANGFE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRAUTH), RTF_DFRAUTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRDATE), RTF_DFRDATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRSTART), RTF_DFRSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRSTOP), RTF_DFRSTOP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRXST), RTF_DFRXST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DGMARGIN), RTF_DGMARGIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DNTBLNSBDB), RTF_DNTBLNSBDB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOCTYPE), RTF_DOCTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DOCVAR), RTF_DOCVAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DPCODESCENT), RTF_DPCODESCENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EMBO), RTF_EMBO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EMFBLIP), RTF_EMFBLIP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_EXPSHRTN), RTF_EXPSHRTN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FAAUTO), RTF_FAAUTO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FBIAS), RTF_FBIAS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFDEFRES), RTF_FFDEFRES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFDEFTEXT), RTF_FFDEFTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFENTRYMCR), RTF_FFENTRYMCR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFEXITMCR), RTF_FFEXITMCR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFFORMAT), RTF_FFFORMAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFHASLISTBOX), RTF_FFHASLISTBOX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFHELPTEXT), RTF_FFHELPTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFHPS), RTF_FFHPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFL), RTF_FFL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFMAXLEN), RTF_FFMAXLEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFNAME), RTF_FFNAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFOWNHELP), RTF_FFOWNHELP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFOWNSTAT), RTF_FFOWNSTAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFPROT), RTF_FFPROT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFRECALC), RTF_FFRECALC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFRES), RTF_FFRES},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFSIZE), RTF_FFSIZE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFSTATTEXT), RTF_FFSTATTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFTYPE), RTF_FFTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FFTYPETXT), RTF_FFTYPETXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLDTYPE), RTF_FLDTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FNAME), RTF_FNAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FORMFIELD), RTF_FORMFIELD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FROMTEXT), RTF_FROMTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNCHOSUNG), RTF_FTNNCHOSUNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNCNUM), RTF_FTNNCNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBAR), RTF_FTNNDBAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUM), RTF_FTNNDBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMD), RTF_FTNNDBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMK), RTF_FTNNDBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMT), RTF_FTNNDBNUMT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNGANADA), RTF_FTNNGANADA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUM), RTF_FTNNGBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUMD), RTF_FTNNGBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUMK), RTF_FTNNGBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUML), RTF_FTNNGBNUML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNZODIAC), RTF_FTNNZODIAC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNZODIACD), RTF_FTNNZODIACD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FTNNZODIACL), RTF_FTNNZODIACL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_G), RTF_G},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GCW), RTF_GCW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GRIDTBL), RTF_GRIDTBL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HIGHLIGHT), RTF_HIGHLIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HLFR), RTF_HLFR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HLINKBASE), RTF_HLINKBASE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HLLOC), RTF_HLLOC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HLSRC), RTF_HLSRC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ILVL), RTF_ILVL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_IMPR), RTF_IMPR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_JPEGBLIP), RTF_JPEGBLIP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELFOLLOW), RTF_LEVELFOLLOW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELINDENT), RTF_LEVELINDENT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELJC), RTF_LEVELJC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELLEGAL), RTF_LEVELLEGAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELNFC), RTF_LEVELNFC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELNORESTART),RTF_LEVELNORESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELNUMBERS), RTF_LEVELNUMBERS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELOLD), RTF_LEVELOLD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELPREV), RTF_LEVELPREV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELPREVSPACE),RTF_LEVELPREVSPACE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELSPACE), RTF_LEVELSPACE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELSTARTAT), RTF_LEVELSTARTAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LEVELTEXT), RTF_LEVELTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LINKVAL), RTF_LINKVAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LIST), RTF_LIST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTID), RTF_LISTID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTLEVEL), RTF_LISTLEVEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTNAME), RTF_LISTNAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTOVERRIDE), RTF_LISTOVERRIDE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTOVERRIDECOUNT), RTF_LISTOVERRIDECOUNT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTOVERRIDEFORMAT), RTF_LISTOVERRIDEFORMAT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTOVERRIDESTART), RTF_LISTOVERRIDESTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTOVERRIDETABLE), RTF_LISTOVERRIDETABLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTRESTARTHDN),RTF_LISTRESTARTHDN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTSIMPLE), RTF_LISTSIMPLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTTABLE), RTF_LISTTABLE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTTEMPLATEID),RTF_LISTTEMPLATEID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LISTTEXT), RTF_LISTTEXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LS), RTF_LS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LYTEXCTTP), RTF_LYTEXCTTP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LYTPRTMET), RTF_LYTPRTMET},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MANAGER), RTF_MANAGER},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_MSMCAP), RTF_MSMCAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOFCHARSWS), RTF_NOFCHARSWS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOLEAD), RTF_NOLEAD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NONSHPPICT), RTF_NONSHPPICT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOSECTEXPAND), RTF_NOSECTEXPAND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOSNAPLINEGRID),RTF_NOSNAPLINEGRID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOSPACEFORUL), RTF_NOSPACEFORUL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOULTRLSPC), RTF_NOULTRLSPC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOXLATTOYEN), RTF_NOXLATTOYEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJATTPH), RTF_OBJATTPH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJHTML), RTF_OBJHTML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OBJOCX), RTF_OBJOCX},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLDLINEWRAP), RTF_OLDLINEWRAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OUTLINELEVEL), RTF_OUTLINELEVEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OVERLAY), RTF_OVERLAY},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PANOSE), RTF_PANOSE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRB), RTF_PGBRDRB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRFOOT), RTF_PGBRDRFOOT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRHEAD), RTF_PGBRDRHEAD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRL), RTF_PGBRDRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDROPT), RTF_PGBRDROPT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRR), RTF_PGBRDRR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRSNAP), RTF_PGBRDRSNAP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRT), RTF_PGBRDRT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNCHOSUNG), RTF_PGNCHOSUNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNCNUM), RTF_PGNCNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNDBNUMK), RTF_PGNDBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNDBNUMT), RTF_PGNDBNUMT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNGANADA), RTF_PGNGANADA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUM), RTF_PGNGBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUMD), RTF_PGNGBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUMK), RTF_PGNGBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUML), RTF_PGNGBNUML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIAC), RTF_PGNZODIAC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIACD), RTF_PGNZODIACD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIACL), RTF_PGNZODIACL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PICPROP), RTF_PICPROP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNAIUEO), RTF_PNAIUEO},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNAIUEOD), RTF_PNAIUEOD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNCHOSUNG), RTF_PNCHOSUNG},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMD), RTF_PNDBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMK), RTF_PNDBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUML), RTF_PNDBNUML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMT), RTF_PNDBNUMT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGANADA), RTF_PNGANADA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGBLIP), RTF_PNGBLIP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUM), RTF_PNGBNUM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUMD), RTF_PNGBNUMD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUMK), RTF_PNGBNUMK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUML), RTF_PNGBNUML},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRAUTH), RTF_PNRAUTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRDATE), RTF_PNRDATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRNFC), RTF_PNRNFC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRNOT), RTF_PNRNOT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRPNBR), RTF_PNRPNBR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRRGB), RTF_PNRRGB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRSTART), RTF_PNRSTART},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRSTOP), RTF_PNRSTOP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNRXST), RTF_PNRXST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNZODIAC), RTF_PNZODIAC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNZODIACD), RTF_PNZODIACD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PNZODIACL), RTF_PNZODIACL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LFOLEVEL), RTF_LFOLEVEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYIN), RTF_POSYIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_POSYOUT), RTF_POSYOUT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PRIVATE), RTF_PRIVATE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PROPNAME), RTF_PROPNAME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PROPTYPE), RTF_PROPTYPE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVAUTHDEL), RTF_REVAUTHDEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_REVDTTMDEL), RTF_REVDTTMDEL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SAUTOUPD), RTF_SAUTOUPD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTDEFAULTCL), RTF_SECTDEFAULTCL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTEXPAND), RTF_SECTEXPAND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTLINEGRID), RTF_SECTLINEGRID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTSPECIFYCL), RTF_SECTSPECIFYCL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SECTSPECIFYL), RTF_SECTSPECIFYL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHIDDEN), RTF_SHIDDEN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBOTTOM), RTF_SHPBOTTOM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBXCOLUMN), RTF_SHPBXCOLUMN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBXMARGIN), RTF_SHPBXMARGIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBXPAGE), RTF_SHPBXPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBYMARGIN), RTF_SHPBYMARGIN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBYPAGE), RTF_SHPBYPAGE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPBYPARA), RTF_SHPBYPARA},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPFBLWTXT), RTF_SHPFBLWTXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPFHDR), RTF_SHPFHDR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPGRP), RTF_SHPGRP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPINST), RTF_SHPINST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPLEFT), RTF_SHPLEFT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPLID), RTF_SHPLID},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPLOCKANCHOR), RTF_SHPLOCKANCHOR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPPICT), RTF_SHPPICT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPRIGHT), RTF_SHPRIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPRSLT), RTF_SHPRSLT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPTOP), RTF_SHPTOP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPTXT), RTF_SHPTXT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPWRK), RTF_SHPWRK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPWR), RTF_SHPWR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHPZ), RTF_SHPZ},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SPRSBSP), RTF_SPRSBSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SPRSLNSP), RTF_SPRSLNSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SPRSTSM), RTF_SPRSTSM},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_STATICVAL), RTF_STATICVAL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_STEXTFLOW), RTF_STEXTFLOW},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_STRIKED), RTF_STRIKED},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SUBFONTBYSIZE), RTF_SUBFONTBYSIZE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TCELLD), RTF_TCELLD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TIME), RTF_TIME},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TRUNCATEFONTHEIGHT), RTF_TRUNCATEFONTHEIGHT},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UC), RTF_UC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UD), RTF_UD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULDASH), RTF_ULDASH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULDASHD), RTF_ULDASHD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULDASHDD), RTF_ULDASHDD},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTH), RTF_ULTH},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULWAVE), RTF_ULWAVE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULC), RTF_ULC},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_U), RTF_U},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UPR), RTF_UPR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_USERPROPS), RTF_USERPROPS},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VIEWKIND), RTF_VIEWKIND},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VIEWSCALE), RTF_VIEWSCALE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_VIEWZK), RTF_VIEWZK},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WIDCTLPAR), RTF_WIDCTLPAR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WINDOWCAPTION), RTF_WINDOWCAPTION},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WPEQN), RTF_WPEQN},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WPJST), RTF_WPJST},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_WPSP), RTF_WPSP},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_YXE), RTF_YXE},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRMTXLRTB), RTF_FRMTXLRTB},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRMTXTBRL), RTF_FRMTXTBRL},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRMTXBTLR), RTF_FRMTXBTLR},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRMTXLRTBV), RTF_FRMTXLRTBV},
+{OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FRMTXTBRLV), RTF_FRMTXTBRLV},
// MS-2000 Tokens
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTHD), RTF_ULTHD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTHDASH), RTF_ULTHDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULLDASH), RTF_ULLDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTHLDASH), RTF_ULTHLDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTHDASHD), RTF_ULTHDASHD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULTHDASHDD), RTF_ULTHDASHDD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULHWAVE), RTF_ULHWAVE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ULULDBWAVE), RTF_ULULDBWAVE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTHD), RTF_ULTHD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASH), RTF_ULTHDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULLDASH), RTF_ULLDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTHLDASH), RTF_ULTHLDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASHD), RTF_ULTHDASHD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASHDD), RTF_ULTHDASHDD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULHWAVE), RTF_ULHWAVE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ULULDBWAVE), RTF_ULULDBWAVE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LOCH), RTF_LOCH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HICH), RTF_HICH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DBCH), RTF_DBCH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_LANGFE), RTF_LANGFE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ADEFLANG), RTF_ADEFLANG},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ADEFF), RTF_ADEFF},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ACCNONE), RTF_ACCNONE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ACCDOT), RTF_ACCDOT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ACCCOMMA), RTF_ACCCOMMA},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TWOINONE), RTF_TWOINONE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HORZVERT), RTF_HORZVERT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FAHANG), RTF_FAHANG},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FAVAR), RTF_FAVAR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FACENTER), RTF_FACENTER},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FAROMAN), RTF_FAROMAN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FAFIXED), RTF_FAFIXED},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOCWRAP), RTF_NOCWRAP},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_NOOVERFLOW), RTF_NOOVERFLOW},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_ASPALPHA), RTF_ASPALPHA},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LOCH), RTF_LOCH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HICH), RTF_HICH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DBCH), RTF_DBCH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_LANGFE), RTF_LANGFE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ADEFLANG), RTF_ADEFLANG},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ADEFF), RTF_ADEFF},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ACCNONE), RTF_ACCNONE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ACCDOT), RTF_ACCDOT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ACCCOMMA), RTF_ACCCOMMA},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TWOINONE), RTF_TWOINONE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HORZVERT), RTF_HORZVERT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FAHANG), RTF_FAHANG},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FAVAR), RTF_FAVAR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FACENTER), RTF_FACENTER},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FAROMAN), RTF_FAROMAN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FAFIXED), RTF_FAFIXED},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOCWRAP), RTF_NOCWRAP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_NOOVERFLOW), RTF_NOOVERFLOW},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_ASPALPHA), RTF_ASPALPHA},
// SWG specific attributes
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GRFALIGNV), RTF_GRF_ALIGNV},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GRFALIGNH), RTF_GRF_ALIGNH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_GRFMIRROR), RTF_GRF_MIRROR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERYB), RTF_HEADER_YB},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERXL), RTF_HEADER_XL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERXR), RTF_HEADER_XR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERYT), RTF_FOOTER_YT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERXL), RTF_FOOTER_XL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERXR), RTF_FOOTER_XR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HEADERYH), RTF_HEADER_YH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FOOTERYH), RTF_FOOTER_YH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BALANCEDCOLUMN),RTF_BALANCED_COLUMN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_UPDNPROP), RTF_SWG_ESCPROP},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PRTDATA), RTF_SWG_PRTDATA},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BKMKKEY), RTF_BKMK_KEY},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GRFALIGNV), RTF_GRF_ALIGNV},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GRFALIGNH), RTF_GRF_ALIGNH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_GRFMIRROR), RTF_GRF_MIRROR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERYB), RTF_HEADER_YB},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERXL), RTF_HEADER_XL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERXR), RTF_HEADER_XR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERYT), RTF_FOOTER_YT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERXL), RTF_FOOTER_XL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERXR), RTF_FOOTER_XR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HEADERYH), RTF_HEADER_YH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FOOTERYH), RTF_FOOTER_YH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BALANCEDCOLUMN),RTF_BALANCED_COLUMN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_UPDNPROP), RTF_SWG_ESCPROP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PRTDATA), RTF_SWG_PRTDATA},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BKMKKEY), RTF_BKMK_KEY},
// Attributes for fly frames
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYPRINT), RTF_FLYPRINT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYOPAQUE), RTF_FLYOPAQUE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYPRTCTD), RTF_FLYPRTCTD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYMAINCNT), RTF_FLYMAINCNT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYVERT), RTF_FLYVERT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYHORZ), RTF_FLYHORZ},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTL), RTF_FLYOUTLEFT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTR), RTF_FLYOUTRIGHT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTU), RTF_FLYOUTUPPER},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_DFRMTXTW), RTF_FLYOUTLOWER},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYANCHOR), RTF_FLYANCHOR},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYCNTNT), RTF_FLY_CNTNT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYCOLUMN), RTF_FLY_COLUMN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYPAGE), RTF_FLY_PAGE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYPRINT), RTF_FLYPRINT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYOPAQUE), RTF_FLYOPAQUE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYPRTCTD), RTF_FLYPRTCTD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYMAINCNT), RTF_FLYMAINCNT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYVERT), RTF_FLYVERT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYHORZ), RTF_FLYHORZ},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTL), RTF_FLYOUTLEFT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTR), RTF_FLYOUTRIGHT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTU), RTF_FLYOUTUPPER},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTW), RTF_FLYOUTLOWER},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYANCHOR), RTF_FLYANCHOR},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYCNTNT), RTF_FLY_CNTNT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYCOLUMN), RTF_FLY_COLUMN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYPAGE), RTF_FLY_PAGE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDBOX), RTF_BRDBOX},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDLNCOL), RTF_BRDLINE_COL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDLNIN), RTF_BRDLINE_IN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDLNOUT), RTF_BRDLINE_OUT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_BRDLNDIST), RTF_BRDLINE_DIST},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDBOX), RTF_BRDBOX},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDLNCOL), RTF_BRDLINE_COL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDLNIN), RTF_BRDLINE_IN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDLNOUT), RTF_BRDLINE_OUT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_BRDLNDIST), RTF_BRDLINE_DIST},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHADOW), RTF_SHADOW},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHDWDIST), RTF_SHDW_DIST},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHDWSTYLE), RTF_SHDW_STYLE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHDWCOL), RTF_SHDW_COL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHDWFCOL), RTF_SHDW_FCOL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHADOW), RTF_SHADOW},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHDWDIST), RTF_SHDW_DIST},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHDWSTYLE), RTF_SHDW_STYLE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHDWCOL), RTF_SHDW_COL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHDWFCOL), RTF_SHDW_FCOL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_FLYINPARA), RTF_FLY_INPARA},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_FLYINPARA), RTF_FLY_INPARA},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGDSCTBL), RTF_PGDSCTBL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGDSC), RTF_PGDSC},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGDSCUSE), RTF_PGDSCUSE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGDSCNXT), RTF_PGDSCNXT},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGDSCTBL), RTF_PGDSCTBL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGDSC), RTF_PGDSC},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGDSCUSE), RTF_PGDSCUSE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGDSCNXT), RTF_PGDSCNXT},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHEN), RTF_HYPHEN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHLEAD), RTF_HYPHLEAD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHTRAIL), RTF_HYPHTRAIL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_HYPHMAX), RTF_HYPHMAX},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHEN), RTF_HYPHEN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHLEAD), RTF_HYPHLEAD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHTRAIL), RTF_HYPHTRAIL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_HYPHMAX), RTF_HYPHMAX},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_TLSWG), RTF_TLSWG},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGBRK), RTF_PGBRK},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_TLSWG), RTF_TLSWG},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGBRK), RTF_PGBRK},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_PGDSCNO), RTF_PGDSCNO},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SOUTLVL), RTF_SOUTLVL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_PGDSCNO), RTF_PGDSCNO},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SOUTLVL), RTF_SOUTLVL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHP), RTF_SHP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SHP), RTF_SHP},
/*
{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPLEFT), RTF_SHPLEFT}
{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPTOP), RTF_SHPTOP}
{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBOTTOM), RTF_SHPBOTTOM}
{OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPRIGHT), RTF_SHPRIGHT}
*/
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SN), RTF_SN},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SV), RTF_SV},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SP), RTF_SP},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SN), RTF_SN},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SV), RTF_SV},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_SP), RTF_SP},
// Support for overline attributes
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OL), RTF_OL},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLW), RTF_OLW},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLD), RTF_OLD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLDB), RTF_OLDB},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLNONE), RTF_OLNONE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLDASH), RTF_OLDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLDASHD), RTF_OLDASHD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLDASHDD), RTF_OLDASHDD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTH), RTF_OLTH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLWAVE), RTF_OLWAVE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLC), RTF_OLC},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTHD), RTF_OLTHD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTHDASH), RTF_OLTHDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLLDASH), RTF_OLLDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTHLDASH), RTF_OLTHLDASH},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTHDASHD), RTF_OLTHDASHD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLTHDASHDD), RTF_OLTHDASHDD},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLHWAVE), RTF_OLHWAVE},
- {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_OLOLDBWAVE), RTF_OLOLDBWAVE}
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OL), RTF_OL},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLW), RTF_OLW},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLD), RTF_OLD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLDB), RTF_OLDB},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLNONE), RTF_OLNONE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLDASH), RTF_OLDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLDASHD), RTF_OLDASHD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLDASHDD), RTF_OLDASHDD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTH), RTF_OLTH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLWAVE), RTF_OLWAVE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLC), RTF_OLC},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTHD), RTF_OLTHD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASH), RTF_OLTHDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLLDASH), RTF_OLLDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTHLDASH), RTF_OLTHLDASH},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASHD), RTF_OLTHDASHD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASHDD), RTF_OLTHDASHDD},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLHWAVE), RTF_OLHWAVE},
+ {OUStringLiteral(u"" OOO_STRING_SVTOOLS_RTF_OLOLDBWAVE), RTF_OLOLDBWAVE}
};
@@ -1182,17 +1182,17 @@ int GetRTFToken( const OUString& rSearch )
std::sort( std::begin(aRTFTokenTab), std::end(aRTFTokenTab),
[](const RTF_TokenEntry & lhs, const RTF_TokenEntry & rhs)
{
- return strcmp(lhs.sToken.data, rhs.sToken.data) < 0;
+ return std::u16string_view(lhs.sToken) < std::u16string_view(rhs.sToken);
} );
bSortKeyWords = true;
}
auto findCompare = [](const RTF_TokenEntry & lhs, const OUString & s)
{
- return s.compareToIgnoreAsciiCaseAscii(lhs.sToken.data) > 0;
+ return s.compareToIgnoreAsciiCase(lhs.sToken) > 0;
};
auto findIt = std::lower_bound( std::begin(aRTFTokenTab), std::end(aRTFTokenTab), rSearch, findCompare);
- if (findIt != std::end(aRTFTokenTab) && rSearch.compareToIgnoreAsciiCaseAscii(findIt->sToken.data)==0)
+ if (findIt != std::end(aRTFTokenTab) && rSearch.compareToIgnoreAsciiCase(findIt->sToken)==0)
return findIt->nToken;
return 0;