1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099 |
- // Copyright 2009 The Closure Library Authors. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS-IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- /**
- * @fileoverview Utility functions for Unicode character names.
- *
- */
- goog.provide('goog.i18n.uCharNames');
- goog.require('goog.i18n.uChar');
- /**
- * Map used for looking up the char data. Will be created lazily.
- * @type {Object}
- * @private
- */
- goog.i18n.uCharNames.charData_ = null;
- /**
- * Gets the name of a character, if available, returns null otherwise.
- * @param {string} ch The character.
- * @return {?string} The name of the character.
- */
- goog.i18n.uCharNames.toName = function(ch) {
- if (!goog.i18n.uCharNames.charData_) {
- goog.i18n.uCharNames.createCharData();
- }
- var names = goog.i18n.uCharNames.charData_;
- var chCode = goog.i18n.uChar.toCharCode(ch);
- var chCodeStr = chCode + '';
- if (ch in names) {
- return names[ch];
- } else if (chCodeStr in names) {
- return names[chCode];
- } else if (
- 0xFE00 <= chCode && chCode <= 0xFE0F ||
- 0xE0100 <= chCode && chCode <= 0xE01EF) {
- var seqnum;
- if (0xFE00 <= chCode && chCode <= 0xFE0F) {
- // Variation selectors from 1 to 16.
- seqnum = chCode - 0xFDFF;
- } else {
- // Variation selectors from 17 to 256.
- seqnum = chCode - 0xE00EF;
- }
- /** @desc Variation selector with the sequence number. */
- var MSG_VARIATION_SELECTOR_SEQNUM = goog.getMsg(
- 'Variation Selector - {$seqnum}', {'seqnum': String(seqnum)});
- return MSG_VARIATION_SELECTOR_SEQNUM;
- }
- return null;
- };
- /**
- * Following lines are programatically created.
- * Details: https://sites/cibu/character-picker.
- **/
- /**
- * Sets up the character map, lazily. Some characters are indexed by their
- * decimal value.
- * @protected
- */
- goog.i18n.uCharNames.createCharData = function() {
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARABIC_SIGN_SANAH = goog.getMsg('Arabic Sign Sanah');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_CANADIAN_SYLLABICS_HYPHEN =
- goog.getMsg('Canadian Syllabics Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARABIC_SIGN_SAFHA = goog.getMsg('Arabic Sign Safha');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARABIC_FOOTNOTE_MARKER = goog.getMsg('Arabic Footnote Marker');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_FOUR_PER_EM_SPACE = goog.getMsg('Four-per-em Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_THREE_PER_EM_SPACE = goog.getMsg('Three-per-em Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_FIGURE_SPACE = goog.getMsg('Figure Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MONGOLIAN_SOFT_HYPHEN = goog.getMsg('Mongolian Soft Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_THIN_SPACE = goog.getMsg('Thin Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SOFT_HYPHEN = goog.getMsg('Soft Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ZERO_WIDTH_SPACE = goog.getMsg('Zero Width Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARMENIAN_HYPHEN = goog.getMsg('Armenian Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ZERO_WIDTH_JOINER = goog.getMsg('Zero Width Joiner');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EM_SPACE = goog.getMsg('Em Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SYRIAC_ABBREVIATION_MARK = goog.getMsg('Syriac Abbreviation Mark');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MONGOLIAN_VOWEL_SEPARATOR =
- goog.getMsg('Mongolian Vowel Separator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_NON_BREAKING_HYPHEN = goog.getMsg('Non-breaking Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HYPHEN = goog.getMsg('Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EM_QUAD = goog.getMsg('Em Quad');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EN_SPACE = goog.getMsg('En Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HORIZONTAL_BAR = goog.getMsg('Horizontal Bar');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EM_DASH = goog.getMsg('Em Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_DOUBLE_OBLIQUE_HYPHEN = goog.getMsg('Double Oblique Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_END_PHRASE =
- goog.getMsg('Musical Symbol End Phrase');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MEDIUM_MATHEMATICAL_SPACE =
- goog.getMsg('Medium Mathematical Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_WAVE_DASH = goog.getMsg('Wave Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SPACE = goog.getMsg('Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HYPHEN_WITH_DIAERESIS = goog.getMsg('Hyphen With Diaeresis');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EN_QUAD = goog.getMsg('En Quad');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_RIGHT_TO_LEFT_EMBEDDING = goog.getMsg('Right-to-left Embedding');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SIX_PER_EM_SPACE = goog.getMsg('Six-per-em Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HYPHEN_MINUS = goog.getMsg('Hyphen-minus');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_POP_DIRECTIONAL_FORMATTING =
- goog.getMsg('Pop Directional Formatting');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_NARROW_NO_BREAK_SPACE = goog.getMsg('Narrow No-break Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_RIGHT_TO_LEFT_OVERRIDE = goog.getMsg('Right-to-left Override');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH =
- goog.getMsg('Presentation Form For Vertical Em Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_WAVY_DASH = goog.getMsg('Wavy Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH =
- goog.getMsg('Presentation Form For Vertical En Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_KHMER_VOWEL_INHERENT_AA = goog.getMsg('Khmer Vowel Inherent Aa');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_KHMER_VOWEL_INHERENT_AQ = goog.getMsg('Khmer Vowel Inherent Aq');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_PUNCTUATION_SPACE = goog.getMsg('Punctuation Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HALFWIDTH_HANGUL_FILLER = goog.getMsg('Halfwidth Hangul Filler');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_KAITHI_NUMBER_SIGN = goog.getMsg('Kaithi Number Sign');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_LEFT_TO_RIGHT_EMBEDDING = goog.getMsg('Left-to-right Embedding');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HEBREW_PUNCTUATION_MAQAF = goog.getMsg('Hebrew Punctuation Maqaf');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_IDEOGRAPHIC_SPACE = goog.getMsg('Ideographic Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HAIR_SPACE = goog.getMsg('Hair Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_NO_BREAK_SPACE = goog.getMsg('No-break Space');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_FULLWIDTH_HYPHEN_MINUS = goog.getMsg('Fullwidth Hyphen-minus');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_PARAGRAPH_SEPARATOR = goog.getMsg('Paragraph Separator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_LEFT_TO_RIGHT_OVERRIDE = goog.getMsg('Left-to-right Override');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SMALL_HYPHEN_MINUS = goog.getMsg('Small Hyphen-minus');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_COMBINING_GRAPHEME_JOINER =
- goog.getMsg('Combining Grapheme Joiner');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ZERO_WIDTH_NON_JOINER = goog.getMsg('Zero Width Non-joiner');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE =
- goog.getMsg('Musical Symbol Begin Phrase');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARABIC_NUMBER_SIGN = goog.getMsg('Arabic Number Sign');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_RIGHT_TO_LEFT_MARK = goog.getMsg('Right-to-left Mark');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_OGHAM_SPACE_MARK = goog.getMsg('Ogham Space Mark');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_SMALL_EM_DASH = goog.getMsg('Small Em Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_LEFT_TO_RIGHT_MARK = goog.getMsg('Left-to-right Mark');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ARABIC_END_OF_AYAH = goog.getMsg('Arabic End Of Ayah');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HANGUL_CHOSEONG_FILLER = goog.getMsg('Hangul Choseong Filler');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HANGUL_FILLER = goog.getMsg('Hangul Filler');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_FUNCTION_APPLICATION = goog.getMsg('Function Application');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_HANGUL_JUNGSEONG_FILLER = goog.getMsg('Hangul Jungseong Filler');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INVISIBLE_SEPARATOR = goog.getMsg('Invisible Separator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INVISIBLE_TIMES = goog.getMsg('Invisible Times');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INVISIBLE_PLUS = goog.getMsg('Invisible Plus');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_WORD_JOINER = goog.getMsg('Word Joiner');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_LINE_SEPARATOR = goog.getMsg('Line Separator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN =
- goog.getMsg('Katakana-hiragana Double Hyphen');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_EN_DASH = goog.getMsg('En Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM =
- goog.getMsg('Musical Symbol Begin Beam');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_FIGURE_DASH = goog.getMsg('Figure Dash');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE = goog.getMsg('Musical Symbol Begin Tie');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_END_BEAM = goog.getMsg('Musical Symbol End Beam');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR =
- goog.getMsg('Musical Symbol Begin Slur');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_END_TIE = goog.getMsg('Musical Symbol End Tie');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR =
- goog.getMsg('Interlinear Annotation Anchor');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_MUSICAL_SYMBOL_END_SLUR = goog.getMsg('Musical Symbol End Slur');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR =
- goog.getMsg('Interlinear Annotation Terminator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR =
- goog.getMsg('Interlinear Annotation Separator');
- /**
- * @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
- * shown to a document editing user trying to insert a special character.
- * The balloon help would appear while the user hovers over the character
- * displayed. Newlines are not allowed; translation should be a noun and
- * as consise as possible. More details:
- * docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
- */
- var MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE =
- goog.getMsg('Zero Width No-break Space');
- goog.i18n.uCharNames.charData_ = {
- '\u0601': MSG_CP_ARABIC_SIGN_SANAH,
- '\u1400': MSG_CP_CANADIAN_SYLLABICS_HYPHEN,
- '\u0603': MSG_CP_ARABIC_SIGN_SAFHA,
- '\u0602': MSG_CP_ARABIC_FOOTNOTE_MARKER,
- '\u2005': MSG_CP_FOUR_PER_EM_SPACE,
- '\u2004': MSG_CP_THREE_PER_EM_SPACE,
- '\u2007': MSG_CP_FIGURE_SPACE,
- '\u1806': MSG_CP_MONGOLIAN_SOFT_HYPHEN,
- '\u2009': MSG_CP_THIN_SPACE,
- '\u00AD': MSG_CP_SOFT_HYPHEN,
- '\u200B': MSG_CP_ZERO_WIDTH_SPACE,
- '\u058A': MSG_CP_ARMENIAN_HYPHEN,
- '\u200D': MSG_CP_ZERO_WIDTH_JOINER,
- '\u2003': MSG_CP_EM_SPACE,
- '\u070F': MSG_CP_SYRIAC_ABBREVIATION_MARK,
- '\u180E': MSG_CP_MONGOLIAN_VOWEL_SEPARATOR,
- '\u2011': MSG_CP_NON_BREAKING_HYPHEN,
- '\u2010': MSG_CP_HYPHEN,
- '\u2001': MSG_CP_EM_QUAD,
- '\u2002': MSG_CP_EN_SPACE,
- '\u2015': MSG_CP_HORIZONTAL_BAR,
- '\u2014': MSG_CP_EM_DASH,
- '\u2E17': MSG_CP_DOUBLE_OBLIQUE_HYPHEN,
- '\u1D17A': MSG_CP_MUSICAL_SYMBOL_END_PHRASE,
- '\u205F': MSG_CP_MEDIUM_MATHEMATICAL_SPACE,
- '\u301C': MSG_CP_WAVE_DASH,
- ' ': MSG_CP_SPACE,
- '\u2E1A': MSG_CP_HYPHEN_WITH_DIAERESIS,
- '\u2000': MSG_CP_EN_QUAD,
- '\u202B': MSG_CP_RIGHT_TO_LEFT_EMBEDDING,
- '\u2006': MSG_CP_SIX_PER_EM_SPACE,
- '-': MSG_CP_HYPHEN_MINUS,
- '\u202C': MSG_CP_POP_DIRECTIONAL_FORMATTING,
- '\u202F': MSG_CP_NARROW_NO_BREAK_SPACE,
- '\u202E': MSG_CP_RIGHT_TO_LEFT_OVERRIDE,
- '\uFE31': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH,
- '\u3030': MSG_CP_WAVY_DASH,
- '\uFE32': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH,
- '\u17B5': MSG_CP_KHMER_VOWEL_INHERENT_AA,
- '\u17B4': MSG_CP_KHMER_VOWEL_INHERENT_AQ,
- '\u2008': MSG_CP_PUNCTUATION_SPACE,
- '\uFFA0': MSG_CP_HALFWIDTH_HANGUL_FILLER,
- '\u110BD': MSG_CP_KAITHI_NUMBER_SIGN,
- '\u202A': MSG_CP_LEFT_TO_RIGHT_EMBEDDING,
- '\u05BE': MSG_CP_HEBREW_PUNCTUATION_MAQAF,
- '\u3000': MSG_CP_IDEOGRAPHIC_SPACE,
- '\u200A': MSG_CP_HAIR_SPACE,
- '\u00A0': MSG_CP_NO_BREAK_SPACE,
- '\uFF0D': MSG_CP_FULLWIDTH_HYPHEN_MINUS,
- '8233': MSG_CP_PARAGRAPH_SEPARATOR,
- '\u202D': MSG_CP_LEFT_TO_RIGHT_OVERRIDE,
- '\uFE63': MSG_CP_SMALL_HYPHEN_MINUS,
- '\u034F': MSG_CP_COMBINING_GRAPHEME_JOINER,
- '\u200C': MSG_CP_ZERO_WIDTH_NON_JOINER,
- '\u1D179': MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE,
- '\u0600': MSG_CP_ARABIC_NUMBER_SIGN,
- '\u200F': MSG_CP_RIGHT_TO_LEFT_MARK,
- '\u1680': MSG_CP_OGHAM_SPACE_MARK,
- '\uFE58': MSG_CP_SMALL_EM_DASH,
- '\u200E': MSG_CP_LEFT_TO_RIGHT_MARK,
- '\u06DD': MSG_CP_ARABIC_END_OF_AYAH,
- '\u115F': MSG_CP_HANGUL_CHOSEONG_FILLER,
- '\u3164': MSG_CP_HANGUL_FILLER,
- '\u2061': MSG_CP_FUNCTION_APPLICATION,
- '\u1160': MSG_CP_HANGUL_JUNGSEONG_FILLER,
- '\u2063': MSG_CP_INVISIBLE_SEPARATOR,
- '\u2062': MSG_CP_INVISIBLE_TIMES,
- '\u2064': MSG_CP_INVISIBLE_PLUS,
- '\u2060': MSG_CP_WORD_JOINER,
- '8232': MSG_CP_LINE_SEPARATOR,
- '\u30A0': MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN,
- '\u2013': MSG_CP_EN_DASH,
- '\u1D173': MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM,
- '\u2012': MSG_CP_FIGURE_DASH,
- '\u1D175': MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE,
- '\u1D174': MSG_CP_MUSICAL_SYMBOL_END_BEAM,
- '\u1D177': MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR,
- '\u1D176': MSG_CP_MUSICAL_SYMBOL_END_TIE,
- '\uFFF9': MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR,
- '\u1D178': MSG_CP_MUSICAL_SYMBOL_END_SLUR,
- '\uFFFB': MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR,
- '\uFFFA': MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR,
- '\uFEFF': MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE
- };
- };
|