@zextras/carbonio-shell-ui 6.0.0 → 7.0.0

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 (461) hide show
  1. package/lib/boot/app/app-context-provider.d.ts +7 -0
  2. package/lib/boot/app/app-context-provider.js +17 -0
  3. package/lib/boot/app/app-context-provider.js.map +1 -0
  4. package/lib/boot/app/app-error-catcher.d.ts +3 -0
  5. package/lib/boot/app/app-error-catcher.js +41 -0
  6. package/lib/boot/app/app-error-catcher.js.map +1 -0
  7. package/lib/boot/app/app-loader-functions.d.ts +37 -0
  8. package/lib/boot/app/app-loader-functions.js +121 -0
  9. package/lib/boot/app/app-loader-functions.js.map +1 -0
  10. package/lib/boot/app/app-loader-setters.d.ts +38 -0
  11. package/lib/boot/app/app-loader-setters.js +46 -0
  12. package/lib/boot/app/app-loader-setters.js.map +1 -0
  13. package/lib/boot/matomo.d.ts +12 -0
  14. package/lib/boot/matomo.js +22 -0
  15. package/lib/boot/matomo.js.map +1 -0
  16. package/lib/boot/module-i18next-provider.d.ts +7 -0
  17. package/lib/boot/module-i18next-provider.js +22 -0
  18. package/lib/boot/module-i18next-provider.js.map +1 -0
  19. package/lib/boot/tracker.d.ts +11 -0
  20. package/lib/boot/tracker.js +57 -0
  21. package/lib/boot/tracker.js.map +1 -0
  22. package/lib/constants/index.d.ts +146 -0
  23. package/lib/constants/index.js +160 -0
  24. package/lib/constants/index.js.map +1 -0
  25. package/lib/constants/locales.d.ts +83 -0
  26. package/lib/constants/locales.js +86 -0
  27. package/lib/constants/locales.js.map +1 -0
  28. package/lib/history/hooks.d.ts +12 -0
  29. package/lib/history/hooks.js +69 -0
  30. package/lib/history/hooks.js.map +1 -0
  31. package/lib/lib.d.ts +74 -0
  32. package/lib/lib.js +134 -0
  33. package/lib/lib.js.map +1 -0
  34. package/lib/network/edit-settings.d.ts +14 -0
  35. package/lib/network/edit-settings.js +144 -0
  36. package/lib/network/edit-settings.js.map +1 -0
  37. package/lib/network/fetch.d.ts +4 -0
  38. package/lib/network/fetch.js +175 -0
  39. package/lib/network/fetch.js.map +1 -0
  40. package/lib/network/tags.d.ts +27 -0
  41. package/lib/network/tags.js +31 -0
  42. package/lib/network/tags.js.map +1 -0
  43. package/lib/network/user-agent.d.ts +1 -0
  44. package/lib/network/user-agent.js +15 -0
  45. package/lib/network/user-agent.js.map +1 -0
  46. package/lib/network/utils.d.ts +2 -0
  47. package/lib/network/utils.js +17 -0
  48. package/lib/network/utils.js.map +1 -0
  49. package/lib/notification/NotificationManager.d.ts +22 -0
  50. package/lib/notification/NotificationManager.js +153 -0
  51. package/lib/notification/NotificationManager.js.map +1 -0
  52. package/lib/reporting/functions.d.ts +2 -0
  53. package/lib/reporting/functions.js +14 -0
  54. package/lib/reporting/functions.js.map +1 -0
  55. package/lib/reporting/store.d.ts +8 -0
  56. package/lib/reporting/store.js +43 -0
  57. package/lib/reporting/store.js.map +1 -0
  58. package/lib/search/run-search.d.ts +2 -0
  59. package/lib/search/run-search.js +17 -0
  60. package/lib/search/run-search.js.map +1 -0
  61. package/lib/search/search-store.d.ts +2 -0
  62. package/lib/search/search-store.js +20 -0
  63. package/lib/search/search-store.js.map +1 -0
  64. package/lib/search/useSearchModule.d.ts +3 -0
  65. package/lib/search/useSearchModule.js +21 -0
  66. package/lib/search/useSearchModule.js.map +1 -0
  67. package/lib/settings/components/settings-header.d.ts +9 -0
  68. package/lib/settings/components/settings-header.js +86 -0
  69. package/lib/settings/components/settings-header.js.map +1 -0
  70. package/lib/shell/hooks/useIsMobile.d.ts +4 -0
  71. package/lib/shell/hooks/useIsMobile.js +22 -0
  72. package/lib/shell/hooks/useIsMobile.js.map +1 -0
  73. package/lib/shell/hooks/useLocalStorage.d.ts +14 -0
  74. package/lib/shell/hooks/useLocalStorage.js +77 -0
  75. package/lib/shell/hooks/useLocalStorage.js.map +1 -0
  76. package/lib/shell/shell-context.d.ts +4 -0
  77. package/lib/shell/shell-context.js +11 -0
  78. package/lib/shell/shell-context.js.map +1 -0
  79. package/lib/store/account/hooks.d.ts +14 -0
  80. package/lib/store/account/hooks.js +51 -0
  81. package/lib/store/account/hooks.js.map +1 -0
  82. package/lib/store/account/index.d.ts +2 -0
  83. package/lib/store/account/index.js +24 -0
  84. package/lib/store/account/index.js.map +1 -0
  85. package/lib/store/account/store.d.ts +2 -0
  86. package/lib/store/account/store.js +23 -0
  87. package/lib/store/account/store.js.map +1 -0
  88. package/lib/store/app/hooks.d.ts +14 -0
  89. package/lib/store/app/hooks.js +41 -0
  90. package/lib/store/app/hooks.js.map +1 -0
  91. package/lib/store/app/index.d.ts +2 -0
  92. package/lib/store/app/index.js +24 -0
  93. package/lib/store/app/index.js.map +1 -0
  94. package/lib/store/app/store.d.ts +44 -0
  95. package/lib/store/app/store.js +265 -0
  96. package/lib/store/app/store.js.map +1 -0
  97. package/lib/store/app/utils.d.ts +10 -0
  98. package/lib/store/app/utils.js +123 -0
  99. package/lib/store/app/utils.js.map +1 -0
  100. package/lib/store/boards/hooks.d.ts +31 -0
  101. package/lib/store/boards/hooks.js +82 -0
  102. package/lib/store/boards/hooks.js.map +1 -0
  103. package/lib/store/boards/index.d.ts +2 -0
  104. package/lib/store/boards/index.js +24 -0
  105. package/lib/store/boards/index.js.map +1 -0
  106. package/lib/store/boards/store.d.ts +23 -0
  107. package/lib/store/boards/store.js +124 -0
  108. package/lib/store/boards/store.js.map +1 -0
  109. package/lib/store/context-bridge.d.ts +11 -0
  110. package/lib/store/context-bridge.js +34 -0
  111. package/lib/store/context-bridge.js.map +1 -0
  112. package/lib/store/folder/hooks.d.ts +21 -0
  113. package/lib/store/folder/hooks.js +77 -0
  114. package/lib/store/folder/hooks.js.map +1 -0
  115. package/lib/store/folder/index.d.ts +2 -0
  116. package/lib/store/folder/index.js +24 -0
  117. package/lib/store/folder/index.js.map +1 -0
  118. package/lib/store/folder/store.d.ts +2 -0
  119. package/lib/store/folder/store.js +20 -0
  120. package/lib/store/folder/store.js.map +1 -0
  121. package/lib/store/folder/utils.d.ts +16 -0
  122. package/lib/store/folder/utils.js +53 -0
  123. package/lib/store/folder/utils.js.map +1 -0
  124. package/lib/store/i18n/hooks.d.ts +4 -0
  125. package/lib/store/i18n/hooks.js +21 -0
  126. package/lib/store/i18n/hooks.js.map +1 -0
  127. package/lib/store/i18n/store.d.ts +13 -0
  128. package/lib/store/i18n/store.js +104 -0
  129. package/lib/store/i18n/store.js.map +1 -0
  130. package/lib/store/integrations/composer.d.ts +49 -0
  131. package/lib/store/integrations/composer.js +233 -0
  132. package/lib/store/integrations/composer.js.map +1 -0
  133. package/lib/store/integrations/getters.d.ts +9 -0
  134. package/lib/store/integrations/getters.js +41 -0
  135. package/lib/store/integrations/getters.js.map +1 -0
  136. package/lib/store/integrations/hooks.d.ts +9 -0
  137. package/lib/store/integrations/hooks.js +42 -0
  138. package/lib/store/integrations/hooks.js.map +1 -0
  139. package/lib/store/integrations/store.d.ts +41 -0
  140. package/lib/store/integrations/store.js +65 -0
  141. package/lib/store/integrations/store.js.map +1 -0
  142. package/lib/store/integrations/utils.d.ts +8 -0
  143. package/lib/store/integrations/utils.js +50 -0
  144. package/lib/store/integrations/utils.js.map +1 -0
  145. package/lib/store/login/getters.d.ts +2 -0
  146. package/lib/store/login/getters.js +18 -0
  147. package/lib/store/login/getters.js.map +1 -0
  148. package/lib/store/login/store.d.ts +12 -0
  149. package/lib/store/login/store.js +18 -0
  150. package/lib/store/login/store.js.map +1 -0
  151. package/lib/store/network/hooks.d.ts +3 -0
  152. package/lib/store/network/hooks.js +14 -0
  153. package/lib/store/network/hooks.js.map +1 -0
  154. package/lib/store/network/index.d.ts +2 -0
  155. package/lib/store/network/index.js +24 -0
  156. package/lib/store/network/index.js.map +1 -0
  157. package/lib/store/network/store.d.ts +2 -0
  158. package/lib/store/network/store.js +15 -0
  159. package/lib/store/network/store.js.map +1 -0
  160. package/lib/store/network/utils.d.ts +13 -0
  161. package/lib/store/network/utils.js +94 -0
  162. package/lib/store/network/utils.js.map +1 -0
  163. package/lib/store/tags/hooks.d.ts +3 -0
  164. package/lib/store/tags/hooks.js +15 -0
  165. package/lib/store/tags/hooks.js.map +1 -0
  166. package/lib/store/tags/index.d.ts +2 -0
  167. package/lib/store/tags/index.js +24 -0
  168. package/lib/store/tags/index.js.map +1 -0
  169. package/lib/store/tags/store.d.ts +2 -0
  170. package/lib/store/tags/store.js +18 -0
  171. package/lib/store/tags/store.js.map +1 -0
  172. package/lib/tsdoc-metadata.json +11 -0
  173. package/lib/types/account/index.d.ts +140 -0
  174. package/lib/types/account/index.js +8 -0
  175. package/lib/types/account/index.js.map +1 -0
  176. package/lib/types/apps/index.d.ts +120 -0
  177. package/lib/types/apps/index.js +9 -0
  178. package/lib/types/apps/index.js.map +1 -0
  179. package/lib/types/boards/index.d.ts +10 -0
  180. package/lib/types/boards/index.js +3 -0
  181. package/lib/types/boards/index.js.map +1 -0
  182. package/lib/types/folder/index.d.ts +29 -0
  183. package/lib/types/folder/index.js +8 -0
  184. package/lib/types/folder/index.js.map +1 -0
  185. package/lib/types/integrations/index.d.ts +8 -0
  186. package/lib/types/integrations/index.js +8 -0
  187. package/lib/types/integrations/index.js.map +1 -0
  188. package/lib/types/misc/index.d.ts +156 -0
  189. package/lib/types/misc/index.js +8 -0
  190. package/lib/types/misc/index.js.map +1 -0
  191. package/lib/types/network/entities.d.ts +47 -0
  192. package/lib/types/network/entities.js +3 -0
  193. package/lib/types/network/entities.js.map +1 -0
  194. package/lib/types/network/index.d.ts +171 -0
  195. package/lib/types/network/index.js +23 -0
  196. package/lib/types/network/index.js.map +1 -0
  197. package/lib/types/network/soap.d.ts +102 -0
  198. package/lib/types/network/soap.js +8 -0
  199. package/lib/types/network/soap.js.map +1 -0
  200. package/lib/types/search/index.d.ts +11 -0
  201. package/lib/types/search/index.js +23 -0
  202. package/lib/types/search/index.js.map +1 -0
  203. package/lib/types/search/items.d.ts +6 -0
  204. package/lib/types/search/items.js +3 -0
  205. package/lib/types/search/items.js.map +1 -0
  206. package/lib/types/tags/index.d.ts +12 -0
  207. package/lib/types/tags/index.js +9 -0
  208. package/lib/types/tags/index.js.map +1 -0
  209. package/lib/types/workers/index.d.ts +17 -0
  210. package/lib/types/workers/index.js +3 -0
  211. package/lib/types/workers/index.js.map +1 -0
  212. package/lib/ui-extras/app-link.d.ts +6 -0
  213. package/lib/ui-extras/app-link.js +40 -0
  214. package/lib/ui-extras/app-link.js.map +1 -0
  215. package/lib/ui-extras/nav-guard.d.ts +9 -0
  216. package/lib/ui-extras/nav-guard.js +96 -0
  217. package/lib/ui-extras/nav-guard.js.map +1 -0
  218. package/lib/ui-extras/spinner.d.ts +2 -0
  219. package/lib/ui-extras/spinner.js +18 -0
  220. package/lib/ui-extras/spinner.js.map +1 -0
  221. package/lib/utils/typeUtils.d.ts +14 -0
  222. package/lib/utils/typeUtils.js +3 -0
  223. package/lib/utils/typeUtils.js.map +1 -0
  224. package/lib/utils/utils.d.ts +20 -0
  225. package/lib/utils/utils.js +39 -0
  226. package/lib/utils/utils.js.map +1 -0
  227. package/lib/workers/index.d.ts +2 -0
  228. package/lib/workers/index.js +15 -0
  229. package/lib/workers/index.js.map +1 -0
  230. package/package.json +34 -37
  231. package/dist/20d012c938e8d0dcc703.mp3 +0 -0
  232. package/dist/2d9c9ae572663301cb7d.js +0 -75391
  233. package/dist/CHANGELOG.md +0 -701
  234. package/dist/carbonio-head.svg +0 -200
  235. package/dist/carbonio.svg +0 -10
  236. package/dist/commit +0 -1
  237. package/dist/component.json +0 -13
  238. package/dist/favicon.png +0 -0
  239. package/dist/files/roboto-cyrillic-300-normal.woff +0 -0
  240. package/dist/files/roboto-cyrillic-300-normal.woff2 +0 -0
  241. package/dist/files/roboto-cyrillic-400-normal.woff +0 -0
  242. package/dist/files/roboto-cyrillic-400-normal.woff2 +0 -0
  243. package/dist/files/roboto-cyrillic-500-normal.woff +0 -0
  244. package/dist/files/roboto-cyrillic-500-normal.woff2 +0 -0
  245. package/dist/files/roboto-cyrillic-700-normal.woff +0 -0
  246. package/dist/files/roboto-cyrillic-700-normal.woff2 +0 -0
  247. package/dist/files/roboto-cyrillic-ext-300-normal.woff +0 -0
  248. package/dist/files/roboto-cyrillic-ext-300-normal.woff2 +0 -0
  249. package/dist/files/roboto-cyrillic-ext-400-normal.woff +0 -0
  250. package/dist/files/roboto-cyrillic-ext-400-normal.woff2 +0 -0
  251. package/dist/files/roboto-cyrillic-ext-500-normal.woff +0 -0
  252. package/dist/files/roboto-cyrillic-ext-500-normal.woff2 +0 -0
  253. package/dist/files/roboto-cyrillic-ext-700-normal.woff +0 -0
  254. package/dist/files/roboto-cyrillic-ext-700-normal.woff2 +0 -0
  255. package/dist/files/roboto-greek-300-normal.woff +0 -0
  256. package/dist/files/roboto-greek-300-normal.woff2 +0 -0
  257. package/dist/files/roboto-greek-400-normal.woff +0 -0
  258. package/dist/files/roboto-greek-400-normal.woff2 +0 -0
  259. package/dist/files/roboto-greek-500-normal.woff +0 -0
  260. package/dist/files/roboto-greek-500-normal.woff2 +0 -0
  261. package/dist/files/roboto-greek-700-normal.woff +0 -0
  262. package/dist/files/roboto-greek-700-normal.woff2 +0 -0
  263. package/dist/files/roboto-greek-ext-300-normal.woff +0 -0
  264. package/dist/files/roboto-greek-ext-300-normal.woff2 +0 -0
  265. package/dist/files/roboto-greek-ext-400-normal.woff +0 -0
  266. package/dist/files/roboto-greek-ext-400-normal.woff2 +0 -0
  267. package/dist/files/roboto-greek-ext-500-normal.woff +0 -0
  268. package/dist/files/roboto-greek-ext-500-normal.woff2 +0 -0
  269. package/dist/files/roboto-greek-ext-700-normal.woff +0 -0
  270. package/dist/files/roboto-greek-ext-700-normal.woff2 +0 -0
  271. package/dist/files/roboto-latin-300-normal.woff +0 -0
  272. package/dist/files/roboto-latin-300-normal.woff2 +0 -0
  273. package/dist/files/roboto-latin-400-normal.woff +0 -0
  274. package/dist/files/roboto-latin-400-normal.woff2 +0 -0
  275. package/dist/files/roboto-latin-500-normal.woff +0 -0
  276. package/dist/files/roboto-latin-500-normal.woff2 +0 -0
  277. package/dist/files/roboto-latin-700-normal.woff +0 -0
  278. package/dist/files/roboto-latin-700-normal.woff2 +0 -0
  279. package/dist/files/roboto-latin-ext-300-normal.woff +0 -0
  280. package/dist/files/roboto-latin-ext-300-normal.woff2 +0 -0
  281. package/dist/files/roboto-latin-ext-400-normal.woff +0 -0
  282. package/dist/files/roboto-latin-ext-400-normal.woff2 +0 -0
  283. package/dist/files/roboto-latin-ext-500-normal.woff +0 -0
  284. package/dist/files/roboto-latin-ext-500-normal.woff2 +0 -0
  285. package/dist/files/roboto-latin-ext-700-normal.woff +0 -0
  286. package/dist/files/roboto-latin-ext-700-normal.woff2 +0 -0
  287. package/dist/files/roboto-vietnamese-300-normal.woff +0 -0
  288. package/dist/files/roboto-vietnamese-300-normal.woff2 +0 -0
  289. package/dist/files/roboto-vietnamese-400-normal.woff +0 -0
  290. package/dist/files/roboto-vietnamese-400-normal.woff2 +0 -0
  291. package/dist/files/roboto-vietnamese-500-normal.woff +0 -0
  292. package/dist/files/roboto-vietnamese-500-normal.woff2 +0 -0
  293. package/dist/files/roboto-vietnamese-700-normal.woff +0 -0
  294. package/dist/files/roboto-vietnamese-700-normal.woff2 +0 -0
  295. package/dist/i18n/ar.json +0 -1
  296. package/dist/i18n/de.json +0 -438
  297. package/dist/i18n/en-US.json +0 -1
  298. package/dist/i18n/en.json +0 -438
  299. package/dist/i18n/es-419.json +0 -1
  300. package/dist/i18n/es.json +0 -438
  301. package/dist/i18n/fa.json +0 -1
  302. package/dist/i18n/fi.json +0 -12
  303. package/dist/i18n/fr.json +0 -438
  304. package/dist/i18n/hi.json +0 -438
  305. package/dist/i18n/hr.json +0 -1
  306. package/dist/i18n/hu.json +0 -31
  307. package/dist/i18n/id.json +0 -438
  308. package/dist/i18n/it.json +0 -438
  309. package/dist/i18n/ja.json +0 -438
  310. package/dist/i18n/ky.json +0 -6
  311. package/dist/i18n/nl.json +0 -438
  312. package/dist/i18n/pl.json +0 -438
  313. package/dist/i18n/pt-PT.json +0 -1
  314. package/dist/i18n/pt.json +0 -438
  315. package/dist/i18n/pt_BR.json +0 -438
  316. package/dist/i18n/ro.json +0 -9
  317. package/dist/i18n/ru.json +0 -438
  318. package/dist/i18n/th.json +0 -438
  319. package/dist/i18n/tr.json +0 -438
  320. package/dist/i18n/uk.json +0 -186
  321. package/dist/i18n/vi.json +0 -396
  322. package/dist/i18n/zh_Hans.json +0 -412
  323. package/dist/index.html +0 -25
  324. package/dist/notification.mp3 +0 -0
  325. package/dist/package/PKGBUILD +0 -45
  326. package/dist/plugins/help/js/i18n/keynav/de.js +0 -90
  327. package/dist/plugins/help/js/i18n/keynav/en.js +0 -90
  328. package/dist/plugins/help/js/i18n/keynav/es.js +0 -90
  329. package/dist/plugins/help/js/i18n/keynav/fr_FR.js +0 -90
  330. package/dist/plugins/help/js/i18n/keynav/hi.js +0 -90
  331. package/dist/plugins/help/js/i18n/keynav/it.js +0 -90
  332. package/dist/plugins/help/js/i18n/keynav/ja.js +0 -90
  333. package/dist/plugins/help/js/i18n/keynav/nl.js +0 -90
  334. package/dist/plugins/help/js/i18n/keynav/pl.js +0 -90
  335. package/dist/plugins/help/js/i18n/keynav/pt_BR.js +0 -90
  336. package/dist/plugins/help/js/i18n/keynav/ro.js +0 -90
  337. package/dist/plugins/help/js/i18n/keynav/ru.js +0 -90
  338. package/dist/plugins/help/js/i18n/keynav/th_TH.js +0 -90
  339. package/dist/plugins/help/js/i18n/keynav/tr.js +0 -90
  340. package/dist/plugins/help/js/i18n/keynav/vi.js +0 -90
  341. package/dist/skins/content/dark/content.css +0 -59
  342. package/dist/skins/content/dark/content.min.css +0 -8
  343. package/dist/skins/content/default/content.css +0 -49
  344. package/dist/skins/content/default/content.min.css +0 -8
  345. package/dist/skins/content/document/content.css +0 -53
  346. package/dist/skins/content/document/content.min.css +0 -8
  347. package/dist/skins/content/writer/content.css +0 -50
  348. package/dist/skins/content/writer/content.min.css +0 -8
  349. package/dist/skins/ui/oxide/content.css +0 -615
  350. package/dist/skins/ui/oxide/content.inline.css +0 -608
  351. package/dist/skins/ui/oxide/content.inline.min.css +0 -8
  352. package/dist/skins/ui/oxide/content.min.css +0 -8
  353. package/dist/skins/ui/oxide/content.mobile.css +0 -29
  354. package/dist/skins/ui/oxide/content.mobile.min.css +0 -8
  355. package/dist/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
  356. package/dist/skins/ui/oxide/skin.css +0 -2884
  357. package/dist/skins/ui/oxide/skin.min.css +0 -8
  358. package/dist/skins/ui/oxide/skin.mobile.css +0 -673
  359. package/dist/skins/ui/oxide/skin.mobile.min.css +0 -8
  360. package/dist/skins/ui/oxide-dark/content.css +0 -596
  361. package/dist/skins/ui/oxide-dark/content.inline.css +0 -608
  362. package/dist/skins/ui/oxide-dark/content.inline.min.css +0 -8
  363. package/dist/skins/ui/oxide-dark/content.min.css +0 -8
  364. package/dist/skins/ui/oxide-dark/content.mobile.css +0 -29
  365. package/dist/skins/ui/oxide-dark/content.mobile.min.css +0 -8
  366. package/dist/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
  367. package/dist/skins/ui/oxide-dark/skin.css +0 -2884
  368. package/dist/skins/ui/oxide-dark/skin.min.css +0 -8
  369. package/dist/skins/ui/oxide-dark/skin.mobile.css +0 -673
  370. package/dist/skins/ui/oxide-dark/skin.mobile.min.css +0 -8
  371. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css +0 -21
  372. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css.map +0 -1
  373. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js +0 -13399
  374. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js.map +0 -1
  375. package/dist/src_workers_folder_ts.2df69eae.chunk.js +0 -537
  376. package/dist/src_workers_folder_ts.2df69eae.chunk.js.map +0 -1
  377. package/dist/src_workers_tag_ts.59a752d7.chunk.js +0 -113
  378. package/dist/src_workers_tag_ts.59a752d7.chunk.js.map +0 -1
  379. package/dist/style.a7eb9e6c.css +0 -389
  380. package/dist/style.a7eb9e6c.css.map +0 -1
  381. package/dist/tinymce/langs/de.js +0 -1
  382. package/dist/tinymce/langs/es.js +0 -1
  383. package/dist/tinymce/langs/fr_FR.js +0 -1
  384. package/dist/tinymce/langs/hi.js +0 -1
  385. package/dist/tinymce/langs/it.js +0 -1
  386. package/dist/tinymce/langs/ja.js +0 -1
  387. package/dist/tinymce/langs/nl.js +0 -1
  388. package/dist/tinymce/langs/pl.js +0 -1
  389. package/dist/tinymce/langs/pt_BR.js +0 -1
  390. package/dist/tinymce/langs/ro.js +0 -1
  391. package/dist/tinymce/langs/ru.js +0 -1
  392. package/dist/tinymce/langs/th_TH.js +0 -1
  393. package/dist/tinymce/langs/tr.js +0 -1
  394. package/dist/tinymce/langs/vi.js +0 -1
  395. package/dist/tinymce/langs/zh-Hans.js +0 -1
  396. package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js +0 -412
  397. package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js.map +0 -1
  398. package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js +0 -787
  399. package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js.map +0 -1
  400. package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js +0 -693
  401. package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js.map +0 -1
  402. package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js +0 -685
  403. package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js.map +0 -1
  404. package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js +0 -644
  405. package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js.map +0 -1
  406. package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js +0 -741
  407. package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js.map +0 -1
  408. package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js +0 -531
  409. package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js.map +0 -1
  410. package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js +0 -703
  411. package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js.map +0 -1
  412. package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js +0 -638
  413. package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js.map +0 -1
  414. package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js +0 -623
  415. package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js.map +0 -1
  416. package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js +0 -682
  417. package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map +0 -1
  418. package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js +0 -678
  419. package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js.map +0 -1
  420. package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js +0 -670
  421. package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js.map +0 -1
  422. package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js +0 -707
  423. package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js.map +0 -1
  424. package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js +0 -672
  425. package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js.map +0 -1
  426. package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js +0 -677
  427. package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js.map +0 -1
  428. package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js +0 -765
  429. package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map +0 -1
  430. package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js +0 -521
  431. package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js.map +0 -1
  432. package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js +0 -19112
  433. package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js.map +0 -1
  434. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js +0 -219343
  435. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js.map +0 -1
  436. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css +0 -4104
  437. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map +0 -1
  438. package/dist/yap.json +0 -11
  439. package/dist/zapp-shell.bundle.js +0 -30430
  440. package/dist/zapp-shell.bundle.js.map +0 -1
  441. package/types/account/index.d.ts +0 -179
  442. package/types/apps/index.d.ts +0 -198
  443. package/types/boards/index.d.ts +0 -31
  444. package/types/exports/index.d.ts +0 -256
  445. package/types/folder/index.d.ts +0 -33
  446. package/types/i18n/index.d.ts +0 -19
  447. package/types/index.d.ts +0 -20
  448. package/types/integrations/index.d.ts +0 -41
  449. package/types/loginConfig/index.d.ts +0 -17
  450. package/types/misc/index.d.ts +0 -309
  451. package/types/network/entities.d.ts +0 -106
  452. package/types/network/index.d.ts +0 -239
  453. package/types/network/soap.d.ts +0 -106
  454. package/types/notification/index.d.ts +0 -31
  455. package/types/search/index.d.ts +0 -18
  456. package/types/search/items.d.ts +0 -13
  457. package/types/settings/index.d.ts +0 -10
  458. package/types/styled-components.d.ts +0 -18
  459. package/types/tags/index.d.ts +0 -21
  460. package/types/theme/index.d.ts +0 -9
  461. package/types/workers/index.d.ts +0 -24
@@ -1 +0,0 @@
1
- tinymce.addI18n("es",{"Redo":"Rehacer","Undo":"Deshacer","Cut":"Cortar","Copy":"Copiar","Paste":"Pegar","Select all":"Seleccionar todo","New document":"Nuevo documento","Ok":"Ok","Cancel":"Cancelar","Visual aids":"Ayudas visuales","Bold":"Negrita","Italic":"Cursiva","Underline":"Subrayado","Strikethrough":"Tachado","Superscript":"Super\xedndice","Subscript":"Sub\xedndice","Clear formatting":"Limpiar formato","Remove":"Quitar","Align left":"Alinear a la izquierda","Align center":"Alinear al centro","Align right":"Alinear a la derecha","No alignment":"Sin alineaci\xf3n","Justify":"Justificar","Bullet list":"Lista de vi\xf1etas","Numbered list":"Lista numerada","Decrease indent":"Disminuir sangr\xeda","Increase indent":"Incrementar sangr\xeda","Close":"Cerrar","Formats":"Formatos","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Su navegador no es compatible con el acceso directo al portapapeles. Use las teclas Crtl+X/C/V de su teclado.","Headings":"Encabezados","Heading 1":"Encabezado 1","Heading 2":"Encabezado 2","Heading 3":"Encabezado 3","Heading 4":"Encabezado 4","Heading 5":"Encabezado 5","Heading 6":"Encabezado 6","Preformatted":"Con formato previo","Div":"Div","Pre":"Pre","Code":"C\xf3digo","Paragraph":"P\xe1rrafo","Blockquote":"Cita en bloque","Inline":"Alineado","Blocks":"Bloques","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Pegar est\xe1 ahora en modo de texto sin formato. El contenido se pegar\xe1 ahora como texto sin formato hasta que desactive esta opci\xf3n.","Fonts":"Fuentes","Font sizes":"Tama\xf1os de fuente","Class":"Clase","Browse for an image":"Buscar una imagen","OR":"O","Drop an image here":"Arrastre una imagen aqu\xed","Upload":"Cargar","Uploading image":"Subiendo imagen","Block":"Bloque","Align":"Alinear","Default":"Por defecto","Circle":"C\xedrculo","Disc":"Disco","Square":"Cuadrado","Lower Alpha":"Letras min\xfasculas","Lower Greek":"Griego en min\xfasculas","Lower Roman":"Romano en min\xfasculas","Upper Alpha":"Letras may\xfasculas","Upper Roman":"Romano en may\xfasculas","Anchor...":"Anclaje...","Anchor":"Anclaje","Name":"Nombre","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"El ID deber\xeda comenzar con una letra y seguir solo con letras, n\xfameros, guiones, puntos, dos puntos o guiones bajos.","You have unsaved changes are you sure you want to navigate away?":"Tiene cambios sin guardar. \xbfEst\xe1 seguro de que quiere salir?","Restore last draft":"Restaurar el \xfaltimo borrador","Special character...":"Car\xe1cter especial...","Special Character":"Car\xe1cter especial","Source code":"C\xf3digo fuente","Insert/Edit code sample":"Insertar/editar ejemplo de c\xf3digo","Language":"Idioma","Code sample...":"Ejemplo de c\xf3digo...","Left to right":"Izquierda a derecha","Right to left":"Derecha a izquierda","Title":"T\xedtulo","Fullscreen":"Pantalla completa","Action":"Acci\xf3n","Shortcut":"Acceso directo","Help":"Ayuda","Address":"Direcci\xf3n","Focus to menubar":"Enfocar la barra del men\xfa","Focus to toolbar":"Enfocar la barra de herramientas","Focus to element path":"Enfocar la ruta del elemento","Focus to contextual toolbar":"Enfocar la barra de herramientas contextual","Insert link (if link plugin activated)":"Insertar enlace (si el complemento de enlace est\xe1 activado)","Save (if save plugin activated)":"Guardar (si el complemento de guardar est\xe1 activado)","Find (if searchreplace plugin activated)":"Buscar (si el complemento buscar-reemplazar est\xe1 activado)","Plugins installed ({0}):":"Complementos instalados ({0}):","Premium plugins:":"Complementos premium:","Learn more...":"M\xe1s informaci\xf3n...","You are using {0}":"Est\xe1 usando {0}","Plugins":"Complementos","Handy Shortcuts":"Accesos pr\xe1cticos","Horizontal line":"L\xednea horizontal","Insert/edit image":"Insertar/editar imagen","Alternative description":"Descripci\xf3n alternativa","Accessibility":"Accesibilidad","Image is decorative":"La imagen es decorativa","Source":"C\xf3digo fuente","Dimensions":"Dimensiones","Constrain proportions":"Restringir proporciones","General":"General","Advanced":"Avanzado","Style":"Estilo","Vertical space":"Espacio vertical","Horizontal space":"Espacio horizontal","Border":"Borde","Insert image":"Insertar imagen","Image...":"Imagen...","Image list":"Lista de im\xe1genes","Resize":"Redimensionar","Insert date/time":"Insertar fecha/hora","Date/time":"Fecha/hora","Insert/edit link":"Insertar/editar enlace","Text to display":"Texto que mostrar","Url":"URL","Open link in...":"Abrir enlace en...","Current window":"Ventana actual","None":"Ninguno","New window":"Nueva ventana","Open link":"Abrir enlace","Remove link":"Quitar enlace","Anchors":"Anclajes","Link...":"Enlace...","Paste or type a link":"Pegue o escriba un enlace","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"La URL que ha introducido parece ser una direcci\xf3n de correo electr\xf3nico. \xbfQuiere a\xf1adir el prefijo necesario mailto:?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"La URL que ha introducido parece ser un enlace externo. \xbfQuiere a\xf1adir el prefijo necesario http://?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"La URL que ha introducido parece ser un enlace externo. \xbfQuiere a\xf1adir el prefijo necesario https://?","Link list":"Lista de enlaces","Insert video":"Insertar v\xeddeo","Insert/edit video":"Insertar/editar v\xeddeo","Insert/edit media":"Insertar/editar medio","Alternative source":"Enlace alternativo","Alternative source URL":"Origen de URL alternativo","Media poster (Image URL)":"P\xf3ster de medio (URL de imagen)","Paste your embed code below:":"Pegue el c\xf3digo para insertar a continuaci\xf3n:","Embed":"Insertar","Media...":"Medios...","Nonbreaking space":"Espacio de no separaci\xf3n","Page break":"Salto de p\xe1gina","Paste as text":"Pegar como texto","Preview":"Previsualizar","Print":"Imprimir","Print...":"Imprimir...","Save":"Guardar","Find":"Buscar","Replace with":"Reemplazar por","Replace":"Reemplazar","Replace all":"Reemplazar todo","Previous":"Anterior","Next":"Siguiente","Find and Replace":"Buscar y Reemplazar","Find and replace...":"Buscar y reemplazar...","Could not find the specified string.":"No se encuentra la cadena especificada.","Match case":"Coincidir may\xfasculas y min\xfasculas","Find whole words only":"Solo palabras completas","Find in selection":"Buscar en la selecci\xf3n","Insert table":"Insertar tabla","Table properties":"Propiedades de la tabla","Delete table":"Eliminar tabla","Cell":"Celda","Row":"Fila","Column":"Columna","Cell properties":"Propiedades de la celda","Merge cells":"Combinar celdas","Split cell":"Dividir celda","Insert row before":"Insertar fila antes","Insert row after":"Insertar fila despu\xe9s","Delete row":"Eliminar fila","Row properties":"Propiedades de la fila","Cut row":"Cortar fila","Cut column":"Cortar columna","Copy row":"Copiar fila","Copy column":"Copiar columna","Paste row before":"Pegar la fila antes","Paste column before":"Pegar columna antes","Paste row after":"Pegar la fila despu\xe9s","Paste column after":"Pegar columna despu\xe9s","Insert column before":"Insertar columna antes","Insert column after":"Insertar columna despu\xe9s","Delete column":"Eliminar columna","Cols":"Columnas","Rows":"Filas","Width":"Ancho","Height":"Altura","Cell spacing":"Espacio entre celdas","Cell padding":"Relleno de celda","Row clipboard actions":"Acciones del portapapeles de la fila","Column clipboard actions":"Acciones del portapapeles de la columna","Table styles":"Estilos de tabla","Cell styles":"Estilos de celda","Column header":"Encabezado de columna","Row header":"Encabezado de fila","Table caption":"T\xedtulo de la tabla","Caption":"Leyenda","Show caption":"Mostrar t\xedtulo","Left":"Izquierda","Center":"Centro","Right":"Derecha","Cell type":"Tipo de celda","Scope":"\xc1mbito","Alignment":"Alineaci\xf3n","Horizontal align":"Alineaci\xf3n horizontal","Vertical align":"Alineaci\xf3n vertical","Top":"Superior","Middle":"Central","Bottom":"Inferior","Header cell":"Celda de encabezado","Row group":"Grupo de filas","Column group":"Grupo de columnas","Row type":"Tipo de fila","Header":"Encabezado","Body":"Cuerpo","Footer":"Pie de p\xe1gina","Border color":"Color de borde","Solid":"S\xf3lido","Dotted":"Puntos","Dashed":"Guiones","Double":"Doble","Groove":"Groove","Ridge":"Cresta","Inset":"Insertar","Outset":"Comienzo","Hidden":"Oculto","Insert template...":"Insertar plantilla...","Templates":"Plantillas","Template":"Plantilla","Insert Template":"Insertar Plantilla","Text color":"Color del texto","Background color":"Color de fondo","Custom...":"Personalizado...","Custom color":"Color personalizado","No color":"Sin color","Remove color":"Quitar color","Show blocks":"Mostrar bloques","Show invisible characters":"Mostrar caracteres invisibles","Word count":"Contar palabras","Count":"Recuento","Document":"Documento","Selection":"Selecci\xf3n","Words":"Palabras","Words: {0}":"Palabras: {0}","{0} words":"{0} palabras","File":"Archivo","Edit":"Editar","Insert":"Insertar","View":"Ver","Format":"Formato","Table":"Tabla","Tools":"Herramientas","Powered by {0}":"Con tecnolog\xeda de {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\xc1rea de texto enriquecido. Pulse ALT-F9 para el men\xfa. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para la ayuda.","Image title":"Titulo de imagen","Border width":"Ancho de borde","Border style":"Estilo de borde","Error":"Error","Warn":"Advertencia","Valid":"V\xe1lido","To open the popup, press Shift+Enter":"Para abrir el elemento emergente, pulse May\xfas+Intro","Rich Text Area":"\xc1rea de Texto Enriquecido","Rich Text Area. Press ALT-0 for help.":"\xc1rea de texto enriquecido. Pulse ALT-0 para abrir la ayuda.","System Font":"Fuente de sistema","Failed to upload image: {0}":"Fallo al cargar imagen: {0}","Failed to load plugin: {0} from url {1}":"Fallo al cargar complemento: {0} desde URL {1}","Failed to load plugin url: {0}":"Fallo al cargar URL del complemento: {0}","Failed to initialize plugin: {0}":"Fallo al iniciar el complemento: {0}","example":"ejemplo","Search":"Buscar","All":"Todo","Currency":"Divisa","Text":"Texto","Quotations":"Comillas","Mathematical":"S\xedmbolo matem\xe1tico","Extended Latin":"Latino extendido A","Symbols":"S\xedmbolos","Arrows":"Flechas","User Defined":"Definido por el usuario","dollar sign":"signo de d\xf3lar","currency sign":"signo de divisa","euro-currency sign":"signo de euro","colon sign":"signo de dos puntos","cruzeiro sign":"signo de cruceiro","french franc sign":"signo de franco franc\xe9s","lira sign":"signo de lira","mill sign":"signo de mill","naira sign":"signo de naira","peseta sign":"signo de peseta","rupee sign":"signo de rupia","won sign":"signo de won","new sheqel sign":"signo de nuevo s\xe9quel","dong sign":"signo de dong","kip sign":"signo de kip","tugrik sign":"signo de tugrik","drachma sign":"signo de dracma","german penny symbol":"signo de penique alem\xe1n","peso sign":"signo de peso","guarani sign":"signo de guaran\xed","austral sign":"signo de austral","hryvnia sign":"signo de grivna","cedi sign":"signo de cedi","livre tournois sign":"signo de libra tornesa","spesmilo sign":"signo de spesmilo","tenge sign":"signo de tenge","indian rupee sign":"signo de rupia india","turkish lira sign":"signo de lira turca","nordic mark sign":"signo de marco n\xf3rdico","manat sign":"signo de manat","ruble sign":"signo de rublo","yen character":"car\xe1cter de yen","yuan character":"car\xe1cter de yuan","yuan character, in hong kong and taiwan":"car\xe1cter de yuan en Hong Kong y Taiw\xe1n","yen/yuan character variant one":"Variante uno de car\xe1cter de yen/yuan","Emojis":"Emojis","Emojis...":"Emojis...","Loading emojis...":"Cargando emojis...","Could not load emojis":"No se pudieron cargar los emojis","People":"Personas","Animals and Nature":"Animales y naturaleza","Food and Drink":"Comida y bebida","Activity":"Actividad","Travel and Places":"Viajes y lugares","Objects":"Objetos","Flags":"Banderas","Characters":"Caracteres","Characters (no spaces)":"Caracteres (sin espacios)","{0} characters":"{0} caracteres","Error: Form submit field collision.":"Error: Colisi\xf3n de campo al enviar formulario.","Error: No form element found.":"Error: No se encuentra ning\xfan elemento de formulario.","Color swatch":"Muestrario de colores","Color Picker":"Selector de colores","Invalid hex color code: {0}":"Color hexadecimal no v\xe1lido: {0}","Invalid input":"Entrada inv\xe1lida","R":"R","Red component":"Componente rojo","G":"G","Green component":"Componente verde","B":"B","Blue component":"Componente azul","#":"#","Hex color code":"C\xf3digo de color hexadecimal","Range 0 to 255":"Rango de 0 a 255","Turquoise":"Turquesa","Green":"Verde","Blue":"Azul","Purple":"P\xfarpura","Navy Blue":"Azul marino","Dark Turquoise":"Turquesa oscuro","Dark Green":"Verde oscuro","Medium Blue":"Azul medio","Medium Purple":"P\xfarpura medio","Midnight Blue":"Azul medio","Yellow":"Amarillo","Orange":"Naranja","Red":"Rojo","Light Gray":"Gris claro","Gray":"Gris","Dark Yellow":"Amarillo oscuro","Dark Orange":"Naranja oscuro","Dark Red":"Rojo oscuro","Medium Gray":"Gris medio","Dark Gray":"Gris oscuro","Light Green":"Verde claro","Light Yellow":"Amarillo claro","Light Red":"Rojo claro","Light Purple":"Morado claro","Light Blue":"Azul claro","Dark Purple":"Morado oscuro","Dark Blue":"Azul oscuro","Black":"Negro","White":"Blanco","Switch to or from fullscreen mode":"Activar o desactivar modo pantalla completa","Open help dialog":"Abrir di\xe1logo de ayuda","history":"historial","styles":"estilos","formatting":"formato","alignment":"alineaci\xf3n","indentation":"sangr\xeda","Font":"Fuente","Size":"Tama\xf1o","More...":"M\xe1s...","Select...":"Seleccionar...","Preferences":"Preferencias","Yes":"S\xed","No":"No","Keyboard Navigation":"Navegaci\xf3n con el teclado","Version":"Versi\xf3n","Code view":"Vista de c\xf3digo","Open popup menu for split buttons":"Abrir men\xfa emergente para botones de separado","List Properties":"Propiedades de Lista","List properties...":"Propiedades de Lista...","Start list at number":"Iniciar lista con un n\xfamero","Line height":"Altura de l\xednea","Dropped file type is not supported":"No se soporta el archivo arrastrado","Loading...":"Cargando...","ImageProxy HTTP error: Rejected request":"Error HTTP de Image Proxy: petici\xf3n rechazada","ImageProxy HTTP error: Could not find Image Proxy":"Error HTTP de Image Proxy: no se ha podido encontrar Image Proxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"Error HTTP de Image Proxy: la URL de Image Proxy no es correcta","ImageProxy HTTP error: Unknown ImageProxy error":"Error HTTP de Image Proxy: error desconocido de Image Proxy"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("fr_FR",{"Redo":"R\xe9tablir","Undo":"Annuler","Cut":"Couper","Copy":"Copier","Paste":"Coller","Select all":"S\xe9lectionner tout","New document":"Nouveau document","Ok":"OK","Cancel":"Annuler","Visual aids":"Aides visuelles","Bold":"Gras","Italic":"Italique","Underline":"Soulign\xe9","Strikethrough":"Barr\xe9","Superscript":"Exposant","Subscript":"Indice","Clear formatting":"Effacer la mise en forme","Remove":"Retir\xe9","Align left":"Aligner \xe0 gauche","Align center":"Centrer","Align right":"Aligner \xe0 droite","No alignment":"Aucun alignement","Justify":"Justifier","Bullet list":"Liste \xe0 puces","Numbered list":"Liste num\xe9rot\xe9e","Decrease indent":"R\xe9duire le retrait","Increase indent":"Augmenter le retrait","Close":"Fermer","Formats":"Formats","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Votre navigateur ne supporte pas l\u2019acc\xe8s direct au presse-papiers. Merci d'utiliser les raccourcis clavier Ctrl+X/C/V.","Headings":"Titres","Heading 1":"Titre\xa01","Heading 2":"Titre\xa02","Heading 3":"Titre\xa03","Heading 4":"Titre\xa04","Heading 5":"Titre\xa05","Heading 6":"Titre\xa06","Preformatted":"Pr\xe9format\xe9","Div":"Div","Pre":"Pr\xe9format\xe9","Code":"Code","Paragraph":"Paragraphe","Blockquote":"Bloc de citation","Inline":"En ligne","Blocks":"Blocs","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Le collage est maintenant en mode texte brut. Les contenus seront coll\xe9s sans retenir les formatages jusqu'\xe0 ce que vous d\xe9sactivez cette option.","Fonts":"Polices","Font sizes":"Tailles de police","Class":"Classe","Browse for an image":"Rechercher une image","OR":"OU","Drop an image here":"D\xe9poser une image ici","Upload":"T\xe9l\xe9charger","Uploading image":"T\xe9l\xe9versement d'une image","Block":"Bloc","Align":"Aligner","Default":"Par d\xe9faut","Circle":"Cercle","Disc":"Disque","Square":"Carr\xe9","Lower Alpha":"Alphabet en minuscules","Lower Greek":"Alphabet grec en minuscules","Lower Roman":"Chiffre romain inf\xe9rieur","Upper Alpha":"Alphabet en majuscules","Upper Roman":"Chiffre romain sup\xe9rieur","Anchor...":"Ancre...","Anchor":"Ancre","Name":"Nom","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"L'ID doit commencer par une lettre, suivie uniquement par des lettres, num\xe9ros, tirets, points, deux-points et underscores.","You have unsaved changes are you sure you want to navigate away?":"Vous avez des modifications non enregistr\xe9es, \xeates-vous s\xfbr de vouloir quitter la page\xa0?","Restore last draft":"Restaurer le dernier brouillon","Special character...":"Caract\xe8re sp\xe9cial...","Special Character":"Caract\xe8re sp\xe9cial","Source code":"Code source","Insert/Edit code sample":"Ins\xe9rer / modifier un bloc de code","Language":"Langue","Code sample...":"Exemple de code...","Left to right":"De gauche \xe0 droite","Right to left":"De droite \xe0 gauche","Title":"Titre","Fullscreen":"Plein \xe9cran","Action":"Action","Shortcut":"Raccourci","Help":"Aide","Address":"Adresse","Focus to menubar":"Mettre le focus sur la barre de menu","Focus to toolbar":"Mettre le focus sur la barre d'outils","Focus to element path":"Mettre le focus sur le chemin vers l'\xe9l\xe9ment","Focus to contextual toolbar":"Mettre le focus sur la barre d'outils contextuelle","Insert link (if link plugin activated)":"Ins\xe9rer un lien (si le plug-in link est activ\xe9)","Save (if save plugin activated)":"Enregistrer (si le plug-in save est activ\xe9)","Find (if searchreplace plugin activated)":"Rechercher (si le plug-in searchreplace est activ\xe9)","Plugins installed ({0}):":"Plug-ins install\xe9s ({0})\xa0:","Premium plugins:":"Plug-ins premium\xa0:","Learn more...":"En savoir plus...","You are using {0}":"Vous utilisez {0}","Plugins":"Plug-ins","Handy Shortcuts":"Raccourcis utiles","Horizontal line":"Ligne horizontale","Insert/edit image":"Ins\xe9rer/modifier image","Alternative description":"Description alternative","Accessibility":"Accessibilit\xe9","Image is decorative":"L'image est d\xe9corative","Source":"Source","Dimensions":"Dimensions","Constrain proportions":"Limiter les proportions","General":"G\xe9n\xe9ral","Advanced":"Options avanc\xe9es","Style":"Style","Vertical space":"Espace vertical","Horizontal space":"Espace horizontal","Border":"Bordure","Insert image":"Ins\xe9rer une image","Image...":"Image...","Image list":"Liste des images","Resize":"Redimensionner","Insert date/time":"Ins\xe9rer date/heure","Date/time":"Date/heure","Insert/edit link":"Ins\xe9rer/modifier lien","Text to display":"Texte \xe0 afficher","Url":"URL","Open link in...":"Ouvrir le lien dans...","Current window":"Fen\xeatre active","None":"Aucun","New window":"Nouvelle fen\xeatre","Open link":"Ouvrir le lien","Remove link":"Enlever le lien","Anchors":"Ancres","Link...":"Lien...","Paste or type a link":"Coller ou taper un lien","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"L'URL que vous avez saisi semble \xeatre une adresse e-mail. Souhaitez-vous y ajouter le pr\xe9fixe requis mailto:\xa0?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"L'URL que vous avez saisi semble \xeatre un lien externe. Souhaitez-vous y ajouter le pr\xe9fixe requis mailto:\xa0?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"L'URL que vous avez saisie semble \xeatre un lien externe. Voulez-vous ajouter le pr\xe9fixe https:// requis\xa0?","Link list":"Liste des liens","Insert video":"Ins\xe9rer une vid\xe9o","Insert/edit video":"Ins\xe9rer/modifier une vid\xe9o","Insert/edit media":"Ins\xe9rer/modifier un m\xe9dia","Alternative source":"Source alternative","Alternative source URL":"URL de la source alternative","Media poster (Image URL)":"Affiche de m\xe9dia (URL de l'image)","Paste your embed code below:":"Collez votre code incorpor\xe9 ci-dessous :","Embed":"Incorporer","Media...":"M\xe9dia...","Nonbreaking space":"Espace ins\xe9cable","Page break":"Saut de page","Paste as text":"Coller comme texte","Preview":"Aper\xe7u","Print":"Imprimer","Print...":"Imprimer...","Save":"Enregistrer","Find":"Rechercher","Replace with":"Remplacer par","Replace":"Remplacer","Replace all":"Remplacer tout","Previous":"Pr\xe9c\xe9dente","Next":"Suivante","Find and Replace":"Trouver et remplacer","Find and replace...":"Trouver et remplacer...","Could not find the specified string.":"Impossible de trouver la cha\xeene sp\xe9cifi\xe9e.","Match case":"Respecter la casse","Find whole words only":"Mot entier","Find in selection":"Trouver dans la s\xe9lection","Insert table":"Ins\xe9rer un tableau","Table properties":"Propri\xe9t\xe9s du tableau","Delete table":"Supprimer le tableau","Cell":"Cellule","Row":"Ligne","Column":"Colonne","Cell properties":"Propri\xe9t\xe9s de la cellule","Merge cells":"Fusionner les cellules","Split cell":"Diviser la cellule","Insert row before":"Ins\xe9rer une ligne avant","Insert row after":"Ins\xe9rer une ligne apr\xe8s","Delete row":"Supprimer la ligne","Row properties":"Propri\xe9t\xe9s de la ligne","Cut row":"Couper la ligne","Cut column":"Couper la colonne","Copy row":"Copier la ligne","Copy column":"Copier la colonne","Paste row before":"Coller la ligne avant","Paste column before":"Coller la colonne avant","Paste row after":"Coller la ligne apr\xe8s","Paste column after":"Coller la colonne apr\xe8s","Insert column before":"Ins\xe9rer une colonne avant","Insert column after":"Ins\xe9rer une colonne apr\xe8s","Delete column":"Supprimer la colonne","Cols":"Colonnes","Rows":"Lignes","Width":"Largeur","Height":"Hauteur","Cell spacing":"Espacement entre les cellules","Cell padding":"Marge int\xe9rieure des cellules","Row clipboard actions":"Actions du presse-papiers des lignes","Column clipboard actions":"Actions du presse-papiers des colonnes","Table styles":"Style tableau","Cell styles":"Type de cellule","Column header":"En-t\xeate de colonne","Row header":"En-t\xeate de ligne","Table caption":"L\xe9gende de tableau","Caption":"L\xe9gende","Show caption":"Afficher une l\xe9gende","Left":"Gauche","Center":"Centre","Right":"Droite","Cell type":"Type de cellule","Scope":"\xc9tendue","Alignment":"Alignement","Horizontal align":"Alignement horizontal","Vertical align":"Alignement vertical","Top":"En haut","Middle":"Au milieu","Bottom":"En bas","Header cell":"Cellule d'en-t\xeate","Row group":"Groupe de lignes","Column group":"Groupe de colonnes","Row type":"Type de ligne","Header":"En-t\xeate","Body":"Corps","Footer":"Pied de page","Border color":"Couleur de bordure","Solid":"Trait continu","Dotted":"Pointill\xe9","Dashed":"Tirets","Double":"Deux traits continus","Groove":"Sculpt\xe9","Ridge":"Extrud\xe9","Inset":"Incrust\xe9","Outset":"Relief","Hidden":"Masqu\xe9","Insert template...":"Ins\xe9rer un mod\xe8le...","Templates":"Mod\xe8les","Template":"Mod\xe8le","Insert Template":"Ins\xe9rer le mod\xe8le","Text color":"Couleur du texte","Background color":"Couleur d'arri\xe8re-plan","Custom...":"Personnalis\xe9e...","Custom color":"Couleur personnalis\xe9e","No color":"Aucune couleur","Remove color":"Supprimer la couleur","Show blocks":"Afficher les blocs","Show invisible characters":"Afficher les caract\xe8res invisibles","Word count":"Nombre de mots","Count":"Total","Document":"Document","Selection":"S\xe9lection","Words":"Mots","Words: {0}":"Mots\xa0: {0}","{0} words":"{0} mots","File":"Fichier","Edit":"Modifier","Insert":"Ins\xe9rer","View":"Afficher","Format":"Format","Table":"Tableau","Tools":"Outils","Powered by {0}":"Avec {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Zone de Texte Riche. Appuyez sur ALT-F9 pour le menu. Appuyez sur ALT-F10 pour la barre d'outils. Appuyez sur ALT-0 pour l'aide","Image title":"Titre d'image","Border width":"\xc9paisseur de la bordure","Border style":"Style de la bordure","Error":"Erreur","Warn":"Avertir","Valid":"Valide","To open the popup, press Shift+Enter":"Pour ouvrir la popup, appuyez sur Maj+Entr\xe9e","Rich Text Area":"Zone de Texte Riche","Rich Text Area. Press ALT-0 for help.":"Zone de Texte Riche. Appuyez sur ALT-0 pour l'aide.","System Font":"Police syst\xe8me","Failed to upload image: {0}":"\xc9chec d'envoi de l'image\xa0: {0}","Failed to load plugin: {0} from url {1}":"\xc9chec de chargement du plug-in\xa0: {0} \xe0 partir de l\u2019URL {1}","Failed to load plugin url: {0}":"\xc9chec de chargement de l'URL du plug-in\xa0: {0}","Failed to initialize plugin: {0}":"\xc9chec d'initialisation du plug-in\xa0: {0}","example":"exemple","Search":"Rechercher","All":"Tout","Currency":"Devise","Text":"Texte","Quotations":"Citations","Mathematical":"Op\xe9rateurs math\xe9matiques","Extended Latin":"Latin \xe9tendu","Symbols":"Symboles","Arrows":"Fl\xe8ches","User Defined":"D\xe9fini par l'utilisateur","dollar sign":"Symbole dollar","currency sign":"Symbole devise","euro-currency sign":"Symbole euro","colon sign":"Symbole col\xf3n","cruzeiro sign":"Symbole cruzeiro","french franc sign":"Symbole franc fran\xe7ais","lira sign":"Symbole lire","mill sign":"Symbole milli\xe8me","naira sign":"Symbole naira","peseta sign":"Symbole peseta","rupee sign":"Symbole roupie","won sign":"Symbole won","new sheqel sign":"Symbole nouveau ch\xe9kel","dong sign":"Symbole dong","kip sign":"Symbole kip","tugrik sign":"Symbole tougrik","drachma sign":"Symbole drachme","german penny symbol":"Symbole pfennig","peso sign":"Symbole peso","guarani sign":"Symbole guarani","austral sign":"Symbole austral","hryvnia sign":"Symbole hryvnia","cedi sign":"Symbole cedi","livre tournois sign":"Symbole livre tournois","spesmilo sign":"Symbole spesmilo","tenge sign":"Symbole tenge","indian rupee sign":"Symbole roupie indienne","turkish lira sign":"Symbole lire turque","nordic mark sign":"Symbole du mark nordique","manat sign":"Symbole manat","ruble sign":"Symbole rouble","yen character":"Sinogramme Yen","yuan character":"Sinogramme Yuan","yuan character, in hong kong and taiwan":"Sinogramme Yuan, Hong Kong et Taiwan","yen/yuan character variant one":"Sinogramme Yen/Yuan, premi\xe8re variante","Emojis":"\xc9mojis","Emojis...":"\xc9mojis...","Loading emojis...":"Chargement des emojis...","Could not load emojis":"Impossible de charger les emojis","People":"Personnes","Animals and Nature":"Animaux & nature","Food and Drink":"Nourriture & boissons","Activity":"Activit\xe9","Travel and Places":"Voyages & lieux","Objects":"Objets","Flags":"Drapeaux","Characters":"Caract\xe8res","Characters (no spaces)":"Caract\xe8res (espaces non compris)","{0} characters":"{0}\xa0caract\xe8res","Error: Form submit field collision.":"Erreur\xa0: conflit de champs lors de la soumission du formulaire.","Error: No form element found.":"Erreur : aucun \xe9l\xe9ment de formulaire trouv\xe9.","Color swatch":"\xc9chantillon de couleurs","Color Picker":"S\xe9lecteur de couleurs","Invalid hex color code: {0}":"Code couleur hexad\xe9cimal invalide : {0}","Invalid input":"Entr\xe9e invalide","R":"R","Red component":"Composant rouge","G":"V","Green component":"Composant vert","B":"B","Blue component":"Composant bleu","#":"#","Hex color code":"Code couleur hexad\xe9cimal","Range 0 to 255":"Plage de 0 \xe0 255","Turquoise":"Turquoise","Green":"Vert","Blue":"Bleu","Purple":"Violet","Navy Blue":"Bleu marine","Dark Turquoise":"Turquoise fonc\xe9","Dark Green":"Vert fonc\xe9","Medium Blue":"Bleu moyen","Medium Purple":"Violet moyen","Midnight Blue":"Bleu de minuit","Yellow":"Jaune","Orange":"Orange","Red":"Rouge","Light Gray":"Gris clair","Gray":"Gris","Dark Yellow":"Jaune fonc\xe9","Dark Orange":"Orange fonc\xe9","Dark Red":"Rouge fonc\xe9","Medium Gray":"Gris moyen","Dark Gray":"Gris fonc\xe9","Light Green":"Vert clair","Light Yellow":"Jaune clair","Light Red":"Rouge clair","Light Purple":"Violet clair","Light Blue":"Bleu clair","Dark Purple":"Violet fonc\xe9","Dark Blue":"Bleu fonc\xe9","Black":"Noir","White":"Blanc","Switch to or from fullscreen mode":"Passer en ou quitter le mode plein \xe9cran","Open help dialog":"Ouvrir la bo\xeete de dialogue d'aide","history":"historique","styles":"styles","formatting":"mise en forme","alignment":"alignement","indentation":"retrait","Font":"Police","Size":"Taille","More...":"Plus...","Select...":"S\xe9lectionner...","Preferences":"Pr\xe9f\xe9rences","Yes":"Oui","No":"Non","Keyboard Navigation":"Navigation au clavier","Version":"Version","Code view":"Affichage du code","Open popup menu for split buttons":"Ouvrir le menu contextuel pour les boutons partag\xe9s","List Properties":"Propri\xe9t\xe9s de la liste","List properties...":"Lister les propri\xe9t\xe9s...","Start list at number":"Liste de d\xe9part au num\xe9ro","Line height":"Hauteur de la ligne","Dropped file type is not supported":"Le type de fichier d\xe9pos\xe9 n'est pas pris en charge","Loading...":"Chargement...","ImageProxy HTTP error: Rejected request":"Erreur HTTP d'ImageProxy : Requ\xeate rejet\xe9e","ImageProxy HTTP error: Could not find Image Proxy":"Erreur HTTP d'ImageProxy : Impossible de trouver ImageProxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"Erreur HTTP d'ImageProxy : URL de ImageProxy incorrecte","ImageProxy HTTP error: Unknown ImageProxy error":"Erreur HTTP d'ImageProxy : Erreur ImageProxy inconnue"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("hi",{"Redo":"\u0906\u0917\u0947","Undo":"\u092a\u0940\u091b\u0947","Cut":"\u0915\u093e\u091f\u0947\u0902","Copy":"\u092a\u094d\u0930\u0924\u093f \u0915\u0930\u0947\u0902","Paste":"\u091a\u093f\u092a\u0915\u093e\u090f\u0901","Select all":"\u0938\u092d\u0940 \u091a\u0941\u0928\u0947\u0902","New document":"\u0928\u092f\u093e \u0926\u0938\u094d\u0924\u093e\u0935\u0947\u091c\u093c","Ok":"\u0920\u0940\u0915 \u0939\u0948","Cancel":"\u0930\u0926\u094d\u0926","Visual aids":"\u0926\u0943\u0936\u094d\u092f \u0938\u093e\u0927\u0928","Bold":"\u092e\u094b\u091f\u093e","Italic":"\u091f\u0947\u095c\u093e","Underline":"\u0905\u0927\u094b\u0930\u0947\u0916\u093e\u0902\u0915\u0928","Strikethrough":"\u092e\u0927\u094d\u092f \u0938\u0947 \u0915\u093e\u091f\u0947\u0902","Superscript":"\u0909\u092a\u0930\u093f\u0932\u093f\u0916\u093f\u0924","Subscript":"\u0928\u093f\u091a\u0932\u0940\u0932\u093f\u0916\u093f\u0924","Clear formatting":"\u092a\u094d\u0930\u093e\u0930\u0942\u092a\u0923 \u0939\u091f\u093e\u090f\u0901","Remove":"\u0939\u091f\u093e\u0928\u093e","Align left":"\u092c\u093e\u090f\u0901 \u0938\u0902\u0930\u0947\u0916\u0923","Align center":"\u092e\u0927\u094d\u092f \u0938\u0902\u0930\u0947\u0916\u0923","Align right":"\u0926\u093e\u090f\u0901 \u0938\u0902\u0930\u0947\u0916\u0923","No alignment":"","Justify":"\u0938\u092e\u0915\u0930\u0923","Bullet list":"\u0917\u094b\u0932\u0940 \u0938\u0942\u091a\u0940","Numbered list":"\u0915\u094d\u0930\u092e\u093e\u0902\u0915\u093f\u0924 \u0938\u0942\u091a\u0940","Decrease indent":"\u0916\u0930\u094b\u091c \u0915\u092e \u0915\u0930\u0947\u0902","Increase indent":"\u0916\u0930\u094b\u091c \u092c\u095d\u093e\u090f\u0901","Close":"\u092c\u0902\u0926","Formats":"\u092a\u094d\u0930\u093e\u0930\u0942\u092a","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"\u0906\u092a\u0915\u093e \u091c\u093e\u0932 \u0935\u093f\u091a\u093e\u0930\u0915 \u0938\u0940\u0927\u0947 \u0938\u092e\u0930\u094d\u0925\u0928 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u0943\u092a\u092f\u093e \u0915\u0941\u0902\u091c\u0940\u092a\u091f\u0932 \u0915\u0947 \u0926\u094d\u0935\u093e\u0930\u093e Ctrl+X/C/V \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902\u0964","Headings":"\u0936\u0940\u0930\u094d\u0937\u0915","Heading 1":"\u0936\u0940\u0930\u094d\u0937\u0915 1","Heading 2":"\u0936\u0940\u0930\u094d\u0937\u0915 2","Heading 3":"\u0936\u0940\u0930\u094d\u0937\u0915 3","Heading 4":"\u0936\u0940\u0930\u094d\u0937\u0915 4","Heading 5":"\u0936\u0940\u0930\u094d\u0937\u0915 5","Heading 6":"\u0936\u0940\u0930\u094d\u0937\u0915 6","Preformatted":"\u092a\u0942\u0930\u094d\u0935\u0938\u094d\u0935\u0930\u0942\u092a\u093f\u0924","Div":"\u0921\u093f\u0935","Pre":"\u092a\u0942\u0930\u094d\u0935","Code":"\u0938\u0902\u0915\u0947\u0924\u0932\u093f\u092a\u093f","Paragraph":"\u0905\u0928\u0941\u091a\u094d\u091b\u0947\u0926","Blockquote":"\u0916\u0902\u0921-\u0909\u0926\u094d\u0927\u0930\u0923","Inline":"\u0930\u0947\u0916\u093e \u092e\u0947\u0902","Blocks":"\u0916\u0902\u0921","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"\u091a\u093f\u092a\u0915\u093e\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u0915\u093e\u0930 \u0905\u092d\u0940 \u0938\u093e\u0926\u093e \u092a\u093e\u0920\u094d\u092f \u0939\u0948\u0964 \u0938\u093e\u092e\u0917\u094d\u0930\u0940 \u091a\u093f\u092a\u0915\u093e\u0928\u0947 \u092a\u0930 \u0935\u0939 \u0938\u093e\u0926\u0947 \u092a\u093e\u0920\u094d\u092f \u092e\u0947\u0902 \u0930\u0939\u0917\u0940 \u091c\u092c \u0924\u0915 \u0906\u092a \u0907\u0938 \u0935\u093f\u0915\u0932\u094d\u092a \u0915\u094b \u092c\u0902\u0926 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0926\u0947\u0924\u0947\u0964","Fonts":"\u092b\u094b\u0902\u091f\u094d\u0938","Font sizes":"","Class":"\u0915\u0915\u094d\u0937\u093e","Browse for an image":"\u090f\u0915 \u091b\u0935\u093f \u092c\u094d\u0930\u093e\u0909\u091c\u093c \u0915\u0930\u0947\u0902","OR":"\u092f\u093e","Drop an image here":"\u092f\u0939\u093e\u0902 \u090f\u0915 \u091b\u0935\u093f \u091b\u094b\u0921\u093c\u0947\u0902","Upload":"\u0905\u092a\u0932\u094b\u0921","Uploading image":"","Block":"\u0916\u0902\u0921","Align":"\u0938\u0902\u0930\u0947\u0916\u093f\u0924","Default":"\u092a\u0939\u0932\u0947 \u0938\u0947 \u091a\u0941\u0928\u093e \u0939\u0941\u0906","Circle":"\u0935\u0943\u0924\u094d\u0924","Disc":"\u092c\u093f\u0902\u092c","Square":"\u0935\u0930\u094d\u0917","Lower Alpha":"\u0928\u093f\u092e\u094d\u0928 \u0905\u0932\u094d\u092b\u093e","Lower Greek":"\u0928\u093f\u092e\u094d\u0928 \u0917\u094d\u0930\u0940\u0915","Lower Roman":"\u0928\u093f\u092e\u094d\u0928 \u0930\u094b\u092e\u0928","Upper Alpha":"\u0909\u091a\u094d\u091a \u0905\u0932\u094d\u092b\u093e","Upper Roman":"\u0909\u091a\u094d\u091a \u0930\u094b\u092e\u0928","Anchor...":"\u0932\u0902\u0917\u0930","Anchor":"","Name":"\u0928\u093e\u092e","ID":"","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"","You have unsaved changes are you sure you want to navigate away?":"\u0906\u092a\u0915\u0947 \u0915\u0941\u091b \u0905\u0938\u0939\u0947\u091c\u0947 \u092c\u0926\u0932\u093e\u0935 \u0939\u0948\u0902, \u0915\u094d\u092f\u093e \u0906\u092a \u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0930\u0942\u092a \u0938\u0947 \u092f\u0939\u093e\u0901 \u0938\u0947 \u091c\u093e\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u094b?","Restore last draft":"\u0906\u0916\u093f\u0930\u0940 \u092e\u0938\u094c\u0926\u093e \u092a\u0941\u0928\u0930\u094d\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902","Special character...":"\u0935\u093f\u0936\u0947\u0937 \u0935\u0930\u094d\u0923","Special Character":"","Source code":"\u0938\u094d\u0924\u094d\u0930\u094b\u0924 \u0938\u0902\u0915\u0947\u0924\u0932\u093f\u092a\u093f","Insert/Edit code sample":"\u0915\u094b\u0921 \u0928\u092e\u0942\u0928\u093e \u0921\u093e\u0932\u0947\u0902/\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902","Language":"\u092d\u093e\u0937\u093e","Code sample...":"\u0915\u094b\u0921 \u0928\u092e\u0942\u0928\u093e","Left to right":"\u092c\u093e\u090f\u0901 \u0938\u0947 \u0926\u093e\u090f\u0901","Right to left":"\u0926\u093e\u090f\u0901 \u0938\u0947 \u092c\u093e\u090f\u0901","Title":"\u0936\u0940\u0930\u094d\u0937\u0915","Fullscreen":"\u092a\u0942\u0930\u094d\u0923 \u0938\u094d\u0915\u094d\u0930\u0940\u0928","Action":"\u0915\u093e\u0930\u094d\u092f","Shortcut":"\u091b\u094b\u091f\u093e \u0930\u093e\u0938\u094d\u0924\u093e","Help":"\u092e\u0926\u0926","Address":"\u092a\u0924\u093e","Focus to menubar":"\u092e\u0947\u0928\u0942\u092c\u093e\u0930 \u092a\u0930 \u0927\u094d\u092f\u093e\u0928 \u0926\u0947\u0902","Focus to toolbar":"\u091f\u0942\u0932\u092c\u093e\u0930 \u092a\u0930 \u0927\u094d\u092f\u093e\u0928 \u0926\u0947\u0902","Focus to element path":"\u0924\u0924\u094d\u0935 \u092a\u0925 \u092a\u0930 \u0927\u094d\u092f\u093e\u0928 \u0926\u0947\u0902","Focus to contextual toolbar":"\u092a\u094d\u0930\u093e\u0938\u0902\u0917\u093f\u0915 \u091f\u0942\u0932\u092c\u093e\u0930 \u092a\u0930 \u0927\u094d\u092f\u093e\u0928 \u0926\u0947\u0902","Insert link (if link plugin activated)":"\u0932\u093f\u0902\u0915 \u0921\u093e\u0932\u0947\u0902 (\u092f\u0926\u093f \u0932\u093f\u0902\u0915 \u092a\u094d\u0932\u0917\u0907\u0928 \u0938\u0915\u094d\u0930\u093f\u092f \u0939\u0948)","Save (if save plugin activated)":"\u0938\u0939\u0947\u091c\u0947\u0902 (\u092f\u0926\u093f \u0938\u0939\u0947\u091c\u0947\u0902 \u092a\u094d\u0932\u0917\u0907\u0928 \u0938\u0915\u094d\u0930\u093f\u092f \u0939\u0948)","Find (if searchreplace plugin activated)":"\u0916\u094b\u091c\u0947\u0902 (\u092f\u0926\u093f \u0916\u094b\u091c \u0938\u0915\u094d\u0930\u093f\u092f \u092a\u094d\u0932\u0917\u0907\u0928 \u0915\u094b \u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0924\u0940 \u0939\u0948)","Plugins installed ({0}):":"\u092a\u094d\u0932\u0917\u0907\u0928\u094d\u0938 \u0938\u094d\u0925\u093e\u092a\u093f\u0924 ({0}):","Premium plugins:":"\u092a\u094d\u0930\u0940\u092e\u093f\u092f\u092e \u092a\u094d\u0932\u0917\u0907\u0928\u094d\u0938:","Learn more...":"\u0914\u0930 \u0905\u0927\u093f\u0915 \u091c\u093e\u0928\u0947\u0902...","You are using {0}":"\u0906\u092a {0} \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902","Plugins":"\u092a\u094d\u0932\u0917-\u0907\u0928","Handy Shortcuts":"\u0906\u0938\u093e\u0928 \u0936\u0949\u0930\u094d\u091f\u0915\u091f","Horizontal line":"\u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0930\u0947\u0916\u093e","Insert/edit image":"\u091b\u0935\u093f \u0921\u093e\u0932\u0947\u0902/\u0938\u092e\u094d\u092a\u093e\u0926\u0928 \u0915\u0930\u0947\u0902","Alternative description":"\u0935\u0948\u0915\u0932\u094d\u092a\u093f\u0915 \u0935\u093f\u0935\u0930\u0923","Accessibility":"\u0938\u0930\u0932 \u0909\u092a\u092f\u094b\u0917","Image is decorative":"\u091b\u0935\u093f \u0938\u091c\u093e\u0935\u091f\u0940 \u0939\u0948","Source":"\u0938\u094d\u0924\u094d\u0930\u094b\u0924","Dimensions":"\u0906\u092f\u093e\u092e","Constrain proportions":"\u0905\u0928\u0941\u092a\u093e\u0924 \u0935\u093f\u0935\u0936","General":"\u0938\u093e\u092e\u093e\u0928\u094d\u092f","Advanced":"\u0909\u0928\u094d\u0928\u0924","Style":"\u0936\u0948\u0932\u0940","Vertical space":"\u090a\u0930\u094d\u0927\u094d\u0935\u093e\u0927\u0930 \u0938\u094d\u0925\u093e\u0928","Horizontal space":"\u0915\u094d\u0937\u0948\u0924\u093f\u091c \u0938\u094d\u0925\u093e\u0928","Border":"\u0938\u0940\u092e\u093e","Insert image":"\u091b\u0935\u093f \u0921\u093e\u0932\u0947\u0902","Image...":"\u091b\u0935\u093f...","Image list":"\u091b\u0935\u093f \u0938\u0942\u091a\u0940","Resize":"\u0906\u0915\u093e\u0930 \u092c\u0926\u0932\u0947\u0902","Insert date/time":"\u0926\u093f\u0928\u093e\u0902\u0915/\u0938\u092e\u092f \u0921\u093e\u0932\u0947\u0902","Date/time":"\u0926\u093f\u0928\u093e\u0902\u0915 \u0914\u0930 \u0938\u092e\u092f","Insert/edit link":"\u0915\u095c\u0940 \u0921\u093e\u0932\u0947\u0902/\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902","Text to display":"\u0926\u093f\u0916\u093e\u0928\u0947 \u0939\u0947\u0924\u0941 \u092a\u093e\u0920\u094d\u092f","Url":"\u091c\u093e\u0932\u0938\u094d\u0925\u0932 \u092a\u0924\u093e","Open link in...":"\u092e\u0947\u0902 \u0932\u093f\u0902\u0915 \u0916\u094b\u0932\u0947\u0902...","Current window":"\u0935\u0930\u094d\u0924\u092e\u093e\u0928 \u0916\u093f\u0921\u093c\u0915\u0940","None":"\u0915\u094b\u0908 \u0928\u0939\u0940\u0902","New window":"\u0928\u0908 \u0916\u093f\u095c\u0915\u0940","Open link":"\u0916\u0941\u0932\u0940 \u0932\u093f\u0902\u0915","Remove link":"\u0915\u095c\u0940 \u0939\u091f\u093e\u090f\u0901","Anchors":"\u0932\u0902\u0917\u0930","Link...":"\u0938\u0902\u092a\u0930\u094d\u0915...","Paste or type a link":"\u0932\u093f\u0902\u0915 \u092a\u0947\u0938\u094d\u091f \u0915\u0930\u0947\u0902 \u092f\u093e \u091f\u093e\u0907\u092a \u0915\u0930\u0947\u0902","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"\u0906\u092a\u0928\u0947 \u091c\u094b \u0915\u095c\u0940 \u0921\u093e\u0932\u0940 \u0939\u0948 \u0935\u0939 \u0908\u092e\u0947\u0932 \u092a\u0924\u093e \u0915\u0947 \u091c\u0948\u0938\u0947 \u0926\u093f\u0916 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u094d\u092f\u093e \u0906\u092a mailto: \u092a\u0939\u0932\u0947 \u091c\u094b\u095c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"\u0906\u092a\u0928\u0947 \u091c\u094b \u0915\u095c\u0940 \u0921\u093e\u0932\u0940 \u0939\u0948 \u0935\u0939 \u092c\u093e\u0939\u0930\u0940 \u0915\u095c\u0940 \u0915\u0947 \u091c\u0948\u0938\u0947 \u0926\u093f\u0916 \u0930\u0939\u093e \u0939\u0948\u0964 \u0915\u094d\u092f\u093e \u0906\u092a http:// \u092a\u0939\u0932\u0947 \u091c\u094b\u095c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"\u0906\u092a\u0915\u0947 \u0926\u094d\u0935\u093e\u0930\u093e \u0926\u0930\u094d\u091c \u0915\u093f\u092f\u093e \u0917\u092f\u093e URL \u090f\u0915 \u092c\u093e\u0939\u0930\u0940 \u0932\u093f\u0902\u0915 \u092a\u094d\u0930\u0924\u0940\u0924 \u0939\u094b\u0924\u093e \u0939\u0948\u0964 \u0915\u094d\u092f\u093e \u0906\u092a \u0906\u0935\u0936\u094d\u092f\u0915 https:// \u0909\u092a\u0938\u0930\u094d\u0917 \u091c\u094b\u0921\u093c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948\u0902?","Link list":"\u0932\u093f\u0902\u0915 \u0938\u0942\u091a\u0940","Insert video":"\u091a\u0932\u091a\u093f\u0924\u094d\u0930 \u0921\u093e\u0932\u0947\u0902","Insert/edit video":"\u091a\u0932\u091a\u093f\u0924\u094d\u0930 \u0921\u093e\u0932\u0947\u0902/\u0938\u092e\u094d\u092a\u093e\u0926\u0928 \u0915\u0930\u0947\u0902","Insert/edit media":"","Alternative source":"\u0935\u0948\u0915\u0932\u094d\u092a\u093f\u0915 \u0938\u094d\u0930\u094b\u0924","Alternative source URL":"","Media poster (Image URL)":"","Paste your embed code below:":"\u0926\u093f\u0916\u093e\u0928\u0947 \u0935\u093e\u0932\u0947 \u0938\u0902\u0915\u0947\u0924 \u0915\u094b \u0928\u0940\u091a\u0947 \u0921\u093e\u0932\u0947\u0902:","Embed":"\u0926\u093f\u0916\u093e\u0928\u093e","Media...":"","Nonbreaking space":"\u0905\u0935\u093f\u0930\u093e\u092e\u093f\u0924 \u091c\u0917\u0939","Page break":"\u092a\u0943\u0937\u094d\u0920 \u0935\u093f\u0930\u093e\u092e","Paste as text":"\u092a\u093e\u0920\u094d\u092f \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u091a\u093f\u092a\u0915\u093e\u090f\u0901","Preview":"\u092a\u0942\u0930\u094d\u0935\u093e\u0935\u0932\u094b\u0915\u0928","Print":"","Print...":"","Save":"\u0938\u0939\u0947\u091c\u0947\u0902","Find":"\u0916\u094b\u091c","Replace with":"\u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902","Replace":"\u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u0928","Replace all":"\u0938\u092d\u0940 \u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902","Previous":"","Next":"\u0905\u0917\u0932\u093e","Find and Replace":"","Find and replace...":"","Could not find the specified string.":"\u0928\u093f\u0930\u094d\u0926\u093f\u0937\u094d\u091f \u092a\u0902\u0915\u094d\u0924\u093f \u0928\u0939\u0940\u0902 \u092e\u093f\u0932 \u0938\u0915\u093e\u0964","Match case":"\u092e\u093e\u092e\u0932\u0947 \u092e\u093f\u0932\u093e\u090f\u0901","Find whole words only":"","Find in selection":"","Insert table":"\u0924\u093e\u0932\u093f\u0915\u093e \u0921\u093e\u0932\u0947\u0902","Table properties":"\u0924\u093e\u0932\u093f\u0915\u093e \u0915\u0947 \u0917\u0941\u0923","Delete table":"\u0924\u093e\u0932\u093f\u0915\u093e \u0939\u091f\u093e\u090f\u0901","Cell":"\u0915\u094b\u0936\u093f\u0915\u093e","Row":"\u092a\u0902\u0915\u094d\u0924\u093f","Column":"\u0938\u094d\u0924\u0902\u092d","Cell properties":"\u0915\u094b\u0936\u093f\u0915\u093e \u0917\u0941\u0923","Merge cells":"\u0916\u093e\u0928\u094b\u0902 \u0915\u094b \u092e\u093f\u0932\u093e\u090f\u0902","Split cell":"\u0916\u093e\u0928\u0947\u0902 \u0935\u093f\u092d\u093e\u091c\u093f\u0924 \u0915\u0930\u0947\u0902","Insert row before":"\u092a\u0939\u0932\u0947 \u092a\u0902\u0915\u094d\u0924\u093f \u0921\u093e\u0932\u0947\u0902","Insert row after":"\u092c\u093e\u0926 \u092a\u0902\u0915\u094d\u0924\u093f \u0921\u093e\u0932\u0947\u0902","Delete row":"\u092a\u0902\u0915\u094d\u0924\u093f \u0939\u091f\u093e\u090f\u0902","Row properties":"\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0947 \u0917\u0941\u0923","Cut row":"\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u093e\u091f\u0947\u0902","Cut column":"","Copy row":"\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0940 \u092a\u094d\u0930\u0924\u093f\u0932\u093f\u092a\u093f \u0932\u0947\u0902","Copy column":"","Paste row before":"\u092a\u0902\u0915\u094d\u0924\u093f \u0938\u0947 \u092a\u0939\u0932\u0947 \u091a\u093f\u092a\u0915\u093e\u090f\u0901","Paste column before":"","Paste row after":"\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0947 \u092c\u093e\u0926 \u091a\u093f\u092a\u0915\u093e\u090f\u0901","Paste column after":"","Insert column before":"\u092a\u0939\u0932\u0947 \u0938\u094d\u0924\u0902\u092d \u0921\u093e\u0932\u0947\u0902","Insert column after":"\u092c\u093e\u0926 \u0938\u094d\u0924\u0902\u092d \u0921\u093e\u0932\u0947\u0902","Delete column":"\u0938\u094d\u0924\u0902\u092d \u0939\u091f\u093e\u090f\u0901","Cols":"\u0938\u094d\u0924\u0902\u092d","Rows":"\u092a\u0902\u0915\u094d\u0924\u093f\u092f\u093e\u0901","Width":"\u091a\u094c\u0921\u093c\u093e\u0908","Height":"\u090a\u0901\u091a\u093e\u0908","Cell spacing":"\u0916\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u0930\u093f\u0915\u094d\u0924\u093f","Cell padding":"\u0916\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u0926\u0942\u0930\u0940","Row clipboard actions":"","Column clipboard actions":"","Table styles":"","Cell styles":"","Column header":"","Row header":"","Table caption":"","Caption":"\u0905\u0928\u0941\u0936\u0940\u0930\u094d\u0937\u0915","Show caption":"","Left":"\u092c\u093e\u092f\u093e\u0901","Center":"\u092e\u0927\u094d\u092f","Right":"\u0926\u093e\u092f\u093e\u0901","Cell type":"\u0916\u093e\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u0915\u093e\u0930","Scope":"\u0915\u094d\u0937\u0947\u0924\u094d\u0930","Alignment":"\u0938\u0902\u0930\u0947\u0916\u0923","Horizontal align":"","Vertical align":"","Top":"\u0936\u0940\u0930\u094d\u0937","Middle":"\u092e\u0927\u094d\u092f","Bottom":"\u0928\u0940\u091a\u0947","Header cell":"\u0936\u0940\u0930\u094d\u0937 \u0916\u093e\u0928\u093e","Row group":"\u092a\u0902\u0915\u094d\u0924\u093f \u0938\u092e\u0942\u0939","Column group":"\u0938\u094d\u0924\u0902\u092d \u0938\u092e\u0942\u0939","Row type":"\u092a\u0902\u0915\u094d\u0924\u093f \u092a\u094d\u0930\u0915\u093e\u0930","Header":"\u0936\u0940\u0930\u094d\u0937\u0915","Body":"\u0936\u0930\u0940\u0930","Footer":"\u092a\u093e\u0926 \u0932\u0947\u0916","Border color":"\u0938\u0940\u092e\u093e \u0930\u0902\u0917","Solid":"","Dotted":"","Dashed":"","Double":"","Groove":"","Ridge":"","Inset":"","Outset":"","Hidden":"","Insert template...":"","Templates":"\u0938\u093e\u0901\u091a\u0947","Template":"","Insert Template":"","Text color":"\u092a\u093e\u0920\u094d\u092f \u0930\u0902\u0917","Background color":"\u092a\u0943\u0937\u094d\u0920\u092d\u0942\u092e\u093f \u0915\u093e \u0930\u0902\u0917","Custom...":"\u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924...","Custom color":"\u0905\u0928\u0941\u0915\u0942\u0932\u093f\u0924 \u0930\u0902\u0917","No color":"\u0930\u0902\u0917\u0939\u0940\u0928","Remove color":"","Show blocks":"\u0921\u092c\u094d\u092c\u0947 \u0926\u093f\u0916\u093e\u090f\u0901","Show invisible characters":"\u0905\u0926\u0943\u0936\u094d\u092f \u0905\u0915\u094d\u0937\u0930\u094b\u0902 \u0915\u094b \u0926\u093f\u0916\u093e\u090f\u0901","Word count":"","Count":"","Document":"","Selection":"","Words":"","Words: {0}":"\u0936\u092c\u094d\u0926: {0}","{0} words":"","File":"\u0928\u0924\u094d\u0925\u0940","Edit":"\u0938\u092e\u094d\u092a\u093e\u0926\u0928","Insert":"\u0921\u093e\u0932\u0947\u0902","View":"\u0926\u0947\u0916\u0947\u0902","Format":"\u092a\u094d\u0930\u093e\u0930\u0942\u092a","Table":"\u0924\u093e\u0932\u093f\u0915\u093e","Tools":"\u0909\u092a\u0915\u0930\u0923","Powered by {0}":"","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\u0938\u0902\u092a\u0928\u094d\u0928 \u092a\u093e\u0920 \u0915\u094d\u0937\u0947\u0924\u094d\u0930\u0964 \u092e\u0947\u0928\u0942 \u0915\u0947 \u0932\u093f\u090f ALT-F9 \u0926\u092c\u093e\u090f\u0901\u0964 \u0909\u092a\u0915\u0930\u0923 \u092a\u091f\u094d\u091f\u0940 \u0915\u0947 \u0932\u093f\u090f ALT-F10 \u0926\u092c\u093e\u090f\u0901\u0964 \u0938\u0939\u093e\u092f\u0924\u093e \u0915\u0947 \u0932\u093f\u090f ALT-0 \u0926\u092c\u093e\u090f\u0901\u0964","Image title":"","Border width":"","Border style":"","Error":"","Warn":"","Valid":"","To open the popup, press Shift+Enter":"","Rich Text Area":"","Rich Text Area. Press ALT-0 for help.":"","System Font":"","Failed to upload image: {0}":"","Failed to load plugin: {0} from url {1}":"","Failed to load plugin url: {0}":"","Failed to initialize plugin: {0}":"","example":"","Search":"","All":"","Currency":"","Text":"","Quotations":"","Mathematical":"","Extended Latin":"","Symbols":"","Arrows":"","User Defined":"","dollar sign":"","currency sign":"","euro-currency sign":"","colon sign":"","cruzeiro sign":"","french franc sign":"","lira sign":"","mill sign":"","naira sign":"","peseta sign":"","rupee sign":"","won sign":"","new sheqel sign":"","dong sign":"","kip sign":"","tugrik sign":"","drachma sign":"","german penny symbol":"","peso sign":"","guarani sign":"","austral sign":"","hryvnia sign":"","cedi sign":"","livre tournois sign":"","spesmilo sign":"","tenge sign":"","indian rupee sign":"","turkish lira sign":"","nordic mark sign":"","manat sign":"","ruble sign":"","yen character":"","yuan character":"","yuan character, in hong kong and taiwan":"","yen/yuan character variant one":"","Emojis":"","Emojis...":"","Loading emojis...":"","Could not load emojis":"","People":"","Animals and Nature":"","Food and Drink":"","Activity":"","Travel and Places":"","Objects":"","Flags":"","Characters":"","Characters (no spaces)":"","{0} characters":"","Error: Form submit field collision.":"","Error: No form element found.":"","Color swatch":"","Color Picker":"\u0930\u0902\u0917 \u091a\u092f\u0928\u0915\u0930\u094d\u0924\u093e","Invalid hex color code: {0}":"","Invalid input":"","R":"\u0906\u0930","Red component":"","G":"\u091c\u0940","Green component":"","B":"\u092c\u0940","Blue component":"","#":"","Hex color code":"","Range 0 to 255":"","Turquoise":"","Green":"","Blue":"","Purple":"","Navy Blue":"","Dark Turquoise":"","Dark Green":"","Medium Blue":"","Medium Purple":"","Midnight Blue":"","Yellow":"","Orange":"","Red":"","Light Gray":"","Gray":"","Dark Yellow":"","Dark Orange":"","Dark Red":"","Medium Gray":"","Dark Gray":"","Light Green":"","Light Yellow":"","Light Red":"","Light Purple":"","Light Blue":"","Dark Purple":"","Dark Blue":"","Black":"","White":"","Switch to or from fullscreen mode":"","Open help dialog":"","history":"","styles":"","formatting":"","alignment":"","indentation":"","Font":"","Size":"","More...":"","Select...":"","Preferences":"","Yes":"","No":"","Keyboard Navigation":"","Version":"","Code view":"","Open popup menu for split buttons":"","List Properties":"","List properties...":"","Start list at number":"","Line height":"","Dropped file type is not supported":"","Loading...":"","ImageProxy HTTP error: Rejected request":"","ImageProxy HTTP error: Could not find Image Proxy":"","ImageProxy HTTP error: Incorrect Image Proxy URL":"","ImageProxy HTTP error: Unknown ImageProxy error":""});
@@ -1 +0,0 @@
1
- tinymce.addI18n("it",{"Redo":"Ripristina","Undo":"Annulla","Cut":"Taglia","Copy":"Copia","Paste":"Incolla","Select all":"Seleziona tutto","New document":"Nuovo documento","Ok":"OK","Cancel":"Annulla","Visual aids":"Aiuti visivi","Bold":"Grassetto","Italic":"Corsivo","Underline":"Sottolineato","Strikethrough":"Barrato","Superscript":"Apice","Subscript":"Pedice","Clear formatting":"Cancella la formattazione","Remove":"Rimuovi","Align left":"Allinea a sinistra","Align center":"Allinea al centro","Align right":"Allinea a destra","No alignment":"Senza allineamento","Justify":"Giustifica","Bullet list":"Elenco puntato","Numbered list":"Elenco numerato","Decrease indent":"Riduci rientro","Increase indent":"Aumenta rientro","Close":"Chiudi","Formats":"Formati","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Il browser non supporta l'accesso diretto alla cartella degli appunti. Usare i tasti di scelta rapida Ctrl+X/C/V.","Headings":"Titoli","Heading 1":"Titolo 1","Heading 2":"Titolo 2","Heading 3":"Titolo 3","Heading 4":"Titolo 4","Heading 5":"Titolo 5","Heading 6":"Titolo 6","Preformatted":"Preformattato","Div":"Div","Pre":"Pre","Code":"Codice","Paragraph":"Paragrafo","Blockquote":"Citazione","Inline":"In linea","Blocks":"Blocchi","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Incolla \xe8 in modalit\xe0 testo normale. I contenuti saranno incollati come testo normale se non viene disattivata questa opzione.","Fonts":"Caratteri","Font sizes":"Dimensioni font","Class":"Classe","Browse for an image":"Cerca un'immagine","OR":"OPPURE","Drop an image here":"Rilasciare un'immagine qui","Upload":"Carica","Uploading image":"Caricamento immagine","Block":"Blocco","Align":"Allinea","Default":"Predefinito","Circle":"Circolo","Disc":"Disco","Square":"Quadrato","Lower Alpha":"Alfabetico minuscolo","Lower Greek":"Greco minuscolo","Lower Roman":"Romano minuscolo","Upper Alpha":"Alfabetico maiuscolo","Upper Roman":"Romano maiuscolo","Anchor...":"Ancoraggio...","Anchor":"Ancora","Name":"Nome","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"ID dovrebbe iniziare con una lettera, seguita solo da lettere, numeri, trattini, punti, due punti.","You have unsaved changes are you sure you want to navigate away?":"Ci sono modifiche non salvate, si \xe8 sicuro di volere uscire?","Restore last draft":"Ripristina l'ultima bozza","Special character...":"Carattere speciale...","Special Character":"Carattere Speciale","Source code":"Codice sorgente","Insert/Edit code sample":"Inserisci/modifica esempio di codice","Language":"Lingua","Code sample...":"Esempio di codice...","Left to right":"Da sinistra a destra","Right to left":"Da destra a sinistra","Title":"Titolo","Fullscreen":"A tutto schermo","Action":"Azione","Shortcut":"Collegamento","Help":"Guida","Address":"Indirizzo","Focus to menubar":"Imposta stato attivo per la barra dei menu","Focus to toolbar":"Imposta stato attivo per la barra degli strumenti","Focus to element path":"Imposta stato attivo per il percorso dell'elemento","Focus to contextual toolbar":"Imposta stato attivo per la barra degli strumenti contestuale","Insert link (if link plugin activated)":"Inserisci un collegamento (se \xe8 attivato l'apposito plugin)","Save (if save plugin activated)":"Salva (se \xe8 attivato l'apposito plugin)","Find (if searchreplace plugin activated)":"Trova (se \xe8 attivato l'apposito plugin)","Plugins installed ({0}):":"Plugin installati ({0}):","Premium plugins:":"Plugin Premium:","Learn more...":"Maggiori informazioni...","You are using {0}":"Si sta utilizzando {0}","Plugins":"Plugin","Handy Shortcuts":"Scorciatoie utili","Horizontal line":"Linea orizzontale","Insert/edit image":"Inserisci/modifica immagine","Alternative description":"Descrizione alternativa","Accessibility":"Accessibilit\xe0","Image is decorative":"L'immagine \xe8 decorativa","Source":"Fonte","Dimensions":"Dimensioni","Constrain proportions":"Mantieni proporzioni","General":"Generali","Advanced":"Avanzate","Style":"Stile","Vertical space":"Spazio verticale","Horizontal space":"Spazio orizzontale","Border":"Bordo","Insert image":"Inserisci immagine","Image...":"Immagine...","Image list":"Elenco immagini","Resize":"Ridimensiona","Insert date/time":"Inserisci data/ora","Date/time":"Data/ora","Insert/edit link":"Inserisci/modifica collegamento","Text to display":"Testo da visualizzare","Url":"URL","Open link in...":"Apri collegamento in...","Current window":"Finestra corrente","None":"Nessuno","New window":"Nuova finestra","Open link":"Apri link","Remove link":"Rimuovi collegamento","Anchors":"Ancoraggi","Link...":"Collegamento...","Paste or type a link":"Incolla o digita un collegamento","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"L'URL inserito sembra essere un indirizzo email. Si vuole aggiungere il necessario prefisso mailto:?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"L'URL inserito sembra essere un collegamento esterno. Si vuole aggiungere il necessario prefisso http://?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"L'URL inserito sembra essere un collegamento esterno. Si vuole aggiungere il necessario prefisso http://?","Link list":"Elenco collegamenti","Insert video":"Inserisci video","Insert/edit video":"Inserisci/modifica video","Insert/edit media":"Inserisci/modifica oggetti multimediali","Alternative source":"Sorgente alternativa","Alternative source URL":"URL sorgente alternativa","Media poster (Image URL)":"Poster dell'oggetto multimediale (URL dell'immagine)","Paste your embed code below:":"Incolla il codice d'incorporamento di seguito:","Embed":"Incorpora","Media...":"Oggetto multimediale...","Nonbreaking space":"Spazio indivisibile","Page break":"Interruzione di pagina","Paste as text":"Incolla senza formattazioni","Preview":"Anteprima","Print":"Stampa","Print...":"Stampa...","Save":"Salva","Find":"Trova","Replace with":"Sostituisci con","Replace":"Sostituisci","Replace all":"Sostituisci tutto","Previous":"Indietro","Next":"Avanti","Find and Replace":"Trova e sostituisci","Find and replace...":"Trova e sostituisci...","Could not find the specified string.":"Impossibile trovare la stringa specificata.","Match case":"Maiuscole/minuscole","Find whole words only":"Trova solo parole intere","Find in selection":"Trova nella selezione","Insert table":"Inserisci tabella","Table properties":"Propriet\xe0 della tabella","Delete table":"Elimina tabella","Cell":"Cella","Row":"Riga","Column":"Colonna","Cell properties":"Propriet\xe0 cella","Merge cells":"Unisci le celle","Split cell":"Dividi la cella","Insert row before":"Inserisci riga prima","Insert row after":"Inserisci riga dopo","Delete row":"Elimina riga","Row properties":"Propriet\xe0 della riga","Cut row":"Taglia riga","Cut column":"Taglia colonna","Copy row":"Copia riga","Copy column":"Copia colonna","Paste row before":"Incolla riga prima","Paste column before":"Inserisci colonna prima","Paste row after":"Incolla riga dopo","Paste column after":"Inserisci colonna dopo","Insert column before":"Inserisci colonna prima","Insert column after":"Inserisci colonna dopo","Delete column":"Elimina colonna","Cols":"Colonne","Rows":"Righe","Width":"Larghezza","Height":"Altezza","Cell spacing":"Spaziatura tra celle","Cell padding":"Spaziatura interna celle","Row clipboard actions":"Azioni appunti riga","Column clipboard actions":"Azioni appunti colonna","Table styles":"Stili tabella","Cell styles":"Stili cella","Column header":"Intestazione colonna","Row header":"Intestazione riga","Table caption":"Titolo tabella","Caption":"Didascalia","Show caption":"Mostra didascalia","Left":"Sinistra","Center":"Centro","Right":"Destra","Cell type":"Tipo di cella","Scope":"Ambito","Alignment":"Allineamento","Horizontal align":"Allineamento orizzontale","Vertical align":"Allineamento verticale","Top":"In alto","Middle":"Centrato","Bottom":"In basso","Header cell":"Cella d'intestazione","Row group":"Gruppo di righe","Column group":"Gruppo di colonne","Row type":"Tipo di riga","Header":"Intestazione","Body":"Corpo","Footer":"Pi\xe8 di pagina","Border color":"Colore del bordo","Solid":"Pieno","Dotted":"Puntini","Dashed":"Trattini","Double":"Doppio","Groove":"Groove","Ridge":"Ridge","Inset":"Inserto","Outset":"Inizio","Hidden":"Nascosto","Insert template...":"Inserisci modello...","Templates":"Modelli","Template":"Modello","Insert Template":"Inserisci modello","Text color":"Colore testo","Background color":"Colore dello sfondo","Custom...":"Personalizzato...","Custom color":"Colore personalizzato","No color":"Nessun colore","Remove color":"Rimuovi colore","Show blocks":"Mostra blocchi","Show invisible characters":"Mostra caratteri invisibili","Word count":"Conteggio parole","Count":"Conteggio","Document":"Documento","Selection":"Selezione","Words":"Parole","Words: {0}":"Parole: {0}","{0} words":"{0} parole","File":"File","Edit":"Modifica","Insert":"Inserisci","View":"Visualizza","Format":"Formato","Table":"Tabella","Tools":"Strumenti","Powered by {0}":"Con tecnologia {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Area di testo RTF. Premere ALT-F9 per il menu. Premere ALT-F10 per la barra degli strumenti. Premere ALT-0 per la guida.","Image title":"Titolo immagine","Border width":"Larghezza del bordo","Border style":"Stile del bordo","Error":"Errore","Warn":"Avviso","Valid":"Valido","To open the popup, press Shift+Enter":"Per aprire il popup, premere Shift+Invio","Rich Text Area":"Area di testo ricco","Rich Text Area. Press ALT-0 for help.":"Area di testo RTF. Premere ALT-0 per la guida.","System Font":"Carattere di sistema","Failed to upload image: {0}":"Caricamento immagine fallito: {0}","Failed to load plugin: {0} from url {1}":"Caricamento plugin fallito: {0} dall'URL {1}","Failed to load plugin url: {0}":"Caricamento URL plugin fallito: {0}","Failed to initialize plugin: {0}":"Inizializzazione plugin fallita: {0}","example":"esempio","Search":"Cerca","All":"Tutto","Currency":"Valuta","Text":"Testo","Quotations":"Citazioni","Mathematical":"Caratteri matematici","Extended Latin":"Latino esteso","Symbols":"Simboli","Arrows":"Frecce","User Defined":"Definito dall'utente","dollar sign":"simbolo del dollaro","currency sign":"simbolo di valuta","euro-currency sign":"simbolo dell'euro","colon sign":"simbolo del col\xf3n","cruzeiro sign":"simbolo del cruzeiro","french franc sign":"simbolo del franco francese","lira sign":"simbolo della lira","mill sign":"simbolo del mill","naira sign":"simbolo della naira","peseta sign":"simbolo della peseta","rupee sign":"simbolo della rup\xeca","won sign":"simbolo del won","new sheqel sign":"simbolo del nuovo shekel","dong sign":"simbolo del dong","kip sign":"simbolo del kip","tugrik sign":"simbolo del tugrik","drachma sign":"simbolo della dracma","german penny symbol":"simbolo del pfennig tedesco","peso sign":"simbolo del peso","guarani sign":"simbolo del guaran\xec","austral sign":"simbolo dell'austral","hryvnia sign":"simbolo della hryvnia","cedi sign":"simbolo del cedi","livre tournois sign":"simbolo della lira di Tours","spesmilo sign":"simbolo dello spesmilo","tenge sign":"simbolo del tenge","indian rupee sign":"simbolo della rup\xeca indiana","turkish lira sign":"simbolo della lira turca","nordic mark sign":"simbolo del marco nordico","manat sign":"simbolo del manat","ruble sign":"simbolo del rublo","yen character":"simbolo dello yen","yuan character":"simbolo dello yuan","yuan character, in hong kong and taiwan":"simbolo dello yuan, Hong Kong e Taiwan","yen/yuan character variant one":"simbolo yen/yuan variante uno","Emojis":"Emojis","Emojis...":"Emojis...","Loading emojis...":"Caricamento emojis...","Could not load emojis":"Non posso caricare le emojis","People":"Persone","Animals and Nature":"Animali e natura","Food and Drink":"Cibi e bevande","Activity":"Attivit\xe0","Travel and Places":"Viaggi e luoghi","Objects":"Oggetti","Flags":"Bandiere","Characters":"Caratteri","Characters (no spaces)":"Caratteri (senza spazi)","{0} characters":"{0} caratteri","Error: Form submit field collision.":"Errore: Conflitto di campi nel modulo inviato.","Error: No form element found.":"Errore: Nessun elemento di modulo trovato.","Color swatch":"Campione di colore","Color Picker":"Selezione colori","Invalid hex color code: {0}":"Codice esadecimale colore non valido: {0}","Invalid input":"Dato non valido","R":"R","Red component":"Componente rosso","G":"V","Green component":"Componente verde","B":"B","Blue component":"Componente blu","#":"#","Hex color code":"Colore esadecimale","Range 0 to 255":"Intervallo da 0 a 255","Turquoise":"Turchese","Green":"Verde","Blue":"Blu","Purple":"Viola","Navy Blue":"Blu scuro","Dark Turquoise":"Turchese scuro","Dark Green":"Verde scuro","Medium Blue":"Blu medio","Medium Purple":"Viola medio","Midnight Blue":"Blu notte","Yellow":"Giallo","Orange":"Arancio","Red":"Rosso","Light Gray":"Grigio chiaro","Gray":"Grigio","Dark Yellow":"Giallo scuro","Dark Orange":"Arancio scuro","Dark Red":"Rosso scuro","Medium Gray":"Grigio medio","Dark Gray":"Grigio scuro","Light Green":"Verde chiaro","Light Yellow":"Giallo chiaro","Light Red":"Rosso chiaro","Light Purple":"Viola chiaro","Light Blue":"Azzurro","Dark Purple":"Viola scuro","Dark Blue":"Blu scuro","Black":"Nero","White":"Bianco","Switch to or from fullscreen mode":"Attiva/disattiva la modalit\xe0 schermo intero","Open help dialog":"Apri la finestra di aiuto","history":"cronologia","styles":"stili","formatting":"formattazione","alignment":"allineamento","indentation":"indentazione","Font":"Carattere","Size":"Dimensione carattere","More...":"Altro\u2026","Select...":"Seleziona...","Preferences":"Preferenze","Yes":"S\xec","No":"No","Keyboard Navigation":"Navigazione tramite tastiera","Version":"Versione","Code view":"Visualizza codice","Open popup menu for split buttons":"Apri il menu a comparsa per i pulsanti divisi","List Properties":"Propriet\xe0 Lista","List properties...":"Propriet\xe0 lista...","Start list at number":"La lista inizia con il numero","Line height":"Altezza linea","Dropped file type is not supported":"Tipo di file non supportato","Loading...":"Lettura in corso...","ImageProxy HTTP error: Rejected request":"Errore HTTP ImageProxy: richiesta rifiutata","ImageProxy HTTP error: Could not find Image Proxy":"Errore HTTP ImageProxy: impossibile trovare Image Proxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"Errore HTTP ImageProxy: URL Image Proxy non corretto","ImageProxy HTTP error: Unknown ImageProxy error":"Errore HTTP ImageProxy: errore sconosciuto"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("ja",{"Redo":"\u3084\u308a\u76f4\u3057","Undo":"\u5143\u306b\u623b\u3059","Cut":"\u5207\u308a\u53d6\u308a","Copy":"\u30b3\u30d4\u30fc","Paste":"\u8cbc\u308a\u4ed8\u3051","Select all":"\u3059\u3079\u3066\u9078\u629e","New document":"\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","Ok":"OK","Cancel":"\u53d6\u6d88","Visual aids":"\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a","Bold":"\u592a\u5b57","Italic":"\u659c\u4f53","Underline":"\u4e0b\u7dda","Strikethrough":"\u53d6\u6d88\u7dda","Superscript":"\u4e0a\u4ed8\u304d","Subscript":"\u4e0b\u4ed8\u304d","Clear formatting":"\u66f8\u5f0f\u3092\u30af\u30ea\u30a2","Remove":"\u524a\u9664","Align left":"\u5de6\u63c3\u3048","Align center":"\u4e2d\u592e\u63c3\u3048","Align right":"\u53f3\u63c3\u3048","No alignment":"\u914d\u7f6e\u306a\u3057","Justify":"\u4e21\u7aef\u63c3\u3048","Bullet list":"\u7b87\u6761\u66f8\u304d","Numbered list":"\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d","Decrease indent":"\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059","Increase indent":"\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059","Close":"\u9589\u3058\u308b","Formats":"\u66f8\u5f0f","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002","Headings":"\u898b\u51fa\u3057","Heading 1":"\u898b\u51fa\u30571","Heading 2":"\u898b\u51fa\u30572","Heading 3":"\u898b\u51fa\u30573","Heading 4":"\u898b\u51fa\u30574","Heading 5":"\u898b\u51fa\u30575","Heading 6":"\u898b\u51fa\u30576","Preformatted":"\u66f8\u5f0f\u8a2d\u5b9a\u6e08\u307f","Div":"\u5206\u5272","Pre":"\u6574\u5f62\u6e08\u307f\u30c6\u30ad\u30b9\u30c8","Code":"\u30b3\u30fc\u30c9","Paragraph":"\u6bb5\u843d","Blockquote":"\u5f15\u7528","Inline":"\u30a4\u30f3\u30e9\u30a4\u30f3","Blocks":"\u30d6\u30ed\u30c3\u30af","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002","Fonts":"\u30d5\u30a9\u30f3\u30c8","Font sizes":"\u30d5\u30a9\u30f3\u30c8\u306e\u30b5\u30a4\u30ba","Class":"\u30af\u30e9\u30b9","Browse for an image":"\u753b\u50cf\u3092\u53c2\u7167","OR":"\u307e\u305f\u306f","Drop an image here":"\u3053\u3053\u306b\u753b\u50cf\u3092\u30c9\u30ed\u30c3\u30d7","Upload":"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9","Uploading image":"\u753b\u50cf\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d","Block":"\u30d6\u30ed\u30c3\u30af","Align":"\u914d\u7f6e","Default":"\u65e2\u5b9a","Circle":"\u4e38","Disc":"\u9ed2\u4e38","Square":"\u56db\u89d2","Lower Alpha":"\u5c0f\u6587\u5b57\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8","Lower Greek":"\u5c0f\u6587\u5b57\u30ae\u30ea\u30b7\u30e3\u6587\u5b57","Lower Roman":"\u5c0f\u6587\u5b57\u30ed\u30fc\u30de\u5b57","Upper Alpha":"\u5927\u6587\u5b57\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8","Upper Roman":"\u5927\u6587\u5b57\u30ed\u30fc\u30de\u5b57","Anchor...":"\u30a2\u30f3\u30ab\u30fc...","Anchor":"\u30a2\u30f3\u30ab\u30fc","Name":"\u540d\u524d","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u305d\u306e\u5f8c\u306b\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30d4\u30ea\u30aa\u30c9\u3001\u30b3\u30ed\u30f3\u3001\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u304c\u7d9a\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002","You have unsaved changes are you sure you want to navigate away?":"\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f","Restore last draft":"\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u56de\u5fa9","Special character...":"\u7279\u6b8a\u6587\u5b57...","Special Character":"\u7279\u6b8a\u6587\u5b57","Source code":"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9","Insert/Edit code sample":"\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165/\u7de8\u96c6","Language":"\u8a00\u8a9e","Code sample...":"\u30b3\u30fc\u30c9\u306e\u30b5\u30f3\u30d7\u30eb...","Left to right":"\u5de6\u304b\u3089\u53f3","Right to left":"\u53f3\u304b\u3089\u5de6","Title":"\u30bf\u30a4\u30c8\u30eb","Fullscreen":"\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3","Action":"\u30a2\u30af\u30b7\u30e7\u30f3","Shortcut":"\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8","Help":"\u30d8\u30eb\u30d7","Address":"\u30a2\u30c9\u30ec\u30b9","Focus to menubar":"\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9","Focus to toolbar":"\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9","Focus to element path":"\u8981\u7d20\u30d1\u30b9\u306b\u30d5\u30a9\u30fc\u30ab\u30b9","Focus to contextual toolbar":"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9","Insert link (if link plugin activated)":"\u30ea\u30f3\u30af\u3092\u633f\u5165 (\u30ea\u30f3\u30af\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)","Save (if save plugin activated)":"\u4fdd\u5b58 (\u4fdd\u5b58\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)","Find (if searchreplace plugin activated)":"\u691c\u7d22 (\u7f6e\u63db\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)","Plugins installed ({0}):":"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30d7\u30e9\u30b0\u30a4\u30f3 ({0})\uff1a","Premium plugins:":"\u30d7\u30ec\u30df\u30a2\u30e0\u30d7\u30e9\u30b0\u30a4\u30f3\uff1a","Learn more...":"\u8a73\u7d30...","You are using {0}":"{0}\u3092\u4f7f\u7528\u4e2d","Plugins":"\u30d7\u30e9\u30b0\u30a4\u30f3","Handy Shortcuts":"\u4fbf\u5229\u306a\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8","Horizontal line":"\u6c34\u5e73\u7f6b\u7dda","Insert/edit image":"\u753b\u50cf\u306e\u633f\u5165/\u7de8\u96c6","Alternative description":"\u4ee3\u66ff\u306e\u8aac\u660e\u6587","Accessibility":"\u30a2\u30af\u30bb\u30b7\u30d3\u30ea\u30c6\u30a3","Image is decorative":"\u753b\u50cf\u306f\u88c5\u98fe\u753b\u50cf","Source":"\u30bd\u30fc\u30b9","Dimensions":"\u30b5\u30a4\u30ba","Constrain proportions":"\u7e26\u6a2a\u6bd4\u3092\u56fa\u5b9a","General":"\u4e00\u822c","Advanced":"\u8a73\u7d30","Style":"\u30b9\u30bf\u30a4\u30eb","Vertical space":"\u4e0a\u4e0b\u4f59\u767d","Horizontal space":"\u5de6\u53f3\u4f59\u767d","Border":"\u30dc\u30fc\u30c0\u30fc","Insert image":"\u753b\u50cf\u306e\u633f\u5165","Image...":"\u753b\u50cf..","Image list":"\u753b\u50cf\u30ea\u30b9\u30c8","Resize":"\u30b5\u30a4\u30ba\u5909\u66f4","Insert date/time":"\u65e5\u4ed8/\u6642\u523b\u306e\u633f\u5165","Date/time":"\u65e5\u4ed8/\u6642\u523b","Insert/edit link":"\u30ea\u30f3\u30af\u306e\u633f\u5165/\u7de8\u96c6","Text to display":"\u8868\u793a\u3059\u308b\u30c6\u30ad\u30b9\u30c8","Url":"URL","Open link in...":"\u30ea\u30f3\u30af\u306e\u958b\u304d\u65b9...","Current window":"\u540c\u3058\u30a6\u30a3\u30f3\u30c9\u30a6","None":"\u306a\u3057","New window":"\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6","Open link":"\u30ea\u30f3\u30af\u3092\u958b\u304f","Remove link":"\u30ea\u30f3\u30af\u306e\u524a\u9664","Anchors":"\u30a2\u30f3\u30ab\u30fc","Link...":"\u30ea\u30f3\u30af...","Paste or type a link":"\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp://\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u5fc5\u8981\u306a\u300chttps://\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f","Link list":"\u30ea\u30f3\u30af\u306e\u4e00\u89a7","Insert video":"\u52d5\u753b\u306e\u633f\u5165","Insert/edit video":"\u52d5\u753b\u306e\u633f\u5165/\u7de8\u96c6","Insert/edit media":"\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165/\u7de8\u96c6","Alternative source":"\u4ee3\u66ff\u30bd\u30fc\u30b9","Alternative source URL":"\u4ee3\u66ff\u30bd\u30fc\u30b9URL","Media poster (Image URL)":"\u30e1\u30c7\u30a3\u30a2\u30dd\u30b9\u30bf\u30fc (\u753b\u50cfURL)","Paste your embed code below:":"\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002","Embed":"\u57cb\u3081\u8fbc\u307f","Media...":"\u30e1\u30c7\u30a3\u30a2\u2026","Nonbreaking space":"\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9","Page break":"\u30da\u30fc\u30b8\u533a\u5207\u308a","Paste as text":"\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051","Preview":"\u30d7\u30ec\u30d3\u30e5\u30fc","Print":"\u5370\u5237","Print...":"\u5370\u5237...","Save":"\u4fdd\u5b58","Find":"\u691c\u7d22...","Replace with":"\u7f6e\u63db\u5f8c\u306e\u6587\u5b57\u5217","Replace":"\u7f6e\u63db","Replace all":"\u3059\u3079\u3066\u7f6e\u63db","Previous":"\u524d\u3078","Next":"\u6b21\u3078","Find and Replace":"\u691c\u7d22\u3068\u7f6e\u63db","Find and replace...":"\u7f6e\u63db...","Could not find the specified string.":"\u304a\u63a2\u3057\u306e\u6587\u5b57\u5217\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002","Match case":"\u5927\u6587\u5b57\u3068\u5c0f\u6587\u5b57\u3092\u533a\u5225","Find whole words only":"\u8a9e\u5168\u4f53\u3092\u542b\u3080\u3082\u306e\u306e\u307f\u691c\u7d22","Find in selection":"\u9078\u629e\u90e8\u5206\u3067\u691c\u7d22","Insert table":"\u8868\u306e\u633f\u5165","Table properties":"\u30c6\u30fc\u30d6\u30eb\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","Delete table":"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664","Cell":"\u30bb\u30eb","Row":"\u884c","Column":"\u5217","Cell properties":"\u30bb\u30eb\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","Merge cells":"\u30bb\u30eb\u306e\u7d50\u5408","Split cell":"\u30bb\u30eb\u306e\u5206\u5272","Insert row before":"\u524d\u306b\u884c\u3092\u633f\u5165","Insert row after":"\u5f8c\u306b\u884c\u3092\u633f\u5165","Delete row":"\u884c\u306e\u524a\u9664","Row properties":"\u884c\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","Cut row":"\u884c\u306e\u5207\u308a\u53d6\u308a","Cut column":"\u5217\u3092\u30ab\u30c3\u30c8","Copy row":"\u884c\u306e\u30b3\u30d4\u30fc","Copy column":"\u5217\u3092\u30b3\u30d4\u30fc","Paste row before":"\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051","Paste column before":"\u524d\u306b\u5217\u3092\u8cbc\u308a\u4ed8\u3051","Paste row after":"\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051","Paste column after":"\u5f8c\u306b\u5217\u3092\u8cbc\u308a\u4ed8\u3051","Insert column before":"\u524d\u306b\u5217\u3092\u633f\u5165","Insert column after":"\u5f8c\u306b\u5217\u3092\u633f\u5165","Delete column":"\u5217\u306e\u524a\u9664","Cols":"\u5217\u6570","Rows":"\u884c\u6570","Width":"\u5e45","Height":"\u9ad8\u3055","Cell spacing":"\u30bb\u30eb\u306e\u9593\u9694","Cell padding":"\u30bb\u30eb\u5185\u306e\u30b9\u30da\u30fc\u30b9","Row clipboard actions":"\u884c\u306e\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u30a2\u30af\u30b7\u30e7\u30f3","Column clipboard actions":"\u5217\u306e\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u30a2\u30af\u30b7\u30e7\u30f3","Table styles":"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e","Cell styles":"\u30bb\u30eb\u306e\u7a2e\u985e","Column header":"\u5217\u306e\u30d8\u30c3\u30c0\u30fc","Row header":"\u884c\u306e\u30d8\u30c3\u30c0\u30fc","Table caption":"\u30c6\u30fc\u30d6\u30eb\u306e\u898b\u51fa\u3057","Caption":"\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3","Show caption":"\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u8868\u793a","Left":"\u5de6\u63c3\u3048","Center":"\u4e2d\u592e\u63c3\u3048","Right":"\u53f3\u63c3\u3048","Cell type":"\u30bb\u30eb\u306e\u7a2e\u985e","Scope":"\u30b9\u30b3\u30fc\u30d7","Alignment":"\u914d\u7f6e","Horizontal align":"\u6c34\u5e73\u306b\u6574\u5217","Vertical align":"\u5782\u76f4\u306b\u6574\u5217","Top":"\u4e0a\u63c3\u3048","Middle":"\u4e2d\u592e\u63c3\u3048","Bottom":"\u4e0b\u63c3\u3048","Header cell":"\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb","Row group":"\u884c\u30b0\u30eb\u30fc\u30d7","Column group":"\u5217\u30b0\u30eb\u30fc\u30d7","Row type":"\u884c\u30bf\u30a4\u30d7","Header":"\u30d8\u30c3\u30c0\u30fc","Body":"\u672c\u6587","Footer":"\u30d5\u30c3\u30bf\u30fc","Border color":"\u30dc\u30fc\u30c0\u30fc\u306e\u8272","Solid":"\u5b9f\u7dda","Dotted":"\u70b9\u7dda","Dashed":"\u7834\u7dda","Double":"\u4e8c\u91cd\u7dda","Groove":"\u8c37\u7dda","Ridge":"\u5c71\u7dda","Inset":"\u5185\u7dda","Outset":"\u5916\u7dda","Hidden":"\u975e\u8868\u793a","Insert template...":"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..","Templates":"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","Template":"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","Insert Template":"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..","Text color":"\u30c6\u30ad\u30b9\u30c8\u8272","Background color":"\u80cc\u666f\u8272","Custom...":"\u30e6\u30fc\u30b6\u30fc\u8a2d\u5b9a...","Custom color":"\u30e6\u30fc\u30b6\u30fc\u8a2d\u5b9a\u306e\u8272","No color":"\u8272\u306a\u3057","Remove color":"\u8272\u8a2d\u5b9a\u3092\u89e3\u9664","Show blocks":"\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a","Show invisible characters":"\u975e\u8868\u793a\u6587\u5b57\u3092\u8868\u793a","Word count":"\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8","Count":"\u30ab\u30a6\u30f3\u30c8","Document":"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","Selection":"\u9078\u629e","Words":"\u5358\u8a9e\u6570","Words: {0}":"\u5358\u8a9e\u6570\uff1a{0}","{0} words":"{0}\u8a9e","File":"\u30d5\u30a1\u30a4\u30eb","Edit":"\u7de8\u96c6","Insert":"\u633f\u5165","View":"\u8868\u793a","Format":"\u66f8\u5f0f\u8a2d\u5b9a","Table":"\u8868","Tools":"\u30c4\u30fc\u30eb","Powered by {0}":"{0} \u306b\u3088\u3063\u3066\u642d\u8f09\u3055\u308c\u305f","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002","Image title":"\u753b\u50cf\u30bf\u30a4\u30c8\u30eb","Border width":"\u67a0\u7dda\u5e45","Border style":"\u67a0\u7dda\u30b9\u30bf\u30a4\u30eb","Error":"\u30a8\u30e9\u30fc","Warn":"\u8b66\u544a","Valid":"\u6709\u52b9","To open the popup, press Shift+Enter":"\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u3092\u958b\u304f\u306b\u306f\u3001Shift+Enter\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044","Rich Text Area":"\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2","Rich Text Area. Press ALT-0 for help.":"\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002Alt-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002","System Font":"\u30b7\u30b9\u30c6\u30e0\u30d5\u30a9\u30f3\u30c8","Failed to upload image: {0}":"\u753b\u50cf{0}\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f","Failed to load plugin: {0} from url {1}":"URL{1}\u304b\u3089\u306e\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f","Failed to load plugin url: {0}":"\u30d7\u30e9\u30b0\u30a4\u30f3\u306eURL{0}\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f","Failed to initialize plugin: {0}":"\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f","example":"\u4f8b","Search":"\u691c\u7d22","All":"\u3059\u3079\u3066","Currency":"\u901a\u8ca8","Text":"\u30c6\u30ad\u30b9\u30c8","Quotations":"\u5f15\u7528","Mathematical":"\u6570\u5b66\u8a18\u53f7","Extended Latin":"\u30e9\u30c6\u30f3\u6587\u5b57\u62e1\u5f35","Symbols":"\u8a18\u53f7","Arrows":"\u77e2\u5370","User Defined":"\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9","dollar sign":"\u30c9\u30eb\u8a18\u53f7","currency sign":"\u901a\u8ca8\u8a18\u53f7","euro-currency sign":"\u30e6\u30fc\u30ed\u8a18\u53f7","colon sign":"\u30b3\u30ed\u30f3\u8a18\u53f7","cruzeiro sign":"\u30af\u30eb\u30bc\u30a4\u30ed\u8a18\u53f7","french franc sign":"\u30d5\u30e9\u30f3\u30b9\u30d5\u30e9\u30f3\u8a18\u53f7","lira sign":"\u30ea\u30e9\u8a18\u53f7","mill sign":"\u30df\u30eb\u8a18\u53f7","naira sign":"\u30ca\u30a4\u30e9\u8a18\u53f7","peseta sign":"\u30da\u30bb\u30bf\u8a18\u53f7","rupee sign":"\u30eb\u30d4\u30fc\u8a18\u53f7","won sign":"\u30a6\u30a9\u30f3\u8a18\u53f7","new sheqel sign":"\u65b0\u30b7\u30a7\u30b1\u30eb\u8a18\u53f7","dong sign":"\u30c9\u30f3\u8a18\u53f7","kip sign":"\u30ad\u30fc\u30d7\u8a18\u53f7","tugrik sign":"\u30c8\u30a5\u30b0\u30eb\u30b0\u8a18\u53f7","drachma sign":"\u30c9\u30e9\u30af\u30de\u8a18\u53f7","german penny symbol":"\u30c9\u30a4\u30c4\u30da\u30cb\u30fc\u8a18\u53f7","peso sign":"\u30da\u30bd\u8a18\u53f7","guarani sign":"\u30ac\u30e9\u30cb\u8a18\u53f7","austral sign":"\u30a2\u30a6\u30b9\u30c8\u30e9\u30eb\u8a18\u53f7","hryvnia sign":"\u30d5\u30ea\u30f4\u30cb\u30e3\u8a18\u53f7","cedi sign":"\u30bb\u30c7\u30a3\u8a18\u53f7","livre tournois sign":"\u30c8\u30a5\u30fc\u30eb\u30dd\u30f3\u30c9\u8a18\u53f7","spesmilo sign":"\u30b9\u30da\u30b9\u30df\u30fc\u30ed\u8a18\u53f7","tenge sign":"\u30c6\u30f3\u30b2\u8a18\u53f7","indian rupee sign":"\u30a4\u30f3\u30c9\u30eb\u30d4\u30fc\u8a18\u53f7","turkish lira sign":"\u30c8\u30eb\u30b3\u30ea\u30e9\u8a18\u53f7","nordic mark sign":"\u5317\u6b27\u30de\u30eb\u30af\u8a18\u53f7","manat sign":"\u30de\u30ca\u30c8\u8a18\u53f7","ruble sign":"\u30eb\u30fc\u30d6\u30eb\u8a18\u53f7","yen character":"\u5186\u8a18\u53f7","yuan character":"\u4eba\u6c11\u5143\u8a18\u53f7","yuan character, in hong kong and taiwan":"\u9999\u6e2f\u304a\u3088\u3073\u53f0\u6e7e\u306b\u304a\u3051\u308b\u5143\u8a18\u53f7","yen/yuan character variant one":"\u5186/\u5143\u8a18\u53f7\u306e\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3","Emojis":"\u7d75\u6587\u5b57","Emojis...":"\u7d75\u6587\u5b57...","Loading emojis...":"\u7d75\u6587\u5b57\u3092\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026","Could not load emojis":"\u7d75\u6587\u5b57\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f","People":"\u4eba","Animals and Nature":"\u52d5\u7269\u3068\u81ea\u7136","Food and Drink":"\u98df\u3079\u7269\u3068\u98f2\u307f\u7269","Activity":"\u884c\u52d5","Travel and Places":"\u65c5\u884c\u3068\u5834\u6240","Objects":"\u7269","Flags":"\u65d7","Characters":"\u6587\u5b57\u6570","Characters (no spaces)":"\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u306a\u3057)","{0} characters":"{0}\u6587\u5b57","Error: Form submit field collision.":"\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u9001\u4fe1\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002","Error: No form element found.":"\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002","Color swatch":"\u8272\u306e\u898b\u672c","Color Picker":"\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc","Invalid hex color code: {0}":"\u7121\u52b9\u306a16\u9032\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9: {0}","Invalid input":"\u7121\u52b9\u306a\u5165\u529b","R":"\u8d64","Red component":"\u8d64\u8272\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8","G":"\u7dd1","Green component":"\u7dd1\u8272\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8","B":"\u9752","Blue component":"\u9752\u8272\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8","#":"#","Hex color code":"16\u9032\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9","Range 0 to 255":"\u7bc4\u56f20\u301c255","Turquoise":"\u30bf\u30fc\u30b3\u30a4\u30ba","Green":"\u30b0\u30ea\u30fc\u30f3","Blue":"\u30d6\u30eb\u30fc","Purple":"\u30d1\u30fc\u30d7\u30eb","Navy Blue":"\u30cd\u30a4\u30d3\u30fc","Dark Turquoise":"\u30c0\u30fc\u30af\u30bf\u30fc\u30b3\u30a4\u30ba","Dark Green":"\u30c0\u30fc\u30af\u30b0\u30ea\u30fc\u30f3","Medium Blue":"\u30e1\u30c7\u30a3\u30a2\u30e0\u30d6\u30eb\u30fc","Medium Purple":"\u30df\u30c7\u30a3\u30a2\u30e0\u30d1\u30fc\u30d7\u30eb","Midnight Blue":"\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u30d6\u30eb\u30fc","Yellow":"\u30a4\u30a8\u30ed\u30fc","Orange":"\u30aa\u30ec\u30f3\u30b8","Red":"\u30ec\u30c3\u30c9","Light Gray":"\u30e9\u30a4\u30c8\u30b0\u30ec\u30fc","Gray":"\u30b0\u30ec\u30fc","Dark Yellow":"\u30c0\u30fc\u30af\u30a4\u30a8\u30ed\u30fc","Dark Orange":"\u30c0\u30fc\u30af\u30aa\u30ec\u30f3\u30b8","Dark Red":"\u30c0\u30fc\u30af\u30ec\u30c3\u30c9","Medium Gray":"\u30df\u30c7\u30a3\u30a2\u30e0\u30b0\u30ec\u30fc","Dark Gray":"\u30c0\u30fc\u30af\u30b0\u30ec\u30fc","Light Green":"\u30e9\u30a4\u30c8\u30b0\u30ea\u30fc\u30f3","Light Yellow":"\u30e9\u30a4\u30c8\u30a4\u30a8\u30ed\u30fc","Light Red":"\u30e9\u30a4\u30c8\u30ec\u30c3\u30c9","Light Purple":"\u30e9\u30a4\u30c8\u30d1\u30fc\u30d7\u30eb","Light Blue":"\u30e9\u30a4\u30c8\u30d6\u30eb\u30fc","Dark Purple":"\u30c0\u30fc\u30af\u30d1\u30fc\u30d7\u30eb","Dark Blue":"\u30c0\u30fc\u30af\u30d6\u30eb\u30fc","Black":"\u30d6\u30e9\u30c3\u30af","White":"\u30db\u30ef\u30a4\u30c8","Switch to or from fullscreen mode":"\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u5207\u66ff","Open help dialog":"\u30d8\u30eb\u30d7\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u958b\u304f","history":"\u5c65\u6b74","styles":"\u30b9\u30bf\u30a4\u30eb","formatting":"\u66f8\u5f0f","alignment":"\u914d\u7f6e","indentation":"\u30a4\u30f3\u30c7\u30f3\u30c8","Font":"\u30d5\u30a9\u30f3\u30c8","Size":"\u30b5\u30a4\u30ba","More...":"\u8a73\u7d30...","Select...":"\u9078\u629e...","Preferences":"\u30d7\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9","Yes":"\u306f\u3044","No":"\u3044\u3044\u3048","Keyboard Navigation":"\u30ad\u30fc\u30dc\u30fc\u30c9\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3","Version":"\u30d0\u30fc\u30b8\u30e7\u30f3","Code view":"\u30b3\u30fc\u30c9\u8868\u793a","Open popup menu for split buttons":"\u5206\u5272\u30dc\u30bf\u30f3\u306e\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f","List Properties":"\u7b87\u6761\u66f8\u304d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3","List properties...":"\u7b87\u6761\u66f8\u304d\u306e\u30d7\u30ed\u30d1\u30c6\u30a3...","Start list at number":"\u756a\u53f7\u30ea\u30b9\u30c8\u306e\u958b\u59cb","Line height":"\u884c\u306e\u9ad8\u3055","Dropped file type is not supported":"\u30c9\u30ed\u30c3\u30d7\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u30bf\u30a4\u30d7\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093","Loading...":"\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059...","ImageProxy HTTP error: Rejected request":"\u753b\u50cf\u30d7\u30ed\u30ad\u30b7 HTTP\u30a8\u30e9\u30fc\uff1a\u62d2\u5426\u3055\u308c\u305f\u30ea\u30af\u30a8\u30b9\u30c8","ImageProxy HTTP error: Could not find Image Proxy":"\u753b\u50cf\u30d7\u30ed\u30ad\u30b7 HTTP\u30a8\u30e9\u30fc\uff1a\u753b\u50cf\u30d7\u30ed\u30ad\u30b7\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f","ImageProxy HTTP error: Incorrect Image Proxy URL":"\u753b\u50cf\u30d7\u30ed\u30ad\u30b7 HTTP\u30a8\u30e9\u30fc\uff1a\u4e0d\u6b63\u306a\u753b\u50cf\u30d7\u30ed\u30ad\u30b7URL","ImageProxy HTTP error: Unknown ImageProxy error":"\u753b\u50cf\u30d7\u30ed\u30ad\u30b7 HTTP\u30a8\u30e9\u30fc\uff1a\u4e0d\u660e\u306a\u753b\u50cf\u30d7\u30ed\u30ad\u30b7\u30a8\u30e9\u30fc"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("nl",{"Redo":"Opnieuw uitvoeren","Undo":"Ongedaan maken","Cut":"Knippen","Copy":"Kopi\xebren","Paste":"Plakken","Select all":"Alles selecteren","New document":"Nieuw document","Ok":"OK","Cancel":"Annuleren","Visual aids":" Visuele hulpmiddelen","Bold":"Vet","Italic":"Cursief","Underline":"Onderstrepen","Strikethrough":"Doorhalen","Superscript":"Superscript","Subscript":"Subscript","Clear formatting":"Opmaak wissen","Remove":"Verwijderen","Align left":"Links uitlijnen","Align center":"Centreren","Align right":"Rechts uitlijnen","No alignment":"Geen uitlijning","Justify":"Uitvullen","Bullet list":"Lijst met opsommingstekens","Numbered list":"Genummerde lijst","Decrease indent":"Inspringing verkleinen","Increase indent":"Inspringing vergroten","Close":"Sluiten","Formats":"Opmaken","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Jouw browser ondersteunt geen rechtstreekse toegang tot het klembord. Gebruik in plaats daarvan de sneltoetsen Ctrl+X/C/V.","Headings":"Koppen","Heading 1":"Kop 1","Heading 2":"Kop 2","Heading 3":"Kop 3","Heading 4":"Kop 4","Heading 5":"Kop 5","Heading 6":"Kop 6","Preformatted":"Vooraf opgemaakt","Div":"Div","Pre":"Pre","Code":"Broncode","Paragraph":"Alinea","Blockquote":"Quote","Inline":"Inline","Blocks":"Blokken","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Plakken gebeurt nu zonder opmaak. De tekst zal dus zonder opmaak worden geplakt tenzij je deze optie uit zet.","Fonts":"Lettertypes","Font sizes":"Tekengroottes","Class":"Klasse","Browse for an image":"Afbeelding zoeken","OR":"OF","Drop an image here":"Hier een afbeelding neerzetten","Upload":"Uploaden","Uploading image":"Afbeelding uploaden","Block":"Blok","Align":"Uitlijnen","Default":"Standaard","Circle":"Cirkel","Disc":"Schijf","Square":"Vierkant","Lower Alpha":"Kleine letters","Lower Greek":"Kleine Griekse letters","Lower Roman":"Kleine Romeinse cijfers","Upper Alpha":"Hoofdletters","Upper Roman":"Grote Romeinse cijfers","Anchor...":"Anker...","Anchor":"Anker","Name":"Naam","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"ID moet beginnen met een letter en daarna enkel gevolgd door letters, getallen, streepjes, punten, komma's of underscores.","You have unsaved changes are you sure you want to navigate away?":"Je hebt niet alles opgeslagen, weet je zeker dat je de pagina wilt verlaten?","Restore last draft":"Laatste concept herstellen","Special character...":"Speciaal teken...","Special Character":"Speciale tekens","Source code":"Broncode","Insert/Edit code sample":"Codevoorbeeld invoegen/bewerken","Language":"Taal","Code sample...":"Codevoorbeeld...","Left to right":"Van links naar rechts","Right to left":"Van rechts naar links","Title":"Titel","Fullscreen":"Volledig scherm","Action":"Actie","Shortcut":"Snelkoppeling","Help":"Help","Address":"Adres","Focus to menubar":"Focus op menubalk instellen ","Focus to toolbar":"Focus op werkbalk instellen ","Focus to element path":"Focus op elementenpad instellen ","Focus to contextual toolbar":"Focus op contextuele werkbalk instellen ","Insert link (if link plugin activated)":"Link invoegen (als plug-in voor link geactiveerd is)","Save (if save plugin activated)":"Opslaan (als plug-in voor opslaan geactiveerd is)","Find (if searchreplace plugin activated)":"Zoeken (als plug-in voor zoeken/vervangen geactiveerd is)","Plugins installed ({0}):":"Plug-ins ge\xefnstalleerd ({0}):","Premium plugins:":"Premium plug-ins:","Learn more...":"Leer meer...","You are using {0}":"Je gebruikt {0}","Plugins":"Plug-ins","Handy Shortcuts":"Handige snelkoppelingen","Horizontal line":"Horizontale lijn","Insert/edit image":"Afbeelding invoegen/bewerken","Alternative description":"Alternatieve beschrijving","Accessibility":"Toegankelijkheid","Image is decorative":"Afbeelding is decoratief","Source":"Bron","Dimensions":"Afmetingen","Constrain proportions":"Verhoudingen behouden","General":"Algemeen","Advanced":"Geavanceerd","Style":"Stijl","Vertical space":"Verticale ruimte","Horizontal space":"Horizontale ruimte","Border":"Rand","Insert image":"Afbeelding invoegen","Image...":"Afbeelding...","Image list":"Afbeeldingslijst","Resize":"Formaat wijzigen","Insert date/time":"Datum/tijd invoegen","Date/time":"Datum/tijd","Insert/edit link":"Link invoegen/bewerken","Text to display":"Weer te geven tekst","Url":"Url","Open link in...":"Link openen in...","Current window":"Huidige venster","None":"Geen","New window":"Nieuw venster","Open link":"Open koppeling","Remove link":"Link verwijderen","Anchors":"Ankers","Link...":"Link...","Paste or type a link":"Een link plakken of typen","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"De ingevoerde URL lijkt op een e-mailadres. Wil je er het vereiste voorvoegsel mailto: aan toevoegen?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"De ingevoerde URL verwijst naar een extern adres. Wil je er het vereiste voorvoegsel http:// aan toevoegen?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"De ingevoerde URL verwijst naar een extern adres. Wilt u er het vereiste voorvoegsel https:// aan toevoegen?","Link list":"Lijst met links","Insert video":"Video invoegen","Insert/edit video":"Video invoegen/bewerken","Insert/edit media":"Media invoegen/bewerken","Alternative source":"Alternatieve bron","Alternative source URL":"Alternatief bron-URL","Media poster (Image URL)":"Mediaposter (afbeeldings-url)","Paste your embed code below:":"Plak de invoegcode hieronder:","Embed":"Insluiten","Media...":"Media...","Nonbreaking space":"Vaste spatie","Page break":"Pagina-einde","Paste as text":"Plakken als tekst","Preview":"Voorbeeld","Print":"Afdrukken","Print...":"Afdrukken... ","Save":"Opslaan","Find":"Zoeken","Replace with":"Vervangen door","Replace":"Vervangen","Replace all":"Alle vervangen","Previous":"Vorige","Next":"Volgende","Find and Replace":"Zoek en vervang","Find and replace...":"Zoeken en vervangen...","Could not find the specified string.":"Kan opgegeven reeks niet vinden","Match case":"Identieke hoofdletters/kleine letters","Find whole words only":"Alleen hele woorden zoeken","Find in selection":"Zoek in selectie","Insert table":"Tabel invoegen","Table properties":"Tabeleigenschappen","Delete table":"Tabel verwijderen","Cell":"Cel","Row":"Rij","Column":"Kolom","Cell properties":"Celeigenschappen","Merge cells":"Cellen samenvoegen","Split cell":"Cel splitsen","Insert row before":"Rij boven invoegen","Insert row after":"Rij onder invoegen ","Delete row":"Rij verwijderen ","Row properties":"Rijeigenschappen","Cut row":"Rij knippen","Cut column":"Knip kolom","Copy row":"Rij kopi\xebren","Copy column":"Kopieer kolom","Paste row before":"Rij plakken boven","Paste column before":"Plak kolom voor","Paste row after":"Rij plakken onder","Paste column after":"Plak kolom na","Insert column before":"Kolom invoegen voor ","Insert column after":"Kolom invoegen na","Delete column":"Kolom verwijderen","Cols":"Kolommen","Rows":"Rijen","Width":"Breedte","Height":"Hoogte","Cell spacing":"Celafstand","Cell padding":"Celopvulling","Row clipboard actions":"Rij klembord acties","Column clipboard actions":"Kolom klembord acties","Table styles":"Tabel stijlen","Cell styles":"Cel stijlen","Column header":"Kolom kop","Row header":"Rij kop","Table caption":"Tabel bijschrift","Caption":"Onderschrift","Show caption":"Bijschrift weergeven","Left":"Links","Center":"Centreren","Right":"Rechts","Cell type":"Celtype","Scope":"Bereik","Alignment":"Uitlijning","Horizontal align":"Horizontaal uitlijnen","Vertical align":"Verticaal uitlijnen","Top":"Boven","Middle":"Centreren","Bottom":"Onder","Header cell":"Koptekstcel","Row group":"Rijgroep","Column group":"Kolomgroep","Row type":"Rijtype","Header":"Koptekst ","Body":"Body","Footer":"Voettekst","Border color":"Randkleur","Solid":"Massief","Dotted":"Gestippeld","Dashed":"Onderbroken","Double":"Dubbel","Groove":"Groef","Ridge":"Ribbel","Inset":"Inzet","Outset":"Begin","Hidden":"Verborgen","Insert template...":"Sjabloon invoegen...","Templates":"Sjablonen","Template":"Sjabloon","Insert Template":"Sjabloon invoegen","Text color":"Tekstkleur","Background color":"Achtergrondkleur","Custom...":"Aangepast...","Custom color":"Aangepaste kleur","No color":"Geen kleur","Remove color":"Kleur verwijderen","Show blocks":"Blokken weergeven","Show invisible characters":"Onzichtbare tekens weergeven","Word count":"Aantal woorden","Count":"Telling","Document":"Dokument","Selection":"Selectie","Words":"Woorden","Words: {0}":"Woorden: {0}","{0} words":"{0} woorden","File":"Bestand","Edit":"Bewerken","Insert":"Invoegen","View":"Weergeven","Format":"Opmaak","Table":"Tabel","Tools":"Extra","Powered by {0}":"Mogelijk gemaakt met {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Gebied met opgemaakte tekst. Druk op ALT-F9 voor menu. Druk op ALT-F10 voor werkbalk. Druk op ALT-0 voor help.","Image title":"Afbeeldingstitel","Border width":"Randbreedte","Border style":"Randstijl","Error":"Fout","Warn":"Waarschuwen","Valid":"Geldig","To open the popup, press Shift+Enter":"Druk op Shift+Enter om de pop-up te openen","Rich Text Area":"Rijk Tekst Gebied","Rich Text Area. Press ALT-0 for help.":" Gebied met opgemaakte tekst. Druk op ALT-0 voor hulp.","System Font":"Systeemlettertype","Failed to upload image: {0}":"Niet gelukt om afbeelding te uploaden: {0}","Failed to load plugin: {0} from url {1}":"Niet gelukt om plug-in te laden: {0} vanaf URL {1}","Failed to load plugin url: {0}":"Niet gelukt om URL plug-in te laden: {0}","Failed to initialize plugin: {0}":"Niet gelukt om plug-in te initialiseren: {0}","example":"voorbeeld","Search":"Zoeken","All":"Alle","Currency":"Valuta","Text":"Tekst","Quotations":"Citaten","Mathematical":"Wiskundig","Extended Latin":"Latijn uitgebreid ","Symbols":"Symbolen","Arrows":"Pijlen","User Defined":"Door gebruiker gedefinieerd ","dollar sign":"dollarteken","currency sign":"valutateken","euro-currency sign":"euroteken","colon sign":"colon-teken","cruzeiro sign":"cruzeiro-teken","french franc sign":"franse franc-teken","lira sign":"lire-teken","mill sign":"mill-teken","naira sign":"naira-teken","peseta sign":"peseta-teken","rupee sign":"roepie-teken","won sign":"won-teken","new sheqel sign":"nieuwe sheqel-teken","dong sign":"dong-teken","kip sign":"kip-teken","tugrik sign":"tugrik-teken","drachma sign":"drachme-teken","german penny symbol":"duitse pfennig-teken","peso sign":"peso-teken","guarani sign":"guarani-teken","austral sign":"austral-teken","hryvnia sign":"hryvnia-teken","cedi sign":"cedi-teken","livre tournois sign":"livre tournois-teken","spesmilo sign":"spesmilo-teken","tenge sign":"tenge-teken","indian rupee sign":"indiaase roepie-teken","turkish lira sign":"turkse lire-teken","nordic mark sign":"noorse mark-teken","manat sign":"manat-teken","ruble sign":"roebel-teken","yen character":"yen-teken","yuan character":"yuan-teken","yuan character, in hong kong and taiwan":"yuan-teken (Hong Kong en Taiwan)","yen/yuan character variant one":"yen/yuan variant 1-teken","Emojis":"Emoji's","Emojis...":"Emoji's...","Loading emojis...":"Emoji's laden...","Could not load emojis":"Kan de emoji's niet laden","People":"Personen","Animals and Nature":"Dieren en natuur","Food and Drink":"Eten en drinken","Activity":"Activiteit","Travel and Places":"Reizen en plaatsen","Objects":"Objecten","Flags":"Vlaggen","Characters":"Tekens","Characters (no spaces)":"Tekens (geen spaties)","{0} characters":"{0} karakters","Error: Form submit field collision.":"Fout: Veldconflict bij versturen formulier.","Error: No form element found.":"Fout: Geen formulierelement gevonden.","Color swatch":"Kleurenwaaier","Color Picker":"Kleurenkiezer","Invalid hex color code: {0}":"Onjuiste hex kleurcode: {0}","Invalid input":"Ongeldige invoer","R":"R","Red component":"Rood component","G":"G","Green component":"Groen component","B":"B","Blue component":"Blauw component","#":"#","Hex color code":"Hex kleurcode","Range 0 to 255":"Bereik 0 tot 255","Turquoise":"Turkoois","Green":"Groen","Blue":"Blauw","Purple":"Paars","Navy Blue":"Marineblauw","Dark Turquoise":"Donkerturquoise","Dark Green":"Donkergroen","Medium Blue":"Middelblauw","Medium Purple":"Middelpaars","Midnight Blue":"Middernachtblauw","Yellow":"Geel","Orange":"Oranje","Red":"Rood","Light Gray":"Lichtgrijs","Gray":"Grijs","Dark Yellow":"Donkergeel","Dark Orange":"Donkeroranje","Dark Red":"Donkerrood","Medium Gray":"Middelgrijs","Dark Gray":"Donkergrijs","Light Green":"Lichtgroen","Light Yellow":"Lichtgeel","Light Red":"Lichtrood","Light Purple":"Lichtpaars","Light Blue":"Lichtblauw","Dark Purple":"Donkerpaars","Dark Blue":"Donkerblauw","Black":"Zwart","White":"Wit","Switch to or from fullscreen mode":"Overschakelen naar of vanuit de volledig scherm-modus","Open help dialog":"Help-scherm openen","history":"geschiedenis","styles":"stijlen","formatting":"opmaak","alignment":"uitlijning","indentation":"inspringing","Font":"Lettertype","Size":"Formaat","More...":"Meer...","Select...":"Selecteer...","Preferences":"Voorkeuren","Yes":"Ja","No":"Nee","Keyboard Navigation":"Toetsenbord navigatie","Version":"Versie","Code view":"Code bekijken","Open popup menu for split buttons":"Open het pop-up menu voor gesplitste knoppen","List Properties":"Lijsteigenschappen","List properties...":"Lijsteigenschappen...","Start list at number":"Begin lijst met nummer","Line height":"Lijnhoogte","Dropped file type is not supported":"Gesleepte bestandstype wordt niet ondersteund","Loading...":"Laden...","ImageProxy HTTP error: Rejected request":"ImageProxy HTTP fout: Aanvraag afgewezen","ImageProxy HTTP error: Could not find Image Proxy":"ImageProxy HTTP fout: Kan geen Image Proxy vinden","ImageProxy HTTP error: Incorrect Image Proxy URL":"ImageProxy HTTP fout: Incorrecte Image proxy URL","ImageProxy HTTP error: Unknown ImageProxy error":"ImageProxy HTTP fout: Onbekende ImageProxy fout"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("pl",{"Redo":"Powt\xf3rz","Undo":"Cofnij","Cut":"Wytnij","Copy":"Kopiuj","Paste":"Wklej","Select all":"Zaznacz wszystko","New document":"Nowy dokument","Ok":"Ok","Cancel":"Anuluj","Visual aids":"Pomoce wizualne","Bold":"Pogrubienie","Italic":"Kursywa","Underline":"Podkre\u015blenie","Strikethrough":"Przekre\u015blenie","Superscript":"Indeks g\xf3rny","Subscript":"Indeks dolny","Clear formatting":"Wyczy\u015b\u0107 formatowanie","Remove":"Usu\u0144","Align left":"Wyr\xf3wnaj do lewej","Align center":"Wyr\xf3wnaj do \u015brodka","Align right":"Wyr\xf3wnaj do prawej","No alignment":"Bez wyr\xf3wnania","Justify":"Wyjustuj","Bullet list":"Lista wypunktowana","Numbered list":"Lista numerowana","Decrease indent":"Zmniejsz wci\u0119cie","Increase indent":"Zwi\u0119ksz wci\u0119cie","Close":"Zamknij","Formats":"Formaty","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X/C/V.","Headings":"Nag\u0142\xf3wki","Heading 1":"Nag\u0142\xf3wek 1","Heading 2":"Nag\u0142\xf3wek 2","Heading 3":"Nag\u0142\xf3wek 3","Heading 4":"Nag\u0142\xf3wek 4","Heading 5":"Nag\u0142\xf3wek 5","Heading 6":"Nag\u0142\xf3wek 6","Preformatted":"Wst\u0119pne formatowanie","Div":"Div","Pre":"Pre","Code":"Kod","Paragraph":"Akapit","Blockquote":"Blok cytatu","Inline":"W tek\u015bcie","Blocks":"Bloki","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Wklejanie jest w trybie tekstowym. Dop\xf3ki nie wy\u0142\u0105czysz tej opcji, zawarto\u015b\u0107 b\u0119dzie wklejana jako zwyk\u0142y tekst.","Fonts":"Fonty","Font sizes":"Rozmiary czcionek","Class":"Klasa","Browse for an image":"Przegl\u0105daj za zdj\u0119ciem","OR":"LUB","Drop an image here":"Upu\u015b\u0107 obraz tutaj","Upload":"Prze\u015blij","Uploading image":"Przesy\u0142anie obrazu","Block":"Zablokuj","Align":"Wyr\xf3wnaj","Default":"Domy\u015blnie","Circle":"Ko\u0142o","Disc":"Dysk","Square":"Kwadrat","Lower Alpha":"Ma\u0142e alfanumeryczne","Lower Greek":"Ma\u0142e greckie","Lower Roman":"Ma\u0142e rzymskie","Upper Alpha":"Wielkie alfanumeryczne","Upper Roman":"Wielkie rzymskie","Anchor...":"Kotwica...","Anchor":"Kotwica","Name":"Nazwa","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"ID powinien zaczyna\u0107 si\u0119 liter\u0105 i sk\u0142ada\u0107 si\u0119 tylko z liter, cyfr, my\u015blnik\xf3w, kropek, przecink\xf3w oraz znak\xf3w podkre\u015blenia.","You have unsaved changes are you sure you want to navigate away?":"Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?","Restore last draft":"Przywr\xf3\u0107 ostatni szkic","Special character...":"Znak specjalny...","Special Character":"Znak Specjalny","Source code":"Kod \u017ar\xf3d\u0142owy","Insert/Edit code sample":"Dodaj/Edytuj przyk\u0142adowy kod","Language":"J\u0119zyk","Code sample...":"Przyk\u0142ad kodu...","Left to right":"Od lewej do prawej","Right to left":"Od prawej do lewej","Title":"Tytu\u0142","Fullscreen":"Pe\u0142ny ekran","Action":"Czynno\u015b\u0107","Shortcut":"Skr\xf3t","Help":"Pomoc","Address":"Adres","Focus to menubar":"Aktywuj pasek menu","Focus to toolbar":"Aktywuj pasek narz\u0119dzi","Focus to element path":"Aktywuj \u015bcie\u017ck\u0119 elementu","Focus to contextual toolbar":"Aktywuj pasek narz\u0119dzi menu kontekstowego","Insert link (if link plugin activated)":"Wstaw \u0142\u0105cze (je\u015bli w\u0142\u0105czono dodatek linkuj\u0105cy)","Save (if save plugin activated)":"Zapisz (je\u015bli w\u0142\u0105czono dodatek zapisuj\u0105cy)","Find (if searchreplace plugin activated)":"Znajd\u017a (je\u015bli w\u0142\u0105czono dodatek wyszukuj\u0105cy)","Plugins installed ({0}):":"Zainstalowane dodatki ({0}):","Premium plugins:":"Dodatki Premium:","Learn more...":"Dowiedz si\u0119 wi\u0119cej...","You are using {0}":"U\u017cywasz {0}","Plugins":"Dodatki","Handy Shortcuts":"Przydatne skr\xf3ty","Horizontal line":"Pozioma linia","Insert/edit image":"Wstaw/edytuj obraz","Alternative description":"Alternatywny opis","Accessibility":"Dost\u0119pno\u015b\u0107","Image is decorative":"Obraz jest dekoracyjny","Source":"\u0179r\xf3d\u0142o","Dimensions":"Wymiary","Constrain proportions":"Utrzymuj proporcje","General":"Og\xf3lne","Advanced":"Zaawansowane","Style":"Styl","Vertical space":"Odst\u0119p w pionie","Horizontal space":"Odst\u0119p w poziomie","Border":"Obramowanie","Insert image":"Wstaw obraz","Image...":"Obraz...","Image list":"Lista obraz\xf3w","Resize":"Zmie\u0144 rozmiar","Insert date/time":"Wstaw dat\u0119/godzin\u0119","Date/time":"Data/godzina","Insert/edit link":"Wstaw/edytuj \u0142\u0105cze","Text to display":"Tekst do wy\u015bwietlenia","Url":"URL","Open link in...":"Otw\xf3rz \u0142\u0105cze w...","Current window":"Bie\u017c\u0105ce okno","None":"Brak","New window":"Nowe okno","Open link":"Otw\xf3rz \u0142\u0105cze","Remove link":"Usu\u0144 \u0142\u0105cze","Anchors":"Zakotwiczenia","Link...":"\u0141\u0105cze...","Paste or type a link":"Wklej lub wpisz \u0142\u0105cze","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"Wprowadzony URL wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 wymagany prefiks mailto: ?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"Wprowadzony URL wygl\u0105da na \u0142\u0105cze zewn\u0119trzne. Czy chcesz doda\u0107 http:// jako prefiks?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"Wprowadzony URL wygl\u0105da na \u0142\u0105cze zewn\u0119trzne. Czy chcesz doda\u0107 wymagany prefiks https://?","Link list":"Lista \u0142\u0105czy","Insert video":"Wstaw wideo","Insert/edit video":"Wstaw/edytuj wideo","Insert/edit media":"Wstaw/edytuj multimedia","Alternative source":"Alternatywne \u017ar\xf3d\u0142o","Alternative source URL":"Alternatywny URL \u017ar\xf3d\u0142a","Media poster (Image URL)":"Plakat (URL obrazu)","Paste your embed code below:":"Wklej poni\u017cej kod do osadzenia:","Embed":"Osad\u017a","Media...":"Multimedia...","Nonbreaking space":"Nie\u0142amliwa spacja","Page break":"Podzia\u0142 strony","Paste as text":"Wklej jako tekst","Preview":"Podgl\u0105d","Print":"Drukuj","Print...":"Drukuj...","Save":"Zapisz","Find":"Znajd\u017a","Replace with":"Zast\u0105p ci\u0105giem:","Replace":"Zast\u0105p","Replace all":"Zast\u0105p wszystkie","Previous":"Poprzedni","Next":"Nast\u0119pny","Find and Replace":"Znajd\u017a i Zamie\u0144","Find and replace...":"Znajd\u017a i zamie\u0144...","Could not find the specified string.":"Nie znaleziono okre\u015blonego tekstu.","Match case":"Uwzgl\u0119dniaj wielko\u015b\u0107 liter","Find whole words only":"Znajd\u017a tylko ca\u0142e wyrazy","Find in selection":"Znajd\u017a w zaznaczeniu","Insert table":"Wstaw tabel\u0119","Table properties":"W\u0142a\u015bciwo\u015bci tabeli","Delete table":"Usu\u0144 tabel\u0119","Cell":"Kom\xf3rka","Row":"Wiersz","Column":"Kolumna","Cell properties":"W\u0142a\u015bciwo\u015bci kom\xf3rki","Merge cells":"Scal kom\xf3rki","Split cell":"Podziel kom\xf3rk\u0119","Insert row before":"Wstaw wiersz przed","Insert row after":"Wstaw wiersz po","Delete row":"Usu\u0144 wiersz","Row properties":"W\u0142a\u015bciwo\u015bci wiersza","Cut row":"Wytnij wiersz","Cut column":"Wytnij kolumn\u0119","Copy row":"Kopiuj wiersz","Copy column":"Kopiuj kolumn\u0119","Paste row before":"Wklej wiersz przed","Paste column before":"Wklej kolumn\u0119 przed","Paste row after":"Wklej wiersz po","Paste column after":"Wklej kolumn\u0119 po","Insert column before":"Wstaw kolumn\u0119 przed","Insert column after":"Wstaw kolumn\u0119 po","Delete column":"Usu\u0144 kolumn\u0119","Cols":"Kol.","Rows":"Wier.","Width":"Szeroko\u015b\u0107","Height":"Wysoko\u015b\u0107","Cell spacing":"Odst\u0119py kom\xf3rek","Cell padding":"Dope\u0142nienie kom\xf3rki","Row clipboard actions":"Akcje schowka dla wiersza","Column clipboard actions":"Akcje schowka dla kolumny","Table styles":"Style tabel","Cell styles":"Style kom\xf3rek","Column header":"Nag\u0142\xf3wek kolumny","Row header":"Nag\u0142\xf3wek wiersza","Table caption":"Tytu\u0142 tabeli","Caption":"Tytu\u0142","Show caption":"Poka\u017c podpis","Left":"Lewo","Center":"\u015arodek","Right":"Prawo","Cell type":"Typ kom\xf3rki","Scope":"Zasi\u0119g","Alignment":"Wyr\xf3wnanie","Horizontal align":"Wyr\xf3wnanie w poziomie","Vertical align":"Wyr\xf3wnanie w pionie","Top":"G\xf3ra","Middle":"\u015arodek","Bottom":"D\xf3\u0142","Header cell":"Kom\xf3rka nag\u0142\xf3wka","Row group":"Grupa wierszy","Column group":"Grupa kolumn","Row type":"Typ wiersza","Header":"Nag\u0142\xf3wek","Body":"Tre\u015b\u0107","Footer":"Stopka","Border color":"Kolor obramowania","Solid":"Pe\u0142ne","Dotted":"Kropkowane","Dashed":"Kreskowane","Double":"Podw\xf3jne","Groove":"Rowkowane","Ridge":"Grzbietowe","Inset":"Wstawione","Outset":"Zewn\u0119trzne","Hidden":"Ukryte","Insert template...":"Wstaw szablon...","Templates":"Szablony","Template":"Szablon","Insert Template":"Wstaw szablon","Text color":"Kolor tekstu","Background color":"Kolor t\u0142a","Custom...":"Niestandardowy...","Custom color":"Kolor niestandardowy","No color":"Bez koloru","Remove color":"Usu\u0144 kolor","Show blocks":"Poka\u017c bloki","Show invisible characters":"Poka\u017c niewidoczne znaki","Word count":"Liczba s\u0142\xf3w","Count":"Liczba","Document":"Dokument","Selection":"Zaznaczenie","Words":"S\u0142owa","Words: {0}":"S\u0142\xf3w: {0}","{0} words":"{0} s\u0142.","File":"Plik","Edit":"Edytuj","Insert":"Wstaw","View":"Widok","Format":"Format","Table":"Tabela","Tools":"Narz\u0119dzia","Powered by {0}":"Stworzone dzi\u0119ki {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Obszar Edycji. ALT-F9: menu. ALT-F10: pasek narz\u0119dzi. ALT-0: pomoc","Image title":"Tytu\u0142 obrazu","Border width":"Grubo\u015b\u0107 ramki","Border style":"Styl ramki","Error":"B\u0142\u0105d","Warn":"Ostrze\u017cenie","Valid":"Prawid\u0142owe","To open the popup, press Shift+Enter":"Aby otworzy\u0107 okienko, naci\u015bnij Shift+Enter","Rich Text Area":"Przestrze\u0144 tekstu sformatowanego","Rich Text Area. Press ALT-0 for help.":"Obszar tekstu sformatowanego. Naci\u015bnij ALT-0, aby uzyska\u0107 pomoc.","System Font":"Font systemowy","Failed to upload image: {0}":"Nie uda\u0142o si\u0119 przes\u0142a\u0107 obrazu: {0}","Failed to load plugin: {0} from url {1}":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 dodatku: {0} spod adresu url {1}","Failed to load plugin url: {0}":"Nie uda\u0142o si\u0119 za\u0142adowa\u0107 adresu url dodatku: {0}","Failed to initialize plugin: {0}":"Nie mo\u017cna zainicjowa\u0107 dodatku: {0}","example":"przyk\u0142ad","Search":"Wyszukaj","All":"Wszystkie","Currency":"Waluta","Text":"Tekst","Quotations":"Cudzys\u0142owy","Mathematical":"Matematyczne","Extended Latin":"Rozszerzony \u0142aci\u0144ski","Symbols":"Symbole","Arrows":"Strza\u0142ki","User Defined":"W\u0142asny","dollar sign":"znak dolara","currency sign":"znak waluty","euro-currency sign":"znak euro","colon sign":"znak colon","cruzeiro sign":"znak cruzeiro","french franc sign":"znak franka francuskiego","lira sign":"znak liry","mill sign":"znak mill","naira sign":"znak nairy","peseta sign":"znak pesety","rupee sign":"znak rupii","won sign":"znak wona","new sheqel sign":"znak nowego szekla","dong sign":"znak donga","kip sign":"znak kipa","tugrik sign":"znak tugrika","drachma sign":"znak drachmy","german penny symbol":"znak feniga","peso sign":"znak peso","guarani sign":"znak guarani","austral sign":"znak australa","hryvnia sign":"znak hrywny","cedi sign":"znak cedi","livre tournois sign":"znak livre tournois","spesmilo sign":"znak spesmilo","tenge sign":"znak tenge","indian rupee sign":"znak rupii indyjskiej","turkish lira sign":"znak liry tureckiej","nordic mark sign":"znak nordic mark","manat sign":"znak manata","ruble sign":"znak rubla","yen character":"znak jena","yuan character":"znak juana","yuan character, in hong kong and taiwan":"znak juana w Hongkongu i na Tajwanie","yen/yuan character variant one":"jen/juan, wariant pierwszy","Emojis":"Emotikony","Emojis...":"Emotikony...","Loading emojis...":"Wczytywanie emotikon\xf3w...","Could not load emojis":"B\u0142\u0105d wczytywania emotikon\xf3w","People":"Ludzie","Animals and Nature":"Zwierz\u0119ta i natura","Food and Drink":"Jedzenie i picie","Activity":"Aktywno\u015b\u0107","Travel and Places":"Podr\xf3\u017ce i miejsca","Objects":"Obiekty","Flags":"Flagi","Characters":"Znaki","Characters (no spaces)":"Znaki (bez spacji)","{0} characters":"{0} znak\xf3w","Error: Form submit field collision.":"B\u0142\u0105d: kolizja pola przesy\u0142ania formularza.","Error: No form element found.":"B\u0142\u0105d: nie znaleziono elementu formularza.","Color swatch":"Pr\xf3bka koloru","Color Picker":"Selektor kolor\xf3w","Invalid hex color code: {0}":"Nieprawid\u0142owy kod szesnastkowy koloru: {0}","Invalid input":"Nieprawid\u0142owa warto\u015b\u0107","R":"R","Red component":"Czerwony","G":"G","Green component":"Zielony","B":"B","Blue component":"Niebieski","#":"#","Hex color code":"Szesnastkowy kod koloru","Range 0 to 255":"Od 0 do 255","Turquoise":"Turkusowy","Green":"Zielony","Blue":"Niebieski","Purple":"Purpurowy","Navy Blue":"Ciemnoniebieski","Dark Turquoise":"Ciemnoturkusowy","Dark Green":"Ciemnozielony","Medium Blue":"\u015arednioniebieski","Medium Purple":"\u015aredniopurpurowy","Midnight Blue":"Nocny b\u0142\u0119kit","Yellow":"\u017b\xf3\u0142ty","Orange":"Pomara\u0144czowy","Red":"Czerwony","Light Gray":"Jasnoszary","Gray":"Szary","Dark Yellow":"Ciemno\u017c\xf3\u0142ty","Dark Orange":"Ciemnopomara\u0144czowy","Dark Red":"Ciemnoczerwony","Medium Gray":"\u015arednioszary","Dark Gray":"Ciemnoszary","Light Green":"Jasnozielony","Light Yellow":"Jasno\u017c\xf3\u0142ty","Light Red":"Jasnoczerwony","Light Purple":"Jasnopurpurowy","Light Blue":"Jasnoniebieski","Dark Purple":"Ciemnopurpurowy","Dark Blue":"Ciemnoniebieski","Black":"Czarny","White":"Bia\u0142y","Switch to or from fullscreen mode":"W\u0142\u0105cz lub wy\u0142\u0105cz tryb pe\u0142noekranowy","Open help dialog":"Otw\xf3rz okno dialogowe pomocy","history":"historia","styles":"style","formatting":"formatowanie","alignment":"wyr\xf3wnanie","indentation":"wci\u0119cie","Font":"Czcionka","Size":"Rozmiar","More...":"Wi\u0119cej...","Select...":"Wybierz...","Preferences":"Ustawienia","Yes":"Tak","No":"Nie","Keyboard Navigation":"Nawigacja za pomoc\u0105 klawiatury","Version":"Wersja","Code view":"Widok kodu","Open popup menu for split buttons":"Otw\xf3rz menu podr\u0119czne dla przycisk\xf3w","List Properties":"Ustawienia Listy","List properties...":"Ustawienia listy...","Start list at number":"Rozpocznij numeracj\u0119 od","Line height":"Wysoko\u015b\u0107 Linii","Dropped file type is not supported":"Dodany typ pliku nie jest obs\u0142ugiwany","Loading...":"Wczytywanie...","ImageProxy HTTP error: Rejected request":"ImageProxy HTTP b\u0142\u0105d: Odrzucono \u017c\u0105danie","ImageProxy HTTP error: Could not find Image Proxy":"ImageProxy HTTP b\u0142\u0105d: Nie znaleziono Image Proxy","ImageProxy HTTP error: Incorrect Image Proxy URL":"ImageProxy HTTP b\u0142\u0105d: Nieprawid\u0142owy adres URL Image Proxy","ImageProxy HTTP error: Unknown ImageProxy error":"ImageProxy HTTP b\u0142\u0105d: Nieznany b\u0142\u0105d ImageProxy"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("pt_BR",{"Redo":"Refazer","Undo":"Desfazer","Cut":"Recortar","Copy":"Copiar","Paste":"Colar","Select all":"Selecionar tudo","New document":"Novo documento","Ok":"OK","Cancel":"Cancelar","Visual aids":"Ajuda visual","Bold":"Negrito","Italic":"It\xe1lico","Underline":"Sublinhado","Strikethrough":"Tachado","Superscript":"Sobrescrito","Subscript":"Subscrito","Clear formatting":"Limpar formata\xe7\xe3o","Remove":"Remover","Align left":"Alinhar \xe0 esquerda","Align center":"Centralizar","Align right":"Alinhar \xe0 direita","No alignment":"Sem alinhamento","Justify":"Justificar","Bullet list":"Lista com marcadores","Numbered list":"Lista numerada","Decrease indent":"Diminuir recuo","Increase indent":"Aumentar recuo","Close":"Fechar","Formats":"Formata\xe7\xe3o","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"O seu navegador n\xe3o suporta acesso direto \xe0 \xe1rea de transfer\xeancia. Por favor use os atalhos do teclado Ctrl+X/C/V como alternativa.","Headings":"T\xedtulos","Heading 1":"T\xedtulo 1","Heading 2":"T\xedtulo 2","Heading 3":"T\xedtulo 3","Heading 4":"T\xedtulo 4","Heading 5":"T\xedtulo 5","Heading 6":"T\xedtulo 6","Preformatted":"Pr\xe9-formatado","Div":"Se\xe7\xe3o (div)","Pre":"Pr\xe9-formatado (pre)","Code":"Monoespa\xe7ada","Paragraph":"Simples","Blockquote":"Bloco de cita\xe7\xe3o","Inline":"Fonte","Blocks":"Par\xe1grafo","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"O comando Colar est\xe1 no modo de texto simples. O conte\xfado ser\xe1 colado como texto simples, at\xe9 voc\xea desligar essa op\xe7\xe3o.","Fonts":"Fonte","Font sizes":"Tamanho da fonte","Class":"Classe","Browse for an image":"Procurar uma imagem","OR":"OU","Drop an image here":"Arraste uma imagem para c\xe1","Upload":"Carregar","Uploading image":"Carregando imagem","Block":"Par\xe1grafo","Align":"Alinhamento","Default":"Padr\xe3o","Circle":"C\xedrculo","Disc":"Disco","Square":"Quadrado","Lower Alpha":"Letra Min\xfasc.","Lower Greek":"Grego Min\xfasc.","Lower Roman":"Romano Min\xfasc.","Upper Alpha":"Letra Mai\xfasc.","Upper Roman":"Romano Mai\xfasc.","Anchor...":"\xc2ncora...","Anchor":"\xc2ncora","Name":"Nome","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"O ID deve come\xe7ar com uma letra, seguida apenas por letras, n\xfameros, tra\xe7os, v\xedrgulas ou sublinhas.","You have unsaved changes are you sure you want to navigate away?":"Voc\xea tem altera\xe7\xf5es n\xe3o salvas. Voc\xea tem certeza de que deseja sair?","Restore last draft":"Restaurar \xfaltimo rascunho","Special character...":"Caractere especial...","Special Character":"Caractere especial","Source code":"C\xf3digo-fonte","Insert/Edit code sample":"Inserir/editar c\xf3digo","Language":"Idioma","Code sample...":"C\xf3digo...","Left to right":"Esquerda para direita","Right to left":"Direita para esquerda","Title":"T\xedtulo","Fullscreen":"Tela cheia","Action":"A\xe7\xe3o","Shortcut":"Atalho","Help":"Ajuda","Address":"Endere\xe7o","Focus to menubar":"Focalizar barra de menus","Focus to toolbar":"Focalizar barra de ferramentas","Focus to element path":"Focalizar caminho do elemento","Focus to contextual toolbar":"Focalizar barra de ferramentas contextual","Insert link (if link plugin activated)":"Inserir link (se o plugin de link estiver ativado)","Save (if save plugin activated)":"Salvar (se o plugin de salvar estiver ativado)","Find (if searchreplace plugin activated)":"Localizar (se o plugin de localizar e substituir estiver ativado)","Plugins installed ({0}):":"Plugins instalados ({0}):","Premium plugins:":"Plugins premium:","Learn more...":"Saber mais...","You are using {0}":"Voc\xea est\xe1 usando {0}","Plugins":"Plugins","Handy Shortcuts":"Atalhos \xfateis","Horizontal line":"Linha horizontal","Insert/edit image":"Inserir/editar imagem","Alternative description":"Descri\xe7\xe3o alternativa","Accessibility":"Acessibilidade","Image is decorative":"A imagem \xe9 decorativa","Source":"Endere\xe7o","Dimensions":"Dimens\xf5es","Constrain proportions":"Restringir propor\xe7\xf5es","General":"Geral","Advanced":"Avan\xe7ado","Style":"Estilo","Vertical space":"Espa\xe7o vertical","Horizontal space":"Espa\xe7o horizontal","Border":"Borda","Insert image":"Inserir imagem","Image...":"Imagem...","Image list":"Lista de imagens","Resize":"Redimensionar","Insert date/time":"Inserir data/hora","Date/time":"Data/hora","Insert/edit link":"Inserir/editar link","Text to display":"Texto a ser exibido","Url":"URL","Open link in...":"Abrir link em...","Current window":"Janela atual","None":"Nenhum(a)","New window":"Nova janela","Open link":"Abrir link","Remove link":"Remover link","Anchors":"\xc2ncoras","Link...":"Link...","Paste or type a link":"Cole ou digite um link","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"A URL que voc\xea informou parece ser um endere\xe7o de e-mail. Deseja adicionar o prefixo obrigat\xf3rio mailto:?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"A URL que voc\xea informou parece ser um link externo. Deseja incluir o prefixo http://?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"A URL informada parece ser um link externo. Deseja adicionar o prefixo obrigat\xf3rio https://?","Link list":"Lista de links","Insert video":"Inserir v\xeddeo","Insert/edit video":"Inserir/editar v\xeddeo","Insert/edit media":"Inserir/editar m\xeddia","Alternative source":"Endere\xe7o alternativo","Alternative source URL":"Endere\xe7o URL alternativo","Media poster (Image URL)":"Post de m\xeddia (URL da Imagem)","Paste your embed code below:":"Insira o c\xf3digo de incorpora\xe7\xe3o abaixo:","Embed":"Incorporar","Media...":"M\xeddia...","Nonbreaking space":"Espa\xe7o inquebr\xe1vel","Page break":"Quebra de p\xe1gina","Paste as text":"Colar como texto","Preview":"Pr\xe9-visualizar","Print":"Imprimir","Print...":"Imprimir...","Save":"Salvar","Find":"Localizar","Replace with":"Substituir por","Replace":"Substituir","Replace all":"Substituir tudo","Previous":"Anterior","Next":"Pr\xf3xima","Find and Replace":"Localizar e substituir","Find and replace...":"Localizar e substituir...","Could not find the specified string.":"N\xe3o foi poss\xedvel encontrar o termo especificado.","Match case":"Diferenciar mai\xfascula/min\xfascula","Find whole words only":"Encontrar somente palavras inteiras","Find in selection":"Localizar na sele\xe7\xe3o","Insert table":"Inserir tabela","Table properties":"Propriedades da tabela","Delete table":"Excluir tabela","Cell":"C\xe9lula","Row":"Linha","Column":"Coluna","Cell properties":"Propriedades da c\xe9lula","Merge cells":"Agrupar c\xe9lulas","Split cell":"Dividir c\xe9lula","Insert row before":"Inserir linha antes","Insert row after":"Inserir linha depois","Delete row":"Excluir linha","Row properties":"Propriedades da linha","Cut row":"Recortar linha","Cut column":"Recortar coluna","Copy row":"Copiar linha","Copy column":"Copiar coluna","Paste row before":"Colar linha antes","Paste column before":"Colar coluna antes","Paste row after":"Colar linha depois","Paste column after":"Colar coluna depois","Insert column before":"Inserir coluna antes","Insert column after":"Inserir coluna depois","Delete column":"Excluir coluna","Cols":"Colunas","Rows":"Linhas","Width":"Largura","Height":"Altura","Cell spacing":"Espa\xe7amento da c\xe9lula","Cell padding":"Espa\xe7amento interno da c\xe9lula","Row clipboard actions":"A\xe7\xf5es da \xe1rea de transfer\xeancia de linhas","Column clipboard actions":"A\xe7\xf5es da \xe1rea de transfer\xeancia de colunas","Table styles":"Estilos de tabela","Cell styles":"Estilos da c\xe9lula","Column header":"Cabe\xe7alho da coluna","Row header":"Cabe\xe7alho da linha","Table caption":"Legenda da tabela","Caption":"Legenda","Show caption":"Exibir legenda","Left":"\xc0 esquerda","Center":"Centro","Right":"\xc0 direita","Cell type":"Tipo de c\xe9lula","Scope":"Escopo","Alignment":"Alinhamento","Horizontal align":"Alinhamento horizontal","Vertical align":"Alinhamento vertical","Top":"Superior","Middle":"Meio","Bottom":"Inferior","Header cell":"C\xe9lula de cabe\xe7alho","Row group":"Grupo de linhas","Column group":"Grupo de colunas","Row type":"Tipo de linha","Header":"Cabe\xe7alho","Body":"Corpo","Footer":"Rodap\xe9","Border color":"Cor da borda","Solid":"S\xf3lida","Dotted":"Pontilhada","Dashed":"Tracejada","Double":"Dupla","Groove":"Chanfrada","Ridge":"Ressaltada","Inset":"Baixo relevo","Outset":"Alto relevo","Hidden":"Oculta","Insert template...":"Inserir modelo...","Templates":"Modelos","Template":"Modelo","Insert Template":"Inserir modelo","Text color":"Cor do texto","Background color":"Cor do fundo","Custom...":"Personalizado...","Custom color":"Cor personalizada","No color":"Nenhuma cor","Remove color":"Remover cor","Show blocks":"Mostrar blocos","Show invisible characters":"Exibir caracteres invis\xedveis","Word count":"Contador de palavras","Count":"Contar","Document":"Documento","Selection":"Sele\xe7\xe3o","Words":"Palavras","Words: {0}":"Palavras: {0}","{0} words":"{0} palavras","File":"Arquivo","Edit":"Editar","Insert":"Inserir","View":"Visualizar","Format":"Formatar","Table":"Tabela","Tools":"Ferramentas","Powered by {0}":"Distribu\xeddo por {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"\xc1rea de texto rico. Pressione Alt+F9 para exibir o menu, Alt+F10 para exibir a barra de ferramentas ou Alt+0 para exibir a ajuda.","Image title":"T\xedtulo da imagem","Border width":"Espessura da borda","Border style":"Estilo da borda","Error":"Erro","Warn":"Alerta","Valid":"V\xe1lido","To open the popup, press Shift+Enter":"Para abrir o di\xe1logo, pressione Shit+Enter","Rich Text Area":"\xc1rea de texto rico","Rich Text Area. Press ALT-0 for help.":"\xc1rea de texto rico. Pressione Alt+0 para ajuda.","System Font":"Fonte do sistema","Failed to upload image: {0}":"Falha ao carregar imagem: {0}","Failed to load plugin: {0} from url {1}":"Falha ao carregar plugin: {0} da URL {1}","Failed to load plugin url: {0}":"Falha ao carregar URL do plugin: {0}","Failed to initialize plugin: {0}":"Falha ao iniciar plugin: {0}","example":"exemplo","Search":"Pesquisar","All":"Tudo","Currency":"Moeda","Text":"Texto","Quotations":"Cita\xe7\xf5es","Mathematical":"Matem\xe1tico","Extended Latin":"Latino estendido","Symbols":"S\xedmbolos","Arrows":"Setas","User Defined":"Definido pelo Usu\xe1rio","dollar sign":"s\xedmbolo do d\xf3lar","currency sign":"s\xedmbolo de moeda","euro-currency sign":"s\xedmbolo do euro","colon sign":"s\xedmbolo do colon","cruzeiro sign":"s\xedmbolo do cruzeiro","french franc sign":"s\xedmbolo do franco franc\xeas","lira sign":"s\xedmbolo da lira","mill sign":"s\xedmbolo do mill","naira sign":"s\xedmbolo da naira","peseta sign":"s\xedmbolo da peseta","rupee sign":"s\xedmbolo da r\xfapia","won sign":"s\xedmbolo do won","new sheqel sign":"s\xedmbolo do novo sheqel","dong sign":"s\xedmbolo do dong","kip sign":"s\xedmbolo do kip","tugrik sign":"s\xedmbolo do tugrik","drachma sign":"s\xedmbolo do drachma","german penny symbol":"s\xedmbolo de centavo alem\xe3o","peso sign":"s\xedmbolo do peso","guarani sign":"s\xedmbolo do guarani","austral sign":"s\xedmbolo do austral","hryvnia sign":"s\xedmbolo do hryvnia","cedi sign":"s\xedmbolo do cedi","livre tournois sign":"s\xedmbolo do livre tournois","spesmilo sign":"s\xedmbolo do spesmilo","tenge sign":"s\xedmbolo do tenge","indian rupee sign":"s\xedmbolo de r\xfapia indiana","turkish lira sign":"s\xedmbolo de lira turca","nordic mark sign":"s\xedmbolo do marco n\xf3rdico","manat sign":"s\xedmbolo do manat","ruble sign":"s\xedmbolo do rublo","yen character":"caractere do yen","yuan character":"caractere do yuan","yuan character, in hong kong and taiwan":"caractere do yuan, em Hong Kong e Taiwan","yen/yuan character variant one":"varia\xe7\xe3o do caractere de yen/yuan","Emojis":"Emojis","Emojis...":"Emojis...","Loading emojis...":"Carregando emojis...","Could not load emojis":"N\xe3o foi poss\xedvel carregar os emojis","People":"Pessoas","Animals and Nature":"Animais e Natureza","Food and Drink":"Comida e Bebida","Activity":"Atividade","Travel and Places":"Viagem e Lugares","Objects":"Objetos","Flags":"Bandeiras","Characters":"Caracteres","Characters (no spaces)":"Caracteres (sem espa\xe7os)","{0} characters":"{0} caracteres","Error: Form submit field collision.":"Erro: colis\xe3o de bot\xe3o de envio do formul\xe1rio.","Error: No form element found.":"Erro: elemento de formul\xe1rio n\xe3o encontrado.","Color swatch":"Amostra de cor","Color Picker":"Seletor de cores","Invalid hex color code: {0}":"C\xf3digo hexadecimal de cor inv\xe1lido: {0}","Invalid input":"Entrada inv\xe1lida","R":"R","Red component":"Componente vermelho","G":"G","Green component":"Componente verde","B":"B","Blue component":"Componente azul","#":"#","Hex color code":"C\xf3digo hexadecimal de cor","Range 0 to 255":"Faixa entre 0 e 255","Turquoise":"Turquesa","Green":"Verde","Blue":"Azul","Purple":"Roxo","Navy Blue":"Azul marinho","Dark Turquoise":"Turquesa escuro","Dark Green":"Verde escuro","Medium Blue":"Azul m\xe9dio","Medium Purple":"Roxo m\xe9dio","Midnight Blue":"Azul meia-noite","Yellow":"Amarelo","Orange":"Laranja","Red":"Vermelho","Light Gray":"Cinza claro","Gray":"Cinza","Dark Yellow":"Amarelo escuro","Dark Orange":"Laranja escuro","Dark Red":"Vermelho escuro","Medium Gray":"Cinza m\xe9dio","Dark Gray":"Cinza escuro","Light Green":"Verde claro","Light Yellow":"Amarelo claro","Light Red":"Vermelho claro","Light Purple":"Roxo claro","Light Blue":"Azul claro","Dark Purple":"Roxo escuro","Dark Blue":"Azul escuro","Black":"Preto","White":"Branco","Switch to or from fullscreen mode":"Abrir ou fechar modo de tela cheia","Open help dialog":"Abrir di\xe1logo de ajuda","history":"hist\xf3rico","styles":"estilos","formatting":"formata\xe7\xe3o","alignment":"alinhamento","indentation":"indenta\xe7\xe3o","Font":"Fonte","Size":"Tamanho","More...":"Mais...","Select...":"Selecionar...","Preferences":"Prefer\xeancias","Yes":"Sim","No":"N\xe3o","Keyboard Navigation":"Navega\xe7\xe3o pelo teclado","Version":"Vers\xe3o","Code view":"Ver c\xf3digo","Open popup menu for split buttons":"Abrir menu popup para bot\xf5es com divis\xe3o","List Properties":"Listar propriedades","List properties...":"Listar propriedades...","Start list at number":"Iniciar a lista no n\xfamero","Line height":"Altura da linha","Dropped file type is not supported":"O tipo do arquivo arrastado n\xe3o \xe9 compat\xedvel","Loading...":"Carregando...","ImageProxy HTTP error: Rejected request":"Erro HTTP ImageProxy: solicita\xe7\xe3o rejeitada","ImageProxy HTTP error: Could not find Image Proxy":"Erro de HTTP ImageProxy: n\xe3o foi poss\xedvel encontrar o proxy de imagem","ImageProxy HTTP error: Incorrect Image Proxy URL":"Erro de HTTP ImageProxy: URL de proxy de imagem incorreto","ImageProxy HTTP error: Unknown ImageProxy error":"Erro de HTTP ImageProxy: erro ImageProxy desconhecido"});
@@ -1 +0,0 @@
1
- tinymce.addI18n("ro",{"Redo":"Refacere","Undo":"Anulare","Cut":"Decupare","Copy":"Copiere","Paste":"Lipire","Select all":"Selecteaz\u0103 tot","New document":"Document nou","Ok":"Ok","Cancel":"Revocare","Visual aids":"Ajutoare vizuale","Bold":"Aldin","Italic":"Cursiv","Underline":"Subliniere","Strikethrough":"T\u0103iere","Superscript":"Exponent","Subscript":"Indice","Clear formatting":"\xcendep\u0103rtare formatare","Remove":"\u0218terge","Align left":"Aliniere st\xe2nga","Align center":"Aliniere centru","Align right":"Aliniere dreapta","No alignment":"F\u0103r\u0103 aliniere","Justify":"Aliniere st\xe2nga-dreapta","Bullet list":"List\u0103 marcatori","Numbered list":"List\u0103 numerotat\u0103","Decrease indent":"Mic\u0219orare indent","Increase indent":"M\u0103rire indent","Close":"\xcenchidere","Formats":"Formate","Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.":"Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \xeen schimb scurt\u0103turile de tastatur\u0103 Ctrl+X/C/V.","Headings":"Rubrici","Heading 1":"Titlu 1","Heading 2":"Titlu 2","Heading 3":"Titlu 3","Heading 4":"Titlu 4","Heading 5":"Titlu 5","Heading 6":"Titlu 6","Preformatted":"Preformatat","Div":"Div","Pre":"Pre","Code":"Cod","Paragraph":"Paragraf","Blockquote":"Bloc de citate","Inline":"\xcen linie","Blocks":"Blocuri","Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.":"Lipirea este \xeen mod text simplu. Con\u021binutul va fi lipit ca text simplu p\xe2n\u0103 dezactiva\u021bi aceast\u0103 op\u021biune.","Fonts":"Fonturi","Font sizes":"Dimensiuni de font","Class":"Clas\u0103","Browse for an image":"C\u0103uta\u021bi o imagine","OR":"SAU","Drop an image here":"Glisa\u021bi o imagine aici","Upload":"\xcenc\u0103rcare","Uploading image":"","Block":"Sec\u021biune","Align":"Aliniere","Default":"Implicit","Circle":"Cerc","Disc":"Punct","Square":"P\u0103trat","Lower Alpha":"Litere mici","Lower Greek":"Grecesc mic","Lower Roman":"Cifre romane mici","Upper Alpha":"Litere mari","Upper Roman":"Cifre romane mari","Anchor...":"Ancor\u0103\u2026","Anchor":"Ancor\u0103","Name":"Nume","ID":"ID","ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.":"ID-ul trebuie s\u0103 \xeenceap\u0103 cu o liter\u0103, urmat\u0103 doar de litere, cifre, liniu\u021be, puncte, dou\u0103 puncte sau litere de subliniere.","You have unsaved changes are you sure you want to navigate away?":"Ave\u021bi modific\u0103ri nesalvate. Sigur dori\u021bi s\u0103 naviga\u021bi \xeen alt\u0103 parte?","Restore last draft":"Restabili\u021bi ultima ciorn\u0103","Special character...":"Caracter special\u2026","Special Character":"Caracter special","Source code":"Cod surs\u0103","Insert/Edit code sample":"Inserare/Editare mostr\u0103 cod","Language":"Limb\u0103","Code sample...":"Mostr\u0103 cod\u2026","Left to right":"St\xe2nga la dreapta","Right to left":"Dreapta la st\xe2nga","Title":"Titlu","Fullscreen":"Ecran complet","Action":"Ac\u0163iune","Shortcut":"Comand\u0103 rapid\u0103","Help":"Ajutor","Address":"Adres\u0103","Focus to menubar":"Centrare pe bara de meniuri","Focus to toolbar":"Centrare pe bara de unelte","Focus to element path":"Centrare pe calea elementului","Focus to contextual toolbar":"Centrare pe bara de unelte contextual\u0103","Insert link (if link plugin activated)":"Inserare link (dac\u0103 modulul de link-uri este activat)","Save (if save plugin activated)":"Salvare (dac\u0103 modulul de salvare este activat)","Find (if searchreplace plugin activated)":"C\u0103utare (dac\u0103 modulul de c\u0103utare \u0219i \xeenlocuire este activat)","Plugins installed ({0}):":"Module instalate ({0}):","Premium plugins:":"Module premium:","Learn more...":"Afla\u021bi mai multe\u2026","You are using {0}":"Folosi\u021bi {0}","Plugins":"Inserturi","Handy Shortcuts":"Comenzi rapide accesibile","Horizontal line":"Linie orizontal\u0103","Insert/edit image":"Inserare/editare imagini","Alternative description":"Descriere alternativ\u0103","Accessibility":"Accesibilitate","Image is decorative":"Imaginea este decorativ\u0103","Source":"Surs\u0103","Dimensions":"Dimensiuni","Constrain proportions":"Restric\u021bionare propor\u021bii","General":"General","Advanced":"Complex","Style":"Stil","Vertical space":"Spa\u0163iu vertical","Horizontal space":"Spa\u0163iu orizontal","Border":"Chenar","Insert image":"Inserare imagine","Image...":"Imagine\u2026","Image list":"List\u0103 de imagini","Resize":"Redimensionare","Insert date/time":"Inserare dat\u0103/or\u0103","Date/time":"Dat\u0103/or\u0103","Insert/edit link":"Inserare/editare link","Text to display":"Text de afi\u0219at","Url":"Url","Open link in...":"Deschide link \xeen\u2026","Current window":"Fereastra curent\u0103","None":"Nu se utilizeaz\u0103 (acest c\xe2mp)","New window":"Fereastr\u0103 nou\u0103","Open link":"Deschide leg\u0103tur\u0103","Remove link":"Eliminare link","Anchors":"Ancore","Link...":"Link\u2026","Paste or type a link":"Lipi\u021bi sau scrie\u021bi un link","The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?":"URL-ul introdus pare a fi o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: necesar?","The URL you entered seems to be an external link. Do you want to add the required http:// prefix?":"URL-ul introdus pare a fi un link extern. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:// necesar?","The URL you entered seems to be an external link. Do you want to add the required https:// prefix?":"Adresa URL pe care a\u021bi introdus-o pare a fi un leg\u0103tur\u0103 extern\u0103. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul https:// necesar?","Link list":"List\u0103 linkuri","Insert video":"Inserare video","Insert/edit video":"Inserare/editare video","Insert/edit media":"Inserare/editare media","Alternative source":"Surs\u0103 alternativ\u0103","Alternative source URL":"URL surs\u0103 alternativ\u0103","Media poster (Image URL)":"Poster media (URL imagine)","Paste your embed code below:":"Lipi\u021bi codul de \xeencorporare mai jos:","Embed":"\xcencorporare","Media...":"Media\u2026","Nonbreaking space":"Spa\u021biu f\u0103r\u0103 \xeentreruperi","Page break":"\xcentrerupere de pagin\u0103","Paste as text":"Lipire ca text","Preview":"Previzualizare","Print":"Imprimare","Print...":"Tip\u0103rire\u2026","Save":"Salvare","Find":"G\u0103sire","Replace with":"\xcenlocuire cu","Replace":"\xcenlocuire","Replace all":"\xcenlocuire peste tot","Previous":"Anterior","Next":"Urm\u0103torul","Find and Replace":"G\u0103si\u021bi \u0219i \xeenlocui\u021bi","Find and replace...":"C\u0103utare \u0219i \xeenlocuire\u2026","Could not find the specified string.":"Nu s-a g\u0103sit \u0219irul indicat.","Match case":"Potrivire litere mari \u0219i mici","Find whole words only":"G\u0103se\u0219te doar cuvintele \xeentregi","Find in selection":"G\u0103si\u021bi \xeen selec\u021bie","Insert table":"Inserare tabel","Table properties":"Propriet\u0103\u021bi tabel","Delete table":"Eliminare tabel","Cell":"Celul\u0103","Row":"R\xe2nd","Column":"Coloan\u0103","Cell properties":"Propriet\u0103\u021bi celul\u0103","Merge cells":"\xcembinare celule","Split cell":"Scindare celul\u0103","Insert row before":"Inserare r\xe2nd \xeenainte","Insert row after":"Inserare r\xe2nd dup\u0103","Delete row":"Eliminare r\xe2nd","Row properties":"Propriet\u0103\u021bi r\xe2nd","Cut row":"Decupare r\xe2nd","Cut column":"T\u0103ia\u021bi coloana","Copy row":"Copiere r\xe2nd","Copy column":"Copia\u021bi coloana","Paste row before":"Lipire r\xe2nd \xeenainte","Paste column before":"Inserare coloan\u0103 \xeenainte","Paste row after":"Lipire r\xe2nd dup\u0103","Paste column after":"Inserare coloan\u0103 dup\u0103","Insert column before":"Inserare coloan\u0103 \xeenainte","Insert column after":"Inserare coloan\u0103 dup\u0103","Delete column":"Eliminare coloan\u0103","Cols":"Coloane","Rows":"R\xe2nduri","Width":"L\u0103\u021bime","Height":"\xcen\u0103l\u021bime","Cell spacing":"Spa\u021biere celul\u0103","Cell padding":"Spa\u021biere \xeen celul\u0103","Row clipboard actions":"Ac\u021biuni clipboard pe r\xe2nd","Column clipboard actions":"","Table styles":"","Cell styles":"","Column header":"","Row header":"","Table caption":"","Caption":"Titlu","Show caption":"Afi\u0219are captur\u0103","Left":"St\xe2nga","Center":"Centru","Right":"Dreapta","Cell type":"Tip celul\u0103","Scope":"Domeniu","Alignment":"Aliniere","Horizontal align":"","Vertical align":"","Top":"Sus","Middle":"Mijloc","Bottom":"Jos","Header cell":"Celul\u0103 de antet","Row group":"Grupare r\xe2nduri","Column group":"Grup coloane","Row type":"Tip r\xe2nd","Header":"","Body":"Corp","Footer":"","Border color":"Culoare chenar","Solid":"","Dotted":"","Dashed":"","Double":"","Groove":"","Ridge":"","Inset":"","Outset":"","Hidden":"","Insert template...":"Inserare \u0219ablon\u2026","Templates":"\u0218abloane","Template":"\u0218ablon","Insert Template":"","Text color":"Culoare text","Background color":"Culoare fundal","Custom...":"Particularizare...","Custom color":"Culoare personalizat\u0103","No color":"F\u0103r\u0103 culoare","Remove color":"Eliminare culoare","Show blocks":"Arat\u0103 rubricile","Show invisible characters":"Arat\u0103 caracterele invizibile","Word count":"Num\u0103r\u0103toare cuvinte","Count":"Num\u0103r\u0103toare","Document":"","Selection":"Selec\u021bie","Words":"Cuvinte","Words: {0}":"Cuvinte: {0}","{0} words":"{0} cuvinte","File":"Fi\u0219ier","Edit":"Editare","Insert":"Inserare","View":"Vizualizare","Format":"","Table":"Tabel","Tools":"Unelte","Powered by {0}":"Sus\u021binut de {0}","Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help":"Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-F9 pentru a accesa meniul. Ap\u0103sa\u021bi ALT-F10 pentru a accesa bara de unelte. Ap\u0103sa\u021bi ALT-0 pentru ajutor","Image title":"Titlu imagine","Border width":"Grosime chenar","Border style":"Stil chenar","Error":"Eroare","Warn":"Aten\u021bionare","Valid":"","To open the popup, press Shift+Enter":"Pentru a deschide fereastra popup, ap\u0103sa\u021bi Shift+Enter","Rich Text Area":"","Rich Text Area. Press ALT-0 for help.":"Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.","System Font":"Font Sistem","Failed to upload image: {0}":"Nu s-a putut \xeenc\u0103rca imaginea: {0}","Failed to load plugin: {0} from url {1}":"Nu s-a putut \xeenc\u0103rca modulul: {0} de la URL-ul {1}","Failed to load plugin url: {0}":"Nu s-a putut \xeenc\u0103rca URL-ul modulului: {0}","Failed to initialize plugin: {0}":"Nu s-a putut ini\u021bializa modulul: {0}","example":"exemplu","Search":"C\u0103utare","All":"Tot","Currency":"Moned\u0103","Text":"","Quotations":"Ghilimele","Mathematical":"Simboluri matematice","Extended Latin":"Simboluri alfabet latin extins","Symbols":"Simboluri","Arrows":"S\u0103ge\u021bi","User Defined":"Definite de utilizator","dollar sign":"simbol dolar","currency sign":"simbol moned\u0103","euro-currency sign":"simbol euro","colon sign":"dou\u0103 puncte","cruzeiro sign":"simbol cruzeiro","french franc sign":"simbol franc francez","lira sign":"simbol lir\u0103","mill sign":"simbol mill","naira sign":"simbol naira","peseta sign":"simbol peset\u0103","rupee sign":"simbol rupie","won sign":"simbol won","new sheqel sign":"simbol shekel nou","dong sign":"simbol dong","kip sign":"simbol kip","tugrik sign":"simbol tugrik","drachma sign":"simbol drahm\u0103","german penny symbol":"simbol peni german","peso sign":"simbol peso","guarani sign":"simbol guarani","austral sign":"simbol austral","hryvnia sign":"simbol grivn\u0103","cedi sign":"simbol cedi","livre tournois sign":"simbol livr\u0103 tournois","spesmilo sign":"simbol spesmilo","tenge sign":"simbol tenge","indian rupee sign":"simbol rupie indian\u0103","turkish lira sign":"simbol lir\u0103 turceasc\u0103","nordic mark sign":"simbol marc\u0103 nordic\u0103","manat sign":"simbol manat","ruble sign":"simbol rubl\u0103","yen character":"simbol yen","yuan character":"simbol yuan","yuan character, in hong kong and taiwan":"simbol yuan \xeen Hong Kong \u0219i Taiwan","yen/yuan character variant one":"simbol yen/yuan prima variant\u0103","Emojis":"","Emojis...":"","Loading emojis...":"","Could not load emojis":"","People":"Persoane","Animals and Nature":"Animale \u0219i natur\u0103","Food and Drink":"M\xe2ncare \u0219i b\u0103uturi","Activity":"Activit\u0103\u021bi","Travel and Places":"C\u0103l\u0103torii \u0219i loca\u021bii","Objects":"Obiecte","Flags":"Steaguri","Characters":"Caractere","Characters (no spaces)":"Caractere (f\u0103r\u0103 spa\u021bii)","{0} characters":"{0} caractere","Error: Form submit field collision.":"Eroare: Coliziune c\xe2mpuri la trimiterea formularului.","Error: No form element found.":"Eroare: Niciun element de formular g\u0103sit.","Color swatch":"Mostr\u0103 de culori","Color Picker":"Selector culori","Invalid hex color code: {0}":"","Invalid input":"","R":"","Red component":"","G":"","Green component":"","B":"","Blue component":"","#":"","Hex color code":"","Range 0 to 255":"","Turquoise":"Turcoaz","Green":"Verde","Blue":"Albastru","Purple":"Mov","Navy Blue":"Albastru marin","Dark Turquoise":"Turcoaz \xeenchis","Dark Green":"Verde \xeenchis","Medium Blue":"Albastru mediu","Medium Purple":"Mov mediu","Midnight Blue":"Albastru \xeenchis","Yellow":"Galben","Orange":"Portocaliu","Red":"Ro\u0219u","Light Gray":"Gri deschis","Gray":"Gri","Dark Yellow":"Galben \xeenchis","Dark Orange":"Portocaliu \xeenchis","Dark Red":"Ro\u0219u \xeenchis","Medium Gray":"Gri mediu","Dark Gray":"Gri \xeenchis","Light Green":"Verde deschis","Light Yellow":"Galben deschis","Light Red":"Ro\u015fu deschis","Light Purple":"Violet deschis","Light Blue":"Albastru deschis","Dark Purple":"Violet \xeenchis","Dark Blue":"Negru \xeenchis","Black":"Negru","White":"Alb","Switch to or from fullscreen mode":"Comutare pe sau de la modul ecran complet","Open help dialog":"Deschide dialogul de ajutor","history":"istoric","styles":"stiluri","formatting":"formatare","alignment":"aliniere","indentation":"indentare","Font":"","Size":"Dimensiuni","More...":"Mai multe...","Select...":"Selectare...","Preferences":"Preferin\u021be","Yes":"Da","No":"Nu","Keyboard Navigation":"Navigare de la tastatur\u0103","Version":"Versiune","Code view":"Vizualizare cod","Open popup menu for split buttons":"Deschide\u021bi meniul pop-up pentru butoanele divizate","List Properties":"Propriet\u0103\u021bi list\u0103","List properties...":"Propriet\u0103\u021bi list\u0103...","Start list at number":"\xcencepe\u021bi lista la num\u0103rul","Line height":"\xcen\u0103l\u021bimea liniei","Dropped file type is not supported":"","Loading...":"","ImageProxy HTTP error: Rejected request":"","ImageProxy HTTP error: Could not find Image Proxy":"","ImageProxy HTTP error: Incorrect Image Proxy URL":"","ImageProxy HTTP error: Unknown ImageProxy error":""});