Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/i18n/ucharnames.js
2868 views
1
// Copyright 2009 The Closure Library Authors. All Rights Reserved.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS-IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
/**
16
* @fileoverview Utility functions for Unicode character names.
17
*
18
*/
19
20
goog.provide('goog.i18n.uCharNames');
21
22
goog.require('goog.i18n.uChar');
23
24
25
/**
26
* Map used for looking up the char data. Will be created lazily.
27
* @type {Object}
28
* @private
29
*/
30
goog.i18n.uCharNames.charData_ = null;
31
32
33
/**
34
* Gets the name of a character, if available, returns null otherwise.
35
* @param {string} ch The character.
36
* @return {?string} The name of the character.
37
*/
38
goog.i18n.uCharNames.toName = function(ch) {
39
if (!goog.i18n.uCharNames.charData_) {
40
goog.i18n.uCharNames.createCharData();
41
}
42
43
var names = goog.i18n.uCharNames.charData_;
44
var chCode = goog.i18n.uChar.toCharCode(ch);
45
var chCodeStr = chCode + '';
46
47
if (ch in names) {
48
return names[ch];
49
} else if (chCodeStr in names) {
50
return names[chCode];
51
} else if (
52
0xFE00 <= chCode && chCode <= 0xFE0F ||
53
0xE0100 <= chCode && chCode <= 0xE01EF) {
54
var seqnum;
55
if (0xFE00 <= chCode && chCode <= 0xFE0F) {
56
// Variation selectors from 1 to 16.
57
seqnum = chCode - 0xFDFF;
58
} else {
59
// Variation selectors from 17 to 256.
60
seqnum = chCode - 0xE00EF;
61
}
62
63
/** @desc Variation selector with the sequence number. */
64
var MSG_VARIATION_SELECTOR_SEQNUM = goog.getMsg(
65
'Variation Selector - {$seqnum}', {'seqnum': String(seqnum)});
66
return MSG_VARIATION_SELECTOR_SEQNUM;
67
}
68
return null;
69
};
70
71
72
/**
73
* Following lines are programatically created.
74
* Details: https://sites/cibu/character-picker.
75
**/
76
77
78
/**
79
* Sets up the character map, lazily. Some characters are indexed by their
80
* decimal value.
81
* @protected
82
*/
83
goog.i18n.uCharNames.createCharData = function() {
84
85
86
/**
87
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
88
* shown to a document editing user trying to insert a special character.
89
* The balloon help would appear while the user hovers over the character
90
* displayed. Newlines are not allowed; translation should be a noun and
91
* as consise as possible. More details:
92
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
93
*/
94
var MSG_CP_ARABIC_SIGN_SANAH = goog.getMsg('Arabic Sign Sanah');
95
96
97
/**
98
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
99
* shown to a document editing user trying to insert a special character.
100
* The balloon help would appear while the user hovers over the character
101
* displayed. Newlines are not allowed; translation should be a noun and
102
* as consise as possible. More details:
103
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
104
*/
105
var MSG_CP_CANADIAN_SYLLABICS_HYPHEN =
106
goog.getMsg('Canadian Syllabics Hyphen');
107
108
109
/**
110
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
111
* shown to a document editing user trying to insert a special character.
112
* The balloon help would appear while the user hovers over the character
113
* displayed. Newlines are not allowed; translation should be a noun and
114
* as consise as possible. More details:
115
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
116
*/
117
var MSG_CP_ARABIC_SIGN_SAFHA = goog.getMsg('Arabic Sign Safha');
118
119
120
/**
121
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
122
* shown to a document editing user trying to insert a special character.
123
* The balloon help would appear while the user hovers over the character
124
* displayed. Newlines are not allowed; translation should be a noun and
125
* as consise as possible. More details:
126
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
127
*/
128
var MSG_CP_ARABIC_FOOTNOTE_MARKER = goog.getMsg('Arabic Footnote Marker');
129
130
131
/**
132
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
133
* shown to a document editing user trying to insert a special character.
134
* The balloon help would appear while the user hovers over the character
135
* displayed. Newlines are not allowed; translation should be a noun and
136
* as consise as possible. More details:
137
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
138
*/
139
var MSG_CP_FOUR_PER_EM_SPACE = goog.getMsg('Four-per-em Space');
140
141
142
/**
143
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
144
* shown to a document editing user trying to insert a special character.
145
* The balloon help would appear while the user hovers over the character
146
* displayed. Newlines are not allowed; translation should be a noun and
147
* as consise as possible. More details:
148
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
149
*/
150
var MSG_CP_THREE_PER_EM_SPACE = goog.getMsg('Three-per-em Space');
151
152
153
/**
154
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
155
* shown to a document editing user trying to insert a special character.
156
* The balloon help would appear while the user hovers over the character
157
* displayed. Newlines are not allowed; translation should be a noun and
158
* as consise as possible. More details:
159
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
160
*/
161
var MSG_CP_FIGURE_SPACE = goog.getMsg('Figure Space');
162
163
164
/**
165
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
166
* shown to a document editing user trying to insert a special character.
167
* The balloon help would appear while the user hovers over the character
168
* displayed. Newlines are not allowed; translation should be a noun and
169
* as consise as possible. More details:
170
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
171
*/
172
var MSG_CP_MONGOLIAN_SOFT_HYPHEN = goog.getMsg('Mongolian Soft Hyphen');
173
174
175
/**
176
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
177
* shown to a document editing user trying to insert a special character.
178
* The balloon help would appear while the user hovers over the character
179
* displayed. Newlines are not allowed; translation should be a noun and
180
* as consise as possible. More details:
181
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
182
*/
183
var MSG_CP_THIN_SPACE = goog.getMsg('Thin Space');
184
185
186
/**
187
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
188
* shown to a document editing user trying to insert a special character.
189
* The balloon help would appear while the user hovers over the character
190
* displayed. Newlines are not allowed; translation should be a noun and
191
* as consise as possible. More details:
192
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
193
*/
194
var MSG_CP_SOFT_HYPHEN = goog.getMsg('Soft Hyphen');
195
196
197
/**
198
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
199
* shown to a document editing user trying to insert a special character.
200
* The balloon help would appear while the user hovers over the character
201
* displayed. Newlines are not allowed; translation should be a noun and
202
* as consise as possible. More details:
203
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
204
*/
205
var MSG_CP_ZERO_WIDTH_SPACE = goog.getMsg('Zero Width Space');
206
207
208
/**
209
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
210
* shown to a document editing user trying to insert a special character.
211
* The balloon help would appear while the user hovers over the character
212
* displayed. Newlines are not allowed; translation should be a noun and
213
* as consise as possible. More details:
214
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
215
*/
216
var MSG_CP_ARMENIAN_HYPHEN = goog.getMsg('Armenian Hyphen');
217
218
219
/**
220
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
221
* shown to a document editing user trying to insert a special character.
222
* The balloon help would appear while the user hovers over the character
223
* displayed. Newlines are not allowed; translation should be a noun and
224
* as consise as possible. More details:
225
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
226
*/
227
var MSG_CP_ZERO_WIDTH_JOINER = goog.getMsg('Zero Width Joiner');
228
229
230
/**
231
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
232
* shown to a document editing user trying to insert a special character.
233
* The balloon help would appear while the user hovers over the character
234
* displayed. Newlines are not allowed; translation should be a noun and
235
* as consise as possible. More details:
236
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
237
*/
238
var MSG_CP_EM_SPACE = goog.getMsg('Em Space');
239
240
241
/**
242
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
243
* shown to a document editing user trying to insert a special character.
244
* The balloon help would appear while the user hovers over the character
245
* displayed. Newlines are not allowed; translation should be a noun and
246
* as consise as possible. More details:
247
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
248
*/
249
var MSG_CP_SYRIAC_ABBREVIATION_MARK = goog.getMsg('Syriac Abbreviation Mark');
250
251
252
/**
253
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
254
* shown to a document editing user trying to insert a special character.
255
* The balloon help would appear while the user hovers over the character
256
* displayed. Newlines are not allowed; translation should be a noun and
257
* as consise as possible. More details:
258
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
259
*/
260
var MSG_CP_MONGOLIAN_VOWEL_SEPARATOR =
261
goog.getMsg('Mongolian Vowel Separator');
262
263
264
/**
265
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
266
* shown to a document editing user trying to insert a special character.
267
* The balloon help would appear while the user hovers over the character
268
* displayed. Newlines are not allowed; translation should be a noun and
269
* as consise as possible. More details:
270
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
271
*/
272
var MSG_CP_NON_BREAKING_HYPHEN = goog.getMsg('Non-breaking Hyphen');
273
274
275
/**
276
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
277
* shown to a document editing user trying to insert a special character.
278
* The balloon help would appear while the user hovers over the character
279
* displayed. Newlines are not allowed; translation should be a noun and
280
* as consise as possible. More details:
281
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
282
*/
283
var MSG_CP_HYPHEN = goog.getMsg('Hyphen');
284
285
286
/**
287
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
288
* shown to a document editing user trying to insert a special character.
289
* The balloon help would appear while the user hovers over the character
290
* displayed. Newlines are not allowed; translation should be a noun and
291
* as consise as possible. More details:
292
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
293
*/
294
var MSG_CP_EM_QUAD = goog.getMsg('Em Quad');
295
296
297
/**
298
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
299
* shown to a document editing user trying to insert a special character.
300
* The balloon help would appear while the user hovers over the character
301
* displayed. Newlines are not allowed; translation should be a noun and
302
* as consise as possible. More details:
303
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
304
*/
305
var MSG_CP_EN_SPACE = goog.getMsg('En Space');
306
307
308
/**
309
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
310
* shown to a document editing user trying to insert a special character.
311
* The balloon help would appear while the user hovers over the character
312
* displayed. Newlines are not allowed; translation should be a noun and
313
* as consise as possible. More details:
314
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
315
*/
316
var MSG_CP_HORIZONTAL_BAR = goog.getMsg('Horizontal Bar');
317
318
319
/**
320
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
321
* shown to a document editing user trying to insert a special character.
322
* The balloon help would appear while the user hovers over the character
323
* displayed. Newlines are not allowed; translation should be a noun and
324
* as consise as possible. More details:
325
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
326
*/
327
var MSG_CP_EM_DASH = goog.getMsg('Em Dash');
328
329
330
/**
331
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
332
* shown to a document editing user trying to insert a special character.
333
* The balloon help would appear while the user hovers over the character
334
* displayed. Newlines are not allowed; translation should be a noun and
335
* as consise as possible. More details:
336
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
337
*/
338
var MSG_CP_DOUBLE_OBLIQUE_HYPHEN = goog.getMsg('Double Oblique Hyphen');
339
340
341
/**
342
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
343
* shown to a document editing user trying to insert a special character.
344
* The balloon help would appear while the user hovers over the character
345
* displayed. Newlines are not allowed; translation should be a noun and
346
* as consise as possible. More details:
347
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
348
*/
349
var MSG_CP_MUSICAL_SYMBOL_END_PHRASE =
350
goog.getMsg('Musical Symbol End Phrase');
351
352
353
/**
354
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
355
* shown to a document editing user trying to insert a special character.
356
* The balloon help would appear while the user hovers over the character
357
* displayed. Newlines are not allowed; translation should be a noun and
358
* as consise as possible. More details:
359
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
360
*/
361
var MSG_CP_MEDIUM_MATHEMATICAL_SPACE =
362
goog.getMsg('Medium Mathematical Space');
363
364
365
/**
366
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
367
* shown to a document editing user trying to insert a special character.
368
* The balloon help would appear while the user hovers over the character
369
* displayed. Newlines are not allowed; translation should be a noun and
370
* as consise as possible. More details:
371
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
372
*/
373
var MSG_CP_WAVE_DASH = goog.getMsg('Wave Dash');
374
375
376
/**
377
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
378
* shown to a document editing user trying to insert a special character.
379
* The balloon help would appear while the user hovers over the character
380
* displayed. Newlines are not allowed; translation should be a noun and
381
* as consise as possible. More details:
382
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
383
*/
384
var MSG_CP_SPACE = goog.getMsg('Space');
385
386
387
/**
388
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
389
* shown to a document editing user trying to insert a special character.
390
* The balloon help would appear while the user hovers over the character
391
* displayed. Newlines are not allowed; translation should be a noun and
392
* as consise as possible. More details:
393
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
394
*/
395
var MSG_CP_HYPHEN_WITH_DIAERESIS = goog.getMsg('Hyphen With Diaeresis');
396
397
398
/**
399
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
400
* shown to a document editing user trying to insert a special character.
401
* The balloon help would appear while the user hovers over the character
402
* displayed. Newlines are not allowed; translation should be a noun and
403
* as consise as possible. More details:
404
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
405
*/
406
var MSG_CP_EN_QUAD = goog.getMsg('En Quad');
407
408
409
/**
410
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
411
* shown to a document editing user trying to insert a special character.
412
* The balloon help would appear while the user hovers over the character
413
* displayed. Newlines are not allowed; translation should be a noun and
414
* as consise as possible. More details:
415
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
416
*/
417
var MSG_CP_RIGHT_TO_LEFT_EMBEDDING = goog.getMsg('Right-to-left Embedding');
418
419
420
/**
421
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
422
* shown to a document editing user trying to insert a special character.
423
* The balloon help would appear while the user hovers over the character
424
* displayed. Newlines are not allowed; translation should be a noun and
425
* as consise as possible. More details:
426
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
427
*/
428
var MSG_CP_SIX_PER_EM_SPACE = goog.getMsg('Six-per-em Space');
429
430
431
/**
432
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
433
* shown to a document editing user trying to insert a special character.
434
* The balloon help would appear while the user hovers over the character
435
* displayed. Newlines are not allowed; translation should be a noun and
436
* as consise as possible. More details:
437
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
438
*/
439
var MSG_CP_HYPHEN_MINUS = goog.getMsg('Hyphen-minus');
440
441
442
/**
443
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
444
* shown to a document editing user trying to insert a special character.
445
* The balloon help would appear while the user hovers over the character
446
* displayed. Newlines are not allowed; translation should be a noun and
447
* as consise as possible. More details:
448
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
449
*/
450
var MSG_CP_POP_DIRECTIONAL_FORMATTING =
451
goog.getMsg('Pop Directional Formatting');
452
453
454
/**
455
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
456
* shown to a document editing user trying to insert a special character.
457
* The balloon help would appear while the user hovers over the character
458
* displayed. Newlines are not allowed; translation should be a noun and
459
* as consise as possible. More details:
460
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
461
*/
462
var MSG_CP_NARROW_NO_BREAK_SPACE = goog.getMsg('Narrow No-break Space');
463
464
465
/**
466
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
467
* shown to a document editing user trying to insert a special character.
468
* The balloon help would appear while the user hovers over the character
469
* displayed. Newlines are not allowed; translation should be a noun and
470
* as consise as possible. More details:
471
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
472
*/
473
var MSG_CP_RIGHT_TO_LEFT_OVERRIDE = goog.getMsg('Right-to-left Override');
474
475
476
/**
477
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
478
* shown to a document editing user trying to insert a special character.
479
* The balloon help would appear while the user hovers over the character
480
* displayed. Newlines are not allowed; translation should be a noun and
481
* as consise as possible. More details:
482
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
483
*/
484
var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH =
485
goog.getMsg('Presentation Form For Vertical Em Dash');
486
487
488
/**
489
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
490
* shown to a document editing user trying to insert a special character.
491
* The balloon help would appear while the user hovers over the character
492
* displayed. Newlines are not allowed; translation should be a noun and
493
* as consise as possible. More details:
494
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
495
*/
496
var MSG_CP_WAVY_DASH = goog.getMsg('Wavy Dash');
497
498
499
/**
500
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
501
* shown to a document editing user trying to insert a special character.
502
* The balloon help would appear while the user hovers over the character
503
* displayed. Newlines are not allowed; translation should be a noun and
504
* as consise as possible. More details:
505
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
506
*/
507
var MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH =
508
goog.getMsg('Presentation Form For Vertical En Dash');
509
510
511
/**
512
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
513
* shown to a document editing user trying to insert a special character.
514
* The balloon help would appear while the user hovers over the character
515
* displayed. Newlines are not allowed; translation should be a noun and
516
* as consise as possible. More details:
517
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
518
*/
519
var MSG_CP_KHMER_VOWEL_INHERENT_AA = goog.getMsg('Khmer Vowel Inherent Aa');
520
521
522
/**
523
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
524
* shown to a document editing user trying to insert a special character.
525
* The balloon help would appear while the user hovers over the character
526
* displayed. Newlines are not allowed; translation should be a noun and
527
* as consise as possible. More details:
528
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
529
*/
530
var MSG_CP_KHMER_VOWEL_INHERENT_AQ = goog.getMsg('Khmer Vowel Inherent Aq');
531
532
533
/**
534
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
535
* shown to a document editing user trying to insert a special character.
536
* The balloon help would appear while the user hovers over the character
537
* displayed. Newlines are not allowed; translation should be a noun and
538
* as consise as possible. More details:
539
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
540
*/
541
var MSG_CP_PUNCTUATION_SPACE = goog.getMsg('Punctuation Space');
542
543
544
/**
545
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
546
* shown to a document editing user trying to insert a special character.
547
* The balloon help would appear while the user hovers over the character
548
* displayed. Newlines are not allowed; translation should be a noun and
549
* as consise as possible. More details:
550
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
551
*/
552
var MSG_CP_HALFWIDTH_HANGUL_FILLER = goog.getMsg('Halfwidth Hangul Filler');
553
554
555
/**
556
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
557
* shown to a document editing user trying to insert a special character.
558
* The balloon help would appear while the user hovers over the character
559
* displayed. Newlines are not allowed; translation should be a noun and
560
* as consise as possible. More details:
561
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
562
*/
563
var MSG_CP_KAITHI_NUMBER_SIGN = goog.getMsg('Kaithi Number Sign');
564
565
566
/**
567
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
568
* shown to a document editing user trying to insert a special character.
569
* The balloon help would appear while the user hovers over the character
570
* displayed. Newlines are not allowed; translation should be a noun and
571
* as consise as possible. More details:
572
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
573
*/
574
var MSG_CP_LEFT_TO_RIGHT_EMBEDDING = goog.getMsg('Left-to-right Embedding');
575
576
577
/**
578
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
579
* shown to a document editing user trying to insert a special character.
580
* The balloon help would appear while the user hovers over the character
581
* displayed. Newlines are not allowed; translation should be a noun and
582
* as consise as possible. More details:
583
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
584
*/
585
var MSG_CP_HEBREW_PUNCTUATION_MAQAF = goog.getMsg('Hebrew Punctuation Maqaf');
586
587
588
/**
589
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
590
* shown to a document editing user trying to insert a special character.
591
* The balloon help would appear while the user hovers over the character
592
* displayed. Newlines are not allowed; translation should be a noun and
593
* as consise as possible. More details:
594
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
595
*/
596
var MSG_CP_IDEOGRAPHIC_SPACE = goog.getMsg('Ideographic Space');
597
598
599
/**
600
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
601
* shown to a document editing user trying to insert a special character.
602
* The balloon help would appear while the user hovers over the character
603
* displayed. Newlines are not allowed; translation should be a noun and
604
* as consise as possible. More details:
605
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
606
*/
607
var MSG_CP_HAIR_SPACE = goog.getMsg('Hair Space');
608
609
610
/**
611
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
612
* shown to a document editing user trying to insert a special character.
613
* The balloon help would appear while the user hovers over the character
614
* displayed. Newlines are not allowed; translation should be a noun and
615
* as consise as possible. More details:
616
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
617
*/
618
var MSG_CP_NO_BREAK_SPACE = goog.getMsg('No-break Space');
619
620
621
/**
622
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
623
* shown to a document editing user trying to insert a special character.
624
* The balloon help would appear while the user hovers over the character
625
* displayed. Newlines are not allowed; translation should be a noun and
626
* as consise as possible. More details:
627
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
628
*/
629
var MSG_CP_FULLWIDTH_HYPHEN_MINUS = goog.getMsg('Fullwidth Hyphen-minus');
630
631
632
/**
633
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
634
* shown to a document editing user trying to insert a special character.
635
* The balloon help would appear while the user hovers over the character
636
* displayed. Newlines are not allowed; translation should be a noun and
637
* as consise as possible. More details:
638
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
639
*/
640
var MSG_CP_PARAGRAPH_SEPARATOR = goog.getMsg('Paragraph Separator');
641
642
643
/**
644
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
645
* shown to a document editing user trying to insert a special character.
646
* The balloon help would appear while the user hovers over the character
647
* displayed. Newlines are not allowed; translation should be a noun and
648
* as consise as possible. More details:
649
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
650
*/
651
var MSG_CP_LEFT_TO_RIGHT_OVERRIDE = goog.getMsg('Left-to-right Override');
652
653
654
/**
655
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
656
* shown to a document editing user trying to insert a special character.
657
* The balloon help would appear while the user hovers over the character
658
* displayed. Newlines are not allowed; translation should be a noun and
659
* as consise as possible. More details:
660
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
661
*/
662
var MSG_CP_SMALL_HYPHEN_MINUS = goog.getMsg('Small Hyphen-minus');
663
664
665
/**
666
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
667
* shown to a document editing user trying to insert a special character.
668
* The balloon help would appear while the user hovers over the character
669
* displayed. Newlines are not allowed; translation should be a noun and
670
* as consise as possible. More details:
671
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
672
*/
673
var MSG_CP_COMBINING_GRAPHEME_JOINER =
674
goog.getMsg('Combining Grapheme Joiner');
675
676
677
/**
678
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
679
* shown to a document editing user trying to insert a special character.
680
* The balloon help would appear while the user hovers over the character
681
* displayed. Newlines are not allowed; translation should be a noun and
682
* as consise as possible. More details:
683
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
684
*/
685
var MSG_CP_ZERO_WIDTH_NON_JOINER = goog.getMsg('Zero Width Non-joiner');
686
687
688
/**
689
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
690
* shown to a document editing user trying to insert a special character.
691
* The balloon help would appear while the user hovers over the character
692
* displayed. Newlines are not allowed; translation should be a noun and
693
* as consise as possible. More details:
694
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
695
*/
696
var MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE =
697
goog.getMsg('Musical Symbol Begin Phrase');
698
699
700
/**
701
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
702
* shown to a document editing user trying to insert a special character.
703
* The balloon help would appear while the user hovers over the character
704
* displayed. Newlines are not allowed; translation should be a noun and
705
* as consise as possible. More details:
706
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
707
*/
708
var MSG_CP_ARABIC_NUMBER_SIGN = goog.getMsg('Arabic Number Sign');
709
710
711
/**
712
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
713
* shown to a document editing user trying to insert a special character.
714
* The balloon help would appear while the user hovers over the character
715
* displayed. Newlines are not allowed; translation should be a noun and
716
* as consise as possible. More details:
717
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
718
*/
719
var MSG_CP_RIGHT_TO_LEFT_MARK = goog.getMsg('Right-to-left Mark');
720
721
722
/**
723
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
724
* shown to a document editing user trying to insert a special character.
725
* The balloon help would appear while the user hovers over the character
726
* displayed. Newlines are not allowed; translation should be a noun and
727
* as consise as possible. More details:
728
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
729
*/
730
var MSG_CP_OGHAM_SPACE_MARK = goog.getMsg('Ogham Space Mark');
731
732
733
/**
734
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
735
* shown to a document editing user trying to insert a special character.
736
* The balloon help would appear while the user hovers over the character
737
* displayed. Newlines are not allowed; translation should be a noun and
738
* as consise as possible. More details:
739
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
740
*/
741
var MSG_CP_SMALL_EM_DASH = goog.getMsg('Small Em Dash');
742
743
744
/**
745
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
746
* shown to a document editing user trying to insert a special character.
747
* The balloon help would appear while the user hovers over the character
748
* displayed. Newlines are not allowed; translation should be a noun and
749
* as consise as possible. More details:
750
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
751
*/
752
var MSG_CP_LEFT_TO_RIGHT_MARK = goog.getMsg('Left-to-right Mark');
753
754
755
/**
756
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
757
* shown to a document editing user trying to insert a special character.
758
* The balloon help would appear while the user hovers over the character
759
* displayed. Newlines are not allowed; translation should be a noun and
760
* as consise as possible. More details:
761
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
762
*/
763
var MSG_CP_ARABIC_END_OF_AYAH = goog.getMsg('Arabic End Of Ayah');
764
765
766
/**
767
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
768
* shown to a document editing user trying to insert a special character.
769
* The balloon help would appear while the user hovers over the character
770
* displayed. Newlines are not allowed; translation should be a noun and
771
* as consise as possible. More details:
772
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
773
*/
774
var MSG_CP_HANGUL_CHOSEONG_FILLER = goog.getMsg('Hangul Choseong Filler');
775
776
777
/**
778
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
779
* shown to a document editing user trying to insert a special character.
780
* The balloon help would appear while the user hovers over the character
781
* displayed. Newlines are not allowed; translation should be a noun and
782
* as consise as possible. More details:
783
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
784
*/
785
var MSG_CP_HANGUL_FILLER = goog.getMsg('Hangul Filler');
786
787
788
/**
789
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
790
* shown to a document editing user trying to insert a special character.
791
* The balloon help would appear while the user hovers over the character
792
* displayed. Newlines are not allowed; translation should be a noun and
793
* as consise as possible. More details:
794
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
795
*/
796
var MSG_CP_FUNCTION_APPLICATION = goog.getMsg('Function Application');
797
798
799
/**
800
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
801
* shown to a document editing user trying to insert a special character.
802
* The balloon help would appear while the user hovers over the character
803
* displayed. Newlines are not allowed; translation should be a noun and
804
* as consise as possible. More details:
805
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
806
*/
807
var MSG_CP_HANGUL_JUNGSEONG_FILLER = goog.getMsg('Hangul Jungseong Filler');
808
809
810
/**
811
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
812
* shown to a document editing user trying to insert a special character.
813
* The balloon help would appear while the user hovers over the character
814
* displayed. Newlines are not allowed; translation should be a noun and
815
* as consise as possible. More details:
816
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
817
*/
818
var MSG_CP_INVISIBLE_SEPARATOR = goog.getMsg('Invisible Separator');
819
820
821
/**
822
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
823
* shown to a document editing user trying to insert a special character.
824
* The balloon help would appear while the user hovers over the character
825
* displayed. Newlines are not allowed; translation should be a noun and
826
* as consise as possible. More details:
827
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
828
*/
829
var MSG_CP_INVISIBLE_TIMES = goog.getMsg('Invisible Times');
830
831
832
/**
833
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
834
* shown to a document editing user trying to insert a special character.
835
* The balloon help would appear while the user hovers over the character
836
* displayed. Newlines are not allowed; translation should be a noun and
837
* as consise as possible. More details:
838
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
839
*/
840
var MSG_CP_INVISIBLE_PLUS = goog.getMsg('Invisible Plus');
841
842
843
/**
844
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
845
* shown to a document editing user trying to insert a special character.
846
* The balloon help would appear while the user hovers over the character
847
* displayed. Newlines are not allowed; translation should be a noun and
848
* as consise as possible. More details:
849
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
850
*/
851
var MSG_CP_WORD_JOINER = goog.getMsg('Word Joiner');
852
853
854
/**
855
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
856
* shown to a document editing user trying to insert a special character.
857
* The balloon help would appear while the user hovers over the character
858
* displayed. Newlines are not allowed; translation should be a noun and
859
* as consise as possible. More details:
860
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
861
*/
862
var MSG_CP_LINE_SEPARATOR = goog.getMsg('Line Separator');
863
864
865
/**
866
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
867
* shown to a document editing user trying to insert a special character.
868
* The balloon help would appear while the user hovers over the character
869
* displayed. Newlines are not allowed; translation should be a noun and
870
* as consise as possible. More details:
871
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
872
*/
873
var MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN =
874
goog.getMsg('Katakana-hiragana Double Hyphen');
875
876
877
/**
878
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
879
* shown to a document editing user trying to insert a special character.
880
* The balloon help would appear while the user hovers over the character
881
* displayed. Newlines are not allowed; translation should be a noun and
882
* as consise as possible. More details:
883
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
884
*/
885
var MSG_CP_EN_DASH = goog.getMsg('En Dash');
886
887
888
/**
889
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
890
* shown to a document editing user trying to insert a special character.
891
* The balloon help would appear while the user hovers over the character
892
* displayed. Newlines are not allowed; translation should be a noun and
893
* as consise as possible. More details:
894
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
895
*/
896
var MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM =
897
goog.getMsg('Musical Symbol Begin Beam');
898
899
900
/**
901
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
902
* shown to a document editing user trying to insert a special character.
903
* The balloon help would appear while the user hovers over the character
904
* displayed. Newlines are not allowed; translation should be a noun and
905
* as consise as possible. More details:
906
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
907
*/
908
var MSG_CP_FIGURE_DASH = goog.getMsg('Figure Dash');
909
910
911
/**
912
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
913
* shown to a document editing user trying to insert a special character.
914
* The balloon help would appear while the user hovers over the character
915
* displayed. Newlines are not allowed; translation should be a noun and
916
* as consise as possible. More details:
917
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
918
*/
919
var MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE = goog.getMsg('Musical Symbol Begin Tie');
920
921
922
/**
923
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
924
* shown to a document editing user trying to insert a special character.
925
* The balloon help would appear while the user hovers over the character
926
* displayed. Newlines are not allowed; translation should be a noun and
927
* as consise as possible. More details:
928
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
929
*/
930
var MSG_CP_MUSICAL_SYMBOL_END_BEAM = goog.getMsg('Musical Symbol End Beam');
931
932
933
/**
934
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
935
* shown to a document editing user trying to insert a special character.
936
* The balloon help would appear while the user hovers over the character
937
* displayed. Newlines are not allowed; translation should be a noun and
938
* as consise as possible. More details:
939
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
940
*/
941
var MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR =
942
goog.getMsg('Musical Symbol Begin Slur');
943
944
945
/**
946
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
947
* shown to a document editing user trying to insert a special character.
948
* The balloon help would appear while the user hovers over the character
949
* displayed. Newlines are not allowed; translation should be a noun and
950
* as consise as possible. More details:
951
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
952
*/
953
var MSG_CP_MUSICAL_SYMBOL_END_TIE = goog.getMsg('Musical Symbol End Tie');
954
955
956
/**
957
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
958
* shown to a document editing user trying to insert a special character.
959
* The balloon help would appear while the user hovers over the character
960
* displayed. Newlines are not allowed; translation should be a noun and
961
* as consise as possible. More details:
962
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
963
*/
964
var MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR =
965
goog.getMsg('Interlinear Annotation Anchor');
966
967
968
/**
969
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
970
* shown to a document editing user trying to insert a special character.
971
* The balloon help would appear while the user hovers over the character
972
* displayed. Newlines are not allowed; translation should be a noun and
973
* as consise as possible. More details:
974
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
975
*/
976
var MSG_CP_MUSICAL_SYMBOL_END_SLUR = goog.getMsg('Musical Symbol End Slur');
977
978
979
/**
980
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
981
* shown to a document editing user trying to insert a special character.
982
* The balloon help would appear while the user hovers over the character
983
* displayed. Newlines are not allowed; translation should be a noun and
984
* as consise as possible. More details:
985
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
986
*/
987
var MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR =
988
goog.getMsg('Interlinear Annotation Terminator');
989
990
991
/**
992
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
993
* shown to a document editing user trying to insert a special character.
994
* The balloon help would appear while the user hovers over the character
995
* displayed. Newlines are not allowed; translation should be a noun and
996
* as consise as possible. More details:
997
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
998
*/
999
var MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR =
1000
goog.getMsg('Interlinear Annotation Separator');
1001
1002
1003
/**
1004
* @desc Name for a symbol, character or a letter. Used in a pop-up balloon,
1005
* shown to a document editing user trying to insert a special character.
1006
* The balloon help would appear while the user hovers over the character
1007
* displayed. Newlines are not allowed; translation should be a noun and
1008
* as consise as possible. More details:
1009
* docs/fileview?id=0B8NbxddKsFtwYjExMGJjNzgtYjkzOS00NjdiLTlmOGQtOGVhZDkyZDU5YjM4.
1010
*/
1011
var MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE =
1012
goog.getMsg('Zero Width No-break Space');
1013
1014
goog.i18n.uCharNames.charData_ = {
1015
'\u0601': MSG_CP_ARABIC_SIGN_SANAH,
1016
'\u1400': MSG_CP_CANADIAN_SYLLABICS_HYPHEN,
1017
'\u0603': MSG_CP_ARABIC_SIGN_SAFHA,
1018
'\u0602': MSG_CP_ARABIC_FOOTNOTE_MARKER,
1019
'\u2005': MSG_CP_FOUR_PER_EM_SPACE,
1020
'\u2004': MSG_CP_THREE_PER_EM_SPACE,
1021
'\u2007': MSG_CP_FIGURE_SPACE,
1022
'\u1806': MSG_CP_MONGOLIAN_SOFT_HYPHEN,
1023
'\u2009': MSG_CP_THIN_SPACE,
1024
'\u00AD': MSG_CP_SOFT_HYPHEN,
1025
'\u200B': MSG_CP_ZERO_WIDTH_SPACE,
1026
'\u058A': MSG_CP_ARMENIAN_HYPHEN,
1027
'\u200D': MSG_CP_ZERO_WIDTH_JOINER,
1028
'\u2003': MSG_CP_EM_SPACE,
1029
'\u070F': MSG_CP_SYRIAC_ABBREVIATION_MARK,
1030
'\u180E': MSG_CP_MONGOLIAN_VOWEL_SEPARATOR,
1031
'\u2011': MSG_CP_NON_BREAKING_HYPHEN,
1032
'\u2010': MSG_CP_HYPHEN,
1033
'\u2001': MSG_CP_EM_QUAD,
1034
'\u2002': MSG_CP_EN_SPACE,
1035
'\u2015': MSG_CP_HORIZONTAL_BAR,
1036
'\u2014': MSG_CP_EM_DASH,
1037
'\u2E17': MSG_CP_DOUBLE_OBLIQUE_HYPHEN,
1038
'\u1D17A': MSG_CP_MUSICAL_SYMBOL_END_PHRASE,
1039
'\u205F': MSG_CP_MEDIUM_MATHEMATICAL_SPACE,
1040
'\u301C': MSG_CP_WAVE_DASH,
1041
' ': MSG_CP_SPACE,
1042
'\u2E1A': MSG_CP_HYPHEN_WITH_DIAERESIS,
1043
'\u2000': MSG_CP_EN_QUAD,
1044
'\u202B': MSG_CP_RIGHT_TO_LEFT_EMBEDDING,
1045
'\u2006': MSG_CP_SIX_PER_EM_SPACE,
1046
'-': MSG_CP_HYPHEN_MINUS,
1047
'\u202C': MSG_CP_POP_DIRECTIONAL_FORMATTING,
1048
'\u202F': MSG_CP_NARROW_NO_BREAK_SPACE,
1049
'\u202E': MSG_CP_RIGHT_TO_LEFT_OVERRIDE,
1050
'\uFE31': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EM_DASH,
1051
'\u3030': MSG_CP_WAVY_DASH,
1052
'\uFE32': MSG_CP_PRESENTATION_FORM_FOR_VERTICAL_EN_DASH,
1053
'\u17B5': MSG_CP_KHMER_VOWEL_INHERENT_AA,
1054
'\u17B4': MSG_CP_KHMER_VOWEL_INHERENT_AQ,
1055
'\u2008': MSG_CP_PUNCTUATION_SPACE,
1056
'\uFFA0': MSG_CP_HALFWIDTH_HANGUL_FILLER,
1057
'\u110BD': MSG_CP_KAITHI_NUMBER_SIGN,
1058
'\u202A': MSG_CP_LEFT_TO_RIGHT_EMBEDDING,
1059
'\u05BE': MSG_CP_HEBREW_PUNCTUATION_MAQAF,
1060
'\u3000': MSG_CP_IDEOGRAPHIC_SPACE,
1061
'\u200A': MSG_CP_HAIR_SPACE,
1062
'\u00A0': MSG_CP_NO_BREAK_SPACE,
1063
'\uFF0D': MSG_CP_FULLWIDTH_HYPHEN_MINUS,
1064
'8233': MSG_CP_PARAGRAPH_SEPARATOR,
1065
'\u202D': MSG_CP_LEFT_TO_RIGHT_OVERRIDE,
1066
'\uFE63': MSG_CP_SMALL_HYPHEN_MINUS,
1067
'\u034F': MSG_CP_COMBINING_GRAPHEME_JOINER,
1068
'\u200C': MSG_CP_ZERO_WIDTH_NON_JOINER,
1069
'\u1D179': MSG_CP_MUSICAL_SYMBOL_BEGIN_PHRASE,
1070
'\u0600': MSG_CP_ARABIC_NUMBER_SIGN,
1071
'\u200F': MSG_CP_RIGHT_TO_LEFT_MARK,
1072
'\u1680': MSG_CP_OGHAM_SPACE_MARK,
1073
'\uFE58': MSG_CP_SMALL_EM_DASH,
1074
'\u200E': MSG_CP_LEFT_TO_RIGHT_MARK,
1075
'\u06DD': MSG_CP_ARABIC_END_OF_AYAH,
1076
'\u115F': MSG_CP_HANGUL_CHOSEONG_FILLER,
1077
'\u3164': MSG_CP_HANGUL_FILLER,
1078
'\u2061': MSG_CP_FUNCTION_APPLICATION,
1079
'\u1160': MSG_CP_HANGUL_JUNGSEONG_FILLER,
1080
'\u2063': MSG_CP_INVISIBLE_SEPARATOR,
1081
'\u2062': MSG_CP_INVISIBLE_TIMES,
1082
'\u2064': MSG_CP_INVISIBLE_PLUS,
1083
'\u2060': MSG_CP_WORD_JOINER,
1084
'8232': MSG_CP_LINE_SEPARATOR,
1085
'\u30A0': MSG_CP_KATAKANA_HIRAGANA_DOUBLE_HYPHEN,
1086
'\u2013': MSG_CP_EN_DASH,
1087
'\u1D173': MSG_CP_MUSICAL_SYMBOL_BEGIN_BEAM,
1088
'\u2012': MSG_CP_FIGURE_DASH,
1089
'\u1D175': MSG_CP_MUSICAL_SYMBOL_BEGIN_TIE,
1090
'\u1D174': MSG_CP_MUSICAL_SYMBOL_END_BEAM,
1091
'\u1D177': MSG_CP_MUSICAL_SYMBOL_BEGIN_SLUR,
1092
'\u1D176': MSG_CP_MUSICAL_SYMBOL_END_TIE,
1093
'\uFFF9': MSG_CP_INTERLINEAR_ANNOTATION_ANCHOR,
1094
'\u1D178': MSG_CP_MUSICAL_SYMBOL_END_SLUR,
1095
'\uFFFB': MSG_CP_INTERLINEAR_ANNOTATION_TERMINATOR,
1096
'\uFFFA': MSG_CP_INTERLINEAR_ANNOTATION_SEPARATOR,
1097
'\uFEFF': MSG_CP_ZERO_WIDTH_NO_BREAK_SPACE
1098
};
1099
};
1100
1101