Index: trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.hooks.php |
— | — | @@ -42,46 +42,50 @@ |
43 | 43 | $toolbar = '<div id="edittoolbar"></div>'; |
44 | 44 | // List of messages to be sent to the client for use in the toolbar |
45 | 45 | $messages = array( |
46 | | - /* Sections */ |
| 46 | + /* Main Section */ |
| 47 | + 'edittoolbar-tool-format-bold', |
| 48 | + 'edittoolbar-tool-format-bold-example', |
| 49 | + 'edittoolbar-tool-format-italic', |
| 50 | + 'edittoolbar-tool-format-italic-example', |
| 51 | + 'edittoolbar-tool-insert-ilink', |
| 52 | + 'edittoolbar-tool-insert-ilink-example', |
| 53 | + 'edittoolbar-tool-insert-xlink', |
| 54 | + 'edittoolbar-tool-insert-xlink-example', |
| 55 | + 'edittoolbar-tool-insert-file', |
| 56 | + 'edittoolbar-tool-insert-file-pre', |
| 57 | + 'edittoolbar-tool-insert-file-example', |
| 58 | + 'edittoolbar-tool-insert-reference', |
| 59 | + 'edittoolbar-tool-insert-reference-example', |
| 60 | + 'edittoolbar-tool-insert-signature', |
| 61 | + /* Formatting Section */ |
47 | 62 | 'edittoolbar-section-format', |
| 63 | + 'edittoolbar-tool-format-heading', |
| 64 | + 'edittoolbar-tool-format-heading-1', |
| 65 | + 'edittoolbar-tool-format-heading-2', |
| 66 | + 'edittoolbar-tool-format-heading-3', |
| 67 | + 'edittoolbar-tool-format-heading-4', |
| 68 | + 'edittoolbar-tool-format-heading-5', |
| 69 | + 'edittoolbar-tool-format-heading-example', |
| 70 | + 'edittoolbar-group-format-list', |
| 71 | + 'edittoolbar-tool-format-ulist', |
| 72 | + 'edittoolbar-tool-format-ulist-example', |
| 73 | + 'edittoolbar-tool-format-olist', |
| 74 | + 'edittoolbar-tool-format-olist-example', |
| 75 | + 'edittoolbar-group-format-size', |
| 76 | + 'edittoolbar-tool-format-big', |
| 77 | + 'edittoolbar-tool-format-big-example', |
| 78 | + 'edittoolbar-tool-format-small', |
| 79 | + 'edittoolbar-tool-format-small-example', |
| 80 | + 'edittoolbar-tool-format-superscript', |
| 81 | + 'edittoolbar-tool-format-superscript-example', |
| 82 | + 'edittoolbar-tool-format-subscript', |
| 83 | + 'edittoolbar-tool-format-subscript-example', |
| 84 | + /* Insert Section */ |
48 | 85 | 'edittoolbar-section-insert', |
| 86 | + /* Special Characters Section */ |
49 | 87 | 'edittoolbar-section-characters', |
| 88 | + /* Help Section */ |
50 | 89 | 'edittoolbar-section-help', |
51 | | - /* Main Section */ |
52 | | - 'edittoolbar-format-bold', |
53 | | - 'edittoolbar-format-bold-example', |
54 | | - 'edittoolbar-format-italic', |
55 | | - 'edittoolbar-format-italic-example', |
56 | | - 'edittoolbar-insert-ilink', |
57 | | - 'edittoolbar-insert-ilink-example', |
58 | | - 'edittoolbar-insert-xlink', |
59 | | - 'edittoolbar-insert-xlink-example', |
60 | | - 'edittoolbar-insert-file', |
61 | | - 'edittoolbar-insert-file-pre', |
62 | | - 'edittoolbar-insert-file-example', |
63 | | - 'edittoolbar-insert-reference', |
64 | | - 'edittoolbar-insert-reference-example', |
65 | | - 'edittoolbar-insert-signature', |
66 | | - /* Formatting Section */ |
67 | | - 'edittoolbar-format-ulist', |
68 | | - 'edittoolbar-format-ulist-example', |
69 | | - 'edittoolbar-format-olist', |
70 | | - 'edittoolbar-format-olist-example', |
71 | | - 'edittoolbar-format-heading', |
72 | | - 'edittoolbar-format-heading-1', |
73 | | - 'edittoolbar-format-heading-2', |
74 | | - 'edittoolbar-format-heading-3', |
75 | | - 'edittoolbar-format-heading-4', |
76 | | - 'edittoolbar-format-heading-5', |
77 | | - 'edittoolbar-format-heading-example', |
78 | | - 'edittoolbar-format-superscript', |
79 | | - 'edittoolbar-format-superscript-example', |
80 | | - 'edittoolbar-format-subscript', |
81 | | - 'edittoolbar-format-subscript-example', |
82 | | - 'edittoolbar-format-big', |
83 | | - 'edittoolbar-format-big-example', |
84 | | - 'edittoolbar-format-small', |
85 | | - 'edittoolbar-format-small-example', |
86 | 90 | ); |
87 | 91 | // Transforms messages into javascript object members |
88 | 92 | foreach ( $messages as $i => $message ) { |
Index: trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.js |
— | — | @@ -126,11 +126,11 @@ |
127 | 127 | .attr( 'class', 'group' ) |
128 | 128 | .appendTo( $(this) ); |
129 | 129 | // Checks if a there's a label for this group |
130 | | - if ( 'label' in section.groups[group] ) { |
| 130 | + if ( 'label' in section.groups[group] || 'labelMsg' in section.groups[group] ) { |
131 | 131 | groupDiv.append( |
132 | 132 | $( '<div />' ) |
133 | 133 | .attr( 'class', 'label' ) |
134 | | - .text( ( section.groups[group].label || gM( section.groups[group].labelMsg ) ) ) |
| 134 | + .text( section.groups[group].label || gM( section.groups[group].labelMsg ) ) |
135 | 135 | ) |
136 | 136 | } |
137 | 137 | // Creates generic action |
— | — | @@ -255,14 +255,14 @@ |
256 | 256 | 'format': { |
257 | 257 | tools: { |
258 | 258 | 'bold': { |
259 | | - labelMsg: 'edittoolbar-format-bold', |
| 259 | + labelMsg: 'edittoolbar-tool-format-bold', |
260 | 260 | type: 'button', |
261 | 261 | icon: 'format-bold.png', |
262 | 262 | action: { |
263 | 263 | type: 'encapsulate', |
264 | 264 | options: { |
265 | 265 | pre: "'''", |
266 | | - periMsg: 'edittoolbar-format-bold-example', |
| 266 | + periMsg: 'edittoolbar-tool-format-bold-example', |
267 | 267 | post: "'''" |
268 | 268 | } |
269 | 269 | } |
— | — | @@ -271,14 +271,14 @@ |
272 | 272 | section: 'main', |
273 | 273 | group: 'format', |
274 | 274 | id: 'italic', |
275 | | - labelMsg: 'edittoolbar-format-italic', |
| 275 | + labelMsg: 'edittoolbar-tool-format-italic', |
276 | 276 | type: 'button', |
277 | 277 | icon: 'format-italic.png', |
278 | 278 | action: { |
279 | 279 | type: 'encapsulate', |
280 | 280 | options: { |
281 | 281 | pre: "''", |
282 | | - periMsg: 'edittoolbar-format-italic-example', |
| 282 | + periMsg: 'edittoolbar-tool-format-italic-example', |
283 | 283 | post: "''" |
284 | 284 | } |
285 | 285 | } |
— | — | @@ -288,47 +288,47 @@ |
289 | 289 | 'insert': { |
290 | 290 | tools: { |
291 | 291 | 'xlink': { |
292 | | - labelMsg: 'edittoolbar-insert-xlink', |
| 292 | + labelMsg: 'edittoolbar-tool-insert-xlink', |
293 | 293 | type: 'button', |
294 | 294 | icon: 'insert-xlink.png', |
295 | 295 | action: { |
296 | 296 | type: 'encapsulate', |
297 | 297 | options: { |
298 | 298 | pre: "[", |
299 | | - periMsg: 'edittoolbar-insert-xlink-example', |
| 299 | + periMsg: 'edittoolbar-tool-insert-xlink-example', |
300 | 300 | post: "]" |
301 | 301 | } |
302 | 302 | } |
303 | 303 | }, |
304 | 304 | 'ilink': { |
305 | | - labelMsg: 'edittoolbar-insert-ilink', |
| 305 | + labelMsg: 'edittoolbar-tool-insert-ilink', |
306 | 306 | type: 'button', |
307 | 307 | icon: 'insert-ilink.png', |
308 | 308 | action: { |
309 | 309 | type: 'encapsulate', |
310 | 310 | options: { |
311 | 311 | pre: "[[", |
312 | | - periMsg: 'edittoolbar-insert-ilink-example', |
| 312 | + periMsg: 'edittoolbar-tool-insert-ilink-example', |
313 | 313 | post: "]]" |
314 | 314 | } |
315 | 315 | } |
316 | 316 | }, |
317 | 317 | 'file': { |
318 | | - labelMsg: 'edittoolbar-insert-file', |
| 318 | + labelMsg: 'edittoolbar-tool-insert-file', |
319 | 319 | type: 'button', |
320 | 320 | icon: 'insert-file.png', |
321 | 321 | action: { |
322 | 322 | type: 'encapsulate', |
323 | 323 | options: { |
324 | 324 | pre: "[[", |
325 | | - preMsg: 'edittoolbar-insert-file-pre', |
326 | | - periMsg: 'edittoolbar-insert-file-example', |
| 325 | + preMsg: 'edittoolbar-tool-insert-file-pre', |
| 326 | + periMsg: 'edittoolbar-tool-insert-file-example', |
327 | 327 | post: "]]" |
328 | 328 | } |
329 | 329 | } |
330 | 330 | }, |
331 | 331 | 'reference': { |
332 | | - labelMsg: 'edittoolbar-insert-reference', |
| 332 | + labelMsg: 'edittoolbar-tool-insert-reference', |
333 | 333 | filters: [ 'body.ns-subject' ], |
334 | 334 | type: 'button', |
335 | 335 | icon: 'insert-reference.png', |
— | — | @@ -336,13 +336,13 @@ |
337 | 337 | type: 'encapsulate', |
338 | 338 | options: { |
339 | 339 | pre: "<ref>", |
340 | | - periMsg: 'edittoolbar-insert-reference-example', |
| 340 | + periMsg: 'edittoolbar-tool-insert-reference-example', |
341 | 341 | post: "</ref>" |
342 | 342 | } |
343 | 343 | } |
344 | 344 | }, |
345 | 345 | 'signature': { |
346 | | - labelMsg: 'edittoolbar-insert-signature', |
| 346 | + labelMsg: 'edittoolbar-tool-insert-signature', |
347 | 347 | filters: [ 'body.ns-talk' ], |
348 | 348 | type: 'button', |
349 | 349 | icon: 'insert-signature.png', |
— | — | @@ -364,60 +364,60 @@ |
365 | 365 | 'heading': { |
366 | 366 | tools: { |
367 | 367 | 'heading': { |
368 | | - labelMsg: 'edittoolbar-format-heading', |
| 368 | + labelMsg: 'edittoolbar-tool-format-heading', |
369 | 369 | type: 'select', |
370 | 370 | list: { |
371 | 371 | 'heading-1' : { |
372 | | - labelMsg: 'edittoolbar-format-heading-1', |
| 372 | + labelMsg: 'edittoolbar-tool-format-heading-1', |
373 | 373 | action: { |
374 | 374 | type: 'encapsulate', |
375 | 375 | options: { |
376 | 376 | pre: "=", |
377 | | - periMsg: 'edittoolbar-format-heading-example', |
| 377 | + periMsg: 'edittoolbar-tool-format-heading-example', |
378 | 378 | post: "=" |
379 | 379 | } |
380 | 380 | } |
381 | 381 | }, |
382 | 382 | 'heading-2' : { |
383 | | - labelMsg: 'edittoolbar-format-heading-2', |
| 383 | + labelMsg: 'edittoolbar-tool-format-heading-2', |
384 | 384 | action: { |
385 | 385 | type: 'encapsulate', |
386 | 386 | options: { |
387 | 387 | pre: "==", |
388 | | - periMsg: 'edittoolbar-format-heading-example', |
| 388 | + periMsg: 'edittoolbar-tool-format-heading-example', |
389 | 389 | post: "==" |
390 | 390 | } |
391 | 391 | } |
392 | 392 | }, |
393 | 393 | 'heading-3' : { |
394 | | - labelMsg: 'edittoolbar-format-heading-3', |
| 394 | + labelMsg: 'edittoolbar-tool-format-heading-3', |
395 | 395 | action: { |
396 | 396 | type: 'encapsulate', |
397 | 397 | options: { |
398 | 398 | pre: "===", |
399 | | - periMsg: 'edittoolbar-format-heading-example', |
| 399 | + periMsg: 'edittoolbar-tool-format-heading-example', |
400 | 400 | post: "===" |
401 | 401 | } |
402 | 402 | } |
403 | 403 | }, |
404 | 404 | 'heading-4' : { |
405 | | - labelMsg: 'edittoolbar-format-heading-4', |
| 405 | + labelMsg: 'edittoolbar-tool-format-heading-4', |
406 | 406 | action: { |
407 | 407 | type: 'encapsulate', |
408 | 408 | options: { |
409 | 409 | pre: "====", |
410 | | - periMsg: 'edittoolbar-format-heading-example', |
| 410 | + periMsg: 'edittoolbar-tool-format-heading-example', |
411 | 411 | post: "====" |
412 | 412 | } |
413 | 413 | } |
414 | 414 | }, |
415 | 415 | 'heading-5' : { |
416 | | - labelMsg: 'edittoolbar-format-heading-5', |
| 416 | + labelMsg: 'edittoolbar-tool-format-heading-5', |
417 | 417 | action: { |
418 | 418 | type: 'encapsulate', |
419 | 419 | options: { |
420 | 420 | pre: "=====", |
421 | | - periMsg: 'edittoolbar-format-heading-example', |
| 421 | + periMsg: 'edittoolbar-tool-format-heading-example', |
422 | 422 | post: "=====" |
423 | 423 | } |
424 | 424 | } |
— | — | @@ -427,30 +427,30 @@ |
428 | 428 | } |
429 | 429 | }, |
430 | 430 | 'list': { |
431 | | - label: 'List', |
| 431 | + labelMsg: 'edittoolbar-group-format-list', |
432 | 432 | tools: { |
433 | 433 | 'ulist': { |
434 | | - labelMsg: 'edittoolbar-format-ulist', |
| 434 | + labelMsg: 'edittoolbar-tool-format-ulist', |
435 | 435 | type: 'button', |
436 | 436 | icon: 'format-ulist.png', |
437 | 437 | action: { |
438 | 438 | type: 'encapsulate', |
439 | 439 | options: { |
440 | 440 | pre: "* ", |
441 | | - periMsg: 'edittoolbar-format-ulist-example', |
| 441 | + periMsg: 'edittoolbar-tool-format-ulist-example', |
442 | 442 | post: "" |
443 | 443 | } |
444 | 444 | } |
445 | 445 | }, |
446 | 446 | 'olist': { |
447 | | - labelMsg: 'edittoolbar-format-olist', |
| 447 | + labelMsg: 'edittoolbar-tool-format-olist', |
448 | 448 | type: 'button', |
449 | 449 | icon: 'format-olist.png', |
450 | 450 | action: { |
451 | 451 | type: 'encapsulate', |
452 | 452 | options: { |
453 | 453 | pre: "# ", |
454 | | - periMsg: 'edittoolbar-format-olist-example', |
| 454 | + periMsg: 'edittoolbar-tool-format-olist-example', |
455 | 455 | post: "" |
456 | 456 | } |
457 | 457 | } |
— | — | @@ -458,56 +458,56 @@ |
459 | 459 | } |
460 | 460 | }, |
461 | 461 | 'size': { |
462 | | - label: 'Size', |
| 462 | + labelMsg: 'edittoolbar-group-format-size', |
463 | 463 | tools: { |
464 | 464 | 'big': { |
465 | | - labelMsg: 'edittoolbar-format-big', |
| 465 | + labelMsg: 'edittoolbar-tool-format-big', |
466 | 466 | type: 'button', |
467 | 467 | icon: 'format-big.png', |
468 | 468 | action: { |
469 | 469 | type: 'encapsulate', |
470 | 470 | options: { |
471 | 471 | pre: "<big>", |
472 | | - periMsg: 'edittoolbar-format-big-example', |
| 472 | + periMsg: 'edittoolbar-tool-format-big-example', |
473 | 473 | post: "</big>" |
474 | 474 | } |
475 | 475 | } |
476 | 476 | }, |
477 | 477 | 'small': { |
478 | | - labelMsg: 'edittoolbar-format-small', |
| 478 | + labelMsg: 'edittoolbar-tool-format-small', |
479 | 479 | type: 'button', |
480 | 480 | icon: 'format-small.png', |
481 | 481 | action: { |
482 | 482 | type: 'encapsulate', |
483 | 483 | options: { |
484 | 484 | pre: "<small>", |
485 | | - periMsg: 'edittoolbar-format-small-example', |
| 485 | + periMsg: 'edittoolbar-tool-format-small-example', |
486 | 486 | post: "</small>" |
487 | 487 | } |
488 | 488 | } |
489 | 489 | }, |
490 | 490 | 'superscript': { |
491 | | - labelMsg: 'edittoolbar-format-superscript', |
| 491 | + labelMsg: 'edittoolbar-tool-format-superscript', |
492 | 492 | type: 'button', |
493 | 493 | icon: 'format-superscript.png', |
494 | 494 | action: { |
495 | 495 | type: 'encapsulate', |
496 | 496 | options: { |
497 | 497 | pre: "<super>", |
498 | | - periMsg: 'edittoolbar-format-superscript-example', |
| 498 | + periMsg: 'edittoolbar-tool-format-superscript-example', |
499 | 499 | post: "</super>" |
500 | 500 | } |
501 | 501 | } |
502 | 502 | }, |
503 | 503 | 'subscript': { |
504 | | - labelMsg: 'edittoolbar-format-subscript', |
| 504 | + labelMsg: 'edittoolbar-tool-format-subscript', |
505 | 505 | type: 'button', |
506 | 506 | icon: 'format-subscript.png', |
507 | 507 | action: { |
508 | 508 | type: 'encapsulate', |
509 | 509 | options: { |
510 | 510 | pre: "<sub>", |
511 | | - periMsg: 'edittoolbar-format-subscript-example', |
| 511 | + periMsg: 'edittoolbar-tool-format-subscript-example', |
512 | 512 | post: "</sub>" |
513 | 513 | } |
514 | 514 | } |
Index: trunk/extensions/UsabilityInitiative/EditToolbar/EditToolbar.i18n.php |
— | — | @@ -15,45 +15,48 @@ |
16 | 16 | 'edittoolbar' => 'Editing Toolbar', |
17 | 17 | 'edittoolbar-desc' => 'Edit page toolbar with enhanced usability', |
18 | 18 | 'edittoolbar-preference' => 'Enable enhanced editing toolbar', |
19 | | - /* Sections */ |
| 19 | + /* Main Section */ |
| 20 | + 'edittoolbar-tool-format-bold' => 'Bold', |
| 21 | + 'edittoolbar-tool-format-bold-example' => 'Bold text', |
| 22 | + 'edittoolbar-tool-format-italic' => 'Italic', |
| 23 | + 'edittoolbar-tool-format-italic-example' => 'Italic text', |
| 24 | + 'edittoolbar-tool-insert-ilink' => 'Internal link', |
| 25 | + 'edittoolbar-tool-insert-ilink-example' => 'Link title', |
| 26 | + 'edittoolbar-tool-insert-xlink' => 'External link (remember http:// prefix)', |
| 27 | + 'edittoolbar-tool-insert-xlink-example' => 'http://www.example.com link title', |
| 28 | + 'edittoolbar-tool-insert-file' => 'Embedded file', |
| 29 | + 'edittoolbar-tool-insert-file-pre' => '$1File:', |
| 30 | + 'edittoolbar-tool-insert-file-example' => 'Example.jpg', |
| 31 | + 'edittoolbar-tool-insert-reference' => 'Reference', |
| 32 | + 'edittoolbar-tool-insert-reference-example' => 'Insert footnote text here', |
| 33 | + 'edittoolbar-tool-insert-signature' => 'Signature and timestamp', |
| 34 | + /* Formatting Section */ |
20 | 35 | 'edittoolbar-section-format' => 'Format', |
| 36 | + 'edittoolbar-tool-format-heading' => 'Heading', |
| 37 | + 'edittoolbar-tool-format-heading-1' => 'Level 1', |
| 38 | + 'edittoolbar-tool-format-heading-2' => 'Level 2', |
| 39 | + 'edittoolbar-tool-format-heading-3' => 'Level 3', |
| 40 | + 'edittoolbar-tool-format-heading-4' => 'Level 4', |
| 41 | + 'edittoolbar-tool-format-heading-5' => 'Level 5', |
| 42 | + 'edittoolbar-tool-format-heading-example' => 'Heading text', |
| 43 | + 'edittoolbar-group-format-list' => 'List', |
| 44 | + 'edittoolbar-tool-format-ulist' => 'Bulleted list', |
| 45 | + 'edittoolbar-tool-format-ulist-example' => 'Bulleted list item', |
| 46 | + 'edittoolbar-tool-format-olist' => 'Numbered list', |
| 47 | + 'edittoolbar-tool-format-olist-example' => 'Numbered list item', |
| 48 | + 'edittoolbar-group-format-size' => 'Size', |
| 49 | + 'edittoolbar-tool-format-big' => 'Big', |
| 50 | + 'edittoolbar-tool-format-big-example' => 'Big text', |
| 51 | + 'edittoolbar-tool-format-small' => 'Small', |
| 52 | + 'edittoolbar-tool-format-small-example' => 'Small text', |
| 53 | + 'edittoolbar-tool-format-superscript' => 'Superscript', |
| 54 | + 'edittoolbar-tool-format-superscript-example' => 'Superscript text', |
| 55 | + 'edittoolbar-tool-format-subscript' => 'Subscript', |
| 56 | + 'edittoolbar-tool-format-subscript-example' => 'Subscript text', |
| 57 | + /* Insert Section */ |
21 | 58 | 'edittoolbar-section-insert' => 'Insert', |
| 59 | + /* Special Characters Section */ |
22 | 60 | 'edittoolbar-section-characters' => 'Special Characters', |
| 61 | + /* Help Section */ |
23 | 62 | 'edittoolbar-section-help' => 'Help', |
24 | | - 'edittoolbar-section-insert' => 'Insert', |
25 | | - /* Main Section */ |
26 | | - 'edittoolbar-format-bold' => 'Bold', |
27 | | - 'edittoolbar-format-bold-example' => 'Bold text', |
28 | | - 'edittoolbar-format-italic' => 'Italic', |
29 | | - 'edittoolbar-format-italic-example' => 'Italic text', |
30 | | - 'edittoolbar-insert-ilink' => 'Internal link', |
31 | | - 'edittoolbar-insert-ilink-example' => 'Link title', |
32 | | - 'edittoolbar-insert-xlink' => 'External link (remember http:// prefix)', |
33 | | - 'edittoolbar-insert-xlink-example' => 'http://www.example.com link title', |
34 | | - 'edittoolbar-insert-file' => 'Embedded file', |
35 | | - 'edittoolbar-insert-file-pre' => '$1File:', |
36 | | - 'edittoolbar-insert-file-example' => 'Example.jpg', |
37 | | - 'edittoolbar-insert-reference' => 'Reference', |
38 | | - 'edittoolbar-insert-reference-example' => 'Insert footnote text here', |
39 | | - 'edittoolbar-insert-signature' => 'Signature and timestamp', |
40 | | - /* Formatting Section */ |
41 | | - 'edittoolbar-format-ulist' => 'Bulleted list', |
42 | | - 'edittoolbar-format-ulist-example' => 'Bulleted list item', |
43 | | - 'edittoolbar-format-olist' => 'Numbered list', |
44 | | - 'edittoolbar-format-olist-example' => 'Numbered list item', |
45 | | - 'edittoolbar-format-heading' => 'Heading', |
46 | | - 'edittoolbar-format-heading-1' => 'Level 1', |
47 | | - 'edittoolbar-format-heading-2' => 'Level 2', |
48 | | - 'edittoolbar-format-heading-3' => 'Level 3', |
49 | | - 'edittoolbar-format-heading-4' => 'Level 4', |
50 | | - 'edittoolbar-format-heading-5' => 'Level 5', |
51 | | - 'edittoolbar-format-heading-example' => 'Heading text', |
52 | | - 'edittoolbar-format-superscript' => 'Superscript', |
53 | | - 'edittoolbar-format-superscript-example' => 'Superscript text', |
54 | | - 'edittoolbar-format-subscript' => 'Subscript', |
55 | | - 'edittoolbar-format-subscript-example' => 'Subscript text', |
56 | | - 'edittoolbar-format-big' => 'Big', |
57 | | - 'edittoolbar-format-big-example' => 'Big text', |
58 | | - 'edittoolbar-format-small' => 'Small', |
59 | | - 'edittoolbar-format-small-example' => 'Small text', |
60 | 63 | ); |