bg.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.plugins.setLang("a11yhelp", "bg", {
  6. title: "Инструкции за достъпност",
  7. contents:
  8. "Съдържание на помощта. За да затворите този диалогов прозорец, натиснете ESC.",
  9. legend: [
  10. {
  11. name: "Общо",
  12. items: [
  13. {
  14. name: "Лента с инструменти за редактора",
  15. legend:
  16. "Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."
  17. },
  18. {
  19. name: "Диалог на редактора",
  20. legend:
  21. "Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."
  22. },
  23. {
  24. name: "Контекстно меню на редактора",
  25. legend:
  26. "Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."
  27. },
  28. {
  29. name: "Списъчно меню на редактора",
  30. legend:
  31. "Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."
  32. },
  33. {
  34. name: "Лента с път на елемент на редактора",
  35. legend:
  36. "Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."
  37. }
  38. ]
  39. },
  40. {
  41. name: "Команди",
  42. items: [
  43. { name: "Команда за отмяна", legend: "Натисни ${undo}" },
  44. { name: "Команда за пренаправяне", legend: "Натисни ${redo}" },
  45. { name: " Bold command", legend: "Press ${bold}" },
  46. { name: " Italic command", legend: "Press ${italic}" },
  47. { name: " Underline command", legend: "Press ${underline}" },
  48. { name: " Link command", legend: "Press ${link}" },
  49. {
  50. name: " Toolbar Collapse command",
  51. legend: "Press ${toolbarCollapse}"
  52. },
  53. {
  54. name: " Access previous focus space command",
  55. legend:
  56. "Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."
  57. },
  58. {
  59. name: " Access next focus space command",
  60. legend:
  61. "Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."
  62. },
  63. { name: " Accessibility Help", legend: "Press ${a11yHelp}" },
  64. {
  65. name: " Paste as plain text",
  66. legend: "Press ${pastetext}",
  67. legendEdge: "Press ${pastetext}, followed by ${paste}"
  68. }
  69. ]
  70. }
  71. ],
  72. tab: "Tab",
  73. pause: "Pause",
  74. capslock: "Caps Lock",
  75. escape: "Escape",
  76. pageUp: "Page Up",
  77. pageDown: "Page Down",
  78. leftArrow: "Left Arrow",
  79. upArrow: "Up Arrow",
  80. rightArrow: "Right Arrow",
  81. downArrow: "Down Arrow",
  82. insert: "Insert",
  83. leftWindowKey: "Left Windows key",
  84. rightWindowKey: "Right Windows key",
  85. selectKey: "Select key",
  86. numpad0: "Numpad 0",
  87. numpad1: "Numpad 1",
  88. numpad2: "Numpad 2",
  89. numpad3: "Numpad 3",
  90. numpad4: "Numpad 4",
  91. numpad5: "Numpad 5",
  92. numpad6: "Numpad 6",
  93. numpad7: "Numpad 7",
  94. numpad8: "Numpad 8",
  95. numpad9: "Numpad 9",
  96. multiply: "Multiply",
  97. add: "Add",
  98. subtract: "Subtract",
  99. decimalPoint: "Decimal Point",
  100. divide: "Divide",
  101. f1: "F1",
  102. f2: "F2",
  103. f3: "F3",
  104. f4: "F4",
  105. f5: "F5",
  106. f6: "F6",
  107. f7: "F7",
  108. f8: "F8",
  109. f9: "F9",
  110. f10: "F10",
  111. f11: "F11",
  112. f12: "F12",
  113. numLock: "Num Lock",
  114. scrollLock: "Scroll Lock",
  115. semiColon: "Semicolon",
  116. equalSign: "Equal Sign",
  117. comma: "Comma",
  118. dash: "Dash",
  119. period: "Period",
  120. forwardSlash: "Forward Slash",
  121. graveAccent: "Grave Accent",
  122. openBracket: "Open Bracket",
  123. backSlash: "Backslash",
  124. closeBracket: "Close Bracket",
  125. singleQuote: "Single Quote"
  126. });