typo 5.0.3.98.1 → 5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (453) hide show
  1. data/CHANGES-5.1 +54 -0
  2. data/app/apis/meta_weblog_service.rb +7 -6
  3. data/app/controllers/accounts_controller.rb +2 -1
  4. data/app/controllers/admin/content_controller.rb +45 -3
  5. data/app/controllers/admin/pages_controller.rb +1 -1
  6. data/app/controllers/admin/textfilters_controller.rb +4 -4
  7. data/app/controllers/admin/users_controller.rb +14 -2
  8. data/app/controllers/application.rb +4 -1
  9. data/app/controllers/articles_controller.rb +1 -3
  10. data/app/controllers/backend_controller.rb +2 -0
  11. data/app/controllers/comments_controller.rb +6 -0
  12. data/app/helpers/admin/base_helper.rb +24 -26
  13. data/app/helpers/admin/feedback_helper.rb +0 -20
  14. data/app/helpers/application_helper.rb +1 -0
  15. data/app/models/article.rb +2 -0
  16. data/app/models/blog.rb +1 -0
  17. data/app/models/blog_sweeper.rb +8 -9
  18. data/app/models/page_cache.rb +1 -0
  19. data/app/models/tag.rb +2 -2
  20. data/app/models/user.rb +5 -1
  21. data/app/views/admin/blacklist/destroy.html.erb +1 -1
  22. data/app/views/admin/categories/destroy.html.erb +1 -1
  23. data/app/views/admin/comments/destroy.html.erb +1 -1
  24. data/app/views/admin/content/_articles.html.erb +4 -4
  25. data/app/views/admin/content/_attachment.html.erb +6 -7
  26. data/app/views/admin/content/_drafts.html.erb +6 -0
  27. data/app/views/admin/content/_form.html.erb +47 -34
  28. data/app/views/admin/content/destroy.html.erb +1 -1
  29. data/app/views/admin/content/edit.html.erb +1 -1
  30. data/app/views/admin/content/index.html.erb +1 -6
  31. data/app/views/admin/content/new.html.erb +1 -1
  32. data/app/views/admin/pages/_form.html.erb +4 -3
  33. data/app/views/admin/pages/_pages.html.erb +3 -3
  34. data/app/views/admin/pages/destroy.html.erb +1 -1
  35. data/app/views/admin/resources/destroy.html.erb +1 -1
  36. data/app/views/admin/settings/index.html.erb +10 -0
  37. data/app/views/admin/shared/_edit.html.erb +1 -6
  38. data/app/views/admin/textfilters/destroy.html.erb +3 -0
  39. data/app/views/admin/textfilters/edit.html.erb +3 -1
  40. data/app/views/admin/textfilters/index.html.erb +1 -1
  41. data/app/views/admin/textfilters/new.html.erb +3 -1
  42. data/app/views/admin/trackbacks/show.html.erb +1 -1
  43. data/app/views/admin/users/destroy.html.erb +1 -1
  44. data/app/views/admin/users/edit.html.erb +1 -5
  45. data/app/views/admin/users/index.html.erb +1 -1
  46. data/app/views/articles/_comment_failed.html.erb +3 -0
  47. data/config/initializers/access_rules.rb +3 -3
  48. data/db/migrate/070_add_users_to_non_admins.rb +17 -0
  49. data/installer/rails_installer_defaults.yml +1 -1
  50. data/lib/tasks/release.rake +3 -3
  51. data/lib/typo_version.rb +1 -1
  52. data/public/images/admin/cancel.png +0 -0
  53. data/public/images/admin/checked.png +0 -0
  54. data/public/images/admin/delete.png +0 -0
  55. data/public/images/admin/edit.png +0 -0
  56. data/public/images/admin/show.png +0 -0
  57. data/public/javascripts/controls.js +2 -0
  58. data/public/javascripts/dragdrop.js +2 -0
  59. data/public/javascripts/effects.js +6 -4
  60. data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
  61. data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
  62. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
  63. data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
  64. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
  65. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
  66. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
  67. data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
  68. data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
  69. data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
  70. data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
  71. data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
  72. data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
  73. data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
  74. data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
  75. data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
  76. data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
  77. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
  78. data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
  79. data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
  80. data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
  81. data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
  82. data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
  83. data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
  84. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
  85. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
  86. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
  87. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
  88. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
  89. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
  90. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
  91. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
  92. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
  93. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
  94. data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
  95. data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
  96. data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
  97. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
  98. data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
  99. data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
  100. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
  101. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
  102. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
  103. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
  104. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
  105. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
  106. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
  107. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
  108. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
  109. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
  110. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
  111. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
  112. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
  113. data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
  114. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
  115. data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
  116. data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
  117. data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
  118. data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
  119. data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
  120. data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
  121. data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
  122. data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
  123. data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
  124. data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
  125. data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
  126. data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
  127. data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
  128. data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
  129. data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
  130. data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
  131. data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
  132. data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
  133. data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
  134. data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
  135. data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
  136. data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
  137. data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
  138. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
  139. data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
  140. data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
  141. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
  142. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
  143. data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
  144. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
  145. data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
  146. data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
  147. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
  148. data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
  149. data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
  150. data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
  151. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
  152. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
  153. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
  154. data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
  155. data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
  156. data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
  157. data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
  158. data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
  159. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
  160. data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
  161. data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
  162. data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
  163. data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
  164. data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
  165. data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
  166. data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
  167. data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
  168. data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
  169. data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
  170. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
  171. data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
  172. data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
  173. data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
  174. data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
  175. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
  176. data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
  177. data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
  178. data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
  179. data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
  180. data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
  181. data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
  182. data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
  183. data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
  184. data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
  185. data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
  186. data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
  187. data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
  188. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
  189. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
  190. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
  191. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
  192. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
  193. data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
  194. data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
  195. data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
  196. data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
  197. data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
  198. data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
  199. data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
  200. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
  201. data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
  202. data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
  203. data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
  204. data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
  205. data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
  206. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
  207. data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
  208. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
  209. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
  210. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
  211. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
  212. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
  213. data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
  214. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
  215. data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
  216. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
  217. data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
  218. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
  219. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
  220. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
  221. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
  222. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
  223. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
  224. data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
  225. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
  226. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
  227. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
  228. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
  229. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
  230. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
  231. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
  232. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
  233. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
  234. data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
  235. data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
  236. data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
  237. data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
  238. data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
  239. data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
  240. data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
  241. data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
  242. data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
  243. data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
  244. data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
  245. data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
  246. data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
  247. data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
  248. data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
  249. data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
  250. data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
  251. data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
  252. data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
  253. data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
  254. data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
  255. data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
  256. data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
  257. data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
  258. data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
  259. data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
  260. data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
  261. data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
  262. data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
  263. data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
  264. data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
  265. data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
  266. data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
  267. data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
  268. data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
  269. data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
  270. data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
  271. data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
  272. data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
  273. data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
  274. data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
  275. data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
  276. data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
  277. data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
  278. data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
  279. data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
  280. data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
  281. data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
  282. data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
  283. data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
  284. data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
  285. data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
  286. data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
  287. data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
  288. data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
  289. data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
  290. data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
  291. data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
  292. data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
  293. data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
  294. data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
  295. data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
  296. data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
  297. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
  298. data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
  299. data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
  300. data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
  301. data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
  302. data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
  303. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
  304. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
  305. data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
  306. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
  307. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
  308. data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
  309. data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
  310. data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
  311. data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
  312. data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
  313. data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
  314. data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
  315. data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
  316. data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
  317. data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
  318. data/public/javascripts/fckeditor/fckconfig.js +58 -55
  319. data/public/javascripts/fckeditor/fckeditor.js +99 -8
  320. data/public/javascripts/fckeditor/fckeditor.py +2 -4
  321. data/public/javascripts/fckeditor/fckpackager.xml +12 -12
  322. data/public/javascripts/fckeditor/fckstyles.xml +2 -5
  323. data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
  324. data/public/javascripts/fckeditor/license.txt +1 -2
  325. data/public/javascripts/prototype.js +46 -101
  326. data/public/javascripts/scriptaculous.js +28 -17
  327. data/public/stylesheets/administration.css +5 -1
  328. data/themes/dirtylicious/about.markdown +3 -0
  329. data/themes/dirtylicious/images/body.jpg +0 -0
  330. data/themes/dirtylicious/images/container.jpg +0 -0
  331. data/themes/dirtylicious/images/gravatar.gif +0 -0
  332. data/themes/dirtylicious/images/header.jpg +0 -0
  333. data/themes/dirtylicious/images/li.gif +0 -0
  334. data/themes/dirtylicious/images/main.gif +0 -0
  335. data/themes/dirtylicious/images/nav.gif +0 -0
  336. data/themes/dirtylicious/images/quote.gif +0 -0
  337. data/themes/dirtylicious/images/spinner.gif +0 -0
  338. data/themes/dirtylicious/layouts/default.html.erb +60 -0
  339. data/themes/dirtylicious/preview.png +0 -0
  340. data/themes/dirtylicious/stylesheets/application.css +327 -0
  341. data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
  342. data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
  343. data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
  344. data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
  345. data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
  346. data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
  347. data/themes/dirtylicious/views/articles/index.html.erb +5 -0
  348. data/themes/dirtylicious/views/articles/read.html.erb +42 -0
  349. data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
  350. data/themes/standard_issue/about.markdown +5 -0
  351. data/themes/standard_issue/images/img01.gif +0 -0
  352. data/themes/standard_issue/images/img02.gif +0 -0
  353. data/themes/standard_issue/images/img03.gif +0 -0
  354. data/themes/standard_issue/images/img04.jpg +0 -0
  355. data/themes/standard_issue/images/img05.gif +0 -0
  356. data/themes/standard_issue/images/img06.gif +0 -0
  357. data/themes/standard_issue/images/img07.gif +0 -0
  358. data/themes/standard_issue/images/img08.gif +0 -0
  359. data/themes/standard_issue/images/img09.gif +0 -0
  360. data/themes/standard_issue/images/img10.gif +0 -0
  361. data/themes/standard_issue/images/spacer.gif +0 -0
  362. data/themes/standard_issue/images/spinner.gif +0 -0
  363. data/themes/standard_issue/layouts/default.html.erb +59 -0
  364. data/themes/standard_issue/preview.png +0 -0
  365. data/themes/standard_issue/stylesheets/application.css +461 -0
  366. data/themes/standard_issue/views/articles/_article.html.erb +37 -0
  367. data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
  368. data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
  369. data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
  370. data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
  371. data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
  372. data/themes/standard_issue/views/articles/index.html.erb +5 -0
  373. data/themes/standard_issue/views/articles/read.html.erb +42 -0
  374. data/themes/standard_issue/views/shared/_search.html.erb +17 -0
  375. data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
  376. data/themes/typographic/images/accept.gif +0 -0
  377. data/themes/typographic/images/accept50.gif +0 -0
  378. data/themes/typographic/images/bg_white.gif +0 -0
  379. data/themes/typographic/images/bg_wrapper.gif +0 -0
  380. data/themes/typographic/images/bullet_bottom.gif +0 -0
  381. data/themes/typographic/images/bullet_right.gif +0 -0
  382. data/themes/typographic/images/email_open.gif +0 -0
  383. data/themes/typographic/images/email_open50.gif +0 -0
  384. data/themes/typographic/images/meta.gif +0 -0
  385. data/themes/typographic/images/page_edit.gif +0 -0
  386. data/themes/typographic/images/page_edit50.gif +0 -0
  387. data/themes/typographic/images/spinner.gif +0 -0
  388. data/themes/typographic/images/tag.gif +0 -0
  389. data/themes/typographic/images/user.gif +0 -0
  390. data/themes/typographic/images/user50.gif +0 -0
  391. data/themes/typographic/images/world_link.gif +0 -0
  392. data/themes/typographic/images/world_link50.gif +0 -0
  393. data/themes/typographic/layouts/default.html.erb +5 -2
  394. data/themes/typographic/stylesheets/ie6.css +86 -0
  395. data/themes/typographic/views/articles/_article.html.erb +2 -2
  396. data/vendor/plugins/fckeditor/README +0 -7
  397. data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
  398. data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
  399. data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
  400. data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
  401. metadata +98 -66
  402. data/CHANGES-5.0.4 +0 -33
  403. data/SIDEBARS +0 -39
  404. data/app/views/admin/content/_quick_post.html.erb +0 -20
  405. data/db/schema.rb +0 -224
  406. data/public/.DS_Store +0 -0
  407. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
  408. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
  409. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
  410. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
  411. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
  412. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
  413. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
  414. data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
  415. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
  416. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
  417. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
  418. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
  419. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
  420. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
  421. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
  422. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
  423. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
  424. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
  425. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
  426. data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
  427. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
  428. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
  429. data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
  430. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
  431. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
  432. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
  433. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
  434. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
  435. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
  436. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
  437. data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
  438. data/public/javascripts/fckeditor/fckeditor.afp +0 -161
  439. data/public/javascripts/fckeditor/fckeditor.asp +0 -235
  440. data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
  441. data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
  442. data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
  443. data/test/mocks/themes/typographic/.DS_Store +0 -0
  444. data/themes/typographic/.DS_Store +0 -0
  445. data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
  446. data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
  447. data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
  448. data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
  449. data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
  450. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
  451. data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
  452. data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
  453. data/vendor/plugins/audioscrobbler_sidebar/views/content.rhtml +0 -10
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -246,7 +246,7 @@ DlgLnkUpload : "Télécharger",
246
246
  DlgLnkBtnUpload : "Envoyer sur le serveur",
247
247
 
248
248
  DlgLnkTarget : "Destination",
249
- DlgLnkTargetFrame : "<cadre>",
249
+ DlgLnkTargetFrame : "<Cadre>",
250
250
  DlgLnkTargetPopup : "<fenêtre popup>",
251
251
  DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)",
252
252
  DlgLnkTargetParent : "Fenêtre mère (_parent)",
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier
359
359
  DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.",
360
360
  DlgPasteIgnoreFont : "Ignorer les polices de caractères",
361
361
  DlgPasteRemoveStyles : "Supprimer les styles",
362
- DlgPasteCleanBox : "Effacer le contenu",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatique",
@@ -471,7 +470,7 @@ DlgDocCharSetCE : "Europe Centrale",
471
470
  DlgDocCharSetCT : "Chinois Traditionnel (Big5)",
472
471
  DlgDocCharSetCR : "Cyrillique",
473
472
  DlgDocCharSetGR : "Grec",
474
- DlgDocCharSetJP : "Japanais",
473
+ DlgDocCharSetJP : "Japonais",
475
474
  DlgDocCharSetKR : "Coréen",
476
475
  DlgDocCharSetTR : "Turc",
477
476
  DlgDocCharSetUN : "Unicode (UTF-8)",
@@ -510,7 +509,7 @@ DlgTemplatesReplace : "Remplacer tout le contenu",
510
509
  // About Dialog
511
510
  DlgAboutAboutTab : "A propos de",
512
511
  DlgAboutBrowserInfoTab : "Navigateur",
513
- DlgAboutLicenseTab : "License",
514
- DlgAboutVersion : "version",
512
+ DlgAboutLicenseTab : "Licence",
513
+ DlgAboutVersion : "Version",
515
514
  DlgAboutInfo : "Pour plus d'informations, aller à"
516
515
  };
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (<STR
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignorar as definicións de Tipografía",
361
361
  DlgPasteRemoveStyles : "Eliminar as definicións de Estilos",
362
- DlgPasteCleanBox : "Limpar o Cadro",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automático",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -45,7 +45,7 @@ InsertLinkLbl : "קישור",
45
45
  InsertLink : "הוספת/עריכת קישור",
46
46
  RemoveLink : "הסרת הקישור",
47
47
  Anchor : "הוספת/עריכת נקודת עיגון",
48
- AnchorDelete : "Remove Anchor", //MISSING
48
+ AnchorDelete : "הסר נקודת עיגון",
49
49
  InsertImageLbl : "תמונה",
50
50
  InsertImage : "הוספת/עריכת תמונה",
51
51
  InsertFlashLbl : "פלאש",
@@ -71,7 +71,7 @@ RightJustify : "יישור לימין",
71
71
  BlockJustify : "יישור לשוליים",
72
72
  DecreaseIndent : "הקטנת אינדנטציה",
73
73
  IncreaseIndent : "הגדלת אינדנטציה",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "בלוק ציטוט",
75
75
  Undo : "ביטול צעד אחרון",
76
76
  Redo : "חזרה על צעד אחרון",
77
77
  NumberedListLbl : "רשימה ממוספרת",
@@ -105,27 +105,27 @@ SelectionField : "שדה בחירה",
105
105
  ImageButton : "כפתור תמונה",
106
106
 
107
107
  FitWindow : "הגדל את גודל העורך",
108
- ShowBlocks : "Show Blocks", //MISSING
108
+ ShowBlocks : "הצג בלוקים",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "עריכת קישור",
112
112
  CellCM : "תא",
113
113
  RowCM : "שורה",
114
114
  ColumnCM : "עמודה",
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
115
+ InsertRowAfter : "הוסף שורה אחרי",
116
+ InsertRowBefore : "הוסף שורה לפני",
117
117
  DeleteRows : "מחיקת שורות",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "הוסף עמודה אחרי",
119
+ InsertColumnBefore : "הוסף עמודה לפני",
120
120
  DeleteColumns : "מחיקת עמודות",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "הוסף תא אחרי",
122
+ InsertCellBefore : "הוסף תא אחרי",
123
123
  DeleteCells : "מחיקת תאים",
124
124
  MergeCells : "מיזוג תאים",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
125
+ MergeRight : "מזג ימינה",
126
+ MergeDown : "מזג למטה",
127
+ HorizontalSplitCell : "פצל תא אופקית",
128
+ VerticalSplitCell : "פצל תא אנכית",
129
129
  TableDelete : "מחק טבלה",
130
130
  CellProperties : "תכונות התא",
131
131
  TableProperties : "תכונות הטבלה",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "צבע מסגרת",
332
332
  DlgCellBtnSelect : "בחירה...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "חפש והחלף",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "חיפוש",
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "אנא הדבק בתוך הקופסה באמצעות (<STRONG>C
359
359
  DlgPasteSec : "עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (clipboard) בצורה ישירה.אנא בצע הדבק שוב בחלון זה.",
360
360
  DlgPasteIgnoreFont : "התעלם מהגדרות סוג פונט",
361
361
  DlgPasteRemoveStyles : "הסר הגדרות סגנון",
362
- DlgPasteCleanBox : "ניקוי קופסה",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "אוטומטי",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Ctrl+V का प्रयोग करके पेस्ट
359
359
  DlgPasteSec : "आपके ब्राउज़र की सुरक्षा आपके ब्राउज़र की सुरKश सैटिंग के कारण, एडिटर आपके क्लिपबोर्ड डेटा को नहीं पा सकता है. आपको उसे इस विन्डो में दोबारा पेस्ट करना होगा.",
360
360
  DlgPasteIgnoreFont : "फ़ॉन्ट परिभाषा निकालें",
361
361
  DlgPasteRemoveStyles : "स्टाइल परिभाषा निकालें",
362
- DlgPasteCleanBox : "बॉक्स साफ़ करें",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "स्वचालित",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (<
359
359
  DlgPasteSec : "Zbog sigurnosnih postavki Vašeg pretraživača, editor nema direktan pristup Vašem međuspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.",
360
360
  DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta",
361
361
  DlgPasteRemoveStyles : "Ukloni definicije stilova",
362
- DlgPasteCleanBox : "Očisti okvir",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatski",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Másolja be az alábbi mezőbe a <STRONG>Ctrl+V</STRONG> billent
359
359
  DlgPasteSec : "A böngésző biztonsági beállításai miatt a szerkesztő nem képes hozzáférni a vágólap adataihoz. Illeszd be újra ebben az ablakban.",
360
360
  DlgPasteIgnoreFont : "Betű formázások megszüntetése",
361
361
  DlgPasteRemoveStyles : "Stílusok eltávolítása",
362
- DlgPasteCleanBox : "Törlés",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatikus",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la sco
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignora le definizioni di Font",
361
361
  DlgPasteRemoveStyles : "Rimuovi le definizioni di Stile",
362
- DlgPasteCleanBox : "Svuota area di testo",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatico",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "キーボード(<STRONG>Ctrl+V</STRONG>)を使用して、次の
359
359
  DlgPasteSec : "ブラウザのセキュリティ設定により、エディタはクリップボード・データに直接アクセスすることができません。このウィンドウは貼り付け操作を行う度に表示されます。",
360
360
  DlgPasteIgnoreFont : "FontタグのFace属性を無視します。",
361
361
  DlgPasteRemoveStyles : "スタイル定義を削除します。",
362
- DlgPasteCleanBox : "入力エリアクリア",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "自動",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "សូមចំលងអត្ថបទទៅដាក់ក្
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "មិនគិតអំពីប្រភេទពុម្ភអក្សរ",
361
361
  DlgPasteRemoveStyles : "លប់ម៉ូត",
362
- DlgPasteCleanBox : "លប់អត្ថបទចេញពីប្រអប់",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "ស្វ័យប្រវត្ត",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -104,29 +104,29 @@ Button : "버튼",
104
104
  SelectionField : "펼침목록",
105
105
  ImageButton : "이미지버튼",
106
106
 
107
- FitWindow : "Maximize the editor size", //MISSING
107
+ FitWindow : "에디터 최대화",
108
108
  ShowBlocks : "Show Blocks", //MISSING
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "링크 수정",
112
- CellCM : "Cell", //MISSING
113
- RowCM : "Row", //MISSING
114
- ColumnCM : "Column", //MISSING
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
112
+ CellCM : "셀/칸(Cell)",
113
+ RowCM : "행(Row)",
114
+ ColumnCM : "열(Column)",
115
+ InsertRowAfter : "뒤에 삽입",
116
+ InsertRowBefore : "앞에 삽입",
117
117
  DeleteRows : "가로줄 삭제",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "뒤에 삽입",
119
+ InsertColumnBefore : "앞에 삽입",
120
120
  DeleteColumns : "세로줄 삭제",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "뒤에 셀/칸 삽입",
122
+ InsertCellBefore : "앞에 셀/칸 삽입",
123
123
  DeleteCells : "셀 삭제",
124
124
  MergeCells : "셀 합치기",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
129
- TableDelete : "Delete Table", //MISSING
125
+ MergeRight : "오른쪽 뭉치기",
126
+ MergeDown : "왼쪽 뭉치기",
127
+ HorizontalSplitCell : "수평 나누기",
128
+ VerticalSplitCell : "수직 나누기",
129
+ TableDelete : " 삭제",
130
130
  CellProperties : "셀 속성",
131
131
  TableProperties : "표 속성",
132
132
  ImageProperties : "이미지 속성",
@@ -154,9 +154,9 @@ UnknownToolbarItem : "알수없는 툴바입니다. : \"%1\"",
154
154
  UnknownCommand : "알수없는 기능입니다. : \"%1\"",
155
155
  NotImplemented : "기능이 실행되지 않았습니다.",
156
156
  UnknownToolbarSet : "툴바 설정이 없습니다. : \"%1\"",
157
- NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING
158
- BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING
159
- DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING
157
+ NoActiveX : "브러우저의 보안 설정으로 인해 몇몇 기능의 작동에 장애가 있을 있습니다. \"액티브-액스 기능과 플러그 인\" 옵션을 허용하여 주시지 않으면 오류가 발생할 있습니다.",
158
+ BrowseServerBlocked : "브러우저 요소가 열리지 않습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.",
159
+ DialogBlocked : "윈도우 대화창을 없습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.",
160
160
 
161
161
  // Dialogs
162
162
  DlgBtnOK : "예",
@@ -207,7 +207,7 @@ DlgImgAlignBaseline : "기준선",
207
207
  DlgImgAlignBottom : "아래",
208
208
  DlgImgAlignMiddle : "중간",
209
209
  DlgImgAlignRight : "오른쪽",
210
- DlgImgAlignTextTop : "글자위(Text Top)",
210
+ DlgImgAlignTextTop : "글자상단",
211
211
  DlgImgAlignTop : "위",
212
212
  DlgImgPreview : "미리보기",
213
213
  DlgImgAlertUrl : "이미지 URL을 입력하십시요",
@@ -271,7 +271,7 @@ DlgLnkPopTop : "윗쪽 위치",
271
271
  DlnLnkMsgNoUrl : "링크 URL을 입력하십시요.",
272
272
  DlnLnkMsgNoEMail : "이메일주소를 입력하십시요.",
273
273
  DlnLnkMsgNoAnchor : "책갈피명을 입력하십시요.",
274
- DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
274
+ DlnLnkMsgInvPopName : "팝업창의 타이틀은 공백을 허용하지 않습니다.",
275
275
 
276
276
  // Color Dialog
277
277
  DlgColorTitle : "색상 선택",
@@ -332,7 +332,7 @@ DlgCellBorderColor : "테두리 색상",
332
332
  DlgCellBtnSelect : "선택",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "찾기 & 바꾸기",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "찾기",
@@ -356,10 +356,9 @@ PasteAsText : "텍스트로 붙여넣기",
356
356
  PasteFromWord : "MS Word 형식에서 붙여넣기",
357
357
 
358
358
  DlgPasteMsg2 : "키보드의 (<STRONG>Ctrl+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.",
359
- DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
359
+ DlgPasteSec : "브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 없습니다. 창에 다시 붙여넣기 하십시오.",
360
360
  DlgPasteIgnoreFont : "폰트 설정 무시",
361
361
  DlgPasteRemoveStyles : "스타일 정의 제거",
362
- DlgPasteCleanBox : "글상자 제거",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "기본색상",
@@ -505,12 +504,12 @@ DlgTemplatesTitle : "내용 템플릿",
505
504
  DlgTemplatesSelMsg : "에디터에서 사용할 템플릿을 선택하십시요.<br>(지금까지 작성된 내용은 사라집니다.):",
506
505
  DlgTemplatesLoading : "템플릿 목록을 불러오는중입니다. 잠시만 기다려주십시요.",
507
506
  DlgTemplatesNoTpl : "(템플릿이 없습니다.)",
508
- DlgTemplatesReplace : "Replace actual contents", //MISSING
507
+ DlgTemplatesReplace : "현재 내용 바꾸기",
509
508
 
510
509
  // About Dialog
511
510
  DlgAboutAboutTab : "About",
512
511
  DlgAboutBrowserInfoTab : "브라우저 정보",
513
512
  DlgAboutLicenseTab : "License", //MISSING
514
513
  DlgAboutVersion : "버전",
515
- DlgAboutInfo : "For further information go to"
514
+ DlgAboutInfo : " 많은 정보를 보시려면 다음 사이트로 가십시오."
516
515
  };
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami k
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus",
361
361
  DlgPasteRemoveStyles : "Pašalinti stilių nustatymus",
362
- DlgPasteCleanBox : "Trinti įvedimo lauką",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automatinis",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -359,7 +359,6 @@ DlgPasteMsg2 : "Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatū
359
359
  DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
360
  DlgPasteIgnoreFont : "Ignorēt iepriekš norādītos fontus",
361
361
  DlgPasteRemoveStyles : "Noņemt norādītos stilus",
362
- DlgPasteCleanBox : "Apstrādāt laukuma saturu",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Automātiska",
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
- * Copyright (C) 2003-2007 Frederico Caldeira Knabben
3
+ * Copyright (C) 2003-2008 Frederico Caldeira Knabben
4
4
  *
5
5
  * == BEGIN LICENSE ==
6
6
  *
@@ -44,12 +44,12 @@ RemoveFormat : "Формат авч хаях",
44
44
  InsertLinkLbl : "Линк",
45
45
  InsertLink : "Линк Оруулах/Засварлах",
46
46
  RemoveLink : "Линк авч хаях",
47
- Anchor : "Insert/Edit Anchor", //MISSING
48
- AnchorDelete : "Remove Anchor", //MISSING
47
+ Anchor : "Холбоос Оруулах/Засварлах",
48
+ AnchorDelete : "Холбоос Авах",
49
49
  InsertImageLbl : "Зураг",
50
50
  InsertImage : "Зураг Оруулах/Засварлах",
51
- InsertFlashLbl : "Flash", //MISSING
52
- InsertFlash : "Insert/Edit Flash", //MISSING
51
+ InsertFlashLbl : "Флаш",
52
+ InsertFlash : "Флаш Оруулах/Засварлах",
53
53
  InsertTableLbl : "Хүснэгт",
54
54
  InsertTable : "Хүснэгт Оруулах/Засварлах",
55
55
  InsertLineLbl : "Зураас",
@@ -71,7 +71,7 @@ RightJustify : "Баруун талд байрлуулах",
71
71
  BlockJustify : "Блок хэлбэрээр байрлуулах",
72
72
  DecreaseIndent : "Догол мөр нэмэх",
73
73
  IncreaseIndent : "Догол мөр хасах",
74
- Blockquote : "Blockquote", //MISSING
74
+ Blockquote : "Хайрцаглах",
75
75
  Undo : "Хүчингүй болгох",
76
76
  Redo : "Өмнөх үйлдлээ сэргээх",
77
77
  NumberedListLbl : "Дугаарлагдсан жагсаалт",
@@ -89,59 +89,59 @@ BGColor : "Фонны өнгө",
89
89
  Source : "Код",
90
90
  Find : "Хайх",
91
91
  Replace : "Солих",
92
- SpellCheck : "Check Spelling", //MISSING
93
- UniversalKeyboard : "Universal Keyboard", //MISSING
94
- PageBreakLbl : "Page Break", //MISSING
95
- PageBreak : "Insert Page Break", //MISSING
96
-
97
- Form : "Form", //MISSING
98
- Checkbox : "Checkbox", //MISSING
99
- RadioButton : "Radio Button", //MISSING
100
- TextField : "Text Field", //MISSING
101
- Textarea : "Textarea", //MISSING
102
- HiddenField : "Hidden Field", //MISSING
103
- Button : "Button", //MISSING
104
- SelectionField : "Selection Field", //MISSING
105
- ImageButton : "Image Button", //MISSING
106
-
107
- FitWindow : "Maximize the editor size", //MISSING
108
- ShowBlocks : "Show Blocks", //MISSING
92
+ SpellCheck : "Үгийн дүрэх шалгах",
93
+ UniversalKeyboard : "Униварсал гар",
94
+ PageBreakLbl : "Хуудас тусгаарлах",
95
+ PageBreak : "Хуудас тусгаарлагч оруулах",
96
+
97
+ Form : "Форм",
98
+ Checkbox : "Чекбокс",
99
+ RadioButton : "Радио товч",
100
+ TextField : "Техт талбар",
101
+ Textarea : "Техт орчин",
102
+ HiddenField : "Нууц талбар",
103
+ Button : "Товч",
104
+ SelectionField : "Сонгогч талбар",
105
+ ImageButton : "Зурагтай товч",
106
+
107
+ FitWindow : "editor-н хэмжээг томруулах",
108
+ ShowBlocks : "Block-уудыг үзүүлэх",
109
109
 
110
110
  // Context Menu
111
111
  EditLink : "Холбоос засварлах",
112
- CellCM : "Cell", //MISSING
113
- RowCM : "Row", //MISSING
114
- ColumnCM : "Column", //MISSING
115
- InsertRowAfter : "Insert Row After", //MISSING
116
- InsertRowBefore : "Insert Row Before", //MISSING
112
+ CellCM : "Нүх/зай",
113
+ RowCM : "Мөр",
114
+ ColumnCM : "Багана",
115
+ InsertRowAfter : "Мөр дараа нь оруулах",
116
+ InsertRowBefore : "Мөр өмнө нь оруулах",
117
117
  DeleteRows : "Мөр устгах",
118
- InsertColumnAfter : "Insert Column After", //MISSING
119
- InsertColumnBefore : "Insert Column Before", //MISSING
118
+ InsertColumnAfter : "Багана дараа нь оруулах",
119
+ InsertColumnBefore : "Багана өмнө нь оруулах",
120
120
  DeleteColumns : "Багана устгах",
121
- InsertCellAfter : "Insert Cell After", //MISSING
122
- InsertCellBefore : "Insert Cell Before", //MISSING
121
+ InsertCellAfter : "Нүх/зай дараа нь оруулах",
122
+ InsertCellBefore : "Нүх/зай өмнө нь оруулах",
123
123
  DeleteCells : "Нүх устгах",
124
124
  MergeCells : "Нүх нэгтэх",
125
- MergeRight : "Merge Right", //MISSING
126
- MergeDown : "Merge Down", //MISSING
127
- HorizontalSplitCell : "Split Cell Horizontally", //MISSING
128
- VerticalSplitCell : "Split Cell Vertically", //MISSING
129
- TableDelete : "Delete Table", //MISSING
130
- CellProperties : "Хоосон зайн шинж чанар",
125
+ MergeRight : "Баруун тийш нэгтгэх",
126
+ MergeDown : "Доош нэгтгэх",
127
+ HorizontalSplitCell : "Нүх/зайг босоогоор нь тусгаарлах",
128
+ VerticalSplitCell : "Нүх/зайг хөндлөнгөөр нь тусгаарлах",
129
+ TableDelete : "Хүснэгт устгах",
130
+ CellProperties : "Нүх/зай зайн шинж чанар",
131
131
  TableProperties : "Хүснэгт",
132
132
  ImageProperties : "Зураг",
133
- FlashProperties : "Flash Properties", //MISSING
134
-
135
- AnchorProp : "Anchor Properties", //MISSING
136
- ButtonProp : "Button Properties", //MISSING
137
- CheckboxProp : "Checkbox Properties", //MISSING
138
- HiddenFieldProp : "Hidden Field Properties", //MISSING
139
- RadioButtonProp : "Radio Button Properties", //MISSING
140
- ImageButtonProp : "Image Button Properties", //MISSING
141
- TextFieldProp : "Text Field Properties", //MISSING
142
- SelectionFieldProp : "Selection Field Properties", //MISSING
143
- TextareaProp : "Textarea Properties", //MISSING
144
- FormProp : "Form Properties", //MISSING
133
+ FlashProperties : "Флаш шинж чанар",
134
+
135
+ AnchorProp : "Холбоос шинж чанар",
136
+ ButtonProp : "Товчны шинж чанар",
137
+ CheckboxProp : "Чекбоксны шинж чанар",
138
+ HiddenFieldProp : "Нууц талбарын шинж чанар",
139
+ RadioButtonProp : "Радио товчны шинж чанар",
140
+ ImageButtonProp : "Зурган товчны шинж чанар",
141
+ TextFieldProp : "Текст талбарын шинж чанар",
142
+ SelectionFieldProp : "Согогч талбарын шинж чанар",
143
+ TextareaProp : "Текст орчны шинж чанар",
144
+ FormProp : "Форм шинж чанар",
145
145
 
146
146
  FontFormats : "Хэвийн;Formatted;Хаяг;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Paragraph (DIV)",
147
147
 
@@ -154,19 +154,19 @@ UnknownToolbarItem : "Багажны хэсгийн \"%1\" item мэдэгдэх
154
154
  UnknownCommand : "\"%1\" комманд нэр мэдагдэхгүй байна",
155
155
  NotImplemented : "Зөвшөөрөгдөхгүй комманд",
156
156
  UnknownToolbarSet : "Багажны хэсэгт \"%1\" оноох, үүсээгүй байна",
157
- NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING
158
- BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING
159
- DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING
157
+ NoActiveX : "Таны үзүүлэгч/browser хамгаалалтын тохиргоо editor зарим боломжийг хязгаарлаж байна. Та \"Run ActiveX controls ба plug-ins\" сонголыг идвэхитэй болго.",
158
+ BrowseServerBlocked : "Нөөц үзүүгч нээж чадсангүй. Бүх popup blocker-г disabled болгоно уу.",
159
+ DialogBlocked : "Харилцах цонхонд энийг нээхэд боломжгүй ээ. Бүх popup blocker-г disabled болгоно уу.",
160
160
 
161
161
  // Dialogs
162
162
  DlgBtnOK : "OK",
163
163
  DlgBtnCancel : "Болих",
164
164
  DlgBtnClose : "Хаах",
165
- DlgBtnBrowseServer : "Browse Server", //MISSING
165
+ DlgBtnBrowseServer : "Сервер харуулах",
166
166
  DlgAdvancedTag : "Нэмэлт",
167
- DlgOpOther : "<Other>", //MISSING
168
- DlgInfoTab : "Info", //MISSING
169
- DlgAlertUrl : "Please insert the URL", //MISSING
167
+ DlgOpOther : "<Бусад>",
168
+ DlgInfoTab : "Мэдээлэл",
169
+ DlgAlertUrl : "URL оруулна уу",
170
170
 
171
171
  // General Dialogs Labels
172
172
  DlgGenNotSet : "<Оноохгүй>",
@@ -194,7 +194,7 @@ DlgImgUpload : "Хуулах",
194
194
  DlgImgAlt : "Тайлбар текст",
195
195
  DlgImgWidth : "Өргөн",
196
196
  DlgImgHeight : "Өндөр",
197
- DlgImgLockRatio : "Lock Ratio",
197
+ DlgImgLockRatio : "Радио түгжих",
198
198
  DlgBtnResetSize : "хэмжээ дахин оноох",
199
199
  DlgImgBorder : "Хүрээ",
200
200
  DlgImgHSpace : "Хөндлөн зай",
@@ -211,17 +211,17 @@ DlgImgAlignTextTop : "Текст дээр",
211
211
  DlgImgAlignTop : "Дээд талд",
212
212
  DlgImgPreview : "Уридчлан харах",
213
213
  DlgImgAlertUrl : "Зурагны URL-ын төрлийн сонгоно уу",
214
- DlgImgLinkTab : "Link", //MISSING
214
+ DlgImgLinkTab : "Линк",
215
215
 
216
216
  // Flash Dialog
217
- DlgFlashTitle : "Flash Properties", //MISSING
218
- DlgFlashChkPlay : "Auto Play", //MISSING
219
- DlgFlashChkLoop : "Loop", //MISSING
220
- DlgFlashChkMenu : "Enable Flash Menu", //MISSING
221
- DlgFlashScale : "Scale", //MISSING
222
- DlgFlashScaleAll : "Show all", //MISSING
223
- DlgFlashScaleNoBorder : "No Border", //MISSING
224
- DlgFlashScaleFit : "Exact Fit", //MISSING
217
+ DlgFlashTitle : "Флаш шинж чанар",
218
+ DlgFlashChkPlay : "Автоматаар тоглох",
219
+ DlgFlashChkLoop : "Давтах",
220
+ DlgFlashChkMenu : "Флаш цэс идвэхжүүлэх",
221
+ DlgFlashScale : "Өргөгтгөх",
222
+ DlgFlashScaleAll : "Бүгдийг харуулах",
223
+ DlgFlashScaleNoBorder : "Хүрээгүй",
224
+ DlgFlashScaleFit : "Яг тааруулах",
225
225
 
226
226
  // Link Dialog
227
227
  DlgLnkWindowTitle : "Линк",
@@ -240,7 +240,7 @@ DlgLnkAnchorByName : "Холбоосын нэрээр",
240
240
  DlgLnkAnchorById : "Элемэнт Id-гаар",
241
241
  DlgLnkNoAnchors : "(Баримт бичиг холбоосгүй байна)",
242
242
  DlgLnkEMail : "E-Mail Хаяг",
243
- DlgLnkEMailSubject : "Message Subject",
243
+ DlgLnkEMailSubject : "Message гарчиг",
244
244
  DlgLnkEMailBody : "Message-ийн агуулга",
245
245
  DlgLnkUpload : "Хуулах",
246
246
  DlgLnkBtnUpload : "Үүнийг серверрүү илгээ",
@@ -252,7 +252,7 @@ DlgLnkTargetBlank : "Шинэ цонх (_blank)",
252
252
  DlgLnkTargetParent : "Эцэг цонх (_parent)",
253
253
  DlgLnkTargetSelf : "Төстэй цонх (_self)",
254
254
  DlgLnkTargetTop : "Хамгийн түрүүн байх цонх (_top)",
255
- DlgLnkTargetFrameName : "Target Frame Name", //MISSING
255
+ DlgLnkTargetFrameName : "Очих фремын нэр",
256
256
  DlgLnkPopWinName : "Popup цонхны нэр",
257
257
  DlgLnkPopWinFeat : "Popup цонхны онцлог",
258
258
  DlgLnkPopResize : "Хэмжээ өөрчлөх",
@@ -271,7 +271,7 @@ DlgLnkPopTop : "Дээд байрлал",
271
271
  DlnLnkMsgNoUrl : "Линк URL-ээ төрөлжүүлнэ үү",
272
272
  DlnLnkMsgNoEMail : "Е-mail хаягаа төрөлжүүлнэ үү",
273
273
  DlnLnkMsgNoAnchor : "Холбоосоо сонгоно уу",
274
- DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
274
+ DlnLnkMsgInvPopName : "popup нэр нь үсгэн тэмдэгтээр эхэлсэн байх ба хоосон зай агуулаагүй байх ёстой.",
275
275
 
276
276
  // Color Dialog
277
277
  DlgColorTitle : "Өнгө сонгох",
@@ -299,10 +299,10 @@ DlgTableWidth : "Өргөн",
299
299
  DlgTableWidthPx : "цэг",
300
300
  DlgTableWidthPc : "хувь",
301
301
  DlgTableHeight : "Өндөр",
302
- DlgTableCellSpace : "Нүх хоорондын зай",
303
- DlgTableCellPad : "Нүх доторлох",
302
+ DlgTableCellSpace : "Нүх хоорондын зай (spacing)",
303
+ DlgTableCellPad : "Нүх доторлох(padding)",
304
304
  DlgTableCaption : "Тайлбар",
305
- DlgTableSummary : "Summary", //MISSING
305
+ DlgTableSummary : "Тайлбар",
306
306
 
307
307
  // Table Cell Dialog
308
308
  DlgCellTitle : "Хоосон зайн шинж чанар",
@@ -325,14 +325,14 @@ DlgCellVerAlignTop : "Дээд тал",
325
325
  DlgCellVerAlignMiddle : "Дунд",
326
326
  DlgCellVerAlignBottom : "Доод тал",
327
327
  DlgCellVerAlignBaseline : "Baseline",
328
- DlgCellRowSpan : "Нийт мөр",
329
- DlgCellCollSpan : "Нийт багана",
328
+ DlgCellRowSpan : "Нийт мөр (span)",
329
+ DlgCellCollSpan : "Нийт багана (span)",
330
330
  DlgCellBackColor : "Фонны өнгө",
331
331
  DlgCellBorderColor : "Хүрээний өнгө",
332
332
  DlgCellBtnSelect : "Сонго...",
333
333
 
334
334
  // Find and Replace Dialog
335
- DlgFindAndReplaceTitle : "Find and Replace", //MISSING
335
+ DlgFindAndReplaceTitle : "Хай мөн Дарж бич",
336
336
 
337
337
  // Find Dialog
338
338
  DlgFindTitle : "Хайх",
@@ -355,162 +355,161 @@ PasteErrorCopy : "Таны browser-ын хамгаалалтын тохирго
355
355
  PasteAsText : "Plain Text-ээс буулгах",
356
356
  PasteFromWord : "Word-оос буулгах",
357
357
 
358
- DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING
359
- DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING
360
- DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING
361
- DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING
362
- DlgPasteCleanBox : "Clean Up Box", //MISSING
358
+ DlgPasteMsg2 : "(<strong>Ctrl+V</strong>) товчийг ашиглан paste хийнэ үү. Мөн <strong>OK</strong> дар.",
359
+ DlgPasteSec : "Таны үзүүлэгч/browser/-н хамгаалалтын тохиргооноос болоод editor clipboard өгөгдөлрүү шууд хандах боломжгүй. Энэ цонход дахин paste хийхийг оролд.",
360
+ DlgPasteIgnoreFont : "Тодорхойлогдсон Font Face зөвшөөрнө",
361
+ DlgPasteRemoveStyles : "Тодорхойлогдсон загварыг авах",
363
362
 
364
363
  // Color Picker
365
364
  ColorAutomatic : "Автоматаар",
366
365
  ColorMoreColors : "Нэмэлт өнгөнүүд...",
367
366
 
368
367
  // Document Properties
369
- DocProps : "Document Properties", //MISSING
368
+ DocProps : "Баримт бичиг шинж чанар",
370
369
 
371
370
  // Anchor Dialog
372
- DlgAnchorTitle : "Anchor Properties", //MISSING
373
- DlgAnchorName : "Anchor Name", //MISSING
374
- DlgAnchorErrorName : "Please type the anchor name", //MISSING
371
+ DlgAnchorTitle : "Холбоос шинж чанар",
372
+ DlgAnchorName : "Холбоос нэр",
373
+ DlgAnchorErrorName : "Холбоос төрөл оруулна уу",
375
374
 
376
375
  // Speller Pages Dialog
377
- DlgSpellNotInDic : "Not in dictionary", //MISSING
378
- DlgSpellChangeTo : "Change to", //MISSING
379
- DlgSpellBtnIgnore : "Ignore", //MISSING
380
- DlgSpellBtnIgnoreAll : "Ignore All", //MISSING
381
- DlgSpellBtnReplace : "Replace", //MISSING
382
- DlgSpellBtnReplaceAll : "Replace All", //MISSING
383
- DlgSpellBtnUndo : "Undo", //MISSING
384
- DlgSpellNoSuggestions : "- No suggestions -", //MISSING
385
- DlgSpellProgress : "Spell check in progress...", //MISSING
386
- DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING
387
- DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING
388
- DlgSpellOneChange : "Spell check complete: One word changed", //MISSING
389
- DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING
390
-
391
- IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING
376
+ DlgSpellNotInDic : "Толь бичиггүй",
377
+ DlgSpellChangeTo : "Өөрчлөх",
378
+ DlgSpellBtnIgnore : "Зөвшөөрөх",
379
+ DlgSpellBtnIgnoreAll : "Бүгдийг зөвшөөрөх",
380
+ DlgSpellBtnReplace : "Дарж бичих",
381
+ DlgSpellBtnReplaceAll : "Бүгдийг Дарж бичих",
382
+ DlgSpellBtnUndo : "Буцаах",
383
+ DlgSpellNoSuggestions : "- Тайлбаргүй -",
384
+ DlgSpellProgress : "Дүрэм шалгаж байгаа үйл явц...",
385
+ DlgSpellNoMispell : "Дүрэм шалгаад дууссан: Алдаа олдсонгүй",
386
+ DlgSpellNoChanges : "Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй",
387
+ DlgSpellOneChange : "Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн",
388
+ DlgSpellManyChanges : "Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн",
389
+
390
+ IeSpellDownload : "Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?",
392
391
 
393
392
  // Button Dialog
394
- DlgButtonText : "Text (Value)", //MISSING
395
- DlgButtonType : "Type", //MISSING
396
- DlgButtonTypeBtn : "Button", //MISSING
397
- DlgButtonTypeSbm : "Submit", //MISSING
398
- DlgButtonTypeRst : "Reset", //MISSING
393
+ DlgButtonText : "Тэкст (Утга)",
394
+ DlgButtonType : "Төрөл",
395
+ DlgButtonTypeBtn : "Товч",
396
+ DlgButtonTypeSbm : "Submit",
397
+ DlgButtonTypeRst : "Болих",
399
398
 
400
399
  // Checkbox and Radio Button Dialogs
401
- DlgCheckboxName : "Name", //MISSING
402
- DlgCheckboxValue : "Value", //MISSING
403
- DlgCheckboxSelected : "Selected", //MISSING
400
+ DlgCheckboxName : "Нэр",
401
+ DlgCheckboxValue : "Утга",
402
+ DlgCheckboxSelected : "Сонгогдсон",
404
403
 
405
404
  // Form Dialog
406
- DlgFormName : "Name", //MISSING
407
- DlgFormAction : "Action", //MISSING
408
- DlgFormMethod : "Method", //MISSING
405
+ DlgFormName : "Нэр",
406
+ DlgFormAction : "Үйлдэл",
407
+ DlgFormMethod : "Арга",
409
408
 
410
409
  // Select Field Dialog
411
- DlgSelectName : "Name", //MISSING
412
- DlgSelectValue : "Value", //MISSING
413
- DlgSelectSize : "Size", //MISSING
414
- DlgSelectLines : "lines", //MISSING
415
- DlgSelectChkMulti : "Allow multiple selections", //MISSING
416
- DlgSelectOpAvail : "Available Options", //MISSING
417
- DlgSelectOpText : "Text", //MISSING
418
- DlgSelectOpValue : "Value", //MISSING
419
- DlgSelectBtnAdd : "Add", //MISSING
420
- DlgSelectBtnModify : "Modify", //MISSING
421
- DlgSelectBtnUp : "Up", //MISSING
422
- DlgSelectBtnDown : "Down", //MISSING
423
- DlgSelectBtnSetValue : "Set as selected value", //MISSING
424
- DlgSelectBtnDelete : "Delete", //MISSING
410
+ DlgSelectName : "Нэр",
411
+ DlgSelectValue : "Утга",
412
+ DlgSelectSize : "Хэмжээ",
413
+ DlgSelectLines : "Мөр",
414
+ DlgSelectChkMulti : "Олон сонголт зөвшөөрөх",
415
+ DlgSelectOpAvail : "Идвэхтэй сонголт",
416
+ DlgSelectOpText : "Тэкст",
417
+ DlgSelectOpValue : "Утга",
418
+ DlgSelectBtnAdd : "Нэмэх",
419
+ DlgSelectBtnModify : "Өөрчлөх",
420
+ DlgSelectBtnUp : "Дээш",
421
+ DlgSelectBtnDown : "Доош",
422
+ DlgSelectBtnSetValue : "Сонгогдсан утга оноох",
423
+ DlgSelectBtnDelete : "Устгах",
425
424
 
426
425
  // Textarea Dialog
427
- DlgTextareaName : "Name", //MISSING
428
- DlgTextareaCols : "Columns", //MISSING
429
- DlgTextareaRows : "Rows", //MISSING
426
+ DlgTextareaName : "Нэр",
427
+ DlgTextareaCols : "Багана",
428
+ DlgTextareaRows : "Мөр",
430
429
 
431
430
  // Text Field Dialog
432
- DlgTextName : "Name", //MISSING
433
- DlgTextValue : "Value", //MISSING
434
- DlgTextCharWidth : "Character Width", //MISSING
435
- DlgTextMaxChars : "Maximum Characters", //MISSING
436
- DlgTextType : "Type", //MISSING
437
- DlgTextTypeText : "Text", //MISSING
438
- DlgTextTypePass : "Password", //MISSING
431
+ DlgTextName : "Нэр",
432
+ DlgTextValue : "Утга",
433
+ DlgTextCharWidth : "Тэмдэгтын өргөн",
434
+ DlgTextMaxChars : "Хамгийн их тэмдэгт",
435
+ DlgTextType : "Төрөл",
436
+ DlgTextTypeText : "Текст",
437
+ DlgTextTypePass : "Нууц үг",
439
438
 
440
439
  // Hidden Field Dialog
441
- DlgHiddenName : "Name", //MISSING
442
- DlgHiddenValue : "Value", //MISSING
440
+ DlgHiddenName : "Нэр",
441
+ DlgHiddenValue : "Утга",
443
442
 
444
443
  // Bulleted List Dialog
445
- BulletedListProp : "Bulleted List Properties", //MISSING
446
- NumberedListProp : "Numbered List Properties", //MISSING
447
- DlgLstStart : "Start", //MISSING
448
- DlgLstType : "Type", //MISSING
449
- DlgLstTypeCircle : "Circle", //MISSING
450
- DlgLstTypeDisc : "Disc", //MISSING
451
- DlgLstTypeSquare : "Square", //MISSING
452
- DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING
453
- DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING
454
- DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING
455
- DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING
456
- DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING
444
+ BulletedListProp : "Bulleted жагсаалын шинж чанар",
445
+ NumberedListProp : "Дугаарласан жагсаалын шинж чанар",
446
+ DlgLstStart : "Эхлэх",
447
+ DlgLstType : "Төрөл",
448
+ DlgLstTypeCircle : "Тойрог",
449
+ DlgLstTypeDisc : "Тайлбар",
450
+ DlgLstTypeSquare : "Square",
451
+ DlgLstTypeNumbers : "Тоо (1, 2, 3)",
452
+ DlgLstTypeLCase : "Жижиг үсэг (a, b, c)",
453
+ DlgLstTypeUCase : "Том үсэг (A, B, C)",
454
+ DlgLstTypeSRoman : "Жижиг Ром тоо (i, ii, iii)",
455
+ DlgLstTypeLRoman : "Том Ром тоо (I, II, III)",
457
456
 
458
457
  // Document Properties Dialog
459
- DlgDocGeneralTab : "General", //MISSING
460
- DlgDocBackTab : "Background", //MISSING
461
- DlgDocColorsTab : "Colors and Margins", //MISSING
462
- DlgDocMetaTab : "Meta Data", //MISSING
463
-
464
- DlgDocPageTitle : "Page Title", //MISSING
465
- DlgDocLangDir : "Language Direction", //MISSING
466
- DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING
467
- DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING
468
- DlgDocLangCode : "Language Code", //MISSING
469
- DlgDocCharSet : "Character Set Encoding", //MISSING
470
- DlgDocCharSetCE : "Central European", //MISSING
471
- DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING
472
- DlgDocCharSetCR : "Cyrillic", //MISSING
473
- DlgDocCharSetGR : "Greek", //MISSING
474
- DlgDocCharSetJP : "Japanese", //MISSING
475
- DlgDocCharSetKR : "Korean", //MISSING
476
- DlgDocCharSetTR : "Turkish", //MISSING
477
- DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING
478
- DlgDocCharSetWE : "Western European", //MISSING
479
- DlgDocCharSetOther : "Other Character Set Encoding", //MISSING
480
-
481
- DlgDocDocType : "Document Type Heading", //MISSING
482
- DlgDocDocTypeOther : "Other Document Type Heading", //MISSING
483
- DlgDocIncXHTML : "Include XHTML Declarations", //MISSING
484
- DlgDocBgColor : "Background Color", //MISSING
485
- DlgDocBgImage : "Background Image URL", //MISSING
486
- DlgDocBgNoScroll : "Nonscrolling Background", //MISSING
487
- DlgDocCText : "Text", //MISSING
488
- DlgDocCLink : "Link", //MISSING
489
- DlgDocCVisited : "Visited Link", //MISSING
490
- DlgDocCActive : "Active Link", //MISSING
491
- DlgDocMargins : "Page Margins", //MISSING
492
- DlgDocMaTop : "Top", //MISSING
493
- DlgDocMaLeft : "Left", //MISSING
494
- DlgDocMaRight : "Right", //MISSING
495
- DlgDocMaBottom : "Bottom", //MISSING
496
- DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING
497
- DlgDocMeDescr : "Document Description", //MISSING
498
- DlgDocMeAuthor : "Author", //MISSING
499
- DlgDocMeCopy : "Copyright", //MISSING
500
- DlgDocPreview : "Preview", //MISSING
458
+ DlgDocGeneralTab : "Ерөнхий",
459
+ DlgDocBackTab : "Фоно",
460
+ DlgDocColorsTab : "Захын зай ба Өнгө",
461
+ DlgDocMetaTab : "Meta өгөгдөл",
462
+
463
+ DlgDocPageTitle : "Хуудасны гарчиг",
464
+ DlgDocLangDir : "Хэлний чиглэл",
465
+ DlgDocLangDirLTR : "Зүүнээс баруунруу (LTR)",
466
+ DlgDocLangDirRTL : "Баруунаас зүүнрүү (RTL)",
467
+ DlgDocLangCode : "Хэлний код",
468
+ DlgDocCharSet : "Encoding тэмдэгт",
469
+ DlgDocCharSetCE : "Төв европ",
470
+ DlgDocCharSetCT : "Хятадын уламжлалт (Big5)",
471
+ DlgDocCharSetCR : "Крил",
472
+ DlgDocCharSetGR : "Гред",
473
+ DlgDocCharSetJP : "Япон",
474
+ DlgDocCharSetKR : "Солонгос",
475
+ DlgDocCharSetTR : "Tурк",
476
+ DlgDocCharSetUN : "Юникод (UTF-8)",
477
+ DlgDocCharSetWE : "Баруун европ",
478
+ DlgDocCharSetOther : "Encoding-д өөр тэмдэгт оноох",
479
+
480
+ DlgDocDocType : "Баримт бичгийн төрөл Heading",
481
+ DlgDocDocTypeOther : "Бусад баримт бичгийн төрөл Heading",
482
+ DlgDocIncXHTML : "XHTML агуулж зарлах",
483
+ DlgDocBgColor : "Фоно өнгө",
484
+ DlgDocBgImage : "Фоно зурагны URL",
485
+ DlgDocBgNoScroll : "Гүйдэггүй фоно",
486
+ DlgDocCText : "Текст",
487
+ DlgDocCLink : "Линк",
488
+ DlgDocCVisited : "Зочилсон линк",
489
+ DlgDocCActive : "Идвэхитэй линк",
490
+ DlgDocMargins : "Хуудасны захын зай",
491
+ DlgDocMaTop : "Дээд тал",
492
+ DlgDocMaLeft : "Зүүн тал",
493
+ DlgDocMaRight : "Баруун тал",
494
+ DlgDocMaBottom : "Доод тал",
495
+ DlgDocMeIndex : "Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)",
496
+ DlgDocMeDescr : "Баримт бичгийн тайлбар",
497
+ DlgDocMeAuthor : "Зохиогч",
498
+ DlgDocMeCopy : "Зохиогчийн эрх",
499
+ DlgDocPreview : "Харах",
501
500
 
502
501
  // Templates Dialog
503
- Templates : "Templates", //MISSING
504
- DlgTemplatesTitle : "Content Templates", //MISSING
505
- DlgTemplatesSelMsg : "Please select the template to open in the editor<br />(the actual contents will be lost):", //MISSING
506
- DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING
507
- DlgTemplatesNoTpl : "(No templates defined)", //MISSING
508
- DlgTemplatesReplace : "Replace actual contents", //MISSING
502
+ Templates : "Загварууд",
503
+ DlgTemplatesTitle : "Загварын агуулга",
504
+ DlgTemplatesSelMsg : "Загварыг нээж editor-рүү сонгож оруулна уу<br />(Одоогийн агууллагыг устаж магадгүй):",
505
+ DlgTemplatesLoading : "Загваруудыг ачааллаж байна. Түр хүлээнэ үү...",
506
+ DlgTemplatesNoTpl : "(Загвар тодорхойлогдоогүй байна)",
507
+ DlgTemplatesReplace : "Одоогийн агууллагыг дарж бичих",
509
508
 
510
509
  // About Dialog
511
- DlgAboutAboutTab : "About", //MISSING
512
- DlgAboutBrowserInfoTab : "Browser Info", //MISSING
513
- DlgAboutLicenseTab : "License", //MISSING
510
+ DlgAboutAboutTab : "Тухай",
511
+ DlgAboutBrowserInfoTab : "Мэдээлэл үзүүлэгч",
512
+ DlgAboutLicenseTab : "Лиценз",
514
513
  DlgAboutVersion : "Хувилбар",
515
514
  DlgAboutInfo : "Мэдээллээр туслах"
516
515
  };