@instructure/canvas-rce 5.6.3 → 5.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (805) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/coverage/canvas-rce-jest.xml +1688 -1620
  3. package/coverage/canvas-rce-junit.xml +409 -409
  4. package/es/enhance-user-content/enhance_user_content.js +7 -2
  5. package/es/enhance-user-content/instructure_helper.js +10 -2
  6. package/es/rce/RCEWrapper.js +7 -4
  7. package/es/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  8. package/es/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  9. package/es/rce/plugins/instructure_wordcount/plugin.js +32 -0
  10. package/es/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  11. package/es/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  12. package/es/rce/tinyRCE.js +1 -0
  13. package/lib/enhance-user-content/enhance_user_content.js +7 -2
  14. package/lib/enhance-user-content/instructure_helper.js +10 -2
  15. package/lib/rce/RCEWrapper.js +7 -4
  16. package/lib/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  17. package/lib/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  18. package/lib/rce/plugins/instructure_wordcount/plugin.js +32 -0
  19. package/lib/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  20. package/lib/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  21. package/lib/rce/tinyRCE.js +1 -0
  22. package/lib/translated/ar/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  23. package/lib/translated/ar/modules/enhance-user-content/enhance_user_content.js +7 -2
  24. package/lib/translated/ar/modules/enhance-user-content/instructure_helper.js +10 -2
  25. package/lib/translated/ar/modules/rce/RCEWrapper.js +7 -4
  26. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  27. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  28. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  29. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  30. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  31. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  32. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  33. package/lib/translated/ar/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  34. package/lib/translated/ar/modules/rce/tinyRCE.js +1 -0
  35. package/lib/translated/ca/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  36. package/lib/translated/ca/modules/enhance-user-content/enhance_user_content.js +7 -2
  37. package/lib/translated/ca/modules/enhance-user-content/instructure_helper.js +10 -2
  38. package/lib/translated/ca/modules/rce/RCEWrapper.js +7 -4
  39. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  40. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  41. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  42. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  43. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  44. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  45. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  46. package/lib/translated/ca/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  47. package/lib/translated/ca/modules/rce/tinyRCE.js +1 -0
  48. package/lib/translated/cy/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  49. package/lib/translated/cy/modules/enhance-user-content/enhance_user_content.js +7 -2
  50. package/lib/translated/cy/modules/enhance-user-content/instructure_helper.js +10 -2
  51. package/lib/translated/cy/modules/rce/RCEWrapper.js +7 -4
  52. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  53. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  54. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  55. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  56. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  57. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  58. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  59. package/lib/translated/cy/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  60. package/lib/translated/cy/modules/rce/tinyRCE.js +1 -0
  61. package/lib/translated/da/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  62. package/lib/translated/da/modules/enhance-user-content/enhance_user_content.js +7 -2
  63. package/lib/translated/da/modules/enhance-user-content/instructure_helper.js +10 -2
  64. package/lib/translated/da/modules/rce/RCEWrapper.js +7 -4
  65. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  66. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  67. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  68. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  69. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  70. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  71. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  72. package/lib/translated/da/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  73. package/lib/translated/da/modules/rce/tinyRCE.js +1 -0
  74. package/lib/translated/da-x-k12/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  75. package/lib/translated/da-x-k12/modules/enhance-user-content/enhance_user_content.js +7 -2
  76. package/lib/translated/da-x-k12/modules/enhance-user-content/instructure_helper.js +10 -2
  77. package/lib/translated/da-x-k12/modules/rce/RCEWrapper.js +7 -4
  78. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  79. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  80. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  81. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  82. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  83. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  84. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  85. package/lib/translated/da-x-k12/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  86. package/lib/translated/da-x-k12/modules/rce/tinyRCE.js +1 -0
  87. package/lib/translated/de/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  88. package/lib/translated/de/modules/enhance-user-content/enhance_user_content.js +7 -2
  89. package/lib/translated/de/modules/enhance-user-content/instructure_helper.js +10 -2
  90. package/lib/translated/de/modules/rce/RCEWrapper.js +7 -4
  91. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  92. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  93. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  94. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  95. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  96. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  97. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  98. package/lib/translated/de/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  99. package/lib/translated/de/modules/rce/tinyRCE.js +1 -0
  100. package/lib/translated/el/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  101. package/lib/translated/el/modules/enhance-user-content/enhance_user_content.js +7 -2
  102. package/lib/translated/el/modules/enhance-user-content/instructure_helper.js +10 -2
  103. package/lib/translated/el/modules/rce/RCEWrapper.js +7 -4
  104. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  105. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  106. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  107. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  108. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  109. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  110. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  111. package/lib/translated/el/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  112. package/lib/translated/el/modules/rce/tinyRCE.js +1 -0
  113. package/lib/translated/en/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  114. package/lib/translated/en/modules/enhance-user-content/enhance_user_content.js +7 -2
  115. package/lib/translated/en/modules/enhance-user-content/instructure_helper.js +10 -2
  116. package/lib/translated/en/modules/rce/RCEWrapper.js +7 -4
  117. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  118. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  119. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  120. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  121. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  122. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  123. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  124. package/lib/translated/en/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  125. package/lib/translated/en/modules/rce/tinyRCE.js +1 -0
  126. package/lib/translated/en-AU-x-unimelb/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  127. package/lib/translated/en-AU-x-unimelb/modules/enhance-user-content/enhance_user_content.js +7 -2
  128. package/lib/translated/en-AU-x-unimelb/modules/enhance-user-content/instructure_helper.js +10 -2
  129. package/lib/translated/en-AU-x-unimelb/modules/rce/RCEWrapper.js +7 -4
  130. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  131. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  132. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  133. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  134. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  135. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  136. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  137. package/lib/translated/en-AU-x-unimelb/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  138. package/lib/translated/en-AU-x-unimelb/modules/rce/tinyRCE.js +1 -0
  139. package/lib/translated/en-GB-x-ukhe/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  140. package/lib/translated/en-GB-x-ukhe/modules/enhance-user-content/enhance_user_content.js +7 -2
  141. package/lib/translated/en-GB-x-ukhe/modules/enhance-user-content/instructure_helper.js +10 -2
  142. package/lib/translated/en-GB-x-ukhe/modules/rce/RCEWrapper.js +7 -4
  143. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  144. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  145. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  146. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  147. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  148. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  149. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  150. package/lib/translated/en-GB-x-ukhe/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  151. package/lib/translated/en-GB-x-ukhe/modules/rce/tinyRCE.js +1 -0
  152. package/lib/translated/en_AU/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  153. package/lib/translated/en_AU/modules/enhance-user-content/enhance_user_content.js +7 -2
  154. package/lib/translated/en_AU/modules/enhance-user-content/instructure_helper.js +10 -2
  155. package/lib/translated/en_AU/modules/rce/RCEWrapper.js +7 -4
  156. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  157. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  158. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  159. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  160. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  161. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  162. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  163. package/lib/translated/en_AU/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  164. package/lib/translated/en_AU/modules/rce/tinyRCE.js +1 -0
  165. package/lib/translated/en_CA/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  166. package/lib/translated/en_CA/modules/enhance-user-content/enhance_user_content.js +7 -2
  167. package/lib/translated/en_CA/modules/enhance-user-content/instructure_helper.js +10 -2
  168. package/lib/translated/en_CA/modules/rce/RCEWrapper.js +7 -4
  169. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  170. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  171. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  172. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  173. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  174. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  175. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  176. package/lib/translated/en_CA/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  177. package/lib/translated/en_CA/modules/rce/tinyRCE.js +1 -0
  178. package/lib/translated/en_CY/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  179. package/lib/translated/en_CY/modules/enhance-user-content/enhance_user_content.js +7 -2
  180. package/lib/translated/en_CY/modules/enhance-user-content/instructure_helper.js +10 -2
  181. package/lib/translated/en_CY/modules/rce/RCEWrapper.js +7 -4
  182. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  183. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  184. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  185. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  186. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  187. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  188. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  189. package/lib/translated/en_CY/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  190. package/lib/translated/en_CY/modules/rce/tinyRCE.js +1 -0
  191. package/lib/translated/en_GB/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  192. package/lib/translated/en_GB/modules/enhance-user-content/enhance_user_content.js +7 -2
  193. package/lib/translated/en_GB/modules/enhance-user-content/instructure_helper.js +10 -2
  194. package/lib/translated/en_GB/modules/rce/RCEWrapper.js +7 -4
  195. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  196. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  197. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  198. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  199. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  200. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  201. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  202. package/lib/translated/en_GB/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  203. package/lib/translated/en_GB/modules/rce/tinyRCE.js +1 -0
  204. package/lib/translated/es/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  205. package/lib/translated/es/modules/enhance-user-content/enhance_user_content.js +7 -2
  206. package/lib/translated/es/modules/enhance-user-content/instructure_helper.js +10 -2
  207. package/lib/translated/es/modules/rce/RCEWrapper.js +7 -4
  208. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  209. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  210. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  211. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  212. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  213. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  214. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  215. package/lib/translated/es/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  216. package/lib/translated/es/modules/rce/tinyRCE.js +1 -0
  217. package/lib/translated/es_ES/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  218. package/lib/translated/es_ES/modules/enhance-user-content/enhance_user_content.js +7 -2
  219. package/lib/translated/es_ES/modules/enhance-user-content/instructure_helper.js +10 -2
  220. package/lib/translated/es_ES/modules/rce/RCEWrapper.js +7 -4
  221. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  222. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  223. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  224. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  225. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  226. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  227. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  228. package/lib/translated/es_ES/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  229. package/lib/translated/es_ES/modules/rce/tinyRCE.js +1 -0
  230. package/lib/translated/es_GT/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  231. package/lib/translated/es_GT/modules/enhance-user-content/enhance_user_content.js +7 -2
  232. package/lib/translated/es_GT/modules/enhance-user-content/instructure_helper.js +10 -2
  233. package/lib/translated/es_GT/modules/rce/RCEWrapper.js +7 -4
  234. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  235. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  236. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  237. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  238. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  239. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  240. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  241. package/lib/translated/es_GT/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  242. package/lib/translated/es_GT/modules/rce/tinyRCE.js +1 -0
  243. package/lib/translated/fa_IR/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  244. package/lib/translated/fa_IR/modules/enhance-user-content/enhance_user_content.js +7 -2
  245. package/lib/translated/fa_IR/modules/enhance-user-content/instructure_helper.js +10 -2
  246. package/lib/translated/fa_IR/modules/rce/RCEWrapper.js +7 -4
  247. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  248. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  249. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  250. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  251. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  252. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  253. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  254. package/lib/translated/fa_IR/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  255. package/lib/translated/fa_IR/modules/rce/tinyRCE.js +1 -0
  256. package/lib/translated/fi/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  257. package/lib/translated/fi/modules/enhance-user-content/enhance_user_content.js +7 -2
  258. package/lib/translated/fi/modules/enhance-user-content/instructure_helper.js +10 -2
  259. package/lib/translated/fi/modules/rce/RCEWrapper.js +7 -4
  260. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  261. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  262. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  263. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  264. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  265. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  266. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  267. package/lib/translated/fi/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  268. package/lib/translated/fi/modules/rce/tinyRCE.js +1 -0
  269. package/lib/translated/fr/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  270. package/lib/translated/fr/modules/enhance-user-content/enhance_user_content.js +7 -2
  271. package/lib/translated/fr/modules/enhance-user-content/instructure_helper.js +10 -2
  272. package/lib/translated/fr/modules/rce/RCEWrapper.js +7 -4
  273. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  274. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  275. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  276. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  277. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  278. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  279. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  280. package/lib/translated/fr/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  281. package/lib/translated/fr/modules/rce/tinyRCE.js +1 -0
  282. package/lib/translated/fr_CA/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  283. package/lib/translated/fr_CA/modules/enhance-user-content/enhance_user_content.js +7 -2
  284. package/lib/translated/fr_CA/modules/enhance-user-content/instructure_helper.js +10 -2
  285. package/lib/translated/fr_CA/modules/rce/RCEWrapper.js +7 -4
  286. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  287. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  288. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  289. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  290. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  291. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  292. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  293. package/lib/translated/fr_CA/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  294. package/lib/translated/fr_CA/modules/rce/tinyRCE.js +1 -0
  295. package/lib/translated/he/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  296. package/lib/translated/he/modules/enhance-user-content/enhance_user_content.js +7 -2
  297. package/lib/translated/he/modules/enhance-user-content/instructure_helper.js +10 -2
  298. package/lib/translated/he/modules/rce/RCEWrapper.js +7 -4
  299. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  300. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  301. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  302. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  303. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  304. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  305. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  306. package/lib/translated/he/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  307. package/lib/translated/he/modules/rce/tinyRCE.js +1 -0
  308. package/lib/translated/ht/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  309. package/lib/translated/ht/modules/enhance-user-content/enhance_user_content.js +7 -2
  310. package/lib/translated/ht/modules/enhance-user-content/instructure_helper.js +10 -2
  311. package/lib/translated/ht/modules/rce/RCEWrapper.js +7 -4
  312. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  313. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  314. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  315. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  316. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  317. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  318. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  319. package/lib/translated/ht/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  320. package/lib/translated/ht/modules/rce/tinyRCE.js +1 -0
  321. package/lib/translated/hu/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  322. package/lib/translated/hu/modules/enhance-user-content/enhance_user_content.js +7 -2
  323. package/lib/translated/hu/modules/enhance-user-content/instructure_helper.js +10 -2
  324. package/lib/translated/hu/modules/rce/RCEWrapper.js +7 -4
  325. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  326. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  327. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  328. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  329. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  330. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  331. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  332. package/lib/translated/hu/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  333. package/lib/translated/hu/modules/rce/tinyRCE.js +1 -0
  334. package/lib/translated/hy/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  335. package/lib/translated/hy/modules/enhance-user-content/enhance_user_content.js +7 -2
  336. package/lib/translated/hy/modules/enhance-user-content/instructure_helper.js +10 -2
  337. package/lib/translated/hy/modules/rce/RCEWrapper.js +7 -4
  338. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  339. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  340. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  341. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  342. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  343. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  344. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  345. package/lib/translated/hy/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  346. package/lib/translated/hy/modules/rce/tinyRCE.js +1 -0
  347. package/lib/translated/is/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  348. package/lib/translated/is/modules/enhance-user-content/enhance_user_content.js +7 -2
  349. package/lib/translated/is/modules/enhance-user-content/instructure_helper.js +10 -2
  350. package/lib/translated/is/modules/rce/RCEWrapper.js +7 -4
  351. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  352. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  353. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  354. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  355. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  356. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  357. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  358. package/lib/translated/is/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  359. package/lib/translated/is/modules/rce/tinyRCE.js +1 -0
  360. package/lib/translated/it/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  361. package/lib/translated/it/modules/enhance-user-content/enhance_user_content.js +7 -2
  362. package/lib/translated/it/modules/enhance-user-content/instructure_helper.js +10 -2
  363. package/lib/translated/it/modules/rce/RCEWrapper.js +7 -4
  364. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  365. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  366. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  367. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  368. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  369. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  370. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  371. package/lib/translated/it/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  372. package/lib/translated/it/modules/rce/tinyRCE.js +1 -0
  373. package/lib/translated/ja/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  374. package/lib/translated/ja/modules/enhance-user-content/enhance_user_content.js +7 -2
  375. package/lib/translated/ja/modules/enhance-user-content/instructure_helper.js +10 -2
  376. package/lib/translated/ja/modules/rce/RCEWrapper.js +7 -4
  377. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  378. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  379. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  380. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  381. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  382. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  383. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  384. package/lib/translated/ja/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  385. package/lib/translated/ja/modules/rce/tinyRCE.js +1 -0
  386. package/lib/translated/ko/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  387. package/lib/translated/ko/modules/enhance-user-content/enhance_user_content.js +7 -2
  388. package/lib/translated/ko/modules/enhance-user-content/instructure_helper.js +10 -2
  389. package/lib/translated/ko/modules/rce/RCEWrapper.js +7 -4
  390. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  391. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  392. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  393. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  394. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  395. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  396. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  397. package/lib/translated/ko/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  398. package/lib/translated/ko/modules/rce/tinyRCE.js +1 -0
  399. package/lib/translated/mi/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  400. package/lib/translated/mi/modules/enhance-user-content/enhance_user_content.js +7 -2
  401. package/lib/translated/mi/modules/enhance-user-content/instructure_helper.js +10 -2
  402. package/lib/translated/mi/modules/rce/RCEWrapper.js +7 -4
  403. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  404. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  405. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  406. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  407. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  408. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  409. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  410. package/lib/translated/mi/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  411. package/lib/translated/mi/modules/rce/tinyRCE.js +1 -0
  412. package/lib/translated/nb/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  413. package/lib/translated/nb/modules/enhance-user-content/enhance_user_content.js +7 -2
  414. package/lib/translated/nb/modules/enhance-user-content/instructure_helper.js +10 -2
  415. package/lib/translated/nb/modules/rce/RCEWrapper.js +7 -4
  416. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  417. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  418. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  419. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  420. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  421. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  422. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  423. package/lib/translated/nb/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  424. package/lib/translated/nb/modules/rce/tinyRCE.js +1 -0
  425. package/lib/translated/nb-x-k12/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  426. package/lib/translated/nb-x-k12/modules/enhance-user-content/enhance_user_content.js +7 -2
  427. package/lib/translated/nb-x-k12/modules/enhance-user-content/instructure_helper.js +10 -2
  428. package/lib/translated/nb-x-k12/modules/rce/RCEWrapper.js +7 -4
  429. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  430. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  431. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  432. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  433. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  434. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  435. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  436. package/lib/translated/nb-x-k12/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  437. package/lib/translated/nb-x-k12/modules/rce/tinyRCE.js +1 -0
  438. package/lib/translated/nl/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  439. package/lib/translated/nl/modules/enhance-user-content/enhance_user_content.js +7 -2
  440. package/lib/translated/nl/modules/enhance-user-content/instructure_helper.js +10 -2
  441. package/lib/translated/nl/modules/rce/RCEWrapper.js +7 -4
  442. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  443. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  444. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  445. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  446. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  447. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  448. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  449. package/lib/translated/nl/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  450. package/lib/translated/nl/modules/rce/tinyRCE.js +1 -0
  451. package/lib/translated/nn/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  452. package/lib/translated/nn/modules/enhance-user-content/enhance_user_content.js +7 -2
  453. package/lib/translated/nn/modules/enhance-user-content/instructure_helper.js +10 -2
  454. package/lib/translated/nn/modules/rce/RCEWrapper.js +7 -4
  455. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  456. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  457. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  458. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  459. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  460. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  461. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  462. package/lib/translated/nn/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  463. package/lib/translated/nn/modules/rce/tinyRCE.js +1 -0
  464. package/lib/translated/pl/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  465. package/lib/translated/pl/modules/enhance-user-content/enhance_user_content.js +7 -2
  466. package/lib/translated/pl/modules/enhance-user-content/instructure_helper.js +10 -2
  467. package/lib/translated/pl/modules/rce/RCEWrapper.js +7 -4
  468. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  469. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  470. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  471. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  472. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  473. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  474. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  475. package/lib/translated/pl/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  476. package/lib/translated/pl/modules/rce/tinyRCE.js +1 -0
  477. package/lib/translated/pt/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  478. package/lib/translated/pt/modules/enhance-user-content/enhance_user_content.js +7 -2
  479. package/lib/translated/pt/modules/enhance-user-content/instructure_helper.js +10 -2
  480. package/lib/translated/pt/modules/rce/RCEWrapper.js +7 -4
  481. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  482. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  483. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  484. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  485. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  486. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  487. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  488. package/lib/translated/pt/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  489. package/lib/translated/pt/modules/rce/tinyRCE.js +1 -0
  490. package/lib/translated/pt_BR/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  491. package/lib/translated/pt_BR/modules/enhance-user-content/enhance_user_content.js +7 -2
  492. package/lib/translated/pt_BR/modules/enhance-user-content/instructure_helper.js +10 -2
  493. package/lib/translated/pt_BR/modules/rce/RCEWrapper.js +7 -4
  494. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  495. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  496. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  497. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  498. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  499. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  500. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  501. package/lib/translated/pt_BR/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  502. package/lib/translated/pt_BR/modules/rce/tinyRCE.js +1 -0
  503. package/lib/translated/ru/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  504. package/lib/translated/ru/modules/enhance-user-content/enhance_user_content.js +7 -2
  505. package/lib/translated/ru/modules/enhance-user-content/instructure_helper.js +10 -2
  506. package/lib/translated/ru/modules/rce/RCEWrapper.js +7 -4
  507. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  508. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  509. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  510. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  511. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  512. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  513. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  514. package/lib/translated/ru/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  515. package/lib/translated/ru/modules/rce/tinyRCE.js +1 -0
  516. package/lib/translated/se/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  517. package/lib/translated/se/modules/enhance-user-content/enhance_user_content.js +7 -2
  518. package/lib/translated/se/modules/enhance-user-content/instructure_helper.js +10 -2
  519. package/lib/translated/se/modules/rce/RCEWrapper.js +7 -4
  520. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  521. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  522. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  523. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  524. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  525. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  526. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  527. package/lib/translated/se/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  528. package/lib/translated/se/modules/rce/tinyRCE.js +1 -0
  529. package/lib/translated/sl/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  530. package/lib/translated/sl/modules/enhance-user-content/enhance_user_content.js +7 -2
  531. package/lib/translated/sl/modules/enhance-user-content/instructure_helper.js +10 -2
  532. package/lib/translated/sl/modules/rce/RCEWrapper.js +7 -4
  533. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  534. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  535. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  536. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  537. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  538. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  539. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  540. package/lib/translated/sl/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  541. package/lib/translated/sl/modules/rce/tinyRCE.js +1 -0
  542. package/lib/translated/sv/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  543. package/lib/translated/sv/modules/enhance-user-content/enhance_user_content.js +7 -2
  544. package/lib/translated/sv/modules/enhance-user-content/instructure_helper.js +10 -2
  545. package/lib/translated/sv/modules/rce/RCEWrapper.js +7 -4
  546. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  547. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  548. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  549. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  550. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  551. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  552. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  553. package/lib/translated/sv/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  554. package/lib/translated/sv/modules/rce/tinyRCE.js +1 -0
  555. package/lib/translated/sv-x-k12/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  556. package/lib/translated/sv-x-k12/modules/enhance-user-content/enhance_user_content.js +7 -2
  557. package/lib/translated/sv-x-k12/modules/enhance-user-content/instructure_helper.js +10 -2
  558. package/lib/translated/sv-x-k12/modules/rce/RCEWrapper.js +7 -4
  559. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  560. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  561. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  562. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  563. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  564. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  565. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  566. package/lib/translated/sv-x-k12/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  567. package/lib/translated/sv-x-k12/modules/rce/tinyRCE.js +1 -0
  568. package/lib/translated/sv_SE/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  569. package/lib/translated/sv_SE/modules/enhance-user-content/enhance_user_content.js +7 -2
  570. package/lib/translated/sv_SE/modules/enhance-user-content/instructure_helper.js +10 -2
  571. package/lib/translated/sv_SE/modules/rce/RCEWrapper.js +7 -4
  572. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  573. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  574. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  575. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  576. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  577. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  578. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  579. package/lib/translated/sv_SE/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  580. package/lib/translated/sv_SE/modules/rce/tinyRCE.js +1 -0
  581. package/lib/translated/tg/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  582. package/lib/translated/tg/modules/enhance-user-content/enhance_user_content.js +7 -2
  583. package/lib/translated/tg/modules/enhance-user-content/instructure_helper.js +10 -2
  584. package/lib/translated/tg/modules/rce/RCEWrapper.js +7 -4
  585. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  586. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  587. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  588. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  589. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  590. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  591. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  592. package/lib/translated/tg/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  593. package/lib/translated/tg/modules/rce/tinyRCE.js +1 -0
  594. package/lib/translated/th/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  595. package/lib/translated/th/modules/enhance-user-content/enhance_user_content.js +7 -2
  596. package/lib/translated/th/modules/enhance-user-content/instructure_helper.js +10 -2
  597. package/lib/translated/th/modules/rce/RCEWrapper.js +7 -4
  598. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  599. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  600. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  601. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  602. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  603. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  604. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  605. package/lib/translated/th/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  606. package/lib/translated/th/modules/rce/tinyRCE.js +1 -0
  607. package/lib/translated/th_TH/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  608. package/lib/translated/th_TH/modules/enhance-user-content/enhance_user_content.js +7 -2
  609. package/lib/translated/th_TH/modules/enhance-user-content/instructure_helper.js +10 -2
  610. package/lib/translated/th_TH/modules/rce/RCEWrapper.js +7 -4
  611. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  612. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  613. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  614. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  615. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  616. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  617. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  618. package/lib/translated/th_TH/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  619. package/lib/translated/th_TH/modules/rce/tinyRCE.js +1 -0
  620. package/lib/translated/tr/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  621. package/lib/translated/tr/modules/enhance-user-content/enhance_user_content.js +7 -2
  622. package/lib/translated/tr/modules/enhance-user-content/instructure_helper.js +10 -2
  623. package/lib/translated/tr/modules/rce/RCEWrapper.js +7 -4
  624. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  625. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  626. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  627. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  628. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  629. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  630. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  631. package/lib/translated/tr/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  632. package/lib/translated/tr/modules/rce/tinyRCE.js +1 -0
  633. package/lib/translated/uk_UA/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  634. package/lib/translated/uk_UA/modules/enhance-user-content/enhance_user_content.js +7 -2
  635. package/lib/translated/uk_UA/modules/enhance-user-content/instructure_helper.js +10 -2
  636. package/lib/translated/uk_UA/modules/rce/RCEWrapper.js +7 -4
  637. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  638. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  639. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  640. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  641. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  642. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  643. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  644. package/lib/translated/uk_UA/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  645. package/lib/translated/uk_UA/modules/rce/tinyRCE.js +1 -0
  646. package/lib/translated/vi/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  647. package/lib/translated/vi/modules/enhance-user-content/enhance_user_content.js +7 -2
  648. package/lib/translated/vi/modules/enhance-user-content/instructure_helper.js +10 -2
  649. package/lib/translated/vi/modules/rce/RCEWrapper.js +7 -4
  650. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  651. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  652. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  653. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  654. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  655. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  656. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  657. package/lib/translated/vi/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  658. package/lib/translated/vi/modules/rce/tinyRCE.js +1 -0
  659. package/lib/translated/vi_VN/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  660. package/lib/translated/vi_VN/modules/enhance-user-content/enhance_user_content.js +7 -2
  661. package/lib/translated/vi_VN/modules/enhance-user-content/instructure_helper.js +10 -2
  662. package/lib/translated/vi_VN/modules/rce/RCEWrapper.js +7 -4
  663. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  664. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  665. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  666. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  667. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  668. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  669. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  670. package/lib/translated/vi_VN/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  671. package/lib/translated/vi_VN/modules/rce/tinyRCE.js +1 -0
  672. package/lib/translated/zh/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  673. package/lib/translated/zh/modules/enhance-user-content/enhance_user_content.js +7 -2
  674. package/lib/translated/zh/modules/enhance-user-content/instructure_helper.js +10 -2
  675. package/lib/translated/zh/modules/rce/RCEWrapper.js +7 -4
  676. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  677. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  678. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  679. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  680. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  681. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  682. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  683. package/lib/translated/zh/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  684. package/lib/translated/zh/modules/rce/tinyRCE.js +1 -0
  685. package/lib/translated/zh-Hans/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  686. package/lib/translated/zh-Hans/modules/enhance-user-content/enhance_user_content.js +7 -2
  687. package/lib/translated/zh-Hans/modules/enhance-user-content/instructure_helper.js +10 -2
  688. package/lib/translated/zh-Hans/modules/rce/RCEWrapper.js +7 -4
  689. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  690. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  691. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  692. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  693. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  694. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  695. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  696. package/lib/translated/zh-Hans/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  697. package/lib/translated/zh-Hans/modules/rce/tinyRCE.js +1 -0
  698. package/lib/translated/zh-Hant/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  699. package/lib/translated/zh-Hant/modules/enhance-user-content/enhance_user_content.js +7 -2
  700. package/lib/translated/zh-Hant/modules/enhance-user-content/instructure_helper.js +10 -2
  701. package/lib/translated/zh-Hant/modules/rce/RCEWrapper.js +7 -4
  702. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  703. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  704. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  705. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  706. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  707. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  708. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  709. package/lib/translated/zh-Hant/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  710. package/lib/translated/zh-Hant/modules/rce/tinyRCE.js +1 -0
  711. package/lib/translated/zh_HK/modules/enhance-user-content/__tests__/enhance_user_content.test.js +16 -1
  712. package/lib/translated/zh_HK/modules/enhance-user-content/enhance_user_content.js +7 -2
  713. package/lib/translated/zh_HK/modules/enhance-user-content/instructure_helper.js +10 -2
  714. package/lib/translated/zh_HK/modules/rce/RCEWrapper.js +7 -4
  715. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/clickCallback.js +46 -0
  716. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/components/WordCountModal.js +92 -0
  717. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/components/__tests__/WordCountModal.test.js +91 -0
  718. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/plugin.js +32 -0
  719. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/utils/__tests__/countContent.test.js +164 -0
  720. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/utils/__tests__/tableContent.test.js +41 -0
  721. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/utils/countContent.js +78 -0
  722. package/lib/translated/zh_HK/modules/rce/plugins/instructure_wordcount/utils/tableContent.js +40 -0
  723. package/lib/translated/zh_HK/modules/rce/tinyRCE.js +1 -0
  724. package/package.json +3 -2
  725. package/testcafe/build/100.js +5 -5
  726. package/testcafe/build/101.js +5 -5
  727. package/testcafe/build/102.js +1 -1
  728. package/testcafe/build/103.js +1 -1
  729. package/testcafe/build/22.js +1 -1
  730. package/testcafe/build/23.js +39 -3
  731. package/testcafe/build/27.js +84 -84
  732. package/testcafe/build/28.js +99 -83
  733. package/testcafe/build/29.js +107 -51
  734. package/testcafe/build/30.js +59 -47
  735. package/testcafe/build/31.js +64 -28
  736. package/testcafe/build/32.js +28 -16
  737. package/testcafe/build/33.js +10 -10
  738. package/testcafe/build/34.js +16 -16
  739. package/testcafe/build/35.js +27 -15
  740. package/testcafe/build/36.js +19 -18
  741. package/testcafe/build/37.js +22 -11
  742. package/testcafe/build/38.js +14 -13
  743. package/testcafe/build/39.js +8 -8
  744. package/testcafe/build/40.js +6 -6
  745. package/testcafe/build/41.js +6 -6
  746. package/testcafe/build/42.js +6 -6
  747. package/testcafe/build/43.js +10 -10
  748. package/testcafe/build/44.js +5 -5
  749. package/testcafe/build/45.js +5 -5
  750. package/testcafe/build/46.js +3 -3
  751. package/testcafe/build/47.js +6 -6
  752. package/testcafe/build/48.js +10 -10
  753. package/testcafe/build/49.js +8 -8
  754. package/testcafe/build/5.js +1 -1
  755. package/testcafe/build/50.js +6 -6
  756. package/testcafe/build/51.js +8 -8
  757. package/testcafe/build/52.js +6 -6
  758. package/testcafe/build/53.js +6 -6
  759. package/testcafe/build/54.js +8 -8
  760. package/testcafe/build/55.js +8 -8
  761. package/testcafe/build/56.js +6 -6
  762. package/testcafe/build/57.js +8 -8
  763. package/testcafe/build/58.js +8 -8
  764. package/testcafe/build/59.js +10 -10
  765. package/testcafe/build/60.js +6 -6
  766. package/testcafe/build/61.js +6 -6
  767. package/testcafe/build/62.js +8 -8
  768. package/testcafe/build/63.js +8 -8
  769. package/testcafe/build/64.js +8 -8
  770. package/testcafe/build/65.js +17 -6
  771. package/testcafe/build/66.js +3 -3
  772. package/testcafe/build/67.js +5 -5
  773. package/testcafe/build/68.js +5 -5
  774. package/testcafe/build/69.js +5 -5
  775. package/testcafe/build/70.js +5 -5
  776. package/testcafe/build/71.js +6 -6
  777. package/testcafe/build/72.js +6 -6
  778. package/testcafe/build/73.js +6 -6
  779. package/testcafe/build/74.js +6 -6
  780. package/testcafe/build/75.js +6 -6
  781. package/testcafe/build/76.js +6 -6
  782. package/testcafe/build/77.js +5 -5
  783. package/testcafe/build/78.js +5 -5
  784. package/testcafe/build/79.js +5 -5
  785. package/testcafe/build/80.js +5 -5
  786. package/testcafe/build/81.js +3 -3
  787. package/testcafe/build/82.js +5 -5
  788. package/testcafe/build/83.js +5 -5
  789. package/testcafe/build/84.js +3 -3
  790. package/testcafe/build/85.js +3 -3
  791. package/testcafe/build/86.js +5 -5
  792. package/testcafe/build/87.js +3 -3
  793. package/testcafe/build/88.js +5 -5
  794. package/testcafe/build/89.js +3 -3
  795. package/testcafe/build/90.js +5 -5
  796. package/testcafe/build/91.js +3 -3
  797. package/testcafe/build/92.js +5 -5
  798. package/testcafe/build/93.js +3 -3
  799. package/testcafe/build/94.js +5 -5
  800. package/testcafe/build/95.js +3 -3
  801. package/testcafe/build/96.js +3 -3
  802. package/testcafe/build/97.js +5 -5
  803. package/testcafe/build/98.js +5 -5
  804. package/testcafe/build/99.js +5 -5
  805. package/testcafe/build/testcafe.js +18 -6
@@ -1,25 +1,25 @@
1
1
  (window["webpackJsonp"] = window["webpackJsonp"] || []).push([[61],{
2
2
 
3
- /***/ "./src/translations/locales/th.js":
3
+ /***/ "./src/translations/locales/sl.js":
4
4
  /*!****************************************!*\
5
- !*** ./src/translations/locales/th.js ***!
5
+ !*** ./src/translations/locales/sl.js ***!
6
6
  \****************************************/
7
7
  /*! no exports provided */
8
8
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
9
9
 
10
10
  "use strict";
11
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _format_message__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../format-message */ \"./src/format-message.js\");\n/* harmony import */ var _tinymce_th__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../tinymce/th */ \"./src/translations/tinymce/th.js\");\n/* harmony import */ var _tinymce_th__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_tinymce_th__WEBPACK_IMPORTED_MODULE_1__);\n/*\n * Copyright (C) 2021 - present Instructure, Inc.\n *\n * This file is part of Canvas.\n *\n * Canvas is free software: you can redistribute it and/or modify it under\n * the terms of the GNU Affero General Public License as published by the Free\n * Software Foundation, version 3 of the License.\n *\n * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY\n * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR\n * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more\n * details.\n *\n * You should have received a copy of the GNU Affero General Public License along\n * with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\n\nconst locale = {\n \"count_plural_one_item_loaded_other_items_loaded_857023b7\": {\n \"message\": \"{ count, plural,\\n other {}\\n}\"\n }\n};\n_format_message__WEBPACK_IMPORTED_MODULE_0__[\"default\"].addLocale({\n th: locale\n});\n\n//# sourceURL=webpack:///./src/translations/locales/th.js?");
11
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _format_message__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../format-message */ \"./src/format-message.js\");\n/* harmony import */ var _tinymce_sl__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../tinymce/sl */ \"./src/translations/tinymce/sl.js\");\n/* harmony import */ var _tinymce_sl__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_tinymce_sl__WEBPACK_IMPORTED_MODULE_1__);\n/*\n * Copyright (C) 2021 - present Instructure, Inc.\n *\n * This file is part of Canvas.\n *\n * Canvas is free software: you can redistribute it and/or modify it under\n * the terms of the GNU Affero General Public License as published by the Free\n * Software Foundation, version 3 of the License.\n *\n * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY\n * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR\n * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more\n * details.\n *\n * You should have received a copy of the GNU Affero General Public License along\n * with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\n\nconst locale = {\n \"access_the_pretty_html_editor_37168efe\": {\n \"message\": \"Dostop do urejevalnika Pretty HTML Editor\"\n },\n \"accessibility_checker_b3af1f6c\": {\n \"message\": \"Orodje za preverjanje dostopnosti\"\n },\n \"add_8523c19b\": {\n \"message\": \"Dodaj\"\n },\n \"add_another_f4e50d57\": {\n \"message\": \"Dodaj dodatno\"\n },\n \"add_cc_subtitles_55f0394e\": {\n \"message\": \"Dodaj Kp/podnaslov\"\n },\n \"add_image_60b2de07\": {\n \"message\": \"Dodaj sliko\"\n },\n \"aleph_f4ffd155\": {\n \"message\": \"Alef\"\n },\n \"align_11050992\": {\n \"message\": \"Poravnaj\"\n },\n \"alignment_and_lists_5cebcb69\": {\n \"message\": \"Poravnava in seznami\"\n },\n \"all_4321c3a1\": {\n \"message\": \"Vse\"\n },\n \"all_apps_a50dea49\": {\n \"message\": \"Vse aplikacije\"\n },\n \"alpha_15d59033\": {\n \"message\": \"Alfa\"\n },\n \"alphabetical_55b5b4e0\": {\n \"message\": \"Abecedno\"\n },\n \"alt_text_611fb322\": {\n \"message\": \"Nadomestno besedilo\"\n },\n \"amalg_coproduct_c589fb12\": {\n \"message\": \"Amalg (koprodukt)\"\n },\n \"an_error_occured_reading_the_file_ff48558b\": {\n \"message\": \"Pri branju datoteke je prišlo do napake\"\n },\n \"an_error_occurred_making_a_network_request_d1bda348\": {\n \"message\": \"Med podajanjem omrežne zahteve je prišlo do napake.\"\n },\n \"an_error_occurred_uploading_your_media_71f1444d\": {\n \"message\": \"Pri nalaganju medija je prišlo do napake.\"\n },\n \"and_7fcc2911\": {\n \"message\": \"In\"\n },\n \"angle_c5b4ec50\": {\n \"message\": \"Kot\"\n },\n \"announcement_list_da155734\": {\n \"message\": \"Seznam obvestil\"\n },\n \"announcements_a4b8ed4a\": {\n \"message\": \"Obvestila\"\n },\n \"apply_781a2546\": {\n \"message\": \"Uporabi\"\n },\n \"apply_changes_to_all_instances_of_this_icon_maker__2642f466\": {\n \"message\": \"Uveljavi spremembe za vse primerke te ikone ustvarjalnika ikon pri predmetu\"\n },\n \"approaches_the_limit_893aeec9\": {\n \"message\": \"Približuje se mejni vrednosti\"\n },\n \"approximately_e7965800\": {\n \"message\": \"Približno\"\n },\n \"apps_54d24a47\": {\n \"message\": \"Aplikacije\"\n },\n \"arrows_464a3e54\": {\n \"message\": \"Puščice\"\n },\n \"art_icon_8e1daad\": {\n \"message\": \"Ikona umetnosti\"\n },\n \"aspect_ratio_will_be_preserved_cb5fdfb8\": {\n \"message\": \"Razmerje med širino in višino bo ohranjeno.\"\n },\n \"assignments_1e02582c\": {\n \"message\": \"Naloge:\"\n },\n \"asterisk_82255584\": {\n \"message\": \"Zvezdica\"\n },\n \"attributes_963ba262\": {\n \"message\": \"Lastnosti\"\n },\n \"audio_and_video_recording_not_supported_please_use_5ce3f0d7\": {\n \"message\": \"Snemanje zvoka in videoposnetkov ni podprto; uporabite drug brskalnik.\"\n },\n \"audio_options_feb58e2c\": {\n \"message\": \"Možnosti zvoka\"\n },\n \"audio_options_tray_33a90711\": {\n \"message\": \"Trak z možnostmi zvoka\"\n },\n \"audio_player_for_title_20cc70d\": {\n \"message\": \"Predvajalnik zvoka za { title }\"\n },\n \"auto_saved_content_exists_would_you_like_to_load_t_fee528f2\": {\n \"message\": \"Obstaja samodejno shranjena vsebina. Ali želite namesto tega naložiti samodejno shranjeno vsebino?\"\n },\n \"available_folders_694d0436\": {\n \"message\": \"Razpoložljive mape\"\n },\n \"backslash_b2d5442d\": {\n \"message\": \"Poševnica nazaj\"\n },\n \"bar_ec63ed6\": {\n \"message\": \"Vrstica\"\n },\n \"basic_554cdc0a\": {\n \"message\": \"Osnovno\"\n },\n \"because_501841b\": {\n \"message\": \"Zaradi\"\n },\n \"below_81d4dceb\": {\n \"message\": \"Spodaj\"\n },\n \"beta_cb5f307e\": {\n \"message\": \"Beta\"\n },\n \"big_circle_16b2e604\": {\n \"message\": \"Veliki krog\"\n },\n \"binomial_coefficient_ea5b9bb7\": {\n \"message\": \"Binomni koeficient\"\n },\n \"black_4cb01371\": {\n \"message\": \"Črna\"\n },\n \"blue_daf8fea9\": {\n \"message\": \"Modra\"\n },\n \"bottom_15a2a9be\": {\n \"message\": \"Dno\"\n },\n \"bottom_third_5f5fec1d\": {\n \"message\": \"Tretja spodaj\"\n },\n \"bowtie_5f9629e4\": {\n \"message\": \"Metuljček\"\n },\n \"brick_f2656265\": {\n \"message\": \"Opeka\"\n },\n \"c_2001_acme_inc_283f7f80\": {\n \"message\": \"Avtorske pravice (c) 2001 Acme Inc.\"\n },\n \"cancel_caeb1e68\": {\n \"message\": \"Prekliči\"\n },\n \"cap_product_3a5265a6\": {\n \"message\": \"Izdelek s pokrovom\"\n },\n \"center_align_e68d9997\": {\n \"message\": \"Sredinska poravnava\"\n },\n \"centered_dot_64d5e378\": {\n \"message\": \"Središčna pika\"\n },\n \"centered_horizontal_dots_451c5815\": {\n \"message\": \"Sredične vodoravne pike\"\n },\n \"chi_54a32644\": {\n \"message\": \"Či\"\n },\n \"choose_caption_file_9c45bc4e\": {\n \"message\": \"Izberite datoteko spremnega besedila\"\n },\n \"choose_usage_rights_33683854\": {\n \"message\": \"Izberi pravice uporabe ...\"\n },\n \"circle_484abe63\": {\n \"message\": \"Krog\"\n },\n \"circle_unordered_list_9e3a0763\": {\n \"message\": \"nerazvrščeni seznam s krogi\"\n },\n \"clear_2084585f\": {\n \"message\": \"Počisti\"\n },\n \"clear_image_3213fe62\": {\n \"message\": \"Jasna slika\"\n },\n \"clear_selected_file_82388e50\": {\n \"message\": \"Počisti izbrano datoteko.\"\n },\n \"clear_selected_file_filename_2fe8a58e\": {\n \"message\": \"Počisti izbrano datoteko: { filename }\"\n },\n \"click_or_shift_click_for_the_html_editor_25d70bb4\": {\n \"message\": \"Za urejevalnik html kliknite ali kliknite med pritiskanjem tipke Shift.\"\n },\n \"click_to_embed_imagename_c41ea8df\": {\n \"message\": \"Kliknite, da vdelate { imageName }.\"\n },\n \"click_to_hide_preview_3c707763\": {\n \"message\": \"Kliknite, da skrijete predogled\"\n },\n \"click_to_insert_a_link_into_the_editor_c19613aa\": {\n \"message\": \"Kliknite, da vstavite povezavo v urejevalnik.\"\n },\n \"click_to_show_preview_faa27051\": {\n \"message\": \"Kliknite, da prikažete predogled\"\n },\n \"close_a_menu_or_dialog_also_returns_you_to_the_edi_739079e6\": {\n \"message\": \"Zapri meni ali pogovorno okno Prav tako vas vrne v območje urejevalnika\"\n },\n \"close_d634289d\": {\n \"message\": \"Zapri\"\n },\n \"closed_caption_file_must_be_less_than_maxkb_kb_5880f752\": {\n \"message\": \"Datoteka z razširjenimi podnapisi mora biti manjša od { maxKb } kb\"\n },\n \"closed_captions_subtitles_e6aaa016\": {\n \"message\": \"Razširjeni podnapisi/podnapisi\"\n },\n \"clubs_suit_c1ffedff\": {\n \"message\": \"Klubi (obleka)\"\n },\n \"collaborations_5c56c15f\": {\n \"message\": \"Skupinske naloge\"\n },\n \"collapse_to_hide_types_1ab46d2e\": {\n \"message\": \"Strni za skrivanje { types }\"\n },\n \"color_picker_6b359edf\": {\n \"message\": \"Orodje za izbiranje barv\"\n },\n \"color_picker_colorname_selected_ad4cf400\": {\n \"message\": \"Izbirnik barv ({ colorName } izbranih)\"\n },\n \"complex_numbers_a543d004\": {\n \"message\": \"Kompleksna števila\"\n },\n \"computer_1d7dfa6f\": {\n \"message\": \"Računalnik\"\n },\n \"congruent_5a244acd\": {\n \"message\": \"Kongruentno\"\n },\n \"contains_311f37b7\": {\n \"message\": \"Vsebuje\"\n },\n \"content_1440204b\": {\n \"message\": \"Vsebina\"\n },\n \"content_is_still_being_uploaded_if_you_continue_it_8f06d0cb\": {\n \"message\": \"Vsebina se še vedno nalaga. Če nadaljujete, ne bo pravilno vdelana.\"\n },\n \"content_subtype_5ce35e88\": {\n \"message\": \"Podvrsta vsebine\"\n },\n \"content_type_2cf90d95\": {\n \"message\": \"Vrsta vsebine\"\n },\n \"coproduct_e7838082\": {\n \"message\": \"Koprodukt\"\n },\n \"copyright_holder_66ee111\": {\n \"message\": \"Lastnik avtorskih pravic:\"\n },\n \"count_plural_0_0_words_one_1_word_other_words_acf32eca\": {\n \"message\": \"{ count, plural,\\n =0 {0 besed}\\n one {1 beseda}\\n other {# besede}\\n}\"\n },\n \"count_plural_one_item_loaded_other_items_loaded_857023b7\": {\n \"message\": \"{ count, plural,\\n one {# elementov je naloženih}\\n other {# elementi so naloženi}\\n}\"\n },\n \"course_documents_104d76e0\": {\n \"message\": \"Dokumenti predmeta\"\n },\n \"course_files_62deb8f8\": {\n \"message\": \"Datoteke predmeta\"\n },\n \"course_files_a31f97fc\": {\n \"message\": \"Datoteke predmeta\"\n },\n \"course_images_f8511d04\": {\n \"message\": \"Slike predmeta\"\n },\n \"course_link_b369426\": {\n \"message\": \"Povezava do predmeta\"\n },\n \"course_links_b56959b9\": {\n \"message\": \"Povezave predmeta\"\n },\n \"course_media_ec759ad\": {\n \"message\": \"Mediji predmeta\"\n },\n \"course_navigation_dd035109\": {\n \"message\": \"Navigacija po predmetu\"\n },\n \"create_icon_110d6463\": {\n \"message\": \"Ustvari ikono\"\n },\n \"create_icon_maker_icon_c716bffe\": {\n \"message\": \"Ustvari ikono ustvarjalnika ikon\"\n },\n \"creative_commons_license_725584ae\": {\n \"message\": \"Licenca Creative Commons:\"\n },\n \"crop_image_41bf940c\": {\n \"message\": \"Obreži sliko\"\n },\n \"crop_image_807ebb08\": {\n \"message\": \"Obreži sliko\"\n },\n \"cup_product_14174434\": {\n \"message\": \"Izdelek za skodelico\"\n },\n \"current_image_f16c249c\": {\n \"message\": \"Trenutna slika\"\n },\n \"custom_6979cd81\": {\n \"message\": \"Po meri\"\n },\n \"cyan_c1d5f68a\": {\n \"message\": \"Cijan\"\n },\n \"dagger_57e0f4e5\": {\n \"message\": \"Bodalo\"\n },\n \"date_added_ed5ad465\": {\n \"message\": \"Datum dodajanja\"\n },\n \"decorative_icon_9a7f3fc3\": {\n \"message\": \"Okrasna ikona\"\n },\n \"decorative_type_upper_f2c95e3\": {\n \"message\": \"Dekorativni { TYPE_UPPER }\"\n },\n \"decrease_indent_d9cf469d\": {\n \"message\": \"Zmanjšaj zamik\"\n },\n \"deep_purple_bb3e2907\": {\n \"message\": \"Temno škrlatna\"\n },\n \"default_bulleted_unordered_list_47079da8\": {\n \"message\": \"privzeti neurejeni seznam z alinejami\"\n },\n \"default_numerical_ordered_list_48dd3548\": {\n \"message\": \"privzeti številčno urejeni seznam\"\n },\n \"definite_integral_fe7ffed1\": {\n \"message\": \"Določeni integral\"\n },\n \"degree_symbol_4a823d5f\": {\n \"message\": \"Simbol stopinje\"\n },\n \"delimiters_4db4840d\": {\n \"message\": \"Ločila\"\n },\n \"delta_53765780\": {\n \"message\": \"Delta\"\n },\n \"describe_the_icon_f6a18823\": {\n \"message\": \"(Opišite ikono)\"\n },\n \"describe_the_type_ff448da5\": {\n \"message\": \"(Opišite { TYPE })\"\n },\n \"describe_the_video_2fe8f46a\": {\n \"message\": \"(Opišite videoposnetek)\"\n },\n \"details_98a31b68\": {\n \"message\": \"Podrobnosti\"\n },\n \"diagonal_dots_7d71b57e\": {\n \"message\": \"Diagonalne pike\"\n },\n \"diamond_b8dfe7ae\": {\n \"message\": \"Diamant\"\n },\n \"diamonds_suit_526abaaf\": {\n \"message\": \"Diamanti (obleka)\"\n },\n \"digamma_258ade94\": {\n \"message\": \"Digama\"\n },\n \"dimension_type_f5fa9170\": {\n \"message\": \"Vrsta mere\"\n },\n \"dimensions_45ddb7b7\": {\n \"message\": \"Mere\"\n },\n \"directionality_26ae9e08\": {\n \"message\": \"Usmerjenost\"\n },\n \"directly_edit_latex_b7e9235b\": {\n \"message\": \"Neposredno urejanje LaTeX\"\n },\n \"disable_preview_222bdf72\": {\n \"message\": \"Onemogoči predogled\"\n },\n \"discussions_a5f96392\": {\n \"message\": \"Razprave\"\n },\n \"discussions_index_6c36ced\": {\n \"message\": \"Kazalo razprav\"\n },\n \"disjoint_union_e74351a8\": {\n \"message\": \"Nepovezan spoj\"\n },\n \"display_options_315aba85\": {\n \"message\": \"Prikaz možnosti\"\n },\n \"display_text_link_opens_in_a_new_tab_75e9afc9\": {\n \"message\": \"Prikaži besedilno povezavo (se odpre v novem zavihku)\"\n },\n \"division_sign_72190870\": {\n \"message\": \"Znak za deljenje\"\n },\n \"document_678cd7bf\": {\n \"message\": \"Dokument\"\n },\n \"documents_81393201\": {\n \"message\": \"Dokumenti\"\n },\n \"done_54e3d4b6\": {\n \"message\": \"Dokončano\"\n },\n \"double_dagger_faf78681\": {\n \"message\": \"Dvojno bodalo\"\n },\n \"down_and_left_diagonal_arrow_40ef602c\": {\n \"message\": \"Diagonalna puščica navzdol in levo\"\n },\n \"down_and_right_diagonal_arrow_6ea0f460\": {\n \"message\": \"Diagonalna puščica navzdol in desno\"\n },\n \"download_filename_2baae924\": {\n \"message\": \"Prenesi { filename }\"\n },\n \"downward_arrow_cca52012\": {\n \"message\": \"Puščica navzdol\"\n },\n \"downward_pointing_triangle_2a12a601\": {\n \"message\": \"Navzdol usmerjeni trikotnik\"\n },\n \"drag_a_file_here_1bf656d5\": {\n \"message\": \"Datoteko povlecite sem\"\n },\n \"drag_and_drop_or_click_to_browse_your_computer_60772d6d\": {\n \"message\": \"Za brskanje po računalniku povlecite in spustite ali kliknite\"\n },\n \"drag_handle_use_up_and_down_arrows_to_resize_e29eae5c\": {\n \"message\": \"Ravnanje ob vlečenju. Za spremembo velikosti uporabite puščici gor in dol\"\n },\n \"due_multiple_dates_cc0ee3f5\": {\n \"message\": \"Roki: Več datumov\"\n },\n \"due_when_7eed10c6\": {\n \"message\": \"Roki: { when }\"\n },\n \"edit_alt_text_for_this_icon_instance_9c6fc5fd\": {\n \"message\": \"Uredite nadomestno besedilo za ta primerek ikone\"\n },\n \"edit_course_link_5a5c3c59\": {\n \"message\": \"Uredi povezavo do predmeta\"\n },\n \"edit_equation_f5279959\": {\n \"message\": \"Uredi enačbo\"\n },\n \"edit_existing_icon_maker_icon_5d0ebb3f\": {\n \"message\": \"Uredi obstoječo ikono ustvarjalnika ikon\"\n },\n \"edit_icon_2c6b0e91\": {\n \"message\": \"Uredi ikono\"\n },\n \"edit_link_7f53bebb\": {\n \"message\": \"Uredi povezavo\"\n },\n \"editor_statusbar_26ac81fc\": {\n \"message\": \"Vrstica stanja urejevalnika\"\n },\n \"embed_828fac4a\": {\n \"message\": \"Vdelaj\"\n },\n \"embed_code_314f1bd5\": {\n \"message\": \"Vdelaj kodo\"\n },\n \"embed_image_1080badc\": {\n \"message\": \"Vdelaj sliko\"\n },\n \"embed_video_a97a64af\": {\n \"message\": \"Vdelajte videoposnetek\"\n },\n \"embedded_content_aaeb4d3d\": {\n \"message\": \"vdelano vsebino\"\n },\n \"empty_set_91a92df4\": {\n \"message\": \"Prazen nabor\"\n },\n \"encircled_dot_8f5e51c\": {\n \"message\": \"Obkrožena pika\"\n },\n \"encircled_minus_72745096\": {\n \"message\": \"Obkrožen minus\"\n },\n \"encircled_plus_36d8d104\": {\n \"message\": \"Obkrožen plus\"\n },\n \"encircled_times_5700096d\": {\n \"message\": \"Obkroženi časi\"\n },\n \"engineering_icon_f8f3cf43\": {\n \"message\": \"Ikona inženirstva\"\n },\n \"english_icon_25bfe845\": {\n \"message\": \"Angleška ikona\"\n },\n \"enter_at_least_3_characters_to_search_4f037ee0\": {\n \"message\": \"Za iskanje vnesite vsaj 3 znake\"\n },\n \"epsilon_54bb8afa\": {\n \"message\": \"Epsilon\"\n },\n \"epsilon_variant_d31f1e77\": {\n \"message\": \"Epsilon (različica)\"\n },\n \"equals_sign_c51bdc58\": {\n \"message\": \"Znak enakosti\"\n },\n \"equation_1c5ac93c\": {\n \"message\": \"Enačba\"\n },\n \"equation_editor_39fbc3f1\": {\n \"message\": \"Urejevalnik enačb\"\n },\n \"equivalence_class_7b0f11c0\": {\n \"message\": \"Razred enakosti\"\n },\n \"equivalent_identity_654b3ce5\": {\n \"message\": \"Ekvivalent (identiteta)\"\n },\n \"eta_b8828f99\": {\n \"message\": \"Eta\"\n },\n \"exists_2e62bdaa\": {\n \"message\": \"Obstaja\"\n },\n \"expand_preview_by_default_2abbf9f8\": {\n \"message\": \"Privzeto razširi predogled\"\n },\n \"expand_to_see_types_f5d29352\": {\n \"message\": \"Razširi za prikaz { types }\"\n },\n \"external_link_d3f9e62a\": {\n \"message\": \"Zunanja povezava\"\n },\n \"external_tools_6e77821\": {\n \"message\": \"Zunanja orodja\"\n },\n \"extra_large_b6cdf1ff\": {\n \"message\": \"Zelo veliko\"\n },\n \"extra_small_9ae33252\": {\n \"message\": \"Zelo majhen\"\n },\n \"extracurricular_icon_67c8ca42\": {\n \"message\": \"Zunajštudijska ikona\"\n },\n \"f_function_fe422d65\": {\n \"message\": \"F (funkcija)\"\n },\n \"failed_getting_file_contents_e9ea19f4\": {\n \"message\": \"Pridobivanje vsebine datoteke ni uspelo\"\n },\n \"file_storage_quota_exceeded_b7846cd1\": {\n \"message\": \"Kvota prostora na disku je presežena\"\n },\n \"file_url_c12b64be\": {\n \"message\": \"URL datoteke\"\n },\n \"filename_file_icon_602eb5de\": {\n \"message\": \"Ikona datoteke { filename }\"\n },\n \"filename_image_preview_6cef8f26\": {\n \"message\": \"Predogled slike { filename }\"\n },\n \"filename_text_preview_e41ca2d8\": {\n \"message\": \"Predogled besedila { filename }\"\n },\n \"files_c300e900\": {\n \"message\": \"Datoteke\"\n },\n \"files_index_af7c662b\": {\n \"message\": \"Kazalo datotek\"\n },\n \"flat_music_76d5a5c3\": {\n \"message\": \"Ravno (glasba)\"\n },\n \"focus_element_options_toolbar_18d993e\": {\n \"message\": \"Orodna vrstica za izostritev možnosti elementov\"\n },\n \"folder_tree_fbab0726\": {\n \"message\": \"Drevo map\"\n },\n \"for_all_b919f972\": {\n \"message\": \"Za vse\"\n },\n \"format_4247a9c5\": {\n \"message\": \"Oblika zapisa\"\n },\n \"formatting_5b143aa8\": {\n \"message\": \"Oblikovanje\"\n },\n \"forward_slash_3f90f35e\": {\n \"message\": \"Poševnica naprej\"\n },\n \"found_auto_saved_content_3f6e4ca5\": {\n \"message\": \"Našli smo samodejno shranjeno vsebina\"\n },\n \"found_count_plural_0_results_one_result_other_resu_46aeaa01\": {\n \"message\": \"Najdeno (najden) je { count, plural,\\n =0 {# rezultatov}\\n one {# rezultat }\\n other {# rezultatov}\\n}\"\n },\n \"fraction_41bac7af\": {\n \"message\": \"Ulomek\"\n },\n \"fullscreen_873bf53f\": {\n \"message\": \"Celoten zaslon\"\n },\n \"gamma_1767928\": {\n \"message\": \"Gama\"\n },\n \"generating_preview_45b53be0\": {\n \"message\": \"Generiranje predogleda ...\"\n },\n \"gif_png_format_images_larger_than_size_kb_are_not__7af3bdbd\": {\n \"message\": \"Slike v obliki GIF/PNG, večje od { size } KB, trenutno niso podprte.\"\n },\n \"go_to_the_editor_s_menubar_e6674c81\": {\n \"message\": \"Pojdi v menijsko vrstico urejevalnika\"\n },\n \"go_to_the_editor_s_toolbar_a5cb875f\": {\n \"message\": \"Pojdi orodno vrstico urejevalnika\"\n },\n \"grades_a61eba0a\": {\n \"message\": \"Ocene\"\n },\n \"greater_than_e98af662\": {\n \"message\": \"Večje od\"\n },\n \"greater_than_or_equal_b911949a\": {\n \"message\": \"Večje ali enako\"\n },\n \"greek_65c5b3f7\": {\n \"message\": \"grške\"\n },\n \"green_15af4778\": {\n \"message\": \"Zeleno\"\n },\n \"grey_a55dceff\": {\n \"message\": \"Siva\"\n },\n \"group_documents_8bfd6ae6\": {\n \"message\": \"Dokumenti skupine\"\n },\n \"group_files_4324f3df\": {\n \"message\": \"Datoteke skupine\"\n },\n \"group_files_82e5dcdb\": {\n \"message\": \"Datoteke skupine\"\n },\n \"group_images_98e0ac17\": {\n \"message\": \"Slike skupine\"\n },\n \"group_isomorphism_45b1458c\": {\n \"message\": \"Skupinski izomorfizem\"\n },\n \"group_link_63e626b3\": {\n \"message\": \"Povezava do skupine\"\n },\n \"group_links_9493129e\": {\n \"message\": \"Povezave do skupin\"\n },\n \"group_media_2f3d128a\": {\n \"message\": \"Mediji skupine\"\n },\n \"group_navigation_99f191a\": {\n \"message\": \"Navigacija po skupini\"\n },\n \"h_bar_bb94deae\": {\n \"message\": \"Vrstica H\"\n },\n \"hat_ea321e35\": {\n \"message\": \"Klobuk\"\n },\n \"heading_2_5b84eed2\": {\n \"message\": \"Glava 2\"\n },\n \"heading_3_2c83de44\": {\n \"message\": \"Glava 3\"\n },\n \"heading_4_b2e74be7\": {\n \"message\": \"Glava 4\"\n },\n \"health_icon_8d292eb5\": {\n \"message\": \"Ikona zdravstva\"\n },\n \"hearts_suit_e50e04ca\": {\n \"message\": \"Srca (obleka)\"\n },\n \"height_69b03e15\": {\n \"message\": \"Višina\"\n },\n \"hexagon_d8468e0d\": {\n \"message\": \"Šesterokotnik\"\n },\n \"hide_description_bfb5502e\": {\n \"message\": \"Skrij opis\"\n },\n \"hide_title_description_caf092ef\": {\n \"message\": \"Skrij opis { title }\"\n },\n \"home_351838cd\": {\n \"message\": \"Glavna stran\"\n },\n \"html_code_editor_fd967a44\": {\n \"message\": \"urejevalnik kode html\"\n },\n \"html_editor_fb2ab713\": {\n \"message\": \"Urejevalnik HTML\"\n },\n \"i_have_obtained_permission_to_use_this_file_6386f087\": {\n \"message\": \"Pridobil sem dovoljenje za uporabo te datoteke.\"\n },\n \"i_hold_the_copyright_71ee91b1\": {\n \"message\": \"Imam avtorske pravice.\"\n },\n \"icon_215a1dc6\": {\n \"message\": \"Ikona\"\n },\n \"icon_8168b2f8\": {\n \"message\": \"ikona\"\n },\n \"icon_color_b86dd6d6\": {\n \"message\": \"Barva ikone\"\n },\n \"icon_maker_icons_cc560f7e\": {\n \"message\": \"Ikone ustvarjalnika ikon\"\n },\n \"icon_options_7e32746e\": {\n \"message\": \"Možnosti ikon\"\n },\n \"icon_options_tray_2b407977\": {\n \"message\": \"Pladenj z možnostmi ikon\"\n },\n \"icon_shape_30b61e7\": {\n \"message\": \"Oblika ikone\"\n },\n \"icon_size_9353edea\": {\n \"message\": \"Velikost ikone\"\n },\n \"if_left_empty_link_text_will_display_as_course_lin_61087540\": {\n \"message\": \"Če povezavo pustite prazno, bo besedilo prikazano kot ime povezave na predmet\"\n },\n \"if_you_do_not_select_usage_rights_now_this_file_wi_14e07ab5\": {\n \"message\": \"Če ne izberete pravic uporabe zdaj, ta datoteka po nalaganju ne bo objavljena.\"\n },\n \"image_8ad06\": {\n \"message\": \"Slika\"\n },\n \"image_c1c98202\": {\n \"message\": \"slika\"\n },\n \"image_options_5412d02c\": {\n \"message\": \"Možnosti slike\"\n },\n \"image_options_tray_90a46006\": {\n \"message\": \"Vrstica z možnostmi slike\"\n },\n \"image_to_crop_3a34487d\": {\n \"message\": \"Slika za obrezovanje\"\n },\n \"images_7ce26570\": {\n \"message\": \"Slike\"\n },\n \"imaginary_portion_of_complex_number_2c733ffa\": {\n \"message\": \"Namišljeni del (kompleksnega števila)\"\n },\n \"in_element_of_19ca2f33\": {\n \"message\": \"V (element)\"\n },\n \"increase_indent_6af90f7c\": {\n \"message\": \"Povečaj zamik\"\n },\n \"indefinite_integral_6623307e\": {\n \"message\": \"Nedoločeni integral\"\n },\n \"indigo_2035fc55\": {\n \"message\": \"Indigo\"\n },\n \"inference_fed5c960\": {\n \"message\": \"Sklepanje\"\n },\n \"infinity_7a10f206\": {\n \"message\": \"Neskončnost\"\n },\n \"insert_593145ef\": {\n \"message\": \"Vstavi\"\n },\n \"insert_equella_links_49a8dacd\": {\n \"message\": \"Vstavi povezave storitve EQUELLA\"\n },\n \"insert_link_6dc23cae\": {\n \"message\": \"Vstavi povezavo\"\n },\n \"insert_math_equation_57c6e767\": {\n \"message\": \"Vstavi matematično enačbo\"\n },\n \"integers_336344e1\": {\n \"message\": \"Cela števila\"\n },\n \"intersection_cd4590e4\": {\n \"message\": \"Presek\"\n },\n \"invalid_entry_f7d2a0f5\": {\n \"message\": \"Neveljaven vnos.\"\n },\n \"invalid_file_c11ba11\": {\n \"message\": \"Neveljavna datoteka\"\n },\n \"invalid_file_type_881cc9b2\": {\n \"message\": \"Neveljavna vrsta datoteke\"\n },\n \"invalid_url_cbde79f\": {\n \"message\": \"Neveljaven naslov URL\"\n },\n \"iota_11c932a9\": {\n \"message\": \"Jota\"\n },\n \"kappa_2f14c816\": {\n \"message\": \"Kapa\"\n },\n \"kappa_variant_eb64574b\": {\n \"message\": \"Kapa (različica)\"\n },\n \"keyboard_shortcuts_ed1844bd\": {\n \"message\": \"Bližnjice\"\n },\n \"lambda_4f602498\": {\n \"message\": \"Lambda\"\n },\n \"language_arts_icon_a798b0f8\": {\n \"message\": \"Ikona za jezikovni predmet\"\n },\n \"languages_icon_9d20539\": {\n \"message\": \"Ikona za jezike\"\n },\n \"large_9c5e80e7\": {\n \"message\": \"Velika\"\n },\n \"left_align_43d95491\": {\n \"message\": \"Leva poravnava\"\n },\n \"left_angle_bracket_c87a6d07\": {\n \"message\": \"Levi kotni oklepaj\"\n },\n \"left_arrow_4fde1a64\": {\n \"message\": \"Puščica za pomik v levo\"\n },\n \"left_arrow_with_hook_5bfcad93\": {\n \"message\": \"Puščica levo s kljukico\"\n },\n \"left_ceiling_ee9dd88a\": {\n \"message\": \"Levi oglati oklepaj\"\n },\n \"left_curly_brace_1726fb4\": {\n \"message\": \"Levi zaviti oklepaj\"\n },\n \"left_downard_harpoon_arrow_1d7b3d2e\": {\n \"message\": \"Harpunska puščica levo navzdol\"\n },\n \"left_floor_29ac2274\": {\n \"message\": \"Spodnji levi oglati oklepaj\"\n },\n \"left_to_right_e9b4fd06\": {\n \"message\": \"Od leve proti desni\"\n },\n \"left_upward_harpoon_arrow_3a562a96\": {\n \"message\": \"Harpunska puščica levo navzgor\"\n },\n \"leftward_arrow_1e4765de\": {\n \"message\": \"Puščica levo\"\n },\n \"leftward_pointing_triangle_d14532ce\": {\n \"message\": \"Levo usmerjeni trikotnik\"\n },\n \"less_than_a26c0641\": {\n \"message\": \"Manjše kot\"\n },\n \"less_than_or_equal_be5216cb\": {\n \"message\": \"Manjše ali enako\"\n },\n \"library_icon_ae1e54cf\": {\n \"message\": \"Ikona knjižnice\"\n },\n \"light_blue_5374f600\": {\n \"message\": \"Svetlo modra\"\n },\n \"link_7262adec\": {\n \"message\": \"Povezava\"\n },\n \"link_options_a16b758b\": {\n \"message\": \"Možnosti povezave\"\n },\n \"links_14b70841\": {\n \"message\": \"Povezave\"\n },\n \"links_to_an_external_site_de74145d\": {\n \"message\": \"Povezave na zunanje mesto.\"\n },\n \"load_more_35d33c7\": {\n \"message\": \"Naloži več\"\n },\n \"loading_25990131\": {\n \"message\": \"Nalaganje ...\"\n },\n \"loading_bde52856\": {\n \"message\": \"Nalaganje\"\n },\n \"loading_closed_captions_subtitles_failed_95ceef47\": {\n \"message\": \"nalaganje razširjenih podnapisov/podnapisov ni uspelo.\"\n },\n \"loading_failed_b3524381\": {\n \"message\": \"Nalaganje ni uspelo ...\"\n },\n \"loading_failed_e6a9d8ef\": {\n \"message\": \"Nalaganje ni uspelo.\"\n },\n \"loading_folders_d8b5869e\": {\n \"message\": \"Nalaganje map\"\n },\n \"loading_please_wait_d276220a\": {\n \"message\": \"Nalaganje, počakajte\"\n },\n \"loading_preview_9f077aa1\": {\n \"message\": \"Nalagam predogled\"\n },\n \"locked_762f138b\": {\n \"message\": \"Zaklenjeno\"\n },\n \"logical_equivalence_76fca396\": {\n \"message\": \"Logična enakovrednost\"\n },\n \"logical_equivalence_short_8efd7b4f\": {\n \"message\": \"Logična enakovrednost (kratka)\"\n },\n \"logical_equivalence_short_and_thick_1e1f654d\": {\n \"message\": \"Logična enakovrednost (kratka in debela)\"\n },\n \"logical_equivalence_thick_662dd3f2\": {\n \"message\": \"Logična enakovrednost (debela)\"\n },\n \"low_horizontal_dots_cc08498e\": {\n \"message\": \"Spodnje vodoravne pike\"\n },\n \"magenta_4a65993c\": {\n \"message\": \"Magenta\"\n },\n \"maps_to_e5ef7382\": {\n \"message\": \"Zemljevidi do\"\n },\n \"math_icon_ad4e9d03\": {\n \"message\": \"Ikona matematike\"\n },\n \"media_af190855\": {\n \"message\": \"Mediji\"\n },\n \"media_file_is_processing_please_try_again_later_58a6d49\": {\n \"message\": \"Predstavnostna datoteka je v obdelavi. Poskusite znova pozneje.\"\n },\n \"medium_5a8e9ead\": {\n \"message\": \"Srednja\"\n },\n \"middle_27dc1d5\": {\n \"message\": \"Sredina\"\n },\n \"minimize_file_preview_da911944\": {\n \"message\": \"Minimiziraj predogled datoteke\"\n },\n \"minimize_video_20aa554b\": {\n \"message\": \"Minimiziraj videoposnetek\"\n },\n \"minus_fd961e2e\": {\n \"message\": \"Minus\"\n },\n \"minus_plus_3461f637\": {\n \"message\": \"Minus/plus\"\n },\n \"misc_3b692ea7\": {\n \"message\": \"Razno\"\n },\n \"miscellaneous_e9818229\": {\n \"message\": \"Drugo\"\n },\n \"modules_c4325335\": {\n \"message\": \"Moduli\"\n },\n \"mu_37223b8b\": {\n \"message\": \"Mu\"\n },\n \"multi_color_image_63d7372f\": {\n \"message\": \"Večbarvna slika\"\n },\n \"multiplication_sign_15f95c22\": {\n \"message\": \"Znak za množenje\"\n },\n \"music_icon_4db5c972\": {\n \"message\": \"Ikona glasbe\"\n },\n \"must_be_at_least_percentage_22e373b6\": {\n \"message\": \"Mora biti vsaj { percentage }%.\"\n },\n \"must_be_at_least_width_x_height_px_41dc825e\": {\n \"message\": \"Mora biti vsaj { width } x { height } px.\"\n },\n \"my_files_2f621040\": {\n \"message\": \"Moje datoteke\"\n },\n \"n_th_root_9991a6e4\": {\n \"message\": \"N-ti koren\"\n },\n \"nabla_1e216d25\": {\n \"message\": \"Nabla\"\n },\n \"name_1aed4a1b\": {\n \"message\": \"Ime\"\n },\n \"name_color_ceec76ff\": {\n \"message\": \"{ name } ({ color })\"\n },\n \"natural_music_54a70258\": {\n \"message\": \"Naravna (glasba)\"\n },\n \"natural_numbers_3da07060\": {\n \"message\": \"Naravna števila\"\n },\n \"navigate_through_the_menu_or_toolbar_415a4e50\": {\n \"message\": \"Navigirajte skozi meni ali orodno vrstico\"\n },\n \"nested_greater_than_d852e60d\": {\n \"message\": \"Ugnezdeni znak za večje kot\"\n },\n \"nested_less_than_27d17e58\": {\n \"message\": \"Ugnezdeni znak za manjše kot\"\n },\n \"next_page_d2a39853\": {\n \"message\": \"Naslednja stran\"\n },\n \"no_changes_to_save_d29f6e91\": {\n \"message\": \"Ni sprememb, ki bi jih bilo mogoče shraniti.\"\n },\n \"no_e16d9132\": {\n \"message\": \"Ne\"\n },\n \"no_file_chosen_9a880793\": {\n \"message\": \"Izbrana ni nobena datoteka\"\n },\n \"no_preview_is_available_for_this_file_f940114a\": {\n \"message\": \"Za to datoteko predogled ni na voljo.\"\n },\n \"no_results_940393cf\": {\n \"message\": \"Ni rezultatov.\"\n },\n \"no_results_found_for_filterterm_ad1b04c8\": {\n \"message\": \"Ni najdenih rezultatov za { filterTerm }\"\n },\n \"no_results_found_for_term_1564c08e\": {\n \"message\": \"Ni najdenih rezultatov za { term }.\"\n },\n \"none_3b5e34d2\": {\n \"message\": \"Brez\"\n },\n \"none_selected_b93d56d2\": {\n \"message\": \"Nobena ni izbrana\"\n },\n \"not_equal_6e2980e6\": {\n \"message\": \"Ni enako\"\n },\n \"not_in_not_an_element_of_fb1ffb54\": {\n \"message\": \"Ni del (ni element)\"\n },\n \"not_negation_1418ebb8\": {\n \"message\": \"Ne (negacija)\"\n },\n \"not_subset_dc2b5e84\": {\n \"message\": \"Ni podmnožica\"\n },\n \"not_subset_strict_23d282bf\": {\n \"message\": \"Ni podnabor (strogo)\"\n },\n \"not_superset_5556b913\": {\n \"message\": \"Ni nadnabor\"\n },\n \"not_superset_strict_24e06f36\": {\n \"message\": \"Ni nadnabor (strogo)\"\n },\n \"nu_1c0f6848\": {\n \"message\": \"Nu\"\n },\n \"octagon_e48be9f\": {\n \"message\": \"Osmerokotnik\"\n },\n \"olive_6a3e4d6b\": {\n \"message\": \"Olivna\"\n },\n \"omega_8f2c3463\": {\n \"message\": \"Omega\"\n },\n \"one_of_the_following_styles_must_be_added_to_save__1de769aa\": {\n \"message\": \"Za shranjevanje ikone je treba dodati enega od naslednjih slogov: Barva ikone, velikost orisa, besedilo ikone ali slika\"\n },\n \"open_circle_e9bd069\": {\n \"message\": \"Odprti krog\"\n },\n \"open_this_keyboard_shortcuts_dialog_9658b83a\": {\n \"message\": \"Odpri to pogovorno okno z bližnjicami\"\n },\n \"open_title_application_fd624fc5\": {\n \"message\": \"Odpri aplikacijo { title }\"\n },\n \"operators_a2ef9a93\": {\n \"message\": \"Upravljavci\"\n },\n \"or_9b70ccaa\": {\n \"message\": \"Ali\"\n },\n \"orange_81386a62\": {\n \"message\": \"Oranžno\"\n },\n \"ordered_and_unordered_lists_cfadfc38\": {\n \"message\": \"Urejeni in neurejeni seznami\"\n },\n \"other_editor_shortcuts_may_be_found_at_404aba4a\": {\n \"message\": \"Druge bližnjice urejevalnika je mogoče najti na\"\n },\n \"outline_color_3ef2cea7\": {\n \"message\": \"Barva orisa\"\n },\n \"outline_size_a6059a21\": {\n \"message\": \"Velikost orisa\"\n },\n \"p_is_not_a_valid_protocol_which_must_be_ftp_http_h_adf13fc2\": {\n \"message\": \"{ p } ni veljaven protokol; ta mora biti ftp, http, https, mailto, skype, tel ali pa ga izpustite\"\n },\n \"pages_e5414c2c\": {\n \"message\": \"Strani\"\n },\n \"paragraph_5e5ad8eb\": {\n \"message\": \"Odstavek\"\n },\n \"parallel_d55d6e38\": {\n \"message\": \"Vzporedno\"\n },\n \"partial_derivative_4a9159df\": {\n \"message\": \"Delno (izpeljanka)\"\n },\n \"pentagon_17d82ea3\": {\n \"message\": \"Peterokotnik\"\n },\n \"people_b4ebb13c\": {\n \"message\": \"Sodelujoči\"\n },\n \"percentage_34ab7c2c\": {\n \"message\": \"Odstotek\"\n },\n \"percentage_must_be_a_number_8033c341\": {\n \"message\": \"Odstotek mora biti številka\"\n },\n \"performing_arts_icon_f3497486\": {\n \"message\": \"Ikona odrskih umetnosti\"\n },\n \"perpendicular_7c48ede4\": {\n \"message\": \"Pravokotno\"\n },\n \"phi_4ac33b6d\": {\n \"message\": \"Fi\"\n },\n \"phi_variant_c9bb3ac5\": {\n \"message\": \"Fi (različica)\"\n },\n \"physical_education_icon_d7dffd3e\": {\n \"message\": \"Ikona športne vzgoje\"\n },\n \"pi_dc4f0bd8\": {\n \"message\": \"Pi\"\n },\n \"pi_variant_10f5f520\": {\n \"message\": \"Pi (različica)\"\n },\n \"pink_68ad45cb\": {\n \"message\": \"Rožnato\"\n },\n \"pixels_52ece7d1\": {\n \"message\": \"Slikovne pike\"\n },\n \"play_media_comment_35257210\": {\n \"message\": \"Predvajaj komentar v obliki medija.\"\n },\n \"play_media_comment_by_name_from_createdat_c230123d\": {\n \"message\": \"Predvajaj komentar v obliki medija { name }, ki je bil ustvarjen ob/dne { createdAt }.\"\n },\n \"plus_d43cd4ec\": {\n \"message\": \"Plus\"\n },\n \"plus_minus_f8be2e83\": {\n \"message\": \"Plus/minus\"\n },\n \"posted_when_a578f5ab\": {\n \"message\": \"Objavljeno: { when }\"\n },\n \"power_set_4f26f316\": {\n \"message\": \"Potenčna množica\"\n },\n \"precedes_196b9aef\": {\n \"message\": \"Predhodnik\"\n },\n \"precedes_equal_20701e84\": {\n \"message\": \"Predhodnik enakosti\"\n },\n \"preformatted_d0670862\": {\n \"message\": \"Predoblikovano\"\n },\n \"preview_53003fd2\": {\n \"message\": \"Predogled\"\n },\n \"preview_in_overlay_ed772c46\": {\n \"message\": \"Predogled v prekrivnem elementu\"\n },\n \"preview_inline_9787330\": {\n \"message\": \"Vstavljen predogled\"\n },\n \"previous_page_928fc112\": {\n \"message\": \"Prejšnja stran\"\n },\n \"prime_917ea60e\": {\n \"message\": \"Pra\"\n },\n \"prime_numbers_13464f61\": {\n \"message\": \"Praštevila\"\n },\n \"product_39cf144f\": {\n \"message\": \"Zmnožek\"\n },\n \"proportional_f02800cc\": {\n \"message\": \"Sorazmerno\"\n },\n \"protocol_must_be_ftp_http_https_mailto_skype_tel_o_73beb4f8\": {\n \"message\": \"Protokol mora biti ftp, http, https, mailto, skype, tel ali pa ga izpustite\"\n },\n \"psi_e3f5f0f7\": {\n \"message\": \"Psi\"\n },\n \"published_c944a23d\": {\n \"message\": \"objavljeno\"\n },\n \"published_when_302d8e23\": {\n \"message\": \"Objavljeno: { when }\"\n },\n \"pumpkin_904428d5\": {\n \"message\": \"Buča\"\n },\n \"purple_7678a9fc\": {\n \"message\": \"Škrlatno\"\n },\n \"quaternions_877024e0\": {\n \"message\": \"Kvaternioni\"\n },\n \"quizzes_7e598f57\": {\n \"message\": \"Kvizi\"\n },\n \"rational_numbers_80ddaa4a\": {\n \"message\": \"Racionalne števila\"\n },\n \"real_numbers_7c99df94\": {\n \"message\": \"Realna števila\"\n },\n \"real_portion_of_complex_number_7dad33b5\": {\n \"message\": \"Realni del (kompleksnega števila)\"\n },\n \"record_7c9448b\": {\n \"message\": \"Posnemi\"\n },\n \"record_upload_media_5fdce166\": {\n \"message\": \"Posnemi/naloži medije\"\n },\n \"red_8258edf3\": {\n \"message\": \"Rdeče\"\n },\n \"relationships_6602af70\": {\n \"message\": \"Razmerja\"\n },\n \"religion_icon_246e0be1\": {\n \"message\": \"Ikona religije\"\n },\n \"remove_link_d1f2f4d0\": {\n \"message\": \"Odstrani povezavo\"\n },\n \"replace_e61834a7\": {\n \"message\": \"Zamenjaj\"\n },\n \"reset_95a81614\": {\n \"message\": \"Obnovi\"\n },\n \"resize_ec83d538\": {\n \"message\": \"Spremeni velikost\"\n },\n \"restore_auto_save_deccd84b\": {\n \"message\": \"Obnovim samodejno shranjeno vsebino?\"\n },\n \"reverse_turnstile_does_not_yield_7558be06\": {\n \"message\": \"Reverzni vrtilni križ (ni odnosa)\"\n },\n \"rho_a0244a36\": {\n \"message\": \"Ro\"\n },\n \"rho_variant_415245cd\": {\n \"message\": \"Ro (različica)\"\n },\n \"rich_content_editor_2708ef21\": {\n \"message\": \"Urejevalnik\"\n },\n \"rich_text_area_press_alt_0_for_rich_content_editor_9d23437f\": {\n \"message\": \"Območje besedila Pritisnite ALT+0 za bližnjico do urejevalnika.\"\n },\n \"right_align_39e7a32a\": {\n \"message\": \"Desna poravnava\"\n },\n \"right_angle_bracket_d704e2d6\": {\n \"message\": \"Desni kotni oklepaj\"\n },\n \"right_arrow_35e0eddf\": {\n \"message\": \"Puščica desno\"\n },\n \"right_arrow_with_hook_29d92d31\": {\n \"message\": \"Puščica desno s kljukico\"\n },\n \"right_ceiling_839dc744\": {\n \"message\": \"Desni oglati oklepaj\"\n },\n \"right_curly_brace_5159d5cd\": {\n \"message\": \"Desni zaviti oklepaj\"\n },\n \"right_downward_harpoon_arrow_d71b114f\": {\n \"message\": \"Harpunska puščica desno navzdol\"\n },\n \"right_floor_5392d5cf\": {\n \"message\": \"Desni oglati oklepaj\"\n },\n \"right_to_left_9cfb092a\": {\n \"message\": \"Od desne proti levi\"\n },\n \"right_upward_harpoon_arrow_f5a34c73\": {\n \"message\": \"Harpunska puščica desno navzgor\"\n },\n \"rightward_arrow_32932107\": {\n \"message\": \"Puščica desno\"\n },\n \"rightward_pointing_triangle_60330f5c\": {\n \"message\": \"Desno usmerjeni trikotnik\"\n },\n \"rotate_image_90_degrees_2ab77c05\": {\n \"message\": \"Zasuk slike za –90 stopinj\"\n },\n \"rotate_image_90_degrees_6c92cd42\": {\n \"message\": \"Zasuk slike za 90 stopinj\"\n },\n \"rotation_9699c538\": {\n \"message\": \"Rotacija\"\n },\n \"sadly_the_pretty_html_editor_is_not_keyboard_acces_50da7665\": {\n \"message\": \"Žal urejevalnik Pretty HTML Editor ni dostopen s tipkovnico. Tukaj lahko dostopate do surovega urejevalnika HTML.\"\n },\n \"save_11a80ec3\": {\n \"message\": \"Shrani\"\n },\n \"saved_icon_maker_icons_df86e2a1\": {\n \"message\": \"Shranene ikone ustvarjalnika ikon\"\n },\n \"script_l_42a7b254\": {\n \"message\": \"Skript L\"\n },\n \"search_280d00bd\": {\n \"message\": \"Iskanje\"\n },\n \"search_term_b2d2235\": {\n \"message\": \"Iskalni izraz\"\n },\n \"select_crop_shape_d441feeb\": {\n \"message\": \"Izberite obliko izrezovanja\"\n },\n \"select_language_7c93a900\": {\n \"message\": \"Izberite jezik\"\n },\n \"selected_274ce24f\": {\n \"message\": \"Izbrano\"\n },\n \"selected_linkfilename_c093b1f2\": {\n \"message\": \"Izbrano { linkFileName }\"\n },\n \"set_minus_b46e9b88\": {\n \"message\": \"Nastavi minus\"\n },\n \"sharp_music_ab956814\": {\n \"message\": \"Ostro (glasba)\"\n },\n \"shift_o_to_open_the_pretty_html_editor_55ff5a31\": {\n \"message\": \"Urejevalnik Pretty HTML Editor odprete s pritiskom na tipki Shift+O\"\n },\n \"show_audio_options_b489926b\": {\n \"message\": \"Prikaži možnosti zvoka\"\n },\n \"show_image_options_1e2ecc6b\": {\n \"message\": \"Prikaži možnosti slike\"\n },\n \"show_link_options_545338fd\": {\n \"message\": \"Prikaži povezave na slike\"\n },\n \"show_video_options_6ed3721a\": {\n \"message\": \"Prikaži možnosti videoposnetka\"\n },\n \"sigma_5c35e553\": {\n \"message\": \"Sigma\"\n },\n \"sigma_variant_8155625\": {\n \"message\": \"Sigma (različica)\"\n },\n \"single_color_image_4e5d4dbc\": {\n \"message\": \"Enobarvna slika\"\n },\n \"single_color_image_color_95fa9a87\": {\n \"message\": \"Enobarvna barva slike\"\n },\n \"size_b30e1077\": {\n \"message\": \"Velikost\"\n },\n \"size_of_caption_file_is_greater_than_the_maximum_m_bff5f86e\": {\n \"message\": \"Velikost je večja od največje dovoljene velikosti datoteke { max } kB.\"\n },\n \"small_b070434a\": {\n \"message\": \"Majhna\"\n },\n \"solid_circle_9f061dfc\": {\n \"message\": \"Sklenjen krog\"\n },\n \"something_went_wrong_89195131\": {\n \"message\": \"Prišlo je do težav.\"\n },\n \"something_went_wrong_and_i_don_t_know_what_to_show_e0c54ec8\": {\n \"message\": \"Prišlo je do težav in ne vem, kaj vam naj prikažem.\"\n },\n \"something_went_wrong_check_your_connection_reload__c7868286\": {\n \"message\": \"Prišlo je do težav. Preverite povezavo, osvežite stran in poskusite znova.\"\n },\n \"something_went_wrong_d238c551\": {\n \"message\": \"Prišlo je do težav\"\n },\n \"sort_by_e75f9e3e\": {\n \"message\": \"Razvrsti po\"\n },\n \"spades_suit_b37020c2\": {\n \"message\": \"Piki (obleka)\"\n },\n \"square_511eb3b3\": {\n \"message\": \"Kvadrat\"\n },\n \"square_cap_9ec88646\": {\n \"message\": \"Kvadratna kapica\"\n },\n \"square_cup_b0665113\": {\n \"message\": \"Kvadratna skodlica\"\n },\n \"square_root_e8bcbc60\": {\n \"message\": \"Kvadratni koren\"\n },\n \"square_root_symbol_d0898a53\": {\n \"message\": \"Simbol kvadratnega korena\"\n },\n \"square_subset_17be67cb\": {\n \"message\": \"Kvadratna podmnožica\"\n },\n \"square_subset_strict_7044e84f\": {\n \"message\": \"Kvadratna podmnožica (strogo)\"\n },\n \"square_superset_3be8dae1\": {\n \"message\": \"Kvadratna nadmnožica\"\n },\n \"square_superset_strict_fa4262e4\": {\n \"message\": \"Kvadratna nadmnožica (strogo)\"\n },\n \"square_unordered_list_b15ce93b\": {\n \"message\": \"nerazvrščeni seznam s kvadrati\"\n },\n \"star_8d156e09\": {\n \"message\": \"Zvezdica\"\n },\n \"steel_blue_14296f08\": {\n \"message\": \"Kovinsko modra\"\n },\n \"styles_2aa721ef\": {\n \"message\": \"Slogi\"\n },\n \"submit_a3cc6859\": {\n \"message\": \"Pošlji\"\n },\n \"subscript_59744f96\": {\n \"message\": \"Podpisano\"\n },\n \"subset_19c1a92f\": {\n \"message\": \"Podmnožica\"\n },\n \"subset_strict_8d8948d6\": {\n \"message\": \"Podmnožica (strogo)\"\n },\n \"succeeds_9cc31be9\": {\n \"message\": \"Naslednik\"\n },\n \"succeeds_equal_158e8c3a\": {\n \"message\": \"Naslednik enako\"\n },\n \"sum_b0842d31\": {\n \"message\": \"Vsota\"\n },\n \"superscript_8cb349a2\": {\n \"message\": \"Nadpisano\"\n },\n \"superscript_and_subscript_37f94a50\": {\n \"message\": \"Dvignjeno in spuščeno\"\n },\n \"superset_c4db8a7a\": {\n \"message\": \"Nadmnožica\"\n },\n \"superset_strict_c77dd6d2\": {\n \"message\": \"Nadmnožica (strogo)\"\n },\n \"supported_file_types_srt_or_webvtt_7d827ed\": {\n \"message\": \"Podprte vrste datotek: SRT ali WebVTT\"\n },\n \"switch_to_pretty_html_editor_a3cee15f\": {\n \"message\": \"Preklopi na urejevalnik Pretty HTML Editor\"\n },\n \"switch_to_raw_html_editor_f970ae1a\": {\n \"message\": \"Preklopi v surovi urejevalnik HTML\"\n },\n \"switch_to_the_html_editor_146dfffd\": {\n \"message\": \"Preklopi v urejevalnik html\"\n },\n \"switch_to_the_rich_text_editor_63c1ecf6\": {\n \"message\": \"Preklopi v urejevalnik obogatenega besedila\"\n },\n \"syllabus_f191f65b\": {\n \"message\": \"Učni načrt\"\n },\n \"tab_arrows_4cf5abfc\": {\n \"message\": \"ZAVIHEK/puščične tipke\"\n },\n \"tau_880974b7\": {\n \"message\": \"Tau\"\n },\n \"teal_f729a294\": {\n \"message\": \"Zelenomodra\"\n },\n \"text_7f4593da\": {\n \"message\": \"Besedilo\"\n },\n \"text_background_color_16e61c3f\": {\n \"message\": \"Barva ozadja besedila\"\n },\n \"text_color_acf75eb6\": {\n \"message\": \"Barva besedila\"\n },\n \"text_optional_384f94f7\": {\n \"message\": \"Besedilo (neobvezno)\"\n },\n \"text_position_8df8c162\": {\n \"message\": \"Položaj besedila\"\n },\n \"text_size_887c2f6\": {\n \"message\": \"Velikost besedila\"\n },\n \"the_document_preview_is_currently_being_processed__7d9ea135\": {\n \"message\": \"Predogled dokumenta je trenutno v obdelavi. Poskusite znova pozneje.\"\n },\n \"the_material_is_in_the_public_domain_279c39a3\": {\n \"message\": \"Gradivo je dostopno javnosti.\"\n },\n \"the_material_is_licensed_under_creative_commons_3242cb5e\": {\n \"message\": \"Gradivo je licencirano z licenco Creative Commons.\"\n },\n \"the_material_is_subject_to_an_exception_e_g_fair_u_a39c8ca2\": {\n \"message\": \"Za gradivo velja izjema – npr. poštena uporaba, pravica do citiranja ali drugo v skladu z veljavno zakonodajo o avtorskih pravicah\"\n },\n \"the_pretty_html_editor_is_not_keyboard_accessible__d6d5d2b\": {\n \"message\": \"Urejevalnik Pretty HTML Editor ni dostopen s tipkovnico. Surovi urejevalnik HTML odprete s pritiskom na tipki Shift+O\"\n },\n \"therefore_d860e024\": {\n \"message\": \"Zato\"\n },\n \"theta_ce2d2350\": {\n \"message\": \"Teta\"\n },\n \"theta_variant_fff6da6f\": {\n \"message\": \"Teta (različica)\"\n },\n \"thick_downward_arrow_b85add4c\": {\n \"message\": \"Debela puščica navzdol\"\n },\n \"thick_left_arrow_d5f3e925\": {\n \"message\": \"Debela puščica levo\"\n },\n \"thick_leftward_arrow_6ab89880\": {\n \"message\": \"Debela puščica levo\"\n },\n \"thick_right_arrow_3ed5e8f7\": {\n \"message\": \"Debela puščica desno\"\n },\n \"thick_rightward_arrow_a2e1839e\": {\n \"message\": \"Debela puščica desno\"\n },\n \"thick_upward_arrow_acd20328\": {\n \"message\": \"Debela puščica navzgor\"\n },\n \"this_document_cannot_be_displayed_within_canvas_7aba77be\": {\n \"message\": \"Tega dokumenta v sistemu Canvas ni mogoče prikazati.\"\n },\n \"this_equation_cannot_be_rendered_in_basic_view_9b6c07ae\": {\n \"message\": \"Te enačbe ni mogoče prikazati v osnovnem pogledu.\"\n },\n \"this_image_is_currently_unavailable_25c68857\": {\n \"message\": \"Ta slika trenutno ni na voljo.\"\n },\n \"though_your_video_will_have_the_correct_title_in_t_90e427f3\": {\n \"message\": \"Čeprav bo vaš videoposnetek v brskalniku imel pravilen naslov, ga v zbirki podatkov nismo uspeli posodobiti.\"\n },\n \"title_ee03d132\": {\n \"message\": \"Naslov\"\n },\n \"to_be_posted_when_d24bf7dc\": {\n \"message\": \"Za objavo: { when }\"\n },\n \"to_do_when_2783d78f\": {\n \"message\": \"Čakajoča opravila: { when }\"\n },\n \"toggle_summary_group_413df9ac\": {\n \"message\": \"Preklopi skupino { summary }\"\n },\n \"toggle_tooltip_d3b7cb86\": {\n \"message\": \"Preklop opisa orodja\"\n },\n \"tools_2fcf772e\": {\n \"message\": \"Orodja\"\n },\n \"top_66e0adb6\": {\n \"message\": \"Vrh\"\n },\n \"totalresults_results_found_numdisplayed_results_cu_a0a44975\": {\n \"message\": \"{ totalResults } najdenih rezultatov, od tega jih je trenutno prikazanih { numDisplayed }.\"\n },\n \"tray_839df38a\": {\n \"message\": \"Trak\"\n },\n \"triangle_6072304e\": {\n \"message\": \"Trikotnik\"\n },\n \"turnstile_yields_f9e76df1\": {\n \"message\": \"Vrtilni križ (odnos)\"\n },\n \"type_control_f9_to_access_image_options_text_a47e319f\": {\n \"message\": \"pritisnite Ctrl+F9 za dostop do možnosti slike. { text }\"\n },\n \"type_control_f9_to_access_link_options_text_4ead9682\": {\n \"message\": \"pritisnite Ctrl+F9 za dostop do možnosti povezave. { text }\"\n },\n \"type_control_f9_to_access_table_options_text_92141329\": {\n \"message\": \"pritisnite Ctrl+F9 za dostop do možnosti preglednice. { text }\"\n },\n \"union_e6b57a53\": {\n \"message\": \"Unija\"\n },\n \"unpublished_dfd8801\": {\n \"message\": \"neobjavljeno\"\n },\n \"untitled_efdc2d7d\": {\n \"message\": \"brez naslova\"\n },\n \"up_and_left_diagonal_arrow_e4a74a23\": {\n \"message\": \"Diagonalna puščica navzdol in levo\"\n },\n \"up_and_right_diagonal_arrow_935b902e\": {\n \"message\": \"Diagonalna puščica navzdol in desno\"\n },\n \"upload_document_253f0478\": {\n \"message\": \"Naloži dokument\"\n },\n \"upload_file_fd2361b8\": {\n \"message\": \"Naloži datoteko\"\n },\n \"upload_image_6120b609\": {\n \"message\": \"Naloži sliko\"\n },\n \"upload_media_ce31135a\": {\n \"message\": \"Naloži medije\"\n },\n \"upload_record_media_e4207d72\": {\n \"message\": \"Naloži/posnemi medij\"\n },\n \"uploading_19e8a4e7\": {\n \"message\": \"Nalaganje\"\n },\n \"uppercase_alphabetic_ordered_list_3f5aa6b2\": {\n \"message\": \"abecedno urejeni seznam z velikimi začetnicami\"\n },\n \"uppercase_delta_d4f4bc41\": {\n \"message\": \"Velika delta\"\n },\n \"uppercase_gamma_86f492e9\": {\n \"message\": \"Velika gama\"\n },\n \"uppercase_lambda_c78d8ed4\": {\n \"message\": \"Velika lambda\"\n },\n \"uppercase_omega_8aedfa2\": {\n \"message\": \"Velika omega\"\n },\n \"uppercase_phi_caa36724\": {\n \"message\": \"Velika fi\"\n },\n \"uppercase_pi_fcc70f5e\": {\n \"message\": \"Velika pi\"\n },\n \"uppercase_psi_6395acbe\": {\n \"message\": \"Velika psi\"\n },\n \"uppercase_roman_numeral_ordered_list_853f292b\": {\n \"message\": \"abecedno urejeni seznam z rimskimi številkami\"\n },\n \"uppercase_sigma_dbb70e92\": {\n \"message\": \"Velika sigma\"\n },\n \"uppercase_theta_49afc891\": {\n \"message\": \"Velika teta\"\n },\n \"uppercase_upsilon_8c1e623e\": {\n \"message\": \"Velika ipsilon\"\n },\n \"uppercase_xi_341e8556\": {\n \"message\": \"Velika ksi\"\n },\n \"upsilon_33651634\": {\n \"message\": \"Ipsilon\"\n },\n \"upward_and_downward_pointing_arrow_fa90a918\": {\n \"message\": \"Navzgor in navzdol usmerjena puščica\"\n },\n \"upward_and_downward_pointing_arrow_thick_d420fdef\": {\n \"message\": \"Navzgor in navzdol usmerjena puščica (debela)\"\n },\n \"upward_arrow_9992cb2d\": {\n \"message\": \"Navzgor usmerjena puščica\"\n },\n \"upward_pointing_triangle_d078d7cb\": {\n \"message\": \"Navzgor usmerjeni trikotnik\"\n },\n \"url_22a5f3b8\": {\n \"message\": \"URL\"\n },\n \"usage_right_ff96f3e2\": {\n \"message\": \"Pravica uporabe:\"\n },\n \"usage_rights_required_5fe4dd68\": {\n \"message\": \"Pravice uporabe (obvezno)\"\n },\n \"use_arrow_keys_to_navigate_options_2021cc50\": {\n \"message\": \"Po možnostih se premikajte s puščičnima tipkama.\"\n },\n \"use_arrow_keys_to_select_a_shape_c8eb57ed\": {\n \"message\": \"Za izbiro oblike uporabite puščične tipke.\"\n },\n \"use_arrow_keys_to_select_a_size_699a19f4\": {\n \"message\": \"Za izbiro velikosti uporabite puščične tipke.\"\n },\n \"use_arrow_keys_to_select_a_text_position_72f9137c\": {\n \"message\": \"Za izbiro položaja besedila uporabite puščične tipke.\"\n },\n \"use_arrow_keys_to_select_a_text_size_65e89336\": {\n \"message\": \"Za izbiro velikosti besedila uporabite puščične tipke.\"\n },\n \"use_arrow_keys_to_select_an_outline_size_e009d6b0\": {\n \"message\": \"Za izbiro velikosti orisa uporabite puščične tipke.\"\n },\n \"used_by_screen_readers_to_describe_the_content_of__4f14b4e4\": {\n \"message\": \"Uporabljajo ga bralniki zaslona za opisovanje vsebine { TYPE }\"\n },\n \"used_by_screen_readers_to_describe_the_content_of__b1e76d9e\": {\n \"message\": \"Uporabljajo ga bralniki zaslona za opisovanje vsebine slike\"\n },\n \"used_by_screen_readers_to_describe_the_video_37ebad25\": {\n \"message\": \"Uporabljajo ga bralniki zaslona za opisovanje videoposnetka\"\n },\n \"user_documents_c206e61f\": {\n \"message\": \"Uporabniški dokumenti\"\n },\n \"user_files_78e21703\": {\n \"message\": \"Uporabniške datoteke\"\n },\n \"user_images_b6490852\": {\n \"message\": \"Uporabniške slike\"\n },\n \"user_media_14fbf656\": {\n \"message\": \"Uporabnikovi mediji\"\n },\n \"vector_notation_cf6086ab\": {\n \"message\": \"Vektor (oznaka)\"\n },\n \"vertical_bar_set_builder_notation_4300495f\": {\n \"message\": \"Navpična vrstica (Set Builder Notation)\"\n },\n \"vertical_dots_bfb21f14\": {\n \"message\": \"Navpične pike\"\n },\n \"video_options_24ef6e5d\": {\n \"message\": \"Možnosti videoposnetka\"\n },\n \"video_options_tray_3b9809a5\": {\n \"message\": \"Vrstica z možnostmi videoposnetka\"\n },\n \"video_player_for_9e7d373b\": {\n \"message\": \"Predvajalnik videoposnetkov za \"\n },\n \"video_player_for_title_ffd9fbc4\": {\n \"message\": \"Predvajalnik videoposnetkov za { title }\"\n },\n \"view_ba339f93\": {\n \"message\": \"Ogled\"\n },\n \"view_description_30446afc\": {\n \"message\": \"Prikaz opisa\"\n },\n \"view_keyboard_shortcuts_34d1be0b\": {\n \"message\": \"Prikaži bližnjice na tipkovnici\"\n },\n \"view_title_description_67940918\": {\n \"message\": \"Prikaz opisa { title }\"\n },\n \"white_87fa64fd\": {\n \"message\": \"Belo\"\n },\n \"width_492fec76\": {\n \"message\": \"Širina\"\n },\n \"width_and_height_must_be_numbers_110ab2e3\": {\n \"message\": \"Širina in višina morata biti številki\"\n },\n \"width_x_height_px_ff3ccb93\": {\n \"message\": \"{ width } x { height } px\"\n },\n \"wiki_home_9cd54d0\": {\n \"message\": \"Glavna stran wiki\"\n },\n \"wreath_product_200b38ef\": {\n \"message\": \"Venčni produkt\"\n },\n \"xi_149681d0\": {\n \"message\": \"Ksi\"\n },\n \"yes_dde87d5\": {\n \"message\": \"Da\"\n },\n \"you_have_unsaved_changes_in_the_icon_maker_tray_do_e8cf5f1b\": {\n \"message\": \"V pladnju ustvarjalnika ikon imate neshranjene spremembe. Ali želite nadaljevati brez shranjevanja teh sprememb?\"\n },\n \"you_may_not_upload_an_empty_file_11c31eb2\": {\n \"message\": \"Prazne datoteke ne smete naložiti.\"\n },\n \"your_image_has_been_compressed_for_icon_maker_imag_2e45cd91\": {\n \"message\": \"Vaša slika je bila stisnjena za Icon Maker. Slike, manjše od { size } KB ne bodo stisnjene.\"\n },\n \"zeta_5ef24f0e\": {\n \"message\": \"Zeta\"\n },\n \"zoom_f3e54d69\": {\n \"message\": \"Povečava\"\n },\n \"zoom_in_image_bb97d4f\": {\n \"message\": \"Povečaj sliko\"\n },\n \"zoom_out_image_d0a0a2ec\": {\n \"message\": \"Pomanjšaj sliko\"\n }\n};\n_format_message__WEBPACK_IMPORTED_MODULE_0__[\"default\"].addLocale({\n sl: locale\n});\n\n//# sourceURL=webpack:///./src/translations/locales/sl.js?");
12
12
 
13
13
  /***/ }),
14
14
 
15
- /***/ "./src/translations/tinymce/th.js":
15
+ /***/ "./src/translations/tinymce/sl.js":
16
16
  /*!****************************************!*\
17
- !*** ./src/translations/tinymce/th.js ***!
17
+ !*** ./src/translations/tinymce/sl.js ***!
18
18
  \****************************************/
19
19
  /*! no static exports found */
20
20
  /***/ (function(module, exports) {
21
21
 
22
- eval("/*\n * Copyright (C) 2021 - present Instructure, Inc.\n *\n * This file is part of Canvas.\n *\n * Canvas is free software: you can redistribute it and/or modify it under\n * the terms of the GNU Affero General Public License as published by the Free\n * Software Foundation, version 3 of the License.\n *\n * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY\n * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR\n * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more\n * details.\n *\n * You should have received a copy of the GNU Affero General Public License along\n * with this program. If not, see <http://www.gnu.org/licenses/>.\n */\ntinymce.addI18n('th', {\n \"Redo\": \"\\u0e17\\u0e33\\u0e43\\u0e2b\\u0e21\\u0e48\\u0e2d\\u0e35\\u0e01\",\n \"Undo\": \"\\u0e40\\u0e1b\\u0e25\\u0e35\\u0e48\\u0e22\\u0e19\\u0e01\\u0e25\\u0e31\\u0e1a\\u0e04\\u0e37\\u0e19\",\n \"Cut\": \"\\u0e15\\u0e31\\u0e14\",\n \"Copy\": \"\\u0e04\\u0e31\\u0e14\\u0e25\\u0e2d\\u0e01\",\n \"Paste\": \"\\u0e27\\u0e32\\u0e07\",\n \"Select all\": \"\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"New document\": \"\\u0e40\\u0e2d\\u0e01\\u0e2a\\u0e32\\u0e23\\u0e43\\u0e2b\\u0e21\\u0e48\",\n \"Ok\": \"\\u0e15\\u0e01\\u0e25\\u0e07\",\n \"Cancel\": \"\\u0e22\\u0e01\\u0e40\\u0e25\\u0e34\\u0e01\",\n \"Visual aids\": \"\\u0e17\\u0e31\\u0e28\\u0e19\\u0e39\\u0e1b\\u0e01\\u0e23\\u0e13\\u0e4c\",\n \"Bold\": \"\\u0e15\\u0e31\\u0e27\\u0e2b\\u0e19\\u0e32\",\n \"Italic\": \"\\u0e15\\u0e31\\u0e27\\u0e40\\u0e2d\\u0e35\\u0e22\\u0e07\",\n \"Underline\": \"\\u0e02\\u0e35\\u0e14\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e43\\u0e15\\u0e49\",\n \"Strikethrough\": \"\\u0e02\\u0e35\\u0e14\\u0e04\\u0e23\\u0e48\\u0e2d\\u0e21\",\n \"Superscript\": \"\\u0e15\\u0e31\\u0e27\\u0e22\\u0e01\",\n \"Subscript\": \"\\u0e15\\u0e31\\u0e27\\u0e2b\\u0e49\\u0e2d\\u0e22\",\n \"Clear formatting\": \"\\u0e25\\u0e49\\u0e32\\u0e07\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"Align left\": \"\\u0e08\\u0e31\\u0e14\\u0e0a\\u0e34\\u0e14\\u0e0b\\u0e49\\u0e32\\u0e22\",\n \"Align center\": \"\\u0e08\\u0e31\\u0e14\\u0e01\\u0e36\\u0e48\\u0e07\\u0e01\\u0e25\\u0e32\\u0e07\",\n \"Align right\": \"\\u0e08\\u0e31\\u0e14\\u0e0a\\u0e34\\u0e14\\u0e02\\u0e27\\u0e32\",\n \"Justify\": \"\\u0e40\\u0e15\\u0e47\\u0e21\\u0e41\\u0e19\\u0e27\",\n \"Bullet list\": \"\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2b\\u0e31\\u0e27\\u0e02\\u0e49\\u0e2d\\u0e22\\u0e48\\u0e2d\\u0e22\",\n \"Numbered list\": \"\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e25\\u0e33\\u0e14\\u0e31\\u0e1a\\u0e40\\u0e25\\u0e02\",\n \"Decrease indent\": \"\\u0e25\\u0e14\\u0e01\\u0e32\\u0e23\\u0e40\\u0e22\\u0e37\\u0e49\\u0e2d\\u0e07\",\n \"Increase indent\": \"\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e01\\u0e32\\u0e23\\u0e40\\u0e22\\u0e37\\u0e49\\u0e2d\\u0e07\",\n \"Close\": \"\\u0e1b\\u0e34\\u0e14\",\n \"Formats\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\\/C\\/V keyboard shortcuts instead.\": \"\\u0e40\\u0e1a\\u0e23\\u0e32\\u0e27\\u0e4c\\u0e40\\u0e0b\\u0e2d\\u0e23\\u0e4c\\u0e02\\u0e2d\\u0e07\\u0e04\\u0e38\\u0e13\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e19\\u0e31\\u0e1a\\u0e2a\\u0e19\\u0e38\\u0e19\\u0e01\\u0e32\\u0e23\\u0e40\\u0e02\\u0e49\\u0e32\\u0e16\\u0e36\\u0e07\\u0e42\\u0e14\\u0e22\\u0e15\\u0e23\\u0e07\\u0e44\\u0e1b\\u0e22\\u0e31\\u0e07\\u0e04\\u0e25\\u0e34\\u0e1b\\u0e1a\\u0e2d\\u0e23\\u0e4c\\u0e14 \\u0e01\\u0e23\\u0e38\\u0e13\\u0e32\\u0e43\\u0e0a\\u0e49\\u0e41\\u0e1b\\u0e49\\u0e19\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e25\\u0e31\\u0e14 Ctrl+X\\/C\\/V \\u0e41\\u0e17\\u0e19\",\n \"Headers\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27\",\n \"Header 1\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 1\",\n \"Header 2\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 2\",\n \"Header 3\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 3\",\n \"Header 4\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 4\",\n \"Header 5\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 5\",\n \"Header 6\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27 6\",\n \"Headings\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\",\n \"Heading 1\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 1\",\n \"Heading 2\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 2\",\n \"Heading 3\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 3\",\n \"Heading 4\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 4\",\n \"Heading 5\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 5\",\n \"Heading 6\": \"\\u0e2b\\u0e31\\u0e27\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e17\\u0e35\\u0e48 6\",\n \"Preformatted\": \"\\u0e1f\\u0e2d\\u0e23\\u0e4c\\u0e41\\u0e21\\u0e15\\u0e44\\u0e27\\u0e49\\u0e01\\u0e48\\u0e2d\\u0e19\",\n \"Div\": \"Div\",\n \"Pre\": \"Pre\",\n \"Code\": \"\\u0e23\\u0e2b\\u0e31\\u0e2a\",\n \"Paragraph\": \"\\u0e22\\u0e48\\u0e2d\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Blockquote\": \"Blockquote\",\n \"Inline\": \"\\u0e41\\u0e1a\\u0e1a\\u0e2d\\u0e34\\u0e19\\u0e44\\u0e25\\u0e19\\u0e4c\",\n \"Blocks\": \"\\u0e1a\\u0e25\\u0e4a\\u0e2d\\u0e04\",\n \"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.\": \"\\u0e01\\u0e32\\u0e23\\u0e27\\u0e32\\u0e07\\u0e15\\u0e2d\\u0e19\\u0e19\\u0e35\\u0e49\\u0e2d\\u0e22\\u0e39\\u0e48\\u0e43\\u0e19\\u0e42\\u0e2b\\u0e21\\u0e14\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e18\\u0e23\\u0e23\\u0e21\\u0e14\\u0e32 \\u0e40\\u0e19\\u0e37\\u0e49\\u0e2d\\u0e2b\\u0e32\\u0e08\\u0e30\\u0e16\\u0e39\\u0e01\\u0e27\\u0e32\\u0e07\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e18\\u0e23\\u0e23\\u0e21\\u0e14\\u0e32\\u0e08\\u0e19\\u0e01\\u0e27\\u0e48\\u0e32\\u0e04\\u0e38\\u0e13\\u0e08\\u0e30\\u0e1b\\u0e34\\u0e14\\u0e15\\u0e31\\u0e27\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\\u0e19\\u0e35\\u0e49\",\n \"Fonts\": \"\\u0e41\\u0e1a\\u0e1a\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\",\n \"Font Sizes\": \"\\u0e02\\u0e19\\u0e32\\u0e14\\u0e41\\u0e1a\\u0e1a\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\",\n \"Class\": \"\\u0e0a\\u0e31\\u0e49\\u0e19\",\n \"Browse for an image\": \"\\u0e40\\u0e23\\u0e35\\u0e22\\u0e01\\u0e14\\u0e39\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"OR\": \"OR\",\n \"Drop an image here\": \"\\u0e27\\u0e32\\u0e07\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\\u0e17\\u0e35\\u0e48\\u0e19\\u0e35\\u0e48\",\n \"Upload\": \"\\u0e2d\\u0e31\\u0e1b\\u0e42\\u0e2b\\u0e25\\u0e14\",\n \"Block\": \"\\u0e1a\\u0e25\\u0e47\\u0e2d\\u0e01\",\n \"Align\": \"Align\",\n \"Default\": \"\\u0e04\\u0e48\\u0e32\\u0e40\\u0e23\\u0e34\\u0e48\\u0e21\\u0e15\\u0e49\\u0e19\",\n \"Circle\": \"\\u0e27\\u0e07\\u0e01\\u0e25\\u0e21\",\n \"Disc\": \"\\u0e14\\u0e34\\u0e2a\\u0e01\\u0e4c\",\n \"Square\": \"\\u0e08\\u0e31\\u0e15\\u0e38\\u0e23\\u0e31\\u0e2a\",\n \"Lower Alpha\": \"\\u0e2d\\u0e31\\u0e25\\u0e1f\\u0e32\\u0e17\\u0e35\\u0e48\\u0e15\\u0e48\\u0e33\\u0e01\\u0e27\\u0e48\\u0e32\",\n \"Lower Greek\": \"\\u0e01\\u0e23\\u0e35\\u0e01\\u0e17\\u0e35\\u0e48\\u0e15\\u0e48\\u0e33\\u0e01\\u0e27\\u0e48\\u0e32\",\n \"Lower Roman\": \"\\u0e42\\u0e23\\u0e21\\u0e31\\u0e19\\u0e17\\u0e35\\u0e48\\u0e15\\u0e48\\u0e33\\u0e01\\u0e27\\u0e48\\u0e32\",\n \"Upper Alpha\": \"\\u0e2d\\u0e31\\u0e25\\u0e1f\\u0e32\\u0e17\\u0e35\\u0e48\\u0e2a\\u0e39\\u0e07\\u0e01\\u0e27\\u0e48\\u0e32\",\n \"Upper Roman\": \"\\u0e42\\u0e23\\u0e21\\u0e31\\u0e19\\u0e17\\u0e35\\u0e48\\u0e2a\\u0e39\\u0e07\\u0e01\\u0e27\\u0e48\\u0e32\",\n \"Anchor...\": \"\\u0e08\\u0e38\\u0e14\\u0e22\\u0e36\\u0e14...\",\n \"Name\": \"\\u0e0a\\u0e37\\u0e48\\u0e2d\",\n \"Id\": \"Id\",\n \"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.\": \"Id \\u0e04\\u0e27\\u0e23\\u0e08\\u0e30\\u0e02\\u0e36\\u0e49\\u0e19\\u0e15\\u0e49\\u0e19\\u0e14\\u0e49\\u0e27\\u0e22\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23 \\u0e15\\u0e32\\u0e21\\u0e14\\u0e49\\u0e27\\u0e22\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23 \\u0e15\\u0e31\\u0e27\\u0e40\\u0e25\\u0e02 \\u0e02\\u0e35\\u0e14\\u0e01\\u0e25\\u0e32\\u0e07 \\u0e08\\u0e38\\u0e14 \\u0e2d\\u0e31\\u0e12\\u0e20\\u0e32\\u0e04 \\u0e2b\\u0e23\\u0e37\\u0e2d \\u0e02\\u0e35\\u0e14\\u0e25\\u0e48\\u0e32\\u0e07\",\n \"You have unsaved changes are you sure you want to navigate away?\": \"\\u0e04\\u0e38\\u0e13\\u0e21\\u0e35\\u0e01\\u0e32\\u0e23\\u0e40\\u0e1b\\u0e25\\u0e35\\u0e48\\u0e22\\u0e19\\u0e41\\u0e1b\\u0e25\\u0e07\\u0e17\\u0e35\\u0e48\\u0e44\\u0e21\\u0e48\\u0e44\\u0e14\\u0e49\\u0e1a\\u0e31\\u0e19\\u0e17\\u0e36\\u0e01 \\u0e04\\u0e38\\u0e13\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e01\\u0e32\\u0e23\\u0e17\\u0e35\\u0e48\\u0e08\\u0e30\\u0e2d\\u0e2d\\u0e01\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e44\\u0e21\\u0e48?\",\n \"Restore last draft\": \"\\u0e04\\u0e37\\u0e19\\u0e04\\u0e48\\u0e32\\u0e41\\u0e1a\\u0e1a\\u0e23\\u0e48\\u0e32\\u0e07\\u0e25\\u0e48\\u0e32\\u0e2a\\u0e38\\u0e14\",\n \"Special character...\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e1e\\u0e34\\u0e40\\u0e28\\u0e29...\",\n \"Source code\": \"\\u0e42\\u0e04\\u0e49\\u0e14\\u0e15\\u0e49\\u0e19\\u0e09\\u0e1a\\u0e31\\u0e1a\",\n \"Insert\\/Edit code sample\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e22\\u0e48\\u0e32\\u0e07\\u0e42\\u0e04\\u0e49\\u0e14\",\n \"Language\": \"\\u0e20\\u0e32\\u0e29\\u0e32\",\n \"Code sample...\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e22\\u0e48\\u0e32\\u0e07\\u0e42\\u0e04\\u0e49\\u0e14...\",\n \"Color Picker\": \"\\u0e15\\u0e31\\u0e27\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\\u0e2a\\u0e35\",\n \"R\": \"\\u0e41\\u0e14\\u0e07\",\n \"G\": \"\\u0e40\\u0e02\\u0e35\\u0e22\\u0e27\",\n \"B\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\",\n \"Left to right\": \"\\u0e0b\\u0e49\\u0e32\\u0e22\\u0e44\\u0e1b\\u0e02\\u0e27\\u0e32\",\n \"Right to left\": \"\\u0e02\\u0e27\\u0e32\\u0e44\\u0e1b\\u0e0b\\u0e49\\u0e32\\u0e22\",\n \"Emoticons\": \"\\u0e2d\\u0e34\\u0e42\\u0e21\\u0e15\\u0e34\\u0e04\\u0e2d\\u0e19\",\n \"Emoticons...\": \"\\u0e2d\\u0e35\\u0e42\\u0e21\\u0e15\\u0e34\\u0e04\\u0e2d\\u0e19...\",\n \"Metadata and Document Properties\": \"\\u0e40\\u0e21\\u0e15\\u0e32\\u0e14\\u0e32\\u0e15\\u0e49\\u0e32\\u0e41\\u0e25\\u0e30\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e02\\u0e2d\\u0e07\\u0e40\\u0e2d\\u0e01\\u0e2a\\u0e32\\u0e23\",\n \"Title\": \"\\u0e0a\\u0e37\\u0e48\\u0e2d\\u0e40\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\",\n \"Keywords\": \"\\u0e04\\u0e33\\u0e2a\\u0e33\\u0e04\\u0e31\\u0e0d\",\n \"Description\": \"\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22\",\n \"Robots\": \"\\u0e2b\\u0e38\\u0e48\\u0e19\\u0e22\\u0e19\\u0e15\\u0e4c\",\n \"Author\": \"\\u0e1c\\u0e39\\u0e49\\u0e40\\u0e02\\u0e35\\u0e22\\u0e19\",\n \"Encoding\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e02\\u0e49\\u0e32\\u0e23\\u0e2b\\u0e31\\u0e2a\",\n \"Fullscreen\": \"\\u0e40\\u0e15\\u0e47\\u0e21\\u0e08\\u0e2d\",\n \"Action\": \"\\u0e01\\u0e32\\u0e23\\u0e01\\u0e23\\u0e30\\u0e17\\u0e33\",\n \"Shortcut\": \"\\u0e17\\u0e32\\u0e07\\u0e25\\u0e31\\u0e14\",\n \"Help\": \"\\u0e0a\\u0e48\\u0e27\\u0e22\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\",\n \"Address\": \"\\u0e17\\u0e35\\u0e48\\u0e2d\\u0e22\\u0e39\\u0e48\",\n \"Focus to menubar\": \"\\u0e42\\u0e1f\\u0e01\\u0e31\\u0e2a\\u0e44\\u0e1b\\u0e17\\u0e35\\u0e48\\u0e40\\u0e21\\u0e19\\u0e39\\u0e1a\\u0e32\\u0e23\\u0e4c\",\n \"Focus to toolbar\": \"\\u0e42\\u0e1f\\u0e01\\u0e31\\u0e2a\\u0e44\\u0e1b\\u0e17\\u0e35\\u0e48\\u0e41\\u0e16\\u0e1a\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e21\\u0e37\\u0e2d\",\n \"Focus to element path\": \"\\u0e42\\u0e1f\\u0e01\\u0e31\\u0e2a\\u0e44\\u0e1b\\u0e17\\u0e35\\u0e48\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e17\\u0e32\\u0e07\\u0e02\\u0e2d\\u0e07\\u0e2d\\u0e07\\u0e04\\u0e4c\\u0e1b\\u0e23\\u0e30\\u0e01\\u0e2d\\u0e1a\",\n \"Focus to contextual toolbar\": \"\\u0e42\\u0e1f\\u0e01\\u0e31\\u0e2a\\u0e44\\u0e1b\\u0e17\\u0e35\\u0e48\\u0e41\\u0e16\\u0e1a\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e21\\u0e37\\u0e2d\\u0e15\\u0e32\\u0e21\\u0e1a\\u0e23\\u0e34\\u0e1a\\u0e17\",\n \"Insert link (if link plugin activated)\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c (\\u0e2b\\u0e32\\u0e01\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e43\\u0e0a\\u0e49\\u0e07\\u0e32\\u0e19\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c)\",\n \"Save (if save plugin activated)\": \"\\u0e1a\\u0e31\\u0e19\\u0e17\\u0e36\\u0e01 (\\u0e2b\\u0e32\\u0e01\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e43\\u0e0a\\u0e49\\u0e07\\u0e32\\u0e19\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19\\u0e1a\\u0e31\\u0e19\\u0e17\\u0e36\\u0e01)\",\n \"Find (if searchreplace plugin activated)\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32 (\\u0e2b\\u0e32\\u0e01\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e43\\u0e0a\\u0e49\\u0e07\\u0e32\\u0e19\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19 searchreplace)\",\n \"Plugins installed ({0}):\": \"\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19\\u0e17\\u0e35\\u0e48\\u0e15\\u0e34\\u0e14\\u0e15\\u0e31\\u0e49\\u0e07\\u0e41\\u0e25\\u0e49\\u0e27 ({0}):\",\n \"Premium plugins:\": \"\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19\\u0e1e\\u0e23\\u0e35\\u0e40\\u0e21\\u0e35\\u0e22\\u0e21:\",\n \"Learn more...\": \"\\u0e40\\u0e23\\u0e35\\u0e22\\u0e19\\u0e23\\u0e39\\u0e49\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e40\\u0e15\\u0e34\\u0e21...\",\n \"You are using {0}\": \"\\u0e04\\u0e38\\u0e13\\u0e01\\u0e33\\u0e25\\u0e31\\u0e07\\u0e43\\u0e0a\\u0e49 {0}\",\n \"Plugins\": \"\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19\",\n \"Handy Shortcuts\": \"\\u0e17\\u0e32\\u0e07\\u0e25\\u0e31\\u0e14\\u0e14\\u0e49\\u0e27\\u0e22\\u0e21\\u0e37\\u0e2d\",\n \"Horizontal line\": \"\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e41\\u0e19\\u0e27\\u0e19\\u0e2d\\u0e19\",\n \"Insert\\/edit image\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e23\\u0e39\\u0e1b\",\n \"Alternative description\": \"\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22\\u0e17\\u0e32\\u0e07\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\",\n \"Accessibility\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e43\\u0e19\\u0e01\\u0e32\\u0e23\\u0e40\\u0e02\\u0e49\\u0e32\\u0e16\\u0e36\\u0e07\",\n \"Image is decorative\": \"\\u0e20\\u0e32\\u0e1e\\u0e17\\u0e35\\u0e48\\u0e16\\u0e39\\u0e01\\u0e15\\u0e01\\u0e41\\u0e15\\u0e48\\u0e07\",\n \"Source\": \"\\u0e41\\u0e2b\\u0e25\\u0e48\\u0e07\\u0e17\\u0e35\\u0e48\\u0e21\\u0e32\",\n \"Dimensions\": \"\\u0e02\\u0e19\\u0e32\\u0e14\",\n \"Constrain proportions\": \"\\u0e08\\u0e33\\u0e01\\u0e31\\u0e14\\u0e2a\\u0e31\\u0e14\\u0e2a\\u0e48\\u0e27\\u0e19\",\n \"General\": \"\\u0e17\\u0e31\\u0e48\\u0e27\\u0e44\\u0e1b\",\n \"Advanced\": \"\\u0e02\\u0e31\\u0e49\\u0e19\\u0e2a\\u0e39\\u0e07\",\n \"Style\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"Vertical space\": \"\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07\\u0e41\\u0e19\\u0e27\\u0e15\\u0e31\\u0e49\\u0e07\",\n \"Horizontal space\": \"\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07\\u0e41\\u0e19\\u0e27\\u0e19\\u0e2d\\u0e19\",\n \"Border\": \"\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e02\\u0e2d\\u0e1a\",\n \"Insert image\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"Image...\": \"\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e...\",\n \"Image list\": \"\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"Rotate counterclockwise\": \"\\u0e2b\\u0e21\\u0e38\\u0e19\\u0e17\\u0e27\\u0e19\\u0e40\\u0e02\\u0e47\\u0e21\\u0e19\\u0e32\\u0e2c\\u0e34\\u0e01\\u0e32\",\n \"Rotate clockwise\": \"\\u0e2b\\u0e21\\u0e38\\u0e19\\u0e15\\u0e32\\u0e21\\u0e40\\u0e02\\u0e47\\u0e21\\u0e19\\u0e32\\u0e2c\\u0e34\\u0e01\\u0e32\",\n \"Flip vertically\": \"\\u0e1e\\u0e25\\u0e34\\u0e01\\u0e15\\u0e32\\u0e21\\u0e41\\u0e19\\u0e27\\u0e15\\u0e31\\u0e49\\u0e07\",\n \"Flip horizontally\": \"\\u0e1e\\u0e25\\u0e34\\u0e01\\u0e15\\u0e32\\u0e21\\u0e41\\u0e19\\u0e27\\u0e19\\u0e2d\\u0e19\",\n \"Edit image\": \"\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e23\\u0e39\\u0e1b\",\n \"Image options\": \"\\u0e15\\u0e31\\u0e27\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"Zoom in\": \"\\u0e02\\u0e22\\u0e32\\u0e22\\u0e40\\u0e02\\u0e49\\u0e32\",\n \"Zoom out\": \"\\u0e22\\u0e48\\u0e2d\\u0e2d\\u0e2d\\u0e01\",\n \"Crop\": \"\\u0e04\\u0e23\\u0e2d\\u0e1b\\u0e15\\u0e31\\u0e14\",\n \"Resize\": \"\\u0e1b\\u0e23\\u0e31\\u0e1a\\u0e02\\u0e19\\u0e32\\u0e14\",\n \"Orientation\": \"\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e27\\u0e32\\u0e07\",\n \"Brightness\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e2a\\u0e27\\u0e48\\u0e32\\u0e07\",\n \"Sharpen\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e04\\u0e21\",\n \"Contrast\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e40\\u0e1b\\u0e23\\u0e35\\u0e22\\u0e1a\\u0e15\\u0e48\\u0e32\\u0e07\",\n \"Color levels\": \"\\u0e23\\u0e30\\u0e14\\u0e31\\u0e1a\\u0e2a\\u0e35\",\n \"Gamma\": \"\\u0e41\\u0e01\\u0e21\\u0e21\\u0e32\",\n \"Invert\": \"\\u0e22\\u0e49\\u0e2d\\u0e19\\u0e01\\u0e25\\u0e31\\u0e1a\",\n \"Apply\": \"\\u0e19\\u0e33\\u0e44\\u0e1b\\u0e43\\u0e0a\\u0e49\",\n \"Back\": \"\\u0e01\\u0e25\\u0e31\\u0e1a\",\n \"Insert date\\/time\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e27\\u0e31\\u0e19\\u0e17\\u0e35\\u0e48\\/\\u0e40\\u0e27\\u0e25\\u0e32\",\n \"Date\\/time\": \"\\u0e27\\u0e31\\u0e19\\u0e17\\u0e35\\u0e48\\/\\u0e40\\u0e27\\u0e25\\u0e32\",\n \"Insert\\/edit link\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"Text to display\": \"\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e17\\u0e35\\u0e48\\u0e08\\u0e30\\u0e41\\u0e2a\\u0e14\\u0e07\",\n \"Url\": \"URL\",\n \"Open link in...\": \"\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\\u0e43\\u0e19...\",\n \"Current window\": \"\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e15\\u0e48\\u0e32\\u0e07\\u0e1b\\u0e31\\u0e08\\u0e08\\u0e38\\u0e1a\\u0e31\\u0e19\",\n \"None\": \"\\u0e44\\u0e21\\u0e48\\u0e21\\u0e35\",\n \"New window\": \"\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e15\\u0e48\\u0e32\\u0e07\\u0e43\\u0e2b\\u0e21\\u0e48\",\n \"Open link\": \"\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"Remove link\": \"\\u0e40\\u0e2d\\u0e32\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\\u0e2d\\u0e2d\\u0e01\",\n \"Anchors\": \"\\u0e08\\u0e38\\u0e14\\u0e22\\u0e36\\u0e14\",\n \"Link...\": \"\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c...\",\n \"Paste or type a link\": \"\\u0e27\\u0e32\\u0e07\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e1b\\u0e49\\u0e2d\\u0e19\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?\": \"URL \\u0e17\\u0e35\\u0e48\\u0e04\\u0e38\\u0e13\\u0e23\\u0e30\\u0e1a\\u0e38\\u0e14\\u0e39\\u0e40\\u0e2b\\u0e21\\u0e37\\u0e2d\\u0e19\\u0e27\\u0e48\\u0e32\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e2d\\u0e35\\u0e40\\u0e21\\u0e25\\u0e41\\u0e2d\\u0e14\\u0e40\\u0e14\\u0e23\\u0e2a \\u0e04\\u0e38\\u0e13\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e01\\u0e32\\u0e23\\u0e43\\u0e2a\\u0e48 mailto: \\u0e19\\u0e33\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e44\\u0e21\\u0e48\",\n \"The URL you entered seems to be an external link. Do you want to add the required http:\\/\\/ prefix?\": \"URL \\u0e17\\u0e35\\u0e48\\u0e04\\u0e38\\u0e13\\u0e23\\u0e30\\u0e1a\\u0e38\\u0e14\\u0e39\\u0e40\\u0e2b\\u0e21\\u0e37\\u0e2d\\u0e19\\u0e27\\u0e48\\u0e32\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\\u0e20\\u0e32\\u0e22\\u0e19\\u0e2d\\u0e01 \\u0e04\\u0e38\\u0e13\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e01\\u0e32\\u0e23\\u0e43\\u0e2a\\u0e48 http:\\/\\/ \\u0e19\\u0e33\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e44\\u0e21\\u0e48\",\n \"The URL you entered seems to be an external link. Do you want to add the required https:\\/\\/ prefix?\": \"URL \\u0e17\\u0e35\\u0e48\\u0e04\\u0e38\\u0e13\\u0e1b\\u0e49\\u0e2d\\u0e19\\u0e14\\u0e39\\u0e40\\u0e2b\\u0e21\\u0e37\\u0e2d\\u0e19\\u0e08\\u0e30\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\\u0e20\\u0e32\\u0e22\\u0e19\\u0e2d\\u0e01 \\u0e04\\u0e38\\u0e13\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e01\\u0e32\\u0e23\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e04\\u0e33\\u0e19\\u0e33\\u0e2b\\u0e19\\u0e49\\u0e32 https:\\/\\/ \\u0e17\\u0e35\\u0e48\\u0e08\\u0e33\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e44\\u0e21\\u0e48?\",\n \"Link list\": \"\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"Insert video\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e27\\u0e34\\u0e14\\u0e35\\u0e42\\u0e2d\",\n \"Insert\\/edit video\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e27\\u0e34\\u0e14\\u0e35\\u0e42\\u0e2d\",\n \"Insert\\/edit media\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\\u0e2a\\u0e37\\u0e48\\u0e2d\",\n \"Alternative source\": \"\\u0e41\\u0e2b\\u0e25\\u0e48\\u0e07\\u0e17\\u0e35\\u0e48\\u0e21\\u0e32\\u0e2a\\u0e33\\u0e23\\u0e2d\\u0e07\",\n \"Alternative source URL\": \"URL \\u0e41\\u0e2b\\u0e25\\u0e48\\u0e07\\u0e17\\u0e35\\u0e48\\u0e21\\u0e32\\u0e2a\\u0e33\\u0e23\\u0e2d\\u0e07\",\n \"Media poster (Image URL)\": \"\\u0e42\\u0e1b\\u0e2a\\u0e40\\u0e15\\u0e2d\\u0e23\\u0e4c\\u0e21\\u0e35\\u0e40\\u0e14\\u0e35\\u0e22 (URL \\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e)\",\n \"Paste your embed code below:\": \"\\u0e27\\u0e32\\u0e07\\u0e42\\u0e04\\u0e49\\u0e14\\u0e1d\\u0e31\\u0e07\\u0e15\\u0e31\\u0e27\\u0e02\\u0e2d\\u0e07\\u0e04\\u0e38\\u0e13\\u0e14\\u0e49\\u0e32\\u0e19\\u0e25\\u0e48\\u0e32\\u0e07:\",\n \"Embed\": \"\\u0e1d\\u0e31\\u0e07\",\n \"Media...\": \"\\u0e21\\u0e35\\u0e40\\u0e14\\u0e35\\u0e22...\",\n \"Nonbreaking space\": \"\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07\\u0e44\\u0e21\\u0e48\\u0e41\\u0e22\\u0e01\",\n \"Page break\": \"\\u0e15\\u0e31\\u0e27\\u0e41\\u0e1a\\u0e48\\u0e07\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Paste as text\": \"\\u0e27\\u0e32\\u0e07\\u0e40\\u0e1b\\u0e47\\u0e19\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\",\n \"Preview\": \"\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e22\\u0e48\\u0e32\\u0e07\",\n \"Print...\": \"\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c...\",\n \"Save\": \"\\u0e1a\\u0e31\\u0e19\\u0e17\\u0e36\\u0e01\",\n \"Find\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\",\n \"Replace with\": \"\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48\\u0e14\\u0e49\\u0e27\\u0e22\",\n \"Replace\": \"\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48\",\n \"Replace all\": \"\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48\\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"Previous\": \"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e19\\u0e35\\u0e49\",\n \"Next\": \"\\u0e16\\u0e31\\u0e14\\u0e44\\u0e1b\",\n \"Find and Replace\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e41\\u0e25\\u0e30\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48\",\n \"Find and replace...\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e41\\u0e25\\u0e30\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48...\",\n \"Could not find the specified string.\": \"\\u0e44\\u0e21\\u0e48\\u0e1e\\u0e1a\\u0e2a\\u0e15\\u0e23\\u0e34\\u0e07\\u0e17\\u0e35\\u0e48\\u0e23\\u0e30\\u0e1a\\u0e38\",\n \"Match case\": \"\\u0e15\\u0e23\\u0e07\\u0e15\\u0e32\\u0e21\\u0e15\\u0e31\\u0e27\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e43\\u0e2b\\u0e0d\\u0e48-\\u0e40\\u0e25\\u0e47\\u0e01\",\n \"Find whole words only\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e17\\u0e31\\u0e49\\u0e07\\u0e04\\u0e33\\u0e40\\u0e17\\u0e48\\u0e32\\u0e19\\u0e31\\u0e49\\u0e19\",\n \"Find in selection\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e08\\u0e32\\u0e01\\u0e17\\u0e35\\u0e48\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\",\n \"Spellcheck\": \"\\u0e15\\u0e23\\u0e27\\u0e08\\u0e01\\u0e32\\u0e23\\u0e2a\\u0e30\\u0e01\\u0e14\",\n \"Spellcheck Language\": \"\\u0e20\\u0e32\\u0e29\\u0e32\\u0e43\\u0e19\\u0e01\\u0e32\\u0e23\\u0e15\\u0e23\\u0e27\\u0e08\\u0e01\\u0e32\\u0e23\\u0e2a\\u0e30\\u0e01\\u0e14\",\n \"No misspellings found.\": \"\\u0e44\\u0e21\\u0e48\\u0e1e\\u0e1a\\u0e01\\u0e32\\u0e23\\u0e2a\\u0e30\\u0e01\\u0e14\\u0e04\\u0e33\\u0e1c\\u0e34\\u0e14\",\n \"Ignore\": \"\\u0e25\\u0e30\\u0e40\\u0e27\\u0e49\\u0e19\",\n \"Ignore all\": \"\\u0e25\\u0e30\\u0e40\\u0e27\\u0e49\\u0e19\\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"Finish\": \"\\u0e40\\u0e2a\\u0e23\\u0e47\\u0e08\\u0e2a\\u0e34\\u0e49\\u0e19\",\n \"Add to Dictionary\": \"\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e43\\u0e19\\u0e1e\\u0e08\\u0e19\\u0e32\\u0e19\\u0e38\\u0e01\\u0e23\\u0e21\",\n \"Insert table\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\",\n \"Table properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e02\\u0e2d\\u0e07\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\",\n \"Delete table\": \"\\u0e25\\u0e1a\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\",\n \"Cell\": \"\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Row\": \"\\u0e41\\u0e16\\u0e27\",\n \"Column\": \"\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\",\n \"Cell properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e02\\u0e2d\\u0e07\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Merge cells\": \"\\u0e1c\\u0e2a\\u0e32\\u0e19\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Split cell\": \"\\u0e41\\u0e22\\u0e01\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Insert row before\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e41\\u0e16\\u0e27\\u0e14\\u0e49\\u0e32\\u0e19\\u0e1a\\u0e19\",\n \"Insert row after\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e41\\u0e16\\u0e27\\u0e14\\u0e49\\u0e32\\u0e19\\u0e25\\u0e48\\u0e32\\u0e07\",\n \"Delete row\": \"\\u0e25\\u0e1a\\u0e41\\u0e16\\u0e27\",\n \"Row properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e02\\u0e2d\\u0e07\\u0e41\\u0e16\\u0e27\",\n \"Cut row\": \"\\u0e15\\u0e31\\u0e14\\u0e41\\u0e16\\u0e27\",\n \"Copy row\": \"\\u0e04\\u0e31\\u0e14\\u0e25\\u0e2d\\u0e01\\u0e41\\u0e16\\u0e27\",\n \"Paste row before\": \"\\u0e27\\u0e32\\u0e07\\u0e41\\u0e16\\u0e27\\u0e14\\u0e49\\u0e32\\u0e19\\u0e1a\\u0e19\",\n \"Paste row after\": \"\\u0e27\\u0e32\\u0e07\\u0e41\\u0e16\\u0e27\\u0e14\\u0e49\\u0e32\\u0e19\\u0e25\\u0e48\\u0e32\\u0e07\",\n \"Insert column before\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\\u0e02\\u0e49\\u0e32\\u0e07\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Insert column after\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\\u0e02\\u0e49\\u0e32\\u0e07\\u0e2b\\u0e25\\u0e31\\u0e07\",\n \"Delete column\": \"\\u0e25\\u0e1a\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\",\n \"Cols\": \"\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\",\n \"Rows\": \"\\u0e41\\u0e16\\u0e27\",\n \"Width\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e01\\u0e27\\u0e49\\u0e32\\u0e07\",\n \"Height\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e2a\\u0e39\\u0e07\",\n \"Cell spacing\": \"\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07\\u0e23\\u0e30\\u0e2b\\u0e27\\u0e48\\u0e32\\u0e07\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Cell padding\": \"\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07\\u0e20\\u0e32\\u0e22\\u0e43\\u0e19\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Caption\": \"\\u0e1b\\u0e49\\u0e32\\u0e22\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22\",\n \"Show caption\": \"\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e04\\u0e33\\u0e1a\\u0e23\\u0e23\\u0e22\\u0e32\\u0e22\",\n \"Left\": \"\\u0e0b\\u0e49\\u0e32\\u0e22\",\n \"Center\": \"\\u0e01\\u0e36\\u0e48\\u0e07\\u0e01\\u0e25\\u0e32\\u0e07\",\n \"Right\": \"\\u0e02\\u0e27\\u0e32\",\n \"Cell type\": \"\\u0e0a\\u0e19\\u0e34\\u0e14\\u0e02\\u0e2d\\u0e07\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\",\n \"Scope\": \"\\u0e02\\u0e2d\\u0e1a\\u0e40\\u0e02\\u0e15\",\n \"Alignment\": \"\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e41\\u0e19\\u0e27\",\n \"H Align\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e43\\u0e19\\u0e41\\u0e19\\u0e27\\u0e19\\u0e2d\\u0e19\",\n \"V Align\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e43\\u0e19\\u0e41\\u0e19\\u0e27\\u0e15\\u0e31\\u0e49\\u0e07\",\n \"Top\": \"\\u0e1a\\u0e19\",\n \"Middle\": \"\\u0e01\\u0e25\\u0e32\\u0e07\",\n \"Bottom\": \"\\u0e25\\u0e48\\u0e32\\u0e07\",\n \"Header cell\": \"\\u0e40\\u0e0b\\u0e25\\u0e25\\u0e4c\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27\",\n \"Row group\": \"\\u0e01\\u0e25\\u0e38\\u0e48\\u0e21\\u0e41\\u0e16\\u0e27\",\n \"Column group\": \"\\u0e01\\u0e25\\u0e38\\u0e48\\u0e21\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\",\n \"Row type\": \"\\u0e0a\\u0e19\\u0e34\\u0e14\\u0e02\\u0e2d\\u0e07\\u0e41\\u0e16\\u0e27\",\n \"Header\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e2b\\u0e31\\u0e27\",\n \"Body\": \"\\u0e40\\u0e19\\u0e37\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\",\n \"Footer\": \"\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e17\\u0e49\\u0e32\\u0e22\",\n \"Border color\": \"\\u0e2a\\u0e35\\u0e02\\u0e2d\\u0e1a\",\n \"Insert template...\": \"\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e41\\u0e21\\u0e48\\u0e41\\u0e1a\\u0e1a...\",\n \"Templates\": \"\\u0e41\\u0e21\\u0e48\\u0e41\\u0e1a\\u0e1a\",\n \"Template\": \"\\u0e41\\u0e21\\u0e48\\u0e41\\u0e1a\\u0e1a\",\n \"Text color\": \"\\u0e2a\\u0e35\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\",\n \"Background color\": \"\\u0e2a\\u0e35\\u0e1e\\u0e37\\u0e49\\u0e19\\u0e2b\\u0e25\\u0e31\\u0e07\",\n \"Custom...\": \"\\u0e01\\u0e33\\u0e2b\\u0e19\\u0e14\\u0e40\\u0e2d\\u0e07\",\n \"Custom color\": \"\\u0e2a\\u0e35\\u0e17\\u0e35\\u0e48\\u0e01\\u0e33\\u0e2b\\u0e19\\u0e14\\u0e40\\u0e2d\\u0e07\",\n \"No color\": \"\\u0e44\\u0e21\\u0e48\\u0e21\\u0e35\\u0e2a\\u0e35\",\n \"Remove color\": \"\\u0e25\\u0e1a\\u0e2a\\u0e35\",\n \"Table of Contents\": \"\\u0e2a\\u0e32\\u0e23\\u0e1a\\u0e31\\u0e0d\",\n \"Show blocks\": \"\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e1a\\u0e25\\u0e47\\u0e2d\\u0e01\",\n \"Show invisible characters\": \"\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\\u0e17\\u0e35\\u0e48\\u0e21\\u0e2d\\u0e07\\u0e44\\u0e21\\u0e48\\u0e40\\u0e2b\\u0e47\\u0e19\",\n \"Word count\": \"\\u0e19\\u0e31\\u0e1a\\u0e08\\u0e33\\u0e19\\u0e27\\u0e19\\u0e04\\u0e33\",\n \"Count\": \"\\u0e19\\u0e31\\u0e1a\",\n \"Document\": \"\\u0e40\\u0e2d\\u0e01\\u0e2a\\u0e32\\u0e23\",\n \"Selection\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01\",\n \"Words\": \"\\u0e04\\u0e33\",\n \"Words: {0}\": \"\\u0e04\\u0e33: {0}\",\n \"{0} words\": \"{0} \\u0e04\\u0e33\",\n \"File\": \"\\u0e44\\u0e1f\\u0e25\\u0e4c\",\n \"Edit\": \"\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02\",\n \"Insert\": \"\\u0e41\\u0e17\\u0e23\\u0e01\",\n \"View\": \"\\u0e21\\u0e38\\u0e21\\u0e21\\u0e2d\\u0e07\",\n \"Format\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"Table\": \"\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\",\n \"Tools\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e21\\u0e37\\u0e2d\",\n \"Powered by {0}\": \"\\u0e02\\u0e31\\u0e1a\\u0e40\\u0e04\\u0e25\\u0e37\\u0e48\\u0e2d\\u0e19\\u0e42\\u0e14\\u0e22 {0}\",\n \"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help\": \"\\u0e1e\\u0e37\\u0e49\\u0e19\\u0e17\\u0e35\\u0e48 Rich Text \\u0e01\\u0e14 ALT-F9 \\u0e2a\\u0e33\\u0e2b\\u0e23\\u0e31\\u0e1a\\u0e40\\u0e21\\u0e19\\u0e39 \\u0e01\\u0e14 ALT-F10 \\u0e2a\\u0e33\\u0e2b\\u0e23\\u0e31\\u0e1a\\u0e41\\u0e16\\u0e1a\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e21\\u0e37\\u0e2d \\u0e01\\u0e14 ALT-0 \\u0e2a\\u0e33\\u0e2b\\u0e23\\u0e31\\u0e1a\\u0e04\\u0e27\\u0e32\\u0e21\\u0e0a\\u0e48\\u0e27\\u0e22\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\",\n \"Image title\": \"\\u0e0a\\u0e37\\u0e48\\u0e2d\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"Border width\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e01\\u0e27\\u0e49\\u0e32\\u0e07\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e02\\u0e2d\\u0e1a\",\n \"Border style\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\\u0e40\\u0e2a\\u0e49\\u0e19\\u0e02\\u0e2d\\u0e1a\",\n \"Error\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e1c\\u0e34\\u0e14\\u0e1e\\u0e25\\u0e32\\u0e14\",\n \"Warn\": \"\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e40\\u0e15\\u0e37\\u0e2d\\u0e19\",\n \"Valid\": \"\\u0e16\\u0e39\\u0e01\\u0e15\\u0e49\\u0e2d\\u0e07\",\n \"To open the popup, press Shift+Enter\": \"\\u0e01\\u0e14 Shift+Enter \\u0e40\\u0e1e\\u0e37\\u0e48\\u0e2d\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e1b\\u0e4a\\u0e2d\\u0e1a\\u0e2d\\u0e31\\u0e1e\",\n \"Rich Text Area. Press ALT-0 for help.\": \"\\u0e1e\\u0e37\\u0e49\\u0e19\\u0e17\\u0e35\\u0e48 Rich Text \\u0e01\\u0e14 ALT-0 \\u0e2a\\u0e33\\u0e2b\\u0e23\\u0e31\\u0e1a\\u0e04\\u0e27\\u0e32\\u0e21\\u0e0a\\u0e48\\u0e27\\u0e22\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\",\n \"System Font\": \"\\u0e41\\u0e1a\\u0e1a\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\\u0e02\\u0e2d\\u0e07\\u0e23\\u0e30\\u0e1a\\u0e1a\",\n \"Failed to upload image: {0}\": \"\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e2d\\u0e31\\u0e1b\\u0e42\\u0e2b\\u0e25\\u0e14\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e: {0}\",\n \"Failed to load plugin: {0} from url {1}\": \"\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e42\\u0e2b\\u0e25\\u0e14\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19: {0} \\u0e08\\u0e32\\u0e01 url {1}\",\n \"Failed to load plugin url: {0}\": \"\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e42\\u0e2b\\u0e25\\u0e14 url \\u0e02\\u0e2d\\u0e07\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19: {0}\",\n \"Failed to initialize plugin: {0}\": \"\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e40\\u0e23\\u0e34\\u0e48\\u0e21\\u0e15\\u0e49\\u0e19\\u0e1b\\u0e25\\u0e31\\u0e4a\\u0e01\\u0e2d\\u0e34\\u0e19: {0}\",\n \"example\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e22\\u0e48\\u0e32\\u0e07\",\n \"Search\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\",\n \"All\": \"\\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"Currency\": \"\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\",\n \"Text\": \"\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\",\n \"Quotations\": \"\\u0e43\\u0e1a\\u0e40\\u0e2a\\u0e19\\u0e2d\\u0e23\\u0e32\\u0e04\\u0e32\",\n \"Mathematical\": \"\\u0e40\\u0e01\\u0e35\\u0e48\\u0e22\\u0e27\\u0e01\\u0e31\\u0e1a\\u0e04\\u0e13\\u0e34\\u0e15\\u0e28\\u0e32\\u0e2a\\u0e15\\u0e23\\u0e4c\",\n \"Extended Latin\": \"\\u0e20\\u0e32\\u0e29\\u0e32\\u0e25\\u0e32\\u0e15\\u0e34\\u0e19\\u0e2a\\u0e48\\u0e27\\u0e19\\u0e02\\u0e22\\u0e32\\u0e22\",\n \"Symbols\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\",\n \"Arrows\": \"\\u0e25\\u0e39\\u0e01\\u0e28\\u0e23\",\n \"User Defined\": \"\\u0e1c\\u0e39\\u0e49\\u0e43\\u0e0a\\u0e49\\u0e01\\u0e33\\u0e2b\\u0e19\\u0e14\\u0e40\\u0e2d\\u0e07\",\n \"dollar sign\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e14\\u0e2d\\u0e25\\u0e25\\u0e48\\u0e32\\u0e23\\u0e4c\",\n \"currency sign\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\",\n \"euro-currency sign\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e22\\u0e39\\u0e42\\u0e23\",\n \"colon sign\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e08\\u0e38\\u0e14\\u0e04\\u0e39\\u0e48\",\n \"cruzeiro sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e04\\u0e23\\u0e39\\u0e40\\u0e0b\\u0e42\\u0e35\\u0e23\",\n \"french franc sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e1f\\u0e23\\u0e31\\u0e07\\u0e01\\u0e4c\\u0e1d\\u0e23\\u0e31\\u0e48\\u0e07\\u0e40\\u0e28\\u0e2a\",\n \"lira sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e25\\u0e35\\u0e23\\u0e32\",\n \"mill sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e21\\u0e34\\u0e25\\u0e25\\u0e4c\",\n \"naira sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e44\\u0e19\\u0e23\\u0e32\",\n \"peseta sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e1b\\u0e40\\u0e0b\\u0e15\\u0e32\",\n \"rupee sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e23\\u0e39\\u0e1b\\u0e35\",\n \"won sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e27\\u0e2d\\u0e19\",\n \"new sheqel sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e19\\u0e34\\u0e27\\u0e40\\u0e0a\\u0e40\\u0e01\\u0e25\",\n \"dong sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e14\\u0e2d\\u0e07\",\n \"kip sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e01\\u0e35\\u0e1a\",\n \"tugrik sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e17\\u0e39\\u0e01\\u0e23\\u0e34\\u0e01\",\n \"drachma sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e14\\u0e23\\u0e31\\u0e04\\u0e21\\u0e32\",\n \"german penny symbol\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e1e\\u0e19\\u0e19\\u0e35\\u0e40\\u0e22\\u0e2d\\u0e23\\u0e21\\u0e31\\u0e19\",\n \"peso sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e1b\\u0e42\\u0e0b\",\n \"guarani sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e01\\u0e27\\u0e32\\u0e23\\u0e32\\u0e19\\u0e35\",\n \"austral sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2d\\u0e2d\\u0e2a\\u0e15\\u0e23\\u0e31\\u0e25\",\n \"hryvnia sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2e\\u0e23\\u0e34\\u0e1f\\u0e40\\u0e19\\u0e35\\u0e22\",\n \"cedi sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e0b\\u0e14\\u0e35\",\n \"livre tournois sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e1b\\u0e2d\\u0e19\\u0e14\\u0e4c\\u0e15\\u0e39\\u0e23\\u0e4c\",\n \"spesmilo sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2a\\u0e40\\u0e1b\\u0e2a\\u0e21\\u0e34\\u0e42\\u0e25\",\n \"tenge sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e17\\u0e07\\u0e40\\u0e08\",\n \"indian rupee sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e23\\u0e39\\u0e1b\\u0e35\\u0e2d\\u0e34\\u0e19\\u0e40\\u0e14\\u0e35\\u0e22\",\n \"turkish lira sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e25\\u0e35\\u0e23\\u0e32\\u0e15\\u0e38\\u0e23\\u0e01\\u0e35\",\n \"nordic mark sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e21\\u0e32\\u0e23\\u0e4c\\u0e04\\u0e19\\u0e2d\\u0e23\\u0e4c\\u0e14\\u0e34\\u0e01\",\n \"manat sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e21\\u0e32\\u0e19\\u0e31\\u0e15\",\n \"ruble sign\": \"\\u0e2a\\u0e31\\u0e0d\\u0e25\\u0e31\\u0e01\\u0e29\\u0e13\\u0e4c\\u0e2a\\u0e01\\u0e38\\u0e25\\u0e40\\u0e07\\u0e34\\u0e19\\u0e23\\u0e39\\u0e40\\u0e1a\\u0e34\\u0e25\",\n \"yen character\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e22\\u0e19\",\n \"yuan character\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2b\\u0e22\\u0e27\\u0e19\",\n \"yuan character, in hong kong and taiwan\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2b\\u0e22\\u0e27\\u0e19 \\u0e43\\u0e19\\u0e2e\\u0e48\\u0e2d\\u0e07\\u0e01\\u0e07\\u0e41\\u0e25\\u0e30\\u0e44\\u0e15\\u0e49\\u0e2b\\u0e27\\u0e31\\u0e19\",\n \"yen\\/yuan character variant one\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e22\\u0e19\\/\\u0e2b\\u0e22\\u0e27\\u0e19 \\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\\u0e17\\u0e35\\u0e48 1\",\n \"Loading emoticons...\": \"\\u0e01\\u0e33\\u0e25\\u0e31\\u0e07\\u0e42\\u0e2b\\u0e25\\u0e14\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e2d\\u0e32\\u0e23\\u0e21\\u0e13\\u0e4c...\",\n \"Could not load emoticons\": \"\\u0e44\\u0e21\\u0e48\\u0e2a\\u0e32\\u0e21\\u0e32\\u0e23\\u0e16\\u0e42\\u0e2b\\u0e25\\u0e14\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e2d\\u0e32\\u0e23\\u0e21\\u0e13\\u0e4c\\u0e44\\u0e14\\u0e49\",\n \"People\": \"\\u0e1c\\u0e39\\u0e49\\u0e04\\u0e19\",\n \"Animals and Nature\": \"\\u0e2a\\u0e31\\u0e15\\u0e27\\u0e4c\\u0e41\\u0e25\\u0e30\\u0e18\\u0e23\\u0e23\\u0e21\\u0e0a\\u0e32\\u0e15\\u0e34\",\n \"Food and Drink\": \"\\u0e2d\\u0e32\\u0e2b\\u0e32\\u0e23\\u0e41\\u0e25\\u0e30\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e14\\u0e37\\u0e48\\u0e21\",\n \"Activity\": \"\\u0e01\\u0e34\\u0e08\\u0e01\\u0e23\\u0e23\\u0e21\",\n \"Travel and Places\": \"\\u0e01\\u0e32\\u0e23\\u0e17\\u0e48\\u0e2d\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e27\\u0e41\\u0e25\\u0e30\\u0e2a\\u0e16\\u0e32\\u0e19\\u0e17\\u0e35\\u0e48\",\n \"Objects\": \"\\u0e27\\u0e31\\u0e15\\u0e16\\u0e38\",\n \"Flags\": \"\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\",\n \"Characters\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\",\n \"Characters (no spaces)\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23 (\\u0e44\\u0e21\\u0e48\\u0e21\\u0e35\\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e27\\u0e48\\u0e32\\u0e07)\",\n \"{0} characters\": \"{0} \\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\",\n \"Error: Form submit field collision.\": \"\\u0e02\\u0e49\\u0e2d\\u0e1c\\u0e34\\u0e14\\u0e1e\\u0e25\\u0e32\\u0e14: \\u0e0a\\u0e48\\u0e2d\\u0e07\\u0e2a\\u0e48\\u0e07\\u0e41\\u0e1a\\u0e1a\\u0e1f\\u0e2d\\u0e23\\u0e4c\\u0e21\\u0e02\\u0e31\\u0e14\\u0e41\\u0e22\\u0e49\\u0e07\\u0e01\\u0e31\\u0e19\",\n \"Error: No form element found.\": \"\\u0e02\\u0e49\\u0e2d\\u0e1c\\u0e34\\u0e14\\u0e1e\\u0e25\\u0e32\\u0e14: \\u0e44\\u0e21\\u0e48\\u0e1e\\u0e1a\\u0e2d\\u0e07\\u0e04\\u0e4c\\u0e1b\\u0e23\\u0e30\\u0e01\\u0e2d\\u0e1a\\u0e02\\u0e2d\\u0e07\\u0e1f\\u0e2d\\u0e23\\u0e4c\\u0e21\",\n \"Update\": \"\\u0e1b\\u0e23\\u0e31\\u0e1a\\u0e1b\\u0e23\\u0e38\\u0e07\\u0e43\\u0e2b\\u0e49\\u0e17\\u0e31\\u0e19\\u0e2a\\u0e21\\u0e31\\u0e22\",\n \"Color swatch\": \"\\u0e41\\u0e16\\u0e1a\\u0e2a\\u0e35\",\n \"Turquoise\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2d\\u0e21\\u0e40\\u0e02\\u0e35\\u0e22\\u0e27\",\n \"Green\": \"\\u0e40\\u0e02\\u0e35\\u0e22\\u0e27\",\n \"Blue\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\",\n \"Purple\": \"\\u0e21\\u0e48\\u0e27\\u0e07\",\n \"Navy Blue\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Dark Turquoise\": \"\\u0e2a\\u0e35\\u0e1f\\u0e49\\u0e32\\u0e04\\u0e23\\u0e32\\u0e21\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Dark Green\": \"\\u0e40\\u0e02\\u0e35\\u0e22\\u0e27\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Medium Blue\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\\u0e1b\\u0e32\\u0e19\\u0e01\\u0e25\\u0e32\\u0e07\",\n \"Medium Purple\": \"\\u0e2a\\u0e35\\u0e21\\u0e48\\u0e27\\u0e07\\u0e01\\u0e25\\u0e32\\u0e07\\u0e46\",\n \"Midnight Blue\": \"\\u0e2a\\u0e35\\u0e1f\\u0e49\\u0e32\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Yellow\": \"\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\\u0e07\",\n \"Orange\": \"\\u0e2a\\u0e49\\u0e21\",\n \"Red\": \"\\u0e41\\u0e14\\u0e07\",\n \"Light Gray\": \"\\u0e2a\\u0e35\\u0e40\\u0e17\\u0e32\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Gray\": \"\\u0e40\\u0e17\\u0e32\",\n \"Dark Yellow\": \"\\u0e2a\\u0e35\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\\u0e07\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Dark Orange\": \"\\u0e2a\\u0e49\\u0e21\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Dark Red\": \"\\u0e41\\u0e14\\u0e07\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Medium Gray\": \"\\u0e2a\\u0e35\\u0e40\\u0e17\\u0e32\\u0e01\\u0e25\\u0e32\\u0e07\\u0e46\",\n \"Dark Gray\": \"\\u0e2a\\u0e35\\u0e40\\u0e17\\u0e32\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Light Green\": \"\\u0e40\\u0e02\\u0e35\\u0e22\\u0e27\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Light Yellow\": \"\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\\u0e07\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Light Red\": \"\\u0e41\\u0e14\\u0e07\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Light Purple\": \"\\u0e21\\u0e48\\u0e27\\u0e07\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Light Blue\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\\u0e2d\\u0e48\\u0e2d\\u0e19\",\n \"Dark Purple\": \"\\u0e21\\u0e48\\u0e27\\u0e07\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Dark Blue\": \"\\u0e19\\u0e49\\u0e33\\u0e40\\u0e07\\u0e34\\u0e19\\u0e40\\u0e02\\u0e49\\u0e21\",\n \"Black\": \"\\u0e14\\u0e33\",\n \"White\": \"\\u0e02\\u0e32\\u0e27\",\n \"Switch to or from fullscreen mode\": \"\\u0e2a\\u0e25\\u0e31\\u0e1a\\u0e44\\u0e1b\\u0e22\\u0e31\\u0e07\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e08\\u0e32\\u0e01\\u0e42\\u0e2b\\u0e21\\u0e14\\u0e40\\u0e15\\u0e47\\u0e21\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e08\\u0e2d\",\n \"Open help dialog\": \"\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e2b\\u0e19\\u0e49\\u0e32\\u0e01\\u0e32\\u0e23\\u0e0a\\u0e48\\u0e27\\u0e22\\u0e40\\u0e2b\\u0e25\\u0e37\\u0e2d\",\n \"history\": \"\\u0e1b\\u0e23\\u0e30\\u0e27\\u0e31\\u0e15\\u0e34\",\n \"styles\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"formatting\": \"\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\",\n \"alignment\": \"\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e41\\u0e19\\u0e27\",\n \"indentation\": \"\\u0e01\\u0e32\\u0e23\\u0e08\\u0e31\\u0e14\\u0e22\\u0e48\\u0e2d\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Font\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\",\n \"Size\": \"\\u0e02\\u0e19\\u0e32\\u0e14\",\n \"More...\": \"\\u0e40\\u0e1e\\u0e34\\u0e48\\u0e21\\u0e40\\u0e15\\u0e34\\u0e21...\",\n \"Select...\": \"\\u0e40\\u0e25\\u0e37\\u0e2d\\u0e01...\",\n \"Preferences\": \"\\u0e04\\u0e48\\u0e32\\u0e01\\u0e33\\u0e2b\\u0e19\\u0e14\",\n \"Yes\": \"\\u0e43\\u0e0a\\u0e48\",\n \"No\": \"\\u0e44\\u0e21\\u0e48\\u0e43\\u0e0a\\u0e48\",\n \"Keyboard Navigation\": \"\\u0e01\\u0e32\\u0e23\\u0e19\\u0e33\\u0e17\\u0e32\\u0e07\\u0e14\\u0e49\\u0e27\\u0e22\\u0e41\\u0e1b\\u0e49\\u0e19\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\",\n \"Version\": \"\\u0e23\\u0e38\\u0e48\\u0e19\",\n \"Code view\": \"\\u0e21\\u0e38\\u0e21\\u0e21\\u0e2d\\u0e07\\u0e42\\u0e04\\u0e49\\u0e14\",\n \"Open popup menu for split buttons\": \"\\u0e40\\u0e1b\\u0e34\\u0e14\\u0e40\\u0e21\\u0e19\\u0e39\\u0e1b\\u0e4a\\u0e2d\\u0e1b\\u0e2d\\u0e31\\u0e1b\\u0e2a\\u0e33\\u0e2b\\u0e23\\u0e31\\u0e1a\\u0e1b\\u0e38\\u0e48\\u0e21\\u0e41\\u0e22\\u0e01\",\n \"List Properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\",\n \"List properties...\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23...\",\n \"Start list at number\": \"\\u0e40\\u0e23\\u0e34\\u0e48\\u0e21\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e14\\u0e49\\u0e27\\u0e22\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e40\\u0e25\\u0e02\",\n \"Line height\": \"\\u0e04\\u0e27\\u0e32\\u0e21\\u0e2a\\u0e39\\u0e07\\u0e02\\u0e2d\\u0e07\\u0e1a\\u0e23\\u0e23\\u0e17\\u0e31\\u0e14\",\n \"comments\": \"\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e34\\u0e14\\u0e40\\u0e2b\\u0e47\\u0e19\",\n \"Format Painter\": \"\\u0e23\\u0e39\\u0e1b\\u0e41\\u0e1a\\u0e1a\\u0e40\\u0e1e\\u0e19\\u0e40\\u0e15\\u0e2d\\u0e23\\u0e4c\",\n \"Insert\\/edit iframe\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\/\\u0e41\\u0e01\\u0e49\\u0e44\\u0e02 iframe\",\n \"Capitalization\": \"\\u0e01\\u0e32\\u0e23\\u0e43\\u0e0a\\u0e49\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e31\\u0e01\\u0e29\\u0e23\\u0e15\\u0e31\\u0e27\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e43\\u0e2b\\u0e0d\\u0e48\",\n \"lowercase\": \"\\u0e15\\u0e31\\u0e27\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e40\\u0e25\\u0e47\\u0e01\",\n \"UPPERCASE\": \"\\u0e15\\u0e31\\u0e27\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e43\\u0e2b\\u0e0d\\u0e48\",\n \"Title Case\": \"\\u0e15\\u0e31\\u0e27\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\\u0e02\\u0e2d\\u0e07\\u0e2b\\u0e31\\u0e27\\u0e02\\u0e49\\u0e2d\",\n \"permanent pen\": \"\\u0e1b\\u0e32\\u0e01\\u0e01\\u0e32\\u0e40\\u0e04\\u0e21\\u0e35\\u0e0a\\u0e19\\u0e34\\u0e14\\u0e25\\u0e1a\\u0e44\\u0e21\\u0e48\\u0e44\\u0e14\\u0e49\",\n \"Permanent Pen Properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e1b\\u0e32\\u0e01\\u0e01\\u0e32\\u0e21\\u0e32\\u0e23\\u0e4c\\u0e04\\u0e40\\u0e01\\u0e2d\\u0e23\\u0e4c\",\n \"Permanent pen properties...\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e1b\\u0e32\\u0e01\\u0e01\\u0e32\\u0e21\\u0e32\\u0e23\\u0e4c\\u0e04\\u0e40\\u0e01\\u0e2d\\u0e23\\u0e4c...\",\n \"case change\": \"\\u0e02\\u0e19\\u0e32\\u0e14\\u0e40\\u0e1b\\u0e25\\u0e35\\u0e48\\u0e22\\u0e19\",\n \"page embed\": \"\\u0e1d\\u0e31\\u0e07\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Advanced sort...\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e25\\u0e33\\u0e14\\u0e31\\u0e1a\\u0e02\\u0e31\\u0e49\\u0e19\\u0e2a\\u0e39\\u0e07...\",\n \"Advanced Sort\": \"\\u0e01\\u0e32\\u0e23\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e25\\u0e33\\u0e14\\u0e31\\u0e1a\\u0e02\\u0e31\\u0e49\\u0e19\\u0e2a\\u0e39\\u0e07\",\n \"Sort table by column ascending\": \"\\u0e08\\u0e31\\u0e14\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\\u0e15\\u0e32\\u0e21\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\\u0e08\\u0e32\\u0e01\\u0e19\\u0e49\\u0e2d\\u0e22\\u0e44\\u0e1b\\u0e21\\u0e32\\u0e01\",\n \"Sort table by column descending\": \"\\u0e08\\u0e31\\u0e14\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e15\\u0e32\\u0e23\\u0e32\\u0e07\\u0e15\\u0e32\\u0e21\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c\\u0e08\\u0e32\\u0e01\\u0e21\\u0e32\\u0e01\\u0e44\\u0e1b\\u0e19\\u0e49\\u0e2d\\u0e22\",\n \"Sort\": \"\\u0e08\\u0e31\\u0e14\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\",\n \"Order\": \"\\u0e25\\u0e33\\u0e14\\u0e31\\u0e1a\",\n \"Sort by\": \"\\u0e08\\u0e31\\u0e14\\u0e40\\u0e23\\u0e35\\u0e22\\u0e07\\u0e42\\u0e14\\u0e22\",\n \"Ascending\": \"\\u0e08\\u0e32\\u0e01\\u0e19\\u0e49\\u0e2d\\u0e22\\u0e44\\u0e1b\\u0e21\\u0e32\\u0e01\",\n \"Descending\": \"\\u0e08\\u0e32\\u0e01\\u0e21\\u0e32\\u0e01\\u0e44\\u0e1b\\u0e19\\u0e49\\u0e2d\\u0e22\",\n \"Column {0}\": \"\\u0e04\\u0e2d\\u0e25\\u0e31\\u0e21\\u0e19\\u0e4c {0}\",\n \"Row {0}\": \"\\u0e41\\u0e16\\u0e27 {0}\",\n \"Spellcheck...\": \"\\u0e15\\u0e23\\u0e27\\u0e08\\u0e2a\\u0e2d\\u0e1a\\u0e01\\u0e32\\u0e23\\u0e2a\\u0e30\\u0e01\\u0e14\\u0e04\\u0e33...\",\n \"Misspelled word\": \"\\u0e04\\u0e33\\u0e17\\u0e35\\u0e48\\u0e2a\\u0e30\\u0e01\\u0e14\\u0e1c\\u0e34\\u0e14\",\n \"Suggestions\": \"\\u0e04\\u0e33\\u0e41\\u0e19\\u0e30\\u0e19\\u0e33\",\n \"Change\": \"\\u0e40\\u0e1b\\u0e25\\u0e35\\u0e48\\u0e22\\u0e19\",\n \"Finding word suggestions\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e04\\u0e33\\u0e17\\u0e35\\u0e48\\u0e41\\u0e19\\u0e30\\u0e19\\u0e33\",\n \"Success\": \"\\u0e2a\\u0e33\\u0e40\\u0e23\\u0e47\\u0e08\",\n \"Repair\": \"\\u0e0b\\u0e48\\u0e2d\\u0e21\\u0e41\\u0e0b\\u0e21\",\n \"Issue {0} of {1}\": \"\\u0e1b\\u0e31\\u0e0d\\u0e2b\\u0e32\\u0e17\\u0e35\\u0e48 {0} \\u0e08\\u0e32\\u0e01 {1}\",\n \"Images must be marked as decorative or have an alternative text description\": \"\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e17\\u0e33\\u0e40\\u0e04\\u0e23\\u0e37\\u0e48\\u0e2d\\u0e07\\u0e2b\\u0e21\\u0e32\\u0e22\\u0e27\\u0e48\\u0e32\\u0e15\\u0e01\\u0e41\\u0e15\\u0e48\\u0e07 \\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e21\\u0e35\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22\",\n \"Images must have an alternative text description. Decorative images are not allowed.\": \"\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\\u0e15\\u0e49\\u0e2d\\u0e07\\u0e21\\u0e35\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e41\\u0e2a\\u0e14\\u0e07\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22 \\u0e44\\u0e21\\u0e48\\u0e2d\\u0e19\\u0e38\\u0e0d\\u0e32\\u0e15\\u0e43\\u0e2b\\u0e49\\u0e43\\u0e0a\\u0e49\\u0e20\\u0e32\\u0e1e\\u0e15\\u0e01\\u0e41\\u0e15\\u0e48\\u0e07\",\n \"Or provide alternative text:\": \"\\u0e2b\\u0e23\\u0e37\\u0e2d\\u0e23\\u0e30\\u0e1a\\u0e38\\u0e02\\u0e49\\u0e2d\\u0e04\\u0e27\\u0e32\\u0e21\\u0e41\\u0e2a\\u0e14\\u0e07:\",\n \"Make image decorative:\": \"\\u0e17\\u0e33\\u0e20\\u0e32\\u0e1e\\u0e15\\u0e01\\u0e41\\u0e15\\u0e48\\u0e07:\",\n \"ID attribute must be unique\": \"\\u0e41\\u0e2d\\u0e15\\u0e17\\u0e23\\u0e34\\u0e1a\\u0e34\\u0e27\\u0e15\\u0e4c ID \\u0e15\\u0e49\\u0e2d\\u0e07\\u0e44\\u0e21\\u0e48\\u0e0b\\u0e49\\u0e33\\u0e01\\u0e31\\u0e19\",\n \"Make ID unique\": \"\\u0e17\\u0e33\\u0e43\\u0e2b\\u0e49 ID \\u0e44\\u0e21\\u0e48\\u0e0b\\u0e49\\u0e33\\u0e01\\u0e31\\u0e19\",\n \"Keep this ID and remove all others\": \"\\u0e40\\u0e01\\u0e47\\u0e1a ID \\u0e19\\u0e35\\u0e49\\u0e44\\u0e27\\u0e49\\u0e41\\u0e25\\u0e30\\u0e25\\u0e1a\\u0e2d\\u0e37\\u0e48\\u0e19 \\u0e46 \\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"Remove this ID\": \"\\u0e25\\u0e1a ID \\u0e19\\u0e35\\u0e49\",\n \"Remove all IDs\": \"\\u0e25\\u0e1a ID \\u0e17\\u0e31\\u0e49\\u0e07\\u0e2b\\u0e21\\u0e14\",\n \"Checklist\": \"\\u0e23\\u0e32\\u0e22\\u0e01\\u0e32\\u0e23\\u0e15\\u0e23\\u0e27\\u0e08\\u0e2a\\u0e2d\\u0e1a\",\n \"Anchor\": \"\\u0e08\\u0e38\\u0e14\\u0e22\\u0e36\\u0e14\",\n \"Special character\": \"\\u0e2d\\u0e31\\u0e01\\u0e02\\u0e23\\u0e30\\u0e1e\\u0e34\\u0e40\\u0e28\\u0e29\",\n \"Code sample\": \"\\u0e15\\u0e31\\u0e27\\u0e2d\\u0e22\\u0e48\\u0e32\\u0e07\\u0e42\\u0e04\\u0e49\\u0e14\",\n \"Color\": \"\\u0e2a\\u0e35\",\n \"Document properties\": \"\\u0e04\\u0e38\\u0e13\\u0e2a\\u0e21\\u0e1a\\u0e31\\u0e15\\u0e34\\u0e02\\u0e2d\\u0e07\\u0e40\\u0e2d\\u0e01\\u0e2a\\u0e32\\u0e23\",\n \"Image description\": \"\\u0e04\\u0e33\\u0e2d\\u0e18\\u0e34\\u0e1a\\u0e32\\u0e22\\u0e23\\u0e39\\u0e1b\",\n \"Image\": \"\\u0e23\\u0e39\\u0e1b\\u0e20\\u0e32\\u0e1e\",\n \"Insert link\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"Target\": \"\\u0e40\\u0e1b\\u0e49\\u0e32\\u0e2b\\u0e21\\u0e32\\u0e22\",\n \"Link\": \"\\u0e25\\u0e34\\u0e07\\u0e01\\u0e4c\",\n \"Poster\": \"\\u0e42\\u0e1b\\u0e2a\\u0e40\\u0e15\\u0e2d\\u0e23\\u0e4c\",\n \"Media\": \"\\u0e2a\\u0e37\\u0e48\\u0e2d\",\n \"Print\": \"\\u0e1e\\u0e34\\u0e21\\u0e1e\\u0e4c\",\n \"Prev\": \"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e2b\\u0e19\\u0e49\\u0e32\",\n \"Find and replace\": \"\\u0e04\\u0e49\\u0e19\\u0e2b\\u0e32\\u0e41\\u0e25\\u0e30\\u0e41\\u0e17\\u0e19\\u0e17\\u0e35\\u0e48\",\n \"Whole words\": \"\\u0e17\\u0e31\\u0e49\\u0e07\\u0e04\\u0e33\",\n \"Insert template\": \"\\u0e41\\u0e17\\u0e23\\u0e01\\u0e41\\u0e21\\u0e48\\u0e41\\u0e1a\\u0e1a\"\n});\n\n//# sourceURL=webpack:///./src/translations/tinymce/th.js?");
22
+ eval("/*\n * Copyright (C) 2021 - present Instructure, Inc.\n *\n * This file is part of Canvas.\n *\n * Canvas is free software: you can redistribute it and/or modify it under\n * the terms of the GNU Affero General Public License as published by the Free\n * Software Foundation, version 3 of the License.\n *\n * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY\n * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR\n * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more\n * details.\n *\n * You should have received a copy of the GNU Affero General Public License along\n * with this program. If not, see <http://www.gnu.org/licenses/>.\n */\ntinymce.addI18n('sl', {\n \"Redo\": \"Ponovno uveljavi\",\n \"Undo\": \"Razveljavi\",\n \"Cut\": \"Izre\\u017ei\",\n \"Copy\": \"Kopiraj\",\n \"Paste\": \"Prilepi\",\n \"Select all\": \"Izberi vse\",\n \"New document\": \"Nov dokument\",\n \"Ok\": \"V redu\",\n \"Cancel\": \"Prekli\\u010di\",\n \"Visual aids\": \"Vizualni pripomo\\u010dki\",\n \"Bold\": \"Krepko\",\n \"Italic\": \"Po\\u0161evno\",\n \"Underline\": \"Pod\\u010drtano\",\n \"Strikethrough\": \"Pre\\u010drtano\",\n \"Superscript\": \"Nadpisano\",\n \"Subscript\": \"Podpisano\",\n \"Clear formatting\": \"Odstrani oblikovanje\",\n \"Align left\": \"Leva poravnava\",\n \"Align center\": \"Sredinska poravnava\",\n \"Align right\": \"Desna poravnava\",\n \"Justify\": \"Obojestranska poravnava\",\n \"Bullet list\": \"Ozna\\u010den seznam\",\n \"Numbered list\": \"O\\u0161tevil\\u010den seznam\",\n \"Decrease indent\": \"Zmanj\\u0161aj zamik\",\n \"Increase indent\": \"Pove\\u010daj zamik\",\n \"Close\": \"Zapri\",\n \"Formats\": \"Oblika\",\n \"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\\/C\\/V keyboard shortcuts instead.\": \"Varnostne nastavitve brskalnika ne dopu\\u0161\\u010dajo direktnega dostopa do odlo\\u017ei\\u0161\\u010da. Uporabite kombinacijo tipk Ctrl + X\\/C\\/V na tipkovnici.\",\n \"Headers\": \"Naslovi\",\n \"Header 1\": \"Naslov 1\",\n \"Header 2\": \"Naslov 2\",\n \"Header 3\": \"Naslov 3\",\n \"Header 4\": \"Naslov 4\",\n \"Header 5\": \"Naslov 5\",\n \"Header 6\": \"Naslov 6\",\n \"Headings\": \"Naslovi\",\n \"Heading 1\": \"Naslov 1\",\n \"Heading 2\": \"Naslov 2\",\n \"Heading 3\": \"Naslov 3\",\n \"Heading 4\": \"Naslov 4\",\n \"Heading 5\": \"Naslov 5\",\n \"Heading 6\": \"Naslov 6\",\n \"Preformatted\": \"Predformatirano\",\n \"Div\": \"Div\",\n \"Pre\": \"Pre\",\n \"Code\": \"Koda\",\n \"Paragraph\": \"Odstavek\",\n \"Blockquote\": \"Blockquote\",\n \"Inline\": \"Med besedilom\",\n \"Blocks\": \"Bloki\",\n \"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.\": \"Odlagali\\u0161\\u010de je sedaj v tekstovnem na\\u010dinu. Vsebina bo preslikana kot besedilo, dokler te mo\\u017enosti ne izklju\\u010dite.\",\n \"Fonts\": \"Pisave\",\n \"Font Sizes\": \"Velikosti pisave\",\n \"Class\": \"Razred\",\n \"Browse for an image\": \"Prebrskaj za sliko\",\n \"OR\": \"ALI\",\n \"Drop an image here\": \"Spusti sliko sem\",\n \"Upload\": \"Nalo\\u017ei\",\n \"Block\": \"Blok\",\n \"Align\": \"Poravnava\",\n \"Default\": \"Privzeto\",\n \"Circle\": \"Krog\",\n \"Disc\": \"Disk\",\n \"Square\": \"Kvadrat\",\n \"Lower Alpha\": \"Mala alfa\",\n \"Lower Greek\": \"Male gr\\u0161ke \\u010drke\",\n \"Lower Roman\": \"Male rimske \\u0161tevilke\",\n \"Upper Alpha\": \"Velika alfa\",\n \"Upper Roman\": \"Velike rimske \\u0161tevilke\",\n \"Anchor...\": \"Sidro ...\",\n \"Name\": \"Naziv\",\n \"Id\": \"Id\",\n \"Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.\": \"Id se mora za\\u010deti s \\u010drko, sledijo samo \\u010drke, \\u0161tevilke, pomi\\u0161ljaji, pike, dvopi\\u010dja ali pod\\u010drtaji.\",\n \"You have unsaved changes are you sure you want to navigate away?\": \"Imate neshranjene spremembe. Ste prepri\\u010dati, da \\u017eelite zapustiti stran?\",\n \"Restore last draft\": \"Obnovi zadnji osnutek\",\n \"Special character...\": \"Poseben znak ...\",\n \"Source code\": \"Izvorna koda\",\n \"Insert\\/Edit code sample\": \"Vstavi\\/Uredi vzor\\u010dno kodo\",\n \"Language\": \"Jezik\",\n \"Code sample...\": \"Vzor\\u010dna koda ...\",\n \"Color Picker\": \"Izbirnik barve\",\n \"R\": \"R\",\n \"G\": \"G\",\n \"B\": \"B\",\n \"Left to right\": \"Od leve proti desni\",\n \"Right to left\": \"Od desne proti levi\",\n \"Emoticons\": \"\\u010custveni simboli\",\n \"Emoticons...\": \"\\u010custveni simboli ...\",\n \"Metadata and Document Properties\": \"Metapodatki in lastnosti dokumenta\",\n \"Title\": \"Naslov\",\n \"Keywords\": \"Klju\\u010dne besede\",\n \"Description\": \"Opis\",\n \"Robots\": \"Robotki\",\n \"Author\": \"Avtor\",\n \"Encoding\": \"Kodiranje\",\n \"Fullscreen\": \"\\u010cez cel zaslon\",\n \"Action\": \"Dejanje\",\n \"Shortcut\": \"Bli\\u017enjica\",\n \"Help\": \"Pomo\\u010d\",\n \"Address\": \"Naslov\",\n \"Focus to menubar\": \"Poudarek na menijski vrstici\",\n \"Focus to toolbar\": \"Poudarek na orodni vrstici\",\n \"Focus to element path\": \"Poudarek na poti elementa\",\n \"Focus to contextual toolbar\": \"Poudarek na kontekstualni orodni vrstici\",\n \"Insert link (if link plugin activated)\": \"Vstavi povezavo (\\u010de je aktiviran vti\\u010dnik za povezavo)\",\n \"Save (if save plugin activated)\": \"Shrani (\\u010de je aktiviran vti\\u010dnik za shranjevanje)\",\n \"Find (if searchreplace plugin activated)\": \"I\\u0161\\u010di (\\u010de je aktiviran vti\\u010dnik za iskanje\\/zamenjavo)\",\n \"Plugins installed ({0}):\": \"Name\\u0161\\u010deni vti\\u010dniki ({0}):\",\n \"Premium plugins:\": \"Premium vti\\u010dniki:\",\n \"Learn more...\": \"Ve\\u010d ...\",\n \"You are using {0}\": \"Uporabljate {0}\",\n \"Plugins\": \"Vti\\u010dniki\",\n \"Handy Shortcuts\": \"Uporabne bli\\u017enjice\",\n \"Horizontal line\": \"Vodoravna \\u010drta\",\n \"Insert\\/edit image\": \"Vstavi\\/uredi sliko\",\n \"Alternative description\": \"Nadomestni opis\",\n \"Accessibility\": \"Dostopnost\",\n \"Image is decorative\": \"Slika je okrasna\",\n \"Source\": \"Pot\",\n \"Dimensions\": \"Dimenzije\",\n \"Constrain proportions\": \"Obdr\\u017ei razmerje\",\n \"General\": \"Splo\\u0161no\",\n \"Advanced\": \"Napredno\",\n \"Style\": \"Slog\",\n \"Vertical space\": \"Navpi\\u010dni prostor\",\n \"Horizontal space\": \"Vodoravni prostor\",\n \"Border\": \"Meja\",\n \"Insert image\": \"Vnesi sliko\",\n \"Image...\": \"Slika ...\",\n \"Image list\": \"Seznam slik\",\n \"Rotate counterclockwise\": \"Zavrti v nasprotni smeri urnega kazalca\",\n \"Rotate clockwise\": \"Zavrti v smeri urnega kazalca\",\n \"Flip vertically\": \"Obrni navpi\\u010dno\",\n \"Flip horizontally\": \"Obrni vodoravno\",\n \"Edit image\": \"Uredi sliko\",\n \"Image options\": \"Mo\\u017enosti slike\",\n \"Zoom in\": \"Pove\\u010daj\",\n \"Zoom out\": \"Pomanj\\u0161aj\",\n \"Crop\": \"Obre\\u017ei\",\n \"Resize\": \"Spremeni velikost\",\n \"Orientation\": \"Usmerjenost\",\n \"Brightness\": \"Svetlost\",\n \"Sharpen\": \"Izostri\",\n \"Contrast\": \"Kontrast\",\n \"Color levels\": \"Barvni nivo\",\n \"Gamma\": \"Gama\",\n \"Invert\": \"Obrni\",\n \"Apply\": \"Uporabi\",\n \"Back\": \"Nazaj\",\n \"Insert date\\/time\": \"Vstavi datum\\/\\u010das\",\n \"Date\\/time\": \"Datum\\/\\u010das\",\n \"Insert\\/edit link\": \"Vstavi\\/uredi povezavo\",\n \"Text to display\": \"Besedilo za prikaz\",\n \"Url\": \"Povezava\",\n \"Open link in...\": \"Odpri povezavo v ...\",\n \"Current window\": \"Trenutno okno\",\n \"None\": \"Brez\",\n \"New window\": \"Novo okno\",\n \"Open link\": \"Odpri povezavo\",\n \"Remove link\": \"Odstrani povezavo\",\n \"Anchors\": \"Sidra\",\n \"Link...\": \"Povezava ...\",\n \"Paste or type a link\": \"Prilepite ali vnesite povezavo\",\n \"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?\": \"Vneseni URL predstavlja e-po\\u0161tni naslov. Ali \\u017eelite dodati potrebno predpono \\\"mailto:\\\"?\",\n \"The URL you entered seems to be an external link. Do you want to add the required http:\\/\\/ prefix?\": \"Vneseni URL predstavlja zunanjo povezavo. Ali \\u017eelite dodati predpono \\\"http:\\/\\/\\\"?\",\n \"The URL you entered seems to be an external link. Do you want to add the required https:\\/\\/ prefix?\": \"Vneseni URL naslov predstavlja zunanjo povezavo. Ali mu \\u017eelite dodati predpono https:\\/\\/ ?\",\n \"Link list\": \"Seznam povezav\",\n \"Insert video\": \"Vstavi video\",\n \"Insert\\/edit video\": \"Vstavi\\/uredi video\",\n \"Insert\\/edit media\": \"Vstavi\\/uredi medij\",\n \"Alternative source\": \"Nadomestni vir\",\n \"Alternative source URL\": \"Nadomestni vir URL\",\n \"Media poster (Image URL)\": \"Medijski poster (URL slike)\",\n \"Paste your embed code below:\": \"Spodaj prilepite kodo za vdelavo:\",\n \"Embed\": \"Vdelaj\",\n \"Media...\": \"Mediji ...\",\n \"Nonbreaking space\": \"Nedeljivi presledek\",\n \"Page break\": \"Prelom strani\",\n \"Paste as text\": \"Vnesi kot besedilo\",\n \"Preview\": \"Predogled\",\n \"Print...\": \"Natisni ...\",\n \"Save\": \"Shrani\",\n \"Find\": \"Najdi\",\n \"Replace with\": \"Zamenjaj z\",\n \"Replace\": \"Zamenjaj\",\n \"Replace all\": \"Zamenjaj vse\",\n \"Previous\": \"Prej\\u0161nja\",\n \"Next\": \"Naslednja\",\n \"Find and Replace\": \"Najdi in zamenjaj\",\n \"Find and replace...\": \"Najdi in zamenjaj ...\",\n \"Could not find the specified string.\": \"Iskanje ni vrnilo rezultatov.\",\n \"Match case\": \"Ujemanje malih in velikih \\u010drk\",\n \"Find whole words only\": \"I\\u0161\\u010di samo cele besede\",\n \"Find in selection\": \"I\\u0161\\u010di v izboru\",\n \"Spellcheck\": \"\\u010crkovalnik\",\n \"Spellcheck Language\": \"Jezik \\u010drkovalnika\",\n \"No misspellings found.\": \"Ni najdenih napak v \\u010drkovanju.\",\n \"Ignore\": \"Prezri\",\n \"Ignore all\": \"Prezri vse\",\n \"Finish\": \"Zaklju\\u010di\",\n \"Add to Dictionary\": \"Dodaj v slovar\",\n \"Insert table\": \"Vstavi tabelo\",\n \"Table properties\": \"Lastnosti tabele\",\n \"Delete table\": \"Izbri\\u0161i tabelo\",\n \"Cell\": \"Celica\",\n \"Row\": \"Vrstica\",\n \"Column\": \"Stolpec\",\n \"Cell properties\": \"Lastnosti celice\",\n \"Merge cells\": \"Zdru\\u017ei celice\",\n \"Split cell\": \"Razdeli celico\",\n \"Insert row before\": \"Vstavi vrstico pred\",\n \"Insert row after\": \"Vstavi vrstico za\",\n \"Delete row\": \"Izbri\\u0161i vrstico\",\n \"Row properties\": \"Lastnosti vrstice\",\n \"Cut row\": \"Izre\\u017ei vrstico\",\n \"Copy row\": \"Kopiraj vrstico\",\n \"Paste row before\": \"Prilepi vrstico pred\",\n \"Paste row after\": \"Prilepi vrstico za\",\n \"Insert column before\": \"Vstavi stolpec pred\",\n \"Insert column after\": \"Vstavi stolpec za\",\n \"Delete column\": \"Izbri\\u0161i stolpec\",\n \"Cols\": \"Stolpci\",\n \"Rows\": \"Vrstice\",\n \"Width\": \"\\u0160irina\",\n \"Height\": \"Vi\\u0161ina\",\n \"Cell spacing\": \"Razmik med celicami\",\n \"Cell padding\": \"Polnilo med celicami\",\n \"Caption\": \"Naslov\",\n \"Show caption\": \"Poka\\u017ei napis\",\n \"Left\": \"Leva\",\n \"Center\": \"Sredinska\",\n \"Right\": \"Desna\",\n \"Cell type\": \"Tip celice\",\n \"Scope\": \"Obseg\",\n \"Alignment\": \"Poravnava\",\n \"H Align\": \"Vodoravna poravnava\",\n \"V Align\": \"Navpi\\u010dna poravnava\",\n \"Top\": \"Vrh\",\n \"Middle\": \"Sredina\",\n \"Bottom\": \"Dno\",\n \"Header cell\": \"Celica glave\",\n \"Row group\": \"Grupiranje vrstic\",\n \"Column group\": \"Grupiranje stolpcev\",\n \"Row type\": \"Tip vrstice\",\n \"Header\": \"Header\",\n \"Body\": \"Vsebina\",\n \"Footer\": \"Footer\",\n \"Border color\": \"Barva obrobe\",\n \"Insert template...\": \"Vstavi predlogo ...\",\n \"Templates\": \"Predloge\",\n \"Template\": \"Predloga\",\n \"Text color\": \"Barva besedila\",\n \"Background color\": \"Barva ozadja\",\n \"Custom...\": \"Po meri ...\",\n \"Custom color\": \"Barva po meri\",\n \"No color\": \"Brezbarvno\",\n \"Remove color\": \"Odstrani barvo\",\n \"Table of Contents\": \"Kazalo\",\n \"Show blocks\": \"Prika\\u017ei bloke\",\n \"Show invisible characters\": \"Prika\\u017ei skrite znake\",\n \"Word count\": \"\\u0160tevilo besed\",\n \"Count\": \"\\u0160tevilo\",\n \"Document\": \"Dokument\",\n \"Selection\": \"Izbor\",\n \"Words\": \"Besede\",\n \"Words: {0}\": \"Besed: {0}\",\n \"{0} words\": \"{0} besed\",\n \"File\": \"Datoteka\",\n \"Edit\": \"Uredi\",\n \"Insert\": \"Vstavi\",\n \"View\": \"Pogled\",\n \"Format\": \"Oblika\",\n \"Table\": \"Tabela\",\n \"Tools\": \"Orodja\",\n \"Powered by {0}\": \"Uporablja tehnologijo {0}\",\n \"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help\": \"Bogato besedilo. Pritisnite ALT-F9 za meni. Pritisnite ALT-F10 za orodno vrstico. Pritisnite ALT-0 za pomo\\u010d\",\n \"Image title\": \"Naslov slike\",\n \"Border width\": \"\\u0160irina obrobe\",\n \"Border style\": \"Slog obrobe\",\n \"Error\": \"Napaka\",\n \"Warn\": \"Opozorilo\",\n \"Valid\": \"Veljavno\",\n \"To open the popup, press Shift+Enter\": \"Za odpiranje pojavnega okna pritisnite Shift + Enter.\",\n \"Rich Text Area. Press ALT-0 for help.\": \"Bogato besedilo. Pritisnite ALT-0 za pomo\\u010d.\",\n \"System Font\": \"Sistemska pisava\",\n \"Failed to upload image: {0}\": \"Napaka nalaganja slike: {0}\",\n \"Failed to load plugin: {0} from url {1}\": \"Napaka nalaganja vti\\u010dnika: {0} z url {1}\",\n \"Failed to load plugin url: {0}\": \"Napaka nalaganja url: {0}\",\n \"Failed to initialize plugin: {0}\": \"Napaka inicializacije vti\\u010dnika: {0}\",\n \"example\": \"primer\",\n \"Search\": \"Iskanje\",\n \"All\": \"Vse\",\n \"Currency\": \"Valuta\",\n \"Text\": \"Besedilo\",\n \"Quotations\": \"Citati\",\n \"Mathematical\": \"Matemati\\u010dno\",\n \"Extended Latin\": \"Raz\\u0161irjena latinica\",\n \"Symbols\": \"Simboli\",\n \"Arrows\": \"Pu\\u0161\\u010dice\",\n \"User Defined\": \"Uporabnik dolo\\u010den\",\n \"dollar sign\": \"znak za dolar\",\n \"currency sign\": \"znak za valuto\",\n \"euro-currency sign\": \"znak za evro\",\n \"colon sign\": \"znak za dvopi\\u010dje\",\n \"cruzeiro sign\": \"znak za cruzeiro\",\n \"french franc sign\": \"znak za francoski frank\",\n \"lira sign\": \"znak za liro\",\n \"mill sign\": \"znak za mill\",\n \"naira sign\": \"znak za nairo\",\n \"peseta sign\": \"znak za peseto\",\n \"rupee sign\": \"znak za rupijo\",\n \"won sign\": \"znak za won\",\n \"new sheqel sign\": \"znak za novi \\u0161ekl\",\n \"dong sign\": \"znak za dong\",\n \"kip sign\": \"znak za kip\",\n \"tugrik sign\": \"znak za tugrik\",\n \"drachma sign\": \"znak za drahmo\",\n \"german penny symbol\": \"znak za nem\\u0161ki peni\",\n \"peso sign\": \"znak za peso\",\n \"guarani sign\": \"znak za guarani\",\n \"austral sign\": \"znak za austral\",\n \"hryvnia sign\": \"znak za hrivnijo\",\n \"cedi sign\": \"znak za cedi\",\n \"livre tournois sign\": \"znak za livre tournois\",\n \"spesmilo sign\": \"znak za spesmilo\",\n \"tenge sign\": \"znak za tenge\",\n \"indian rupee sign\": \"znak za indijsko rupijo\",\n \"turkish lira sign\": \"znak za tur\\u0161ko liro\",\n \"nordic mark sign\": \"znak za nordijsko marko\",\n \"manat sign\": \"znak za manat\",\n \"ruble sign\": \"znak za rubelj\",\n \"yen character\": \"znak za jen\",\n \"yuan character\": \"znak za yuan\",\n \"yuan character, in hong kong and taiwan\": \"znak za yuan, v Hongkongu in na Tajvanu\",\n \"yen\\/yuan character variant one\": \"znak za jen\\/yuan, prva razli\\u010dica\",\n \"Loading emoticons...\": \"Nalaganje \\u010dustvenih simbolov ...\",\n \"Could not load emoticons\": \"\\u010custvenih simbolov ni mogo\\u010de nalo\\u017eiti.\",\n \"People\": \"Ljudje\",\n \"Animals and Nature\": \"\\u017divali in narava\",\n \"Food and Drink\": \"Hrana in pija\\u010da\",\n \"Activity\": \"Dejavnost\",\n \"Travel and Places\": \"Potovanja in kraji\",\n \"Objects\": \"Predmeti\",\n \"Flags\": \"Zastave\",\n \"Characters\": \"Znaki\",\n \"Characters (no spaces)\": \"Znaki (brez presledkov)\",\n \"{0} characters\": \"{0} znakov\",\n \"Error: Form submit field collision.\": \"Napaka: navzkri\\u017eje polja za oddajo obrazca\",\n \"Error: No form element found.\": \"Napaka: elementa oblike ni mogo\\u010de najti\",\n \"Update\": \"Posodobitev\",\n \"Color swatch\": \"Vzorec barv\",\n \"Turquoise\": \"Turkizna\",\n \"Green\": \"Zelena\",\n \"Blue\": \"Modra\",\n \"Purple\": \"\\u0160krlatna\",\n \"Navy Blue\": \"Mornarsko modra\",\n \"Dark Turquoise\": \"Temno turkizna\",\n \"Dark Green\": \"Temno zelena\",\n \"Medium Blue\": \"Srednje modra\",\n \"Medium Purple\": \"Srednje \\u0161krlatna\",\n \"Midnight Blue\": \"Polno\\u010dno modra\",\n \"Yellow\": \"Rumena\",\n \"Orange\": \"Oran\\u017ena\",\n \"Red\": \"Rde\\u010da\",\n \"Light Gray\": \"Svetlo siva\",\n \"Gray\": \"Siva\",\n \"Dark Yellow\": \"Temno rumena\",\n \"Dark Orange\": \"Temno oran\\u017ena\",\n \"Dark Red\": \"Temno rde\\u010da\",\n \"Medium Gray\": \"Srednje siva\",\n \"Dark Gray\": \"Temno siva\",\n \"Light Green\": \"Svetlo zelena\",\n \"Light Yellow\": \"Svetlo rumena\",\n \"Light Red\": \"Svetlo rde\\u010da\",\n \"Light Purple\": \"Svetlo vijoli\\u010dna\",\n \"Light Blue\": \"Svetlo modra\",\n \"Dark Purple\": \"Temno vijoli\\u010dna\",\n \"Dark Blue\": \"Temno modra\",\n \"Black\": \"\\u010crna\",\n \"White\": \"Bela\",\n \"Switch to or from fullscreen mode\": \"Preklopi v ali iz celozaslonskega na\\u010dina\",\n \"Open help dialog\": \"Odpri pogovorno okno za pomo\\u010d\",\n \"history\": \"zgodovina\",\n \"styles\": \"slogi\",\n \"formatting\": \"oblikovanje\",\n \"alignment\": \"poravnava\",\n \"indentation\": \"zamik\",\n \"Font\": \"Pisava\",\n \"Size\": \"Velikost\",\n \"More...\": \"Ve\\u010d ...\",\n \"Select...\": \"Izberi ...\",\n \"Preferences\": \"Preference\",\n \"Yes\": \"Da\",\n \"No\": \"Ne\",\n \"Keyboard Navigation\": \"Krmarjenje s tipkovnico\",\n \"Version\": \"Razli\\u010dica\",\n \"Code view\": \"Prikaz kode\",\n \"Open popup menu for split buttons\": \"Odpri pojavni meni za razdeljene gumbe\",\n \"List Properties\": \"Lastnosti seznama\",\n \"List properties...\": \"Lastnosti seznama...\",\n \"Start list at number\": \"Za\\u010dni seznam s \\u0161tevilko\",\n \"Line height\": \"Vi\\u0161ina vrstice\",\n \"comments\": \"komentarji\",\n \"Format Painter\": \"Preslikovalnik Oblik\",\n \"Insert\\/edit iframe\": \"Vstavi\\/uredi iFrame\",\n \"Capitalization\": \"Velika za\\u010detnica\",\n \"lowercase\": \"male \\u010drke\",\n \"UPPERCASE\": \"VELIKE \\u010cRKE\",\n \"Title Case\": \"Velike za\\u010detnice naslovov\",\n \"permanent pen\": \"permanentno pisalo\",\n \"Permanent Pen Properties\": \"Lastnosti permanentnega pisala\",\n \"Permanent pen properties...\": \"Lastnosti permanentnega pisala ...\",\n \"case change\": \"sprememba male\\/velike \\u010drke\",\n \"page embed\": \"vstavi stran\",\n \"Advanced sort...\": \"Napredno razvr\\u0161\\u010danje\",\n \"Advanced Sort\": \"Napredno razvr\\u0161\\u010danje...\",\n \"Sort table by column ascending\": \"Razvrsti tabelo po stolpcu nara\\u0161\\u010dajo\\u010de\",\n \"Sort table by column descending\": \"Razvrsti tabelo po stolpcu padajo\\u010de\",\n \"Sort\": \"Razvrsti\",\n \"Order\": \"Vrstni red\",\n \"Sort by\": \"Razvrsti po\",\n \"Ascending\": \"Nara\\u0161\\u010dajo\\u010de\",\n \"Descending\": \"Padajo\\u010de\",\n \"Column {0}\": \"Stolpec {0}\",\n \"Row {0}\": \"Vrstica {0}\",\n \"Spellcheck...\": \"\\u010crkovalnik...\",\n \"Misspelled word\": \"\\u00b8Nepravilno \\u010drkovana beseda\",\n \"Suggestions\": \"Predlogi\",\n \"Change\": \"Spremeni\",\n \"Finding word suggestions\": \"Iskanje predlogov besed\",\n \"Success\": \"Uspe\\u0161no\",\n \"Repair\": \"Popravi\",\n \"Issue {0} of {1}\": \"Te\\u017eava {0} od {1}\",\n \"Images must be marked as decorative or have an alternative text description\": \"Slike morajo biti ozna\\u010dene kot okrasne ali morajo imeti nadomestni opis v obliki besedila\",\n \"Images must have an alternative text description. Decorative images are not allowed.\": \"Slike morajo imeti nadomestni opis v obliki besedila. Okrasne slike niso dovoljene.\",\n \"Or provide alternative text:\": \"Ali podajte nadomestno besedilo:\",\n \"Make image decorative:\": \"Dolo\\u010di sliko kot okrasno:\",\n \"ID attribute must be unique\": \"ID atribut mora biti edinstven\",\n \"Make ID unique\": \"Ustvari edinstven ID\",\n \"Keep this ID and remove all others\": \"Obdr\\u017ei ta ID in odstrani vse ostale\",\n \"Remove this ID\": \"Odstrani ta ID\",\n \"Remove all IDs\": \"Odstrani vse IDje\",\n \"Checklist\": \"Seznam preverjanj\"\n});\n\n//# sourceURL=webpack:///./src/translations/tinymce/sl.js?");
23
23
 
24
24
  /***/ })
25
25