Path: blob/trunk/third_party/closure/goog/i18n/ucharnames.js
2868 views
// Copyright 2009 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.1314/**15* @fileoverview Utility functions for Unicode character names.16*17*/1819goog.provide('goog.i18n.uCharNames');2021goog.require('goog.i18n.uChar');222324/**25* Map used for looking up the char data. Will be created lazily.26* @type {Object}27* @private28*/29goog.i18n.uCharNames.charData_ = null;303132/**33* Gets the name of a character, if available, returns null otherwise.34* @param {string} ch The character.35* @return {?string} The name of the character.36*/37goog.i18n.uCharNames.toName = function(ch) {38if (!goog.i18n.uCharNames.charData_) {39goog.i18n.uCharNames.createCharData();40}4142var names = goog.i18n.uCharNames.charData_;43var chCode = goog.i18n.uChar.toCharCode(ch);44var chCodeStr = chCode + '';4546if (ch in names) {47return names[ch];48} else if (chCodeStr in names) {49return names[chCode];50} else if (510xFE00 <= chCode && chCode <= 0xFE0F ||520xE0100 <= chCode && chCode <= 0xE01EF) {53var seqnum;54if (0xFE00 <= chCode && chCode <= 0xFE0F) {55// Variation selectors from 1 to 16.56seqnum = chCode - 0xFDFF;57} else {58// Variation selectors from 17 to 256.59seqnum = chCode - 0xE00EF;60}6162/** @desc Variation selector with the sequence number. */63var MSG_VARIATION_SELECTOR_SEQNUM = goog.getMsg(64'Variation Selector - {$seqnum}', {'seqnum': String(seqnum)});65return MSG_VARIATION_SELECTOR_SEQNUM;66}67return null;68};697071/**72* Following lines are programatically created.73* Details: https://sites/cibu/character-picker.74**/757677/**78* Sets up the character map, lazily. Some characters are indexed by their79* decimal value.80* @protected81*/82goog.i18n.uCharNames.createCharData = function() {838485/**86* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,87* shown to a document editing user trying to insert a special character.88* The balloon help would appear while the user hovers over the character89* displayed. Newlines are not allowed; translation should be a noun and90* as consise as possible. More details:91* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.92*/93var MSG_CP_ARABIC_SIGN_SANAH = goog.getMsg('Arabic Sign Sanah');949596/**97* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,98* shown to a document editing user trying to insert a special character.99* The balloon help would appear while the user hovers over the character100* displayed. Newlines are not allowed; translation should be a noun and101* as consise as possible. More details:102* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.103*/104var MSG_CP_CANADIAN_SYLLABICS_HYPHEN =105goog.getMsg('Canadian Syllabics Hyphen');106107108/**109* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,110* shown to a document editing user trying to insert a special character.111* The balloon help would appear while the user hovers over the character112* displayed. Newlines are not allowed; translation should be a noun and113* as consise as possible. More details:114* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.115*/116var MSG_CP_ARABIC_SIGN_SAFHA = goog.getMsg('Arabic Sign Safha');117118119/**120* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,121* shown to a document editing user trying to insert a special character.122* The balloon help would appear while the user hovers over the character123* displayed. Newlines are not allowed; translation should be a noun and124* as consise as possible. More details:125* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.126*/127var MSG_CP_ARABIC_FOOTNOTE_MARKER = goog.getMsg('Arabic Footnote Marker');128129130/**131* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,132* shown to a document editing user trying to insert a special character.133* The balloon help would appear while the user hovers over the character134* displayed. Newlines are not allowed; translation should be a noun and135* as consise as possible. More details:136* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.137*/138var MSG_CP_FOUR_PER_EM_SPACE = goog.getMsg('Four-per-em Space');139140141/**142* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,143* shown to a document editing user trying to insert a special character.144* The balloon help would appear while the user hovers over the character145* displayed. Newlines are not allowed; translation should be a noun and146* as consise as possible. More details:147* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.148*/149var MSG_CP_THREE_PER_EM_SPACE = goog.getMsg('Three-per-em Space');150151152/**153* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,154* shown to a document editing user trying to insert a special character.155* The balloon help would appear while the user hovers over the character156* displayed. Newlines are not allowed; translation should be a noun and157* as consise as possible. More details:158* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.159*/160var MSG_CP_FIGURE_SPACE = goog.getMsg('Figure Space');161162163/**164* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,165* shown to a document editing user trying to insert a special character.166* The balloon help would appear while the user hovers over the character167* displayed. Newlines are not allowed; translation should be a noun and168* as consise as possible. More details:169* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.170*/171var MSG_CP_MONGOLIAN_SOFT_HYPHEN = goog.getMsg('Mongolian Soft Hyphen');172173174/**175* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,176* shown to a document editing user trying to insert a special character.177* The balloon help would appear while the user hovers over the character178* displayed. Newlines are not allowed; translation should be a noun and179* as consise as possible. More details:180* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.181*/182var MSG_CP_THIN_SPACE = goog.getMsg('Thin Space');183184185/**186* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,187* shown to a document editing user trying to insert a special character.188* The balloon help would appear while the user hovers over the character189* displayed. Newlines are not allowed; translation should be a noun and190* as consise as possible. More details:191* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.192*/193var MSG_CP_SOFT_HYPHEN = goog.getMsg('Soft Hyphen');194195196/**197* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,198* shown to a document editing user trying to insert a special character.199* The balloon help would appear while the user hovers over the character200* displayed. Newlines are not allowed; translation should be a noun and201* as consise as possible. More details:202* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.203*/204var MSG_CP_ZERO_WIDTH_SPACE = goog.getMsg('Zero Width Space');205206207/**208* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,209* shown to a document editing user trying to insert a special character.210* The balloon help would appear while the user hovers over the character211* displayed. Newlines are not allowed; translation should be a noun and212* as consise as possible. More details:213* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.214*/215var MSG_CP_ARMENIAN_HYPHEN = goog.getMsg('Armenian Hyphen');216217218/**219* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,220* shown to a document editing user trying to insert a special character.221* The balloon help would appear while the user hovers over the character222* displayed. Newlines are not allowed; translation should be a noun and223* as consise as possible. More details:224* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.225*/226var MSG_CP_ZERO_WIDTH_JOINER = goog.getMsg('Zero Width Joiner');227228229/**230* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,231* shown to a document editing user trying to insert a special character.232* The balloon help would appear while the user hovers over the character233* displayed. Newlines are not allowed; translation should be a noun and234* as consise as possible. More details:235* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.236*/237var MSG_CP_EM_SPACE = goog.getMsg('Em Space');238239240/**241* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,242* shown to a document editing user trying to insert a special character.243* The balloon help would appear while the user hovers over the character244* displayed. Newlines are not allowed; translation should be a noun and245* as consise as possible. More details:246* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.247*/248var MSG_CP_SYRIAC_ABBREVIATION_MARK = goog.getMsg('Syriac Abbreviation Mark');249250251/**252* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,253* shown to a document editing user trying to insert a special character.254* The balloon help would appear while the user hovers over the character255* displayed. Newlines are not allowed; translation should be a noun and256* as consise as possible. More details:257* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.258*/259var MSG_CP_MONGOLIAN_VOWEL_SEPARATOR =260goog.getMsg('Mongolian Vowel Separator');261262263/**264* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,265* shown to a document editing user trying to insert a special character.266* The balloon help would appear while the user hovers over the character267* displayed. Newlines are not allowed; translation should be a noun and268* as consise as possible. More details:269* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.270*/271var MSG_CP_NON_BREAKING_HYPHEN = goog.getMsg('Non-breaking Hyphen');272273274/**275* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,276* shown to a document editing user trying to insert a special character.277* The balloon help would appear while the user hovers over the character278* displayed. Newlines are not allowed; translation should be a noun and279* as consise as possible. More details:280* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.281*/282var MSG_CP_HYPHEN = goog.getMsg('Hyphen');283284285/**286* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,287* shown to a document editing user trying to insert a special character.288* The balloon help would appear while the user hovers over the character289* displayed. Newlines are not allowed; translation should be a noun and290* as consise as possible. More details:291* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.292*/293var MSG_CP_EM_QUAD = goog.getMsg('Em Quad');294295296/**297* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,298* shown to a document editing user trying to insert a special character.299* The balloon help would appear while the user hovers over the character300* displayed. Newlines are not allowed; translation should be a noun and301* as consise as possible. More details:302* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.303*/304var MSG_CP_EN_SPACE = goog.getMsg('En Space');305306307/**308* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,309* shown to a document editing user trying to insert a special character.310* The balloon help would appear while the user hovers over the character311* displayed. Newlines are not allowed; translation should be a noun and312* as consise as possible. More details:313* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.314*/315var MSG_CP_HORIZONTAL_BAR = goog.getMsg('Horizontal Bar');316317318/**319* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,320* shown to a document editing user trying to insert a special character.321* The balloon help would appear while the user hovers over the character322* displayed. Newlines are not allowed; translation should be a noun and323* as consise as possible. More details:324* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.325*/326var MSG_CP_EM_DASH = goog.getMsg('Em Dash');327328329/**330* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,331* shown to a document editing user trying to insert a special character.332* The balloon help would appear while the user hovers over the character333* displayed. Newlines are not allowed; translation should be a noun and334* as consise as possible. More details:335* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.336*/337var MSG_CP_DOUBLE_OBLIQUE_HYPHEN = goog.getMsg('Double Oblique Hyphen');338339340/**341* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,342* shown to a document editing user trying to insert a special character.343* The balloon help would appear while the user hovers over the character344* displayed. Newlines are not allowed; translation should be a noun and345* as consise as possible. More details:346* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.347*/348var MSG_CP_MUSICAL_SYMBOL_END_PHRASE =349goog.getMsg('Musical Symbol End Phrase');350351352/**353* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,354* shown to a document editing user trying to insert a special character.355* The balloon help would appear while the user hovers over the character356* displayed. Newlines are not allowed; translation should be a noun and357* as consise as possible. More details:358* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.359*/360var MSG_CP_MEDIUM_MATHEMATICAL_SPACE =361goog.getMsg('Medium Mathematical Space');362363364/**365* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,366* shown to a document editing user trying to insert a special character.367* The balloon help would appear while the user hovers over the character368* displayed. Newlines are not allowed; translation should be a noun and369* as consise as possible. More details:370* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.371*/372var MSG_CP_WAVE_DASH = goog.getMsg('Wave Dash');373374375/**376* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,377* shown to a document editing user trying to insert a special character.378* The balloon help would appear while the user hovers over the character379* displayed. Newlines are not allowed; translation should be a noun and380* as consise as possible. More details:381* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.382*/383var MSG_CP_SPACE = goog.getMsg('Space');384385386/**387* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,388* shown to a document editing user trying to insert a special character.389* The balloon help would appear while the user hovers over the character390* displayed. Newlines are not allowed; translation should be a noun and391* as consise as possible. More details:392* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.393*/394var MSG_CP_HYPHEN_WITH_DIAERESIS = goog.getMsg('Hyphen With Diaeresis');395396397/**398* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,399* shown to a document editing user trying to insert a special character.400* The balloon help would appear while the user hovers over the character401* displayed. Newlines are not allowed; translation should be a noun and402* as consise as possible. More details:403* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.404*/405var MSG_CP_EN_QUAD = goog.getMsg('En Quad');406407408/**409* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,410* shown to a document editing user trying to insert a special character.411* The balloon help would appear while the user hovers over the character412* displayed. Newlines are not allowed; translation should be a noun and413* as consise as possible. More details:414* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.415*/416var MSG_CP_RIGHT_TO_LEFT_EMBEDDING = goog.getMsg('Right-to-left Embedding');417418419/**420* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,421* shown to a document editing user trying to insert a special character.422* The balloon help would appear while the user hovers over the character423* displayed. Newlines are not allowed; translation should be a noun and424* as consise as possible. More details:425* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.426*/427var MSG_CP_SIX_PER_EM_SPACE = goog.getMsg('Six-per-em Space');428429430/**431* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,432* shown to a document editing user trying to insert a special character.433* The balloon help would appear while the user hovers over the character434* displayed. Newlines are not allowed; translation should be a noun and435* as consise as possible. More details:436* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.437*/438var MSG_CP_HYPHEN_MINUS = goog.getMsg('Hyphen-minus');439440441/**442* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,443* shown to a document editing user trying to insert a special character.444* The balloon help would appear while the user hovers over the character445* displayed. Newlines are not allowed; translation should be a noun and446* as consise as possible. More details:447* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.448*/449var MSG_CP_POP_DIRECTIONAL_FORMATTING =450goog.getMsg('Pop Directional Formatting');451452453/**454* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,455* shown to a document editing user trying to insert a special character.456* The balloon help would appear while the user hovers over the character457* displayed. Newlines are not allowed; translation should be a noun and458* as consise as possible. More details:459* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.460*/461var MSG_CP_NARROW_NO_BREAK_SPACE = goog.getMsg('Narrow No-break Space');462463464/**465* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,466* shown to a document editing user trying to insert a special character.467* The balloon help would appear while the user hovers over the character468* displayed. Newlines are not allowed; translation should be a noun and469* as consise as possible. More details:470* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.471*/472var MSG_CP_RIGHT_TO_LEFT_OVERRIDE = goog.getMsg('Right-to-left Override');473474475/**476* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,477* shown to a document editing user trying to insert a special character.478* The balloon help would appear while the user hovers over the character479* displayed. Newlines are not allowed; translation should be a noun and480* as consise as possible. More details:481* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.482*/483var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH =484goog.getMsg('Presentation Form For Vertical Em Dash');485486487/**488* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,489* shown to a document editing user trying to insert a special character.490* The balloon help would appear while the user hovers over the character491* displayed. Newlines are not allowed; translation should be a noun and492* as consise as possible. More details:493* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.494*/495var MSG_CP_WAVY_DASH = goog.getMsg('Wavy Dash');496497498/**499* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,500* shown to a document editing user trying to insert a special character.501* The balloon help would appear while the user hovers over the character502* displayed. Newlines are not allowed; translation should be a noun and503* as consise as possible. More details:504* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.505*/506var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH =507goog.getMsg('Presentation Form For Vertical En Dash');508509510/**511* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,512* shown to a document editing user trying to insert a special character.513* The balloon help would appear while the user hovers over the character514* displayed. Newlines are not allowed; translation should be a noun and515* as consise as possible. More details:516* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.517*/518var MSG_CP_KHMER_VOWEL_INHERENT_AA = goog.getMsg('Khmer Vowel Inherent Aa');519520521/**522* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,523* shown to a document editing user trying to insert a special character.524* The balloon help would appear while the user hovers over the character525* displayed. Newlines are not allowed; translation should be a noun and526* as consise as possible. More details:527* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.528*/529var MSG_CP_KHMER_VOWEL_INHERENT_AQ = goog.getMsg('Khmer Vowel Inherent Aq');530531532/**533* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,534* shown to a document editing user trying to insert a special character.535* The balloon help would appear while the user hovers over the character536* displayed. Newlines are not allowed; translation should be a noun and537* as consise as possible. More details:538* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.539*/540var MSG_CP_PUNCTUATION_SPACE = goog.getMsg('Punctuation Space');541542543/**544* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,545* shown to a document editing user trying to insert a special character.546* The balloon help would appear while the user hovers over the character547* displayed. Newlines are not allowed; translation should be a noun and548* as consise as possible. More details:549* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.550*/551var MSG_CP_HALFWIDTH_HANGUL_FILLER = goog.getMsg('Halfwidth Hangul Filler');552553554/**555* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,556* shown to a document editing user trying to insert a special character.557* The balloon help would appear while the user hovers over the character558* displayed. Newlines are not allowed; translation should be a noun and559* as consise as possible. More details:560* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.561*/562var MSG_CP_KAITHI_NUMBER_SIGN = goog.getMsg('Kaithi Number Sign');563564565/**566* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,567* shown to a document editing user trying to insert a special character.568* The balloon help would appear while the user hovers over the character569* displayed. Newlines are not allowed; translation should be a noun and570* as consise as possible. More details:571* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.572*/573var MSG_CP_LEFT_TO_RIGHT_EMBEDDING = goog.getMsg('Left-to-right Embedding');574575576/**577* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,578* shown to a document editing user trying to insert a special character.579* The balloon help would appear while the user hovers over the character580* displayed. Newlines are not allowed; translation should be a noun and581* as consise as possible. More details:582* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.583*/584var MSG_CP_HEBREW_PUNCTUATION_MAQAF = goog.getMsg('Hebrew Punctuation Maqaf');585586587/**588* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,589* shown to a document editing user trying to insert a special character.590* The balloon help would appear while the user hovers over the character591* displayed. Newlines are not allowed; translation should be a noun and592* as consise as possible. More details:593* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.594*/595var MSG_CP_IDEOGRAPHIC_SPACE = goog.getMsg('Ideographic Space');596597598/**599* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,600* shown to a document editing user trying to insert a special character.601* The balloon help would appear while the user hovers over the character602* displayed. Newlines are not allowed; translation should be a noun and603* as consise as possible. More details:604* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.605*/606var MSG_CP_HAIR_SPACE = goog.getMsg('Hair Space');607608609/**610* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,611* shown to a document editing user trying to insert a special character.612* The balloon help would appear while the user hovers over the character613* displayed. Newlines are not allowed; translation should be a noun and614* as consise as possible. More details:615* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.616*/617var MSG_CP_NO_BREAK_SPACE = goog.getMsg('No-break Space');618619620/**621* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,622* shown to a document editing user trying to insert a special character.623* The balloon help would appear while the user hovers over the character624* displayed. Newlines are not allowed; translation should be a noun and625* as consise as possible. More details:626* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.627*/628var MSG_CP_FULLWIDTH_HYPHEN_MINUS = goog.getMsg('Fullwidth Hyphen-minus');629630631/**632* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,633* shown to a document editing user trying to insert a special character.634* The balloon help would appear while the user hovers over the character635* displayed. Newlines are not allowed; translation should be a noun and636* as consise as possible. More details:637* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.638*/639var MSG_CP_PARAGRAPH_SEPARATOR = goog.getMsg('Paragraph Separator');640641642/**643* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,644* shown to a document editing user trying to insert a special character.645* The balloon help would appear while the user hovers over the character646* displayed. Newlines are not allowed; translation should be a noun and647* as consise as possible. More details:648* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.649*/650var MSG_CP_LEFT_TO_RIGHT_OVERRIDE = goog.getMsg('Left-to-right Override');651652653/**654* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,655* shown to a document editing user trying to insert a special character.656* The balloon help would appear while the user hovers over the character657* displayed. Newlines are not allowed; translation should be a noun and658* as consise as possible. More details:659* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.660*/661var MSG_CP_SMALL_HYPHEN_MINUS = goog.getMsg('Small Hyphen-minus');662663664/**665* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,666* shown to a document editing user trying to insert a special character.667* The balloon help would appear while the user hovers over the character668* displayed. Newlines are not allowed; translation should be a noun and669* as consise as possible. More details:670* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.671*/672var MSG_CP_COMBINING_GRAPHEME_JOINER =673goog.getMsg('Combining Grapheme Joiner');674675676/**677* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,678* shown to a document editing user trying to insert a special character.679* The balloon help would appear while the user hovers over the character680* displayed. Newlines are not allowed; translation should be a noun and681* as consise as possible. More details:682* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.683*/684var MSG_CP_ZERO_WIDTH_NON_JOINER = goog.getMsg('Zero Width Non-joiner');685686687/**688* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,689* shown to a document editing user trying to insert a special character.690* The balloon help would appear while the user hovers over the character691* displayed. Newlines are not allowed; translation should be a noun and692* as consise as possible. More details:693* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.694*/695var MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE =696goog.getMsg('Musical Symbol Begin Phrase');697698699/**700* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,701* shown to a document editing user trying to insert a special character.702* The balloon help would appear while the user hovers over the character703* displayed. Newlines are not allowed; translation should be a noun and704* as consise as possible. More details:705* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.706*/707var MSG_CP_ARABIC_NUMBER_SIGN = goog.getMsg('Arabic Number Sign');708709710/**711* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,712* shown to a document editing user trying to insert a special character.713* The balloon help would appear while the user hovers over the character714* displayed. Newlines are not allowed; translation should be a noun and715* as consise as possible. More details:716* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.717*/718var MSG_CP_RIGHT_TO_LEFT_MARK = goog.getMsg('Right-to-left Mark');719720721/**722* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,723* shown to a document editing user trying to insert a special character.724* The balloon help would appear while the user hovers over the character725* displayed. Newlines are not allowed; translation should be a noun and726* as consise as possible. More details:727* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.728*/729var MSG_CP_OGHAM_SPACE_MARK = goog.getMsg('Ogham Space Mark');730731732/**733* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,734* shown to a document editing user trying to insert a special character.735* The balloon help would appear while the user hovers over the character736* displayed. Newlines are not allowed; translation should be a noun and737* as consise as possible. More details:738* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.739*/740var MSG_CP_SMALL_EM_DASH = goog.getMsg('Small Em Dash');741742743/**744* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,745* shown to a document editing user trying to insert a special character.746* The balloon help would appear while the user hovers over the character747* displayed. Newlines are not allowed; translation should be a noun and748* as consise as possible. More details:749* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.750*/751var MSG_CP_LEFT_TO_RIGHT_MARK = goog.getMsg('Left-to-right Mark');752753754/**755* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,756* shown to a document editing user trying to insert a special character.757* The balloon help would appear while the user hovers over the character758* displayed. Newlines are not allowed; translation should be a noun and759* as consise as possible. More details:760* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.761*/762var MSG_CP_ARABIC_END_OF_AYAH = goog.getMsg('Arabic End Of Ayah');763764765/**766* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,767* shown to a document editing user trying to insert a special character.768* The balloon help would appear while the user hovers over the character769* displayed. Newlines are not allowed; translation should be a noun and770* as consise as possible. More details:771* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.772*/773var MSG_CP_HANGUL_CHOSEONG_FILLER = goog.getMsg('Hangul Choseong Filler');774775776/**777* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,778* shown to a document editing user trying to insert a special character.779* The balloon help would appear while the user hovers over the character780* displayed. Newlines are not allowed; translation should be a noun and781* as consise as possible. More details:782* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.783*/784var MSG_CP_HANGUL_FILLER = goog.getMsg('Hangul Filler');785786787/**788* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,789* shown to a document editing user trying to insert a special character.790* The balloon help would appear while the user hovers over the character791* displayed. Newlines are not allowed; translation should be a noun and792* as consise as possible. More details:793* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.794*/795var MSG_CP_FUNCTION_APPLICATION = goog.getMsg('Function Application');796797798/**799* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,800* shown to a document editing user trying to insert a special character.801* The balloon help would appear while the user hovers over the character802* displayed. Newlines are not allowed; translation should be a noun and803* as consise as possible. More details:804* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.805*/806var MSG_CP_HANGUL_JUNGSEONG_FILLER = goog.getMsg('Hangul Jungseong Filler');807808809/**810* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,811* shown to a document editing user trying to insert a special character.812* The balloon help would appear while the user hovers over the character813* displayed. Newlines are not allowed; translation should be a noun and814* as consise as possible. More details:815* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.816*/817var MSG_CP_INVISIBLE_SEPARATOR = goog.getMsg('Invisible Separator');818819820/**821* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,822* shown to a document editing user trying to insert a special character.823* The balloon help would appear while the user hovers over the character824* displayed. Newlines are not allowed; translation should be a noun and825* as consise as possible. More details:826* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.827*/828var MSG_CP_INVISIBLE_TIMES = goog.getMsg('Invisible Times');829830831/**832* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,833* shown to a document editing user trying to insert a special character.834* The balloon help would appear while the user hovers over the character835* displayed. Newlines are not allowed; translation should be a noun and836* as consise as possible. More details:837* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.838*/839var MSG_CP_INVISIBLE_PLUS = goog.getMsg('Invisible Plus');840841842/**843* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,844* shown to a document editing user trying to insert a special character.845* The balloon help would appear while the user hovers over the character846* displayed. Newlines are not allowed; translation should be a noun and847* as consise as possible. More details:848* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.849*/850var MSG_CP_WORD_JOINER = goog.getMsg('Word Joiner');851852853/**854* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,855* shown to a document editing user trying to insert a special character.856* The balloon help would appear while the user hovers over the character857* displayed. Newlines are not allowed; translation should be a noun and858* as consise as possible. More details:859* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.860*/861var MSG_CP_LINE_SEPARATOR = goog.getMsg('Line Separator');862863864/**865* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,866* shown to a document editing user trying to insert a special character.867* The balloon help would appear while the user hovers over the character868* displayed. Newlines are not allowed; translation should be a noun and869* as consise as possible. More details:870* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.871*/872var MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN =873goog.getMsg('Katakana-hiragana Double Hyphen');874875876/**877* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,878* shown to a document editing user trying to insert a special character.879* The balloon help would appear while the user hovers over the character880* displayed. Newlines are not allowed; translation should be a noun and881* as consise as possible. More details:882* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.883*/884var MSG_CP_EN_DASH = goog.getMsg('En Dash');885886887/**888* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,889* shown to a document editing user trying to insert a special character.890* The balloon help would appear while the user hovers over the character891* displayed. Newlines are not allowed; translation should be a noun and892* as consise as possible. More details:893* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.894*/895var MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM =896goog.getMsg('Musical Symbol Begin Beam');897898899/**900* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,901* shown to a document editing user trying to insert a special character.902* The balloon help would appear while the user hovers over the character903* displayed. Newlines are not allowed; translation should be a noun and904* as consise as possible. More details:905* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.906*/907var MSG_CP_FIGURE_DASH = goog.getMsg('Figure Dash');908909910/**911* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,912* shown to a document editing user trying to insert a special character.913* The balloon help would appear while the user hovers over the character914* displayed. Newlines are not allowed; translation should be a noun and915* as consise as possible. More details:916* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.917*/918var MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE = goog.getMsg('Musical Symbol Begin Tie');919920921/**922* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,923* shown to a document editing user trying to insert a special character.924* The balloon help would appear while the user hovers over the character925* displayed. Newlines are not allowed; translation should be a noun and926* as consise as possible. More details:927* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.928*/929var MSG_CP_MUSICAL_SYMBOL_END_BEAM = goog.getMsg('Musical Symbol End Beam');930931932/**933* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,934* shown to a document editing user trying to insert a special character.935* The balloon help would appear while the user hovers over the character936* displayed. Newlines are not allowed; translation should be a noun and937* as consise as possible. More details:938* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.939*/940var MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR =941goog.getMsg('Musical Symbol Begin Slur');942943944/**945* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,946* shown to a document editing user trying to insert a special character.947* The balloon help would appear while the user hovers over the character948* displayed. Newlines are not allowed; translation should be a noun and949* as consise as possible. More details:950* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.951*/952var MSG_CP_MUSICAL_SYMBOL_END_TIE = goog.getMsg('Musical Symbol End Tie');953954955/**956* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,957* shown to a document editing user trying to insert a special character.958* The balloon help would appear while the user hovers over the character959* displayed. Newlines are not allowed; translation should be a noun and960* as consise as possible. More details:961* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.962*/963var MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR =964goog.getMsg('Interlinear Annotation Anchor');965966967/**968* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,969* shown to a document editing user trying to insert a special character.970* The balloon help would appear while the user hovers over the character971* displayed. Newlines are not allowed; translation should be a noun and972* as consise as possible. More details:973* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.974*/975var MSG_CP_MUSICAL_SYMBOL_END_SLUR = goog.getMsg('Musical Symbol End Slur');976977978/**979* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,980* shown to a document editing user trying to insert a special character.981* The balloon help would appear while the user hovers over the character982* displayed. Newlines are not allowed; translation should be a noun and983* as consise as possible. More details:984* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.985*/986var MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR =987goog.getMsg('Interlinear Annotation Terminator');988989990/**991* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,992* shown to a document editing user trying to insert a special character.993* The balloon help would appear while the user hovers over the character994* displayed. Newlines are not allowed; translation should be a noun and995* as consise as possible. More details:996* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.997*/998var MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR =999goog.getMsg('Interlinear Annotation Separator');100010011002/**1003* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,1004* shown to a document editing user trying to insert a special character.1005* The balloon help would appear while the user hovers over the character1006* displayed. Newlines are not allowed; translation should be a noun and1007* as consise as possible. More details:1008* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.1009*/1010var MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE =1011goog.getMsg('Zero Width No-break Space');10121013goog.i18n.uCharNames.charData_ = {1014'\u0601': MSG_CP_ARABIC_SIGN_SANAH,1015'\u1400': MSG_CP_CANADIAN_SYLLABICS_HYPHEN,1016'\u0603': MSG_CP_ARABIC_SIGN_SAFHA,1017'\u0602': MSG_CP_ARABIC_FOOTNOTE_MARKER,1018'\u2005': MSG_CP_FOUR_PER_EM_SPACE,1019'\u2004': MSG_CP_THREE_PER_EM_SPACE,1020'\u2007': MSG_CP_FIGURE_SPACE,1021'\u1806': MSG_CP_MONGOLIAN_SOFT_HYPHEN,1022'\u2009': MSG_CP_THIN_SPACE,1023'\u00AD': MSG_CP_SOFT_HYPHEN,1024'\u200B': MSG_CP_ZERO_WIDTH_SPACE,1025'\u058A': MSG_CP_ARMENIAN_HYPHEN,1026'\u200D': MSG_CP_ZERO_WIDTH_JOINER,1027'\u2003': MSG_CP_EM_SPACE,1028'\u070F': MSG_CP_SYRIAC_ABBREVIATION_MARK,1029'\u180E': MSG_CP_MONGOLIAN_VOWEL_SEPARATOR,1030'\u2011': MSG_CP_NON_BREAKING_HYPHEN,1031'\u2010': MSG_CP_HYPHEN,1032'\u2001': MSG_CP_EM_QUAD,1033'\u2002': MSG_CP_EN_SPACE,1034'\u2015': MSG_CP_HORIZONTAL_BAR,1035'\u2014': MSG_CP_EM_DASH,1036'\u2E17': MSG_CP_DOUBLE_OBLIQUE_HYPHEN,1037'\u1D17A': MSG_CP_MUSICAL_SYMBOL_END_PHRASE,1038'\u205F': MSG_CP_MEDIUM_MATHEMATICAL_SPACE,1039'\u301C': MSG_CP_WAVE_DASH,1040' ': MSG_CP_SPACE,1041'\u2E1A': MSG_CP_HYPHEN_WITH_DIAERESIS,1042'\u2000': MSG_CP_EN_QUAD,1043'\u202B': MSG_CP_RIGHT_TO_LEFT_EMBEDDING,1044'\u2006': MSG_CP_SIX_PER_EM_SPACE,1045'-': MSG_CP_HYPHEN_MINUS,1046'\u202C': MSG_CP_POP_DIRECTIONAL_FORMATTING,1047'\u202F': MSG_CP_NARROW_NO_BREAK_SPACE,1048'\u202E': MSG_CP_RIGHT_TO_LEFT_OVERRIDE,1049'\uFE31': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH,1050'\u3030': MSG_CP_WAVY_DASH,1051'\uFE32': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH,1052'\u17B5': MSG_CP_KHMER_VOWEL_INHERENT_AA,1053'\u17B4': MSG_CP_KHMER_VOWEL_INHERENT_AQ,1054'\u2008': MSG_CP_PUNCTUATION_SPACE,1055'\uFFA0': MSG_CP_HALFWIDTH_HANGUL_FILLER,1056'\u110BD': MSG_CP_KAITHI_NUMBER_SIGN,1057'\u202A': MSG_CP_LEFT_TO_RIGHT_EMBEDDING,1058'\u05BE': MSG_CP_HEBREW_PUNCTUATION_MAQAF,1059'\u3000': MSG_CP_IDEOGRAPHIC_SPACE,1060'\u200A': MSG_CP_HAIR_SPACE,1061'\u00A0': MSG_CP_NO_BREAK_SPACE,1062'\uFF0D': MSG_CP_FULLWIDTH_HYPHEN_MINUS,1063'8233': MSG_CP_PARAGRAPH_SEPARATOR,1064'\u202D': MSG_CP_LEFT_TO_RIGHT_OVERRIDE,1065'\uFE63': MSG_CP_SMALL_HYPHEN_MINUS,1066'\u034F': MSG_CP_COMBINING_GRAPHEME_JOINER,1067'\u200C': MSG_CP_ZERO_WIDTH_NON_JOINER,1068'\u1D179': MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE,1069'\u0600': MSG_CP_ARABIC_NUMBER_SIGN,1070'\u200F': MSG_CP_RIGHT_TO_LEFT_MARK,1071'\u1680': MSG_CP_OGHAM_SPACE_MARK,1072'\uFE58': MSG_CP_SMALL_EM_DASH,1073'\u200E': MSG_CP_LEFT_TO_RIGHT_MARK,1074'\u06DD': MSG_CP_ARABIC_END_OF_AYAH,1075'\u115F': MSG_CP_HANGUL_CHOSEONG_FILLER,1076'\u3164': MSG_CP_HANGUL_FILLER,1077'\u2061': MSG_CP_FUNCTION_APPLICATION,1078'\u1160': MSG_CP_HANGUL_JUNGSEONG_FILLER,1079'\u2063': MSG_CP_INVISIBLE_SEPARATOR,1080'\u2062': MSG_CP_INVISIBLE_TIMES,1081'\u2064': MSG_CP_INVISIBLE_PLUS,1082'\u2060': MSG_CP_WORD_JOINER,1083'8232': MSG_CP_LINE_SEPARATOR,1084'\u30A0': MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN,1085'\u2013': MSG_CP_EN_DASH,1086'\u1D173': MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM,1087'\u2012': MSG_CP_FIGURE_DASH,1088'\u1D175': MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE,1089'\u1D174': MSG_CP_MUSICAL_SYMBOL_END_BEAM,1090'\u1D177': MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR,1091'\u1D176': MSG_CP_MUSICAL_SYMBOL_END_TIE,1092'\uFFF9': MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR,1093'\u1D178': MSG_CP_MUSICAL_SYMBOL_END_SLUR,1094'\uFFFB': MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR,1095'\uFFFA': MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR,1096'\uFEFF': MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE1097};1098};109911001101