kuji-mercury-rails 0.3.2

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 (231) hide show
  1. data/LICENSE +25 -0
  2. data/POST_INSTALL +15 -0
  3. data/app/controllers/mercury/images_controller.rb +19 -0
  4. data/app/controllers/mercury_controller.rb +34 -0
  5. data/app/models/mercury/image.rb +16 -0
  6. data/app/views/layouts/mercury.html.erb +33 -0
  7. data/app/views/mercury/lightviews/about.html +11 -0
  8. data/app/views/mercury/modals/character.html +255 -0
  9. data/app/views/mercury/modals/htmleditor.html +13 -0
  10. data/app/views/mercury/modals/link.html +75 -0
  11. data/app/views/mercury/modals/media.html +82 -0
  12. data/app/views/mercury/modals/table.html +84 -0
  13. data/app/views/mercury/palettes/backcolor.html +73 -0
  14. data/app/views/mercury/palettes/forecolor.html +73 -0
  15. data/app/views/mercury/panels/history.html +3 -0
  16. data/app/views/mercury/panels/notes.html +3 -0
  17. data/app/views/mercury/panels/snippets.html +12 -0
  18. data/app/views/mercury/selects/formatblock.html +11 -0
  19. data/app/views/mercury/selects/style.html +5 -0
  20. data/app/views/mercury/snippets/example/options.html.erb +34 -0
  21. data/app/views/mercury/snippets/example/preview.html.erb +1 -0
  22. data/config/engine.rb +41 -0
  23. data/db/migrate/20110526035601_create_mercury_images.rb +11 -0
  24. data/features/loading/loading.feature +22 -0
  25. data/features/loading/navigating.feature +77 -0
  26. data/features/loading/user_interface.feature +67 -0
  27. data/features/regions/editable/advanced_editing.feature +0 -0
  28. data/features/regions/editable/basic_editing.feature +195 -0
  29. data/features/regions/editable/inserting_links.feature +98 -0
  30. data/features/regions/editable/inserting_media.feature +110 -0
  31. data/features/regions/editable/inserting_snippets.feature +102 -0
  32. data/features/regions/editable/inserting_special_characters.feature +24 -0
  33. data/features/regions/editable/inserting_tables.feature +109 -0
  34. data/features/regions/editable/pasting.feature +0 -0
  35. data/features/regions/editable/uploading_images.feature +0 -0
  36. data/features/regions/image/uploading_images.feature +0 -0
  37. data/features/regions/markupable/advanced_editing.feature +0 -0
  38. data/features/regions/markupable/basic_editing.feature +0 -0
  39. data/features/regions/markupable/inserting_links.feature +0 -0
  40. data/features/regions/markupable/inserting_media.feature +0 -0
  41. data/features/regions/markupable/inserting_snippets.feature +0 -0
  42. data/features/regions/markupable/inserting_special_characters.feature +0 -0
  43. data/features/regions/markupable/inserting_tables.feature +0 -0
  44. data/features/regions/markupable/uploading_images.feature +0 -0
  45. data/features/regions/simple/basic_editing.feature +5 -0
  46. data/features/regions/snippetable/advanced_editing.feature +0 -0
  47. data/features/regions/snippetable/basic_editing.feature +0 -0
  48. data/features/regions/snippetable/inserting_snippets.feature +0 -0
  49. data/features/saving/saving.feature +33 -0
  50. data/features/step_definitions/debug_steps.rb +14 -0
  51. data/features/step_definitions/mercury_steps.rb +438 -0
  52. data/features/step_definitions/web_steps.rb +211 -0
  53. data/features/support/env.rb +46 -0
  54. data/features/support/mercury_contents.rb +25 -0
  55. data/features/support/mercury_selectors.rb +148 -0
  56. data/features/support/paths.rb +38 -0
  57. data/features/support/selectors.rb +44 -0
  58. data/lib/generators/mercury/install/install_generator.rb +49 -0
  59. data/lib/generators/mercury/install/templates/mongoid_paperclip_image.rb +17 -0
  60. data/lib/mercury-rails.rb +3 -0
  61. data/lib/mercury/authentication.rb +8 -0
  62. data/spec/javascripts/mercury/dialog_spec.js.coffee +281 -0
  63. data/spec/javascripts/mercury/dialogs/backcolor_spec.js.coffee +37 -0
  64. data/spec/javascripts/mercury/dialogs/forecolor_spec.js.coffee +37 -0
  65. data/spec/javascripts/mercury/dialogs/formatblock_spec.js.coffee +25 -0
  66. data/spec/javascripts/mercury/dialogs/snippetpanel_spec.js.coffee +30 -0
  67. data/spec/javascripts/mercury/dialogs/style_spec.js.coffee +25 -0
  68. data/spec/javascripts/mercury/history_buffer_spec.js.coffee +76 -0
  69. data/spec/javascripts/mercury/lightview_spec.js.coffee +497 -0
  70. data/spec/javascripts/mercury/mercury_spec.js.coffee +132 -0
  71. data/spec/javascripts/mercury/modal_spec.js.coffee +504 -0
  72. data/spec/javascripts/mercury/modals/htmleditor_spec.js.coffee +30 -0
  73. data/spec/javascripts/mercury/modals/insertcharacter_spec.js.coffee +29 -0
  74. data/spec/javascripts/mercury/modals/insertlink_spec.js.coffee +220 -0
  75. data/spec/javascripts/mercury/modals/insertmedia_spec.js.coffee +167 -0
  76. data/spec/javascripts/mercury/modals/insertsnippet_spec.js.coffee +52 -0
  77. data/spec/javascripts/mercury/modals/inserttable_spec.js.coffee +160 -0
  78. data/spec/javascripts/mercury/native_extensions_spec.js.coffee +60 -0
  79. data/spec/javascripts/mercury/page_editor_spec.js.coffee +757 -0
  80. data/spec/javascripts/mercury/palette_spec.js.coffee +49 -0
  81. data/spec/javascripts/mercury/panel_spec.js.coffee +183 -0
  82. data/spec/javascripts/mercury/region_spec.js.coffee +298 -0
  83. data/spec/javascripts/mercury/regions/editable_spec.js.coffee +561 -0
  84. data/spec/javascripts/mercury/regions/image_spec.js.coffee +34 -0
  85. data/spec/javascripts/mercury/regions/markupable_spec.js.coffee +367 -0
  86. data/spec/javascripts/mercury/regions/simple_spec.js.coffee +33 -0
  87. data/spec/javascripts/mercury/regions/snippetable_spec.js.coffee +370 -0
  88. data/spec/javascripts/mercury/select_spec.js.coffee +49 -0
  89. data/spec/javascripts/mercury/snippet_spec.js.coffee +253 -0
  90. data/spec/javascripts/mercury/snippet_toolbar_spec.js.coffee +184 -0
  91. data/spec/javascripts/mercury/statusbar_spec.js.coffee +150 -0
  92. data/spec/javascripts/mercury/table_editor_spec.js.coffee +194 -0
  93. data/spec/javascripts/mercury/toolbar.button_group_spec.js.coffee +90 -0
  94. data/spec/javascripts/mercury/toolbar.button_spec.js.coffee +360 -0
  95. data/spec/javascripts/mercury/toolbar.expander_spec.js.coffee +118 -0
  96. data/spec/javascripts/mercury/toolbar_spec.js.coffee +222 -0
  97. data/spec/javascripts/mercury/tooltip_spec.js.coffee +186 -0
  98. data/spec/javascripts/mercury/uploader_spec.js.coffee +530 -0
  99. data/spec/javascripts/spec_helper.js +513 -0
  100. data/spec/javascripts/templates/mercury/dialog.html +2 -0
  101. data/spec/javascripts/templates/mercury/dialogs/backcolor.html +5 -0
  102. data/spec/javascripts/templates/mercury/dialogs/forecolor.html +5 -0
  103. data/spec/javascripts/templates/mercury/dialogs/formatblock.html +3 -0
  104. data/spec/javascripts/templates/mercury/dialogs/snippetpanel.html +16 -0
  105. data/spec/javascripts/templates/mercury/dialogs/style.html +3 -0
  106. data/spec/javascripts/templates/mercury/lightview.html +13 -0
  107. data/spec/javascripts/templates/mercury/modal.html +13 -0
  108. data/spec/javascripts/templates/mercury/modals/htmleditor.html +5 -0
  109. data/spec/javascripts/templates/mercury/modals/insertcharacter.html +5 -0
  110. data/spec/javascripts/templates/mercury/modals/insertlink.html +30 -0
  111. data/spec/javascripts/templates/mercury/modals/insertmedia.html +35 -0
  112. data/spec/javascripts/templates/mercury/modals/insertsnippet.html +6 -0
  113. data/spec/javascripts/templates/mercury/modals/inserttable.html +27 -0
  114. data/spec/javascripts/templates/mercury/page_editor.html +35 -0
  115. data/spec/javascripts/templates/mercury/palette.html +16 -0
  116. data/spec/javascripts/templates/mercury/panel.html +16 -0
  117. data/spec/javascripts/templates/mercury/region.html +2 -0
  118. data/spec/javascripts/templates/mercury/regions/editable.html +3 -0
  119. data/spec/javascripts/templates/mercury/regions/image.html +1 -0
  120. data/spec/javascripts/templates/mercury/regions/simple.html +3 -0
  121. data/spec/javascripts/templates/mercury/regions/snippetable.html +4 -0
  122. data/spec/javascripts/templates/mercury/select.html +16 -0
  123. data/spec/javascripts/templates/mercury/snippet.html +1 -0
  124. data/spec/javascripts/templates/mercury/snippet_toolbar.html +16 -0
  125. data/spec/javascripts/templates/mercury/statusbar.html +8 -0
  126. data/spec/javascripts/templates/mercury/table_editor.html +65 -0
  127. data/spec/javascripts/templates/mercury/toolbar.button.html +64 -0
  128. data/spec/javascripts/templates/mercury/toolbar.button_group.html +9 -0
  129. data/spec/javascripts/templates/mercury/toolbar.expander.html +18 -0
  130. data/spec/javascripts/templates/mercury/toolbar.html +11 -0
  131. data/spec/javascripts/templates/mercury/tooltip.html +12 -0
  132. data/spec/javascripts/templates/mercury/uploader.html +11 -0
  133. data/vendor/assets/images/mercury/button.png +0 -0
  134. data/vendor/assets/images/mercury/close.png +0 -0
  135. data/vendor/assets/images/mercury/default-snippet.png +0 -0
  136. data/vendor/assets/images/mercury/loading-dark.gif +0 -0
  137. data/vendor/assets/images/mercury/loading-light.gif +0 -0
  138. data/vendor/assets/images/mercury/missing-image.png +0 -0
  139. data/vendor/assets/images/mercury/search-icon.png +0 -0
  140. data/vendor/assets/images/mercury/temp-logo.png +0 -0
  141. data/vendor/assets/images/mercury/toolbar/editable/buttons.png +0 -0
  142. data/vendor/assets/images/mercury/toolbar/primary/_expander.png +0 -0
  143. data/vendor/assets/images/mercury/toolbar/primary/_pressed.png +0 -0
  144. data/vendor/assets/images/mercury/toolbar/primary/historypanel.png +0 -0
  145. data/vendor/assets/images/mercury/toolbar/primary/insertcharacter.png +0 -0
  146. data/vendor/assets/images/mercury/toolbar/primary/insertlink.png +0 -0
  147. data/vendor/assets/images/mercury/toolbar/primary/insertmedia.png +0 -0
  148. data/vendor/assets/images/mercury/toolbar/primary/inserttable.png +0 -0
  149. data/vendor/assets/images/mercury/toolbar/primary/inspectorpanel.png +0 -0
  150. data/vendor/assets/images/mercury/toolbar/primary/notespanel.png +0 -0
  151. data/vendor/assets/images/mercury/toolbar/primary/preview.png +0 -0
  152. data/vendor/assets/images/mercury/toolbar/primary/redo.png +0 -0
  153. data/vendor/assets/images/mercury/toolbar/primary/save.png +0 -0
  154. data/vendor/assets/images/mercury/toolbar/primary/snippetpanel.png +0 -0
  155. data/vendor/assets/images/mercury/toolbar/primary/undo.png +0 -0
  156. data/vendor/assets/images/mercury/toolbar/snippetable/buttons.png +0 -0
  157. data/vendor/assets/javascripts/mercury.js +479 -0
  158. data/vendor/assets/javascripts/mercury/dependencies/jquery-1.7.js +9300 -0
  159. data/vendor/assets/javascripts/mercury/dependencies/jquery-ui-1.8.13.custom.js +1328 -0
  160. data/vendor/assets/javascripts/mercury/dependencies/jquery.additions.js +206 -0
  161. data/vendor/assets/javascripts/mercury/dependencies/jquery.htmlClean.js +527 -0
  162. data/vendor/assets/javascripts/mercury/dependencies/liquidmetal.js +88 -0
  163. data/vendor/assets/javascripts/mercury/dependencies/showdown.js +1340 -0
  164. data/vendor/assets/javascripts/mercury/dialog.js.coffee +159 -0
  165. data/vendor/assets/javascripts/mercury/dialogs/backcolor.js.coffee +6 -0
  166. data/vendor/assets/javascripts/mercury/dialogs/forecolor.js.coffee +6 -0
  167. data/vendor/assets/javascripts/mercury/dialogs/formatblock.js.coffee +4 -0
  168. data/vendor/assets/javascripts/mercury/dialogs/snippetpanel.js.coffee +10 -0
  169. data/vendor/assets/javascripts/mercury/dialogs/style.js.coffee +4 -0
  170. data/vendor/assets/javascripts/mercury/finalize.js.coffee +3 -0
  171. data/vendor/assets/javascripts/mercury/history_buffer.js.coffee +30 -0
  172. data/vendor/assets/javascripts/mercury/lightview.js.coffee +205 -0
  173. data/vendor/assets/javascripts/mercury/locales/ar.locale.js.coffee +207 -0
  174. data/vendor/assets/javascripts/mercury/locales/da.locale.js.coffee +211 -0
  175. data/vendor/assets/javascripts/mercury/locales/de.locale.js.coffee +206 -0
  176. data/vendor/assets/javascripts/mercury/locales/es.locale.js.coffee +211 -0
  177. data/vendor/assets/javascripts/mercury/locales/example.local.js.coffee +211 -0
  178. data/vendor/assets/javascripts/mercury/locales/fr.locale.js.coffee +211 -0
  179. data/vendor/assets/javascripts/mercury/locales/it.locale.js.coffee +208 -0
  180. data/vendor/assets/javascripts/mercury/locales/ko.local.js.coffee +206 -0
  181. data/vendor/assets/javascripts/mercury/locales/nl.locale.js.coffee +206 -0
  182. data/vendor/assets/javascripts/mercury/locales/pt.locale.js.coffee +211 -0
  183. data/vendor/assets/javascripts/mercury/locales/sv.local.js.coffee +209 -0
  184. data/vendor/assets/javascripts/mercury/locales/swedish_chef.locale.js.coffee +213 -0
  185. data/vendor/assets/javascripts/mercury/mercury.js.coffee +109 -0
  186. data/vendor/assets/javascripts/mercury/modal.js.coffee +198 -0
  187. data/vendor/assets/javascripts/mercury/modals/htmleditor.js.coffee +11 -0
  188. data/vendor/assets/javascripts/mercury/modals/insertcharacter.js.coffee +4 -0
  189. data/vendor/assets/javascripts/mercury/modals/insertlink.js.coffee +92 -0
  190. data/vendor/assets/javascripts/mercury/modals/insertmedia.js.coffee +81 -0
  191. data/vendor/assets/javascripts/mercury/modals/insertsnippet.js.coffee +12 -0
  192. data/vendor/assets/javascripts/mercury/modals/inserttable.js.coffee +54 -0
  193. data/vendor/assets/javascripts/mercury/native_extensions.js.coffee +55 -0
  194. data/vendor/assets/javascripts/mercury/page_editor.js.coffee +225 -0
  195. data/vendor/assets/javascripts/mercury/palette.js.coffee +29 -0
  196. data/vendor/assets/javascripts/mercury/panel.js.coffee +115 -0
  197. data/vendor/assets/javascripts/mercury/plugins/save_as_xml/mercury/page_editor.js.coffee +28 -0
  198. data/vendor/assets/javascripts/mercury/plugins/save_as_xml/plugin.js +9 -0
  199. data/vendor/assets/javascripts/mercury/region.js.coffee +107 -0
  200. data/vendor/assets/javascripts/mercury/regions/editable.js.coffee +600 -0
  201. data/vendor/assets/javascripts/mercury/regions/image.js.coffee +114 -0
  202. data/vendor/assets/javascripts/mercury/regions/markupable.js.coffee +398 -0
  203. data/vendor/assets/javascripts/mercury/regions/simple.js.coffee +325 -0
  204. data/vendor/assets/javascripts/mercury/regions/snippetable.js.coffee +124 -0
  205. data/vendor/assets/javascripts/mercury/select.js.coffee +44 -0
  206. data/vendor/assets/javascripts/mercury/snippet.js.coffee +106 -0
  207. data/vendor/assets/javascripts/mercury/snippet_toolbar.js.coffee +72 -0
  208. data/vendor/assets/javascripts/mercury/statusbar.js.coffee +51 -0
  209. data/vendor/assets/javascripts/mercury/support/history.js +1 -0
  210. data/vendor/assets/javascripts/mercury/table_editor.js.coffee +265 -0
  211. data/vendor/assets/javascripts/mercury/toolbar.button.js.coffee +173 -0
  212. data/vendor/assets/javascripts/mercury/toolbar.button_group.js.coffee +42 -0
  213. data/vendor/assets/javascripts/mercury/toolbar.expander.js.coffee +56 -0
  214. data/vendor/assets/javascripts/mercury/toolbar.js.coffee +86 -0
  215. data/vendor/assets/javascripts/mercury/tooltip.js.coffee +74 -0
  216. data/vendor/assets/javascripts/mercury/uploader.js.coffee +244 -0
  217. data/vendor/assets/javascripts/mercury_loader.js +193 -0
  218. data/vendor/assets/javascripts/mercury_overrides.js +6 -0
  219. data/vendor/assets/stylesheets/mercury.css +28 -0
  220. data/vendor/assets/stylesheets/mercury/all_images.css.erb +89 -0
  221. data/vendor/assets/stylesheets/mercury/dialog.css +212 -0
  222. data/vendor/assets/stylesheets/mercury/form.css +118 -0
  223. data/vendor/assets/stylesheets/mercury/lightview.css +151 -0
  224. data/vendor/assets/stylesheets/mercury/mercury.css +37 -0
  225. data/vendor/assets/stylesheets/mercury/modal.css +183 -0
  226. data/vendor/assets/stylesheets/mercury/statusbar.css +32 -0
  227. data/vendor/assets/stylesheets/mercury/toolbar.css +304 -0
  228. data/vendor/assets/stylesheets/mercury/tooltip.css +26 -0
  229. data/vendor/assets/stylesheets/mercury/uploader.css +111 -0
  230. data/vendor/assets/stylesheets/mercury_overrides.css +17 -0
  231. metadata +572 -0
@@ -0,0 +1,206 @@
1
+ Mercury.I18n['ko'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "저장하기"
6
+ "Save this page": "현재 쪽 저장하기"
7
+ "Preview": "미리보기"
8
+ "Preview this page": "현재 쪽 미리보기"
9
+ "Undo": "실행 취소"
10
+ "Undo your last action": "마지막 작업 실행 취소"
11
+ "Redo": "다시 실행"
12
+ "Redo your last action": "마지막 작업 다시 실행"
13
+ "Link": "링크"
14
+ "Insert Link": "링크 추가"
15
+ "Media": "매체"
16
+ "Insert Media (images and videos)": "매체 추가 (그림과 영상)"
17
+ "Table": "표"
18
+ "Insert Table": "표 추가"
19
+ "Character": "문자"
20
+ "Special Characters": "특수 문자"
21
+ "Snippet": "글감"
22
+ "Snippet Panel": "글감 패널"
23
+ "History": "최근 편집글"
24
+ "Page Version History": "최근 편집글의 쪽 버전"
25
+ "Notes": "주석 목록"
26
+ "Page Notes": "쪽 주석 목록"
27
+ "Style": "글맵시"
28
+ "Block Format": "블록 양식"
29
+ "Background Color": "배경 색"
30
+ "Text Color": "글자 색"
31
+ "Bold": "굵게"
32
+ "Italicize": "기울임"
33
+ "Overline": "윗줄"
34
+ "Strikethrough": "중간줄"
35
+ "Underline": "밑줄"
36
+ "Subscript": "아래첨자"
37
+ "Superscript": "위첨자"
38
+ "Align Left": "왼쪽 정렬"
39
+ "Center": "가운데 정렬"
40
+ "Align Right": "오른쪽 정렬"
41
+ "Justify Full": "양쪽 정렬"
42
+ "Unordered List": "순서 없는 목록"
43
+ "Numbered List": "번호 매긴 목록"
44
+ "Decrease Indentation": "내어쓰기"
45
+ "Increase Indentation": "들여쓰기"
46
+ "Insert Table Row": "열 추가"
47
+ "Insert a table row before the cursor": "열 추가(커서 앞)"
48
+ "Insert a table row after the cursor": "열 추가(커서 뒤)"
49
+ "Delete Table Row": "열 삭제"
50
+ "Delete this table row": "선택된 열 삭제"
51
+ "Insert Table Column": "컬럼 추가"
52
+ "Insert a table column before the cursor": "컬럼 추가(커서 앞)"
53
+ "Insert a table column after the cursor": "컬럼 추가(커서 뒤)"
54
+ "Delete Table Column": "컬럼 삭제"
55
+ "Delete this table column": "선택된 컬럼 삭제"
56
+ "Increase Cell Columns": "오른쪽 컬럼과 합치기"
57
+ "Decrease Cell Columns": "합쳐진 컬럼 나누기"
58
+ "Increase Cell Rows": "아래열과 합치기"
59
+ "Decrease Cell Rows": "합쳐진 열 나누기"
60
+ "Horizontal Rule": "가로선"
61
+ "Insert a horizontal rule": "가로선 넣기"
62
+ "Remove Formatting": "양식 지우기"
63
+ "Remove formatting for the selection": "선택 부분 양식 지우기"
64
+ "Edit HTML": "HTML 편집하기"
65
+ "Edit the HTML content": "HTML 내용 편집하기"
66
+ "Edit Snippet Settings": "글감 설정 편집하기"
67
+ "Remove Snippet": "글감 지우기"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s 는 지원하지 않는 클라이언트 입니다. %s 브라우저를 지원합니다."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor는 한 번만 갹채화 될 수 있습니다."
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "오페라 브라우저에선 모든 기능을 지원하지 않으므로, 결과가 최적화 되어 나타나지 않습니다."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor 가 읽기에 실패했습니다. : %s\n\n새로고침을 해보세요."
75
+ "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "위치 종류가 올바르지 않거나 데이터 타입이 제공되지 않았습니다. 혹은 \"%s\"가 \"%s\" 위치에 알려지지 않았습니다."
76
+ "Mercury was unable to save to the url: %s": "머큐리는 그 경로에 저장 할 수 없습니다.: %s"
77
+ # Confirmations
78
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "저장하지 않은 변경사항이 있습니다. 저장하지 않고 이 페이지를 벗어나시겠습니까?"
79
+
80
+ # ### Toolbar / Buttons
81
+ # Error Messages
82
+ "Unknown button type \"%s\" used for the \"%s\" button.": "\"%s\"라는 알려지지 않는 버튼 종류가 \"%s\" 버튼에서 사용되었습니다."
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "알 수 없는 버튼 구조 -- \"%s\"에 대한 배열이나, 객체, 또는 문자열을 제공해 주세요."
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": "머큐리는 %s 를 읽을 수 없는 문제가 \"%s\" 창에서 발생했습니다."
88
+ "Mercury was unable to load %s for the lightview.": "머큐리는 경량뷰에서 %s를 읽을 수 없습니다."
89
+ "Mercury was unable to load %s for the modal.": "머큐리는 모달 창에서 %s를 읽을 수 없습니다."
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": "미리보기를 %s 글감에서 읽어 오는데 오류가 발생했습니다."
94
+ # Misc
95
+ "Snippet Options": "글감 설정"
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %s": "처리할 수 없는 응답입니다.: %s"
100
+ "Error: Unable to upload the file": "오류: 파일을 올릴 수 없습니다."
101
+ "Malformed response from server": "서버로부터 올바르지 않은 응답을 받았습니다." # needs translation
102
+ "Too large": "파일이 너무 큽니다."
103
+ "Unsupported format": "지원하지 않는 형식입니다."
104
+ # Statuses
105
+ "Processing...": "처리중..."
106
+ "Uploading...": "올리는중..."
107
+ "Aborted": "전송 실패"
108
+ "Successfully uploaded...": "성공적으로 올렸습니다."
109
+ "Name: %s": "이름: %s"
110
+ "Size: %s": "용량: %s"
111
+ "Type: %s": "형식: %s"
112
+
113
+ # Inserting Media
114
+ "Error: The provided youtube share url was invalid.": "오류 : 존재하지 않는 유투브 공유 주소입니다."
115
+ "Error: The provided vimeo url was invalid.": "오류 : 존재하지 않는 비메오 주소 입니다."
116
+
117
+ # Statusbar
118
+ "Path:": "경로:"
119
+
120
+
121
+ # ## HTML / Template Strings
122
+
123
+ # ### Modals
124
+ # Insert Link Modal (link.html)
125
+ "Link Content": "링크 내용"
126
+ "Standard Links": "표준 링크"
127
+ "URL": "URL"
128
+ "Index / Bookmark Links": "색인 / 즐겨찾기 링크"
129
+ "Existing Links": "존재하는 링크"
130
+ "Bookmark": "즐겨찾기"
131
+ "Options": "설정"
132
+ "Link Target": "링크를 띄울 곳"
133
+ "Self (the same window or tab)": "현재 페이지 (현재와 같은창 혹은 탭)"
134
+ "Blank (a new window or tab)": "빈 페이지 (현재와 같은창 혹은 탭)"
135
+ "Top (removes any frames)": "상단 (모든 프레임이 삭제됨)"
136
+ "Popup Window (javascript new window popup)": "팝업 창 (자바스크립트로 새 창을 띄웁니다.)"
137
+ "Popup Width": "팝업 창 넓이"
138
+ "Popup Height": "팝업 창 높이"
139
+ "Insert Link": "링크 추가"
140
+
141
+ # Insert Media Modal (media.html)
142
+ "Images": "그림:"
143
+ "Videos": "영상:"
144
+ "YouTube Share URL": "유투브 공유 URL"
145
+ "Vimeo URL": "비메오 URL"
146
+ "Alignment": "정렬"
147
+ "None": "정렬 안함"
148
+ "Left": "왼쪽 정렬"
149
+ "Right": "오른쪽 정렬"
150
+ "Top": "위쪽 정렬"
151
+ "Middle": "가운데 정렬"
152
+ "Bottom": "아래쪽 정렬"
153
+ "Absolute Middle": "가운데 정렬(Absolute)"
154
+ "Absolute Bottom": "아래쪽 정렬(Absolute)"
155
+ "Width": "넓이"
156
+ "Height": "높이"
157
+ "Insert Media": "매체 추가"
158
+
159
+ # Insert Table Modal (table.html)
160
+ "Rows": "열"
161
+ "Add Before": "앞에 추가"
162
+ "Add After": "뒤에 추가"
163
+ "Remove": "삭제"
164
+ "Columns": "컬럼"
165
+ "Row Span": "열 합치기"
166
+ "Column Span": "컬럼 합치기"
167
+ "Options": "설정"
168
+ "Alignment": "정렬"
169
+ "Border": "외곽선"
170
+ "Spacing": "여백"
171
+ "Insert Table": "표 추가"
172
+
173
+ # HTML Editor Modal (htmleditor.html)
174
+ "HTML Editor": "HTML 편집기"
175
+ "Save and Replace": "저장하고 덮어쓰기"
176
+
177
+ # ### Dialogs / Etc.
178
+ # Color Palettes (forecolor.html, backcolor.html)
179
+ "Last Color Picked": "마지막으로 사용한 색"
180
+
181
+ # Block Format Select (formatblock.html)
182
+ "Heading 1": "머릿글 1"
183
+ "Heading 2": "머릿글 2"
184
+ "Heading 3": "머릿글 3"
185
+ "Heading 4": "머릿글 4"
186
+ "Heading 5": "머릿글 5"
187
+ "Heading 6": "머릿글 6"
188
+ "Paragraph": "단락"
189
+ "Blockquote": "인용구"
190
+ "Formatted": "공백유지"
191
+
192
+ # About Mercury Panel (about.html)
193
+ "Project Home": "프로젝트 홈"
194
+ "Project Source": "프로젝트 소스"
195
+
196
+ # ### Demo / Placeholder / Defaults
197
+ "The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "최근 편집글 패널은 서버 측에서 구현이 되어야 합니다. 이 데모에선 이를 포함하지 않았습니다. "
198
+
199
+ "The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "최근 주석 패널은 서버 측에서 구현이 되어야 합니다. 이 데모에선 이를 포함하지 않았습니다. "
200
+
201
+ "Snippet Name": "글감 이름"
202
+ "A one or two line long description of what this snippet does.": "이 글감이 무슨 글감인지 한줄이나 두줄의 설명을 적으세요."
203
+
204
+ "First Name": "이름"
205
+ "Favorite Beer": "선호하는 맥주"
206
+ "Insert Snippet": "글감 넣기"
@@ -0,0 +1,206 @@
1
+ Mercury.I18n['nl'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "Opslaan"
6
+ "Save this page": "Pagina opslaan"
7
+ "Preview": "Voorbeeld"
8
+ "Preview this page": "Pagina voorbeeld"
9
+ "Undo": "Ongedaan maken"
10
+ "Undo your last action": "Maak laatste actie ongedaan"
11
+ "Redo": "Herstel"
12
+ "Redo your last action": "Herstel laatste actie"
13
+ "Link": "Link"
14
+ "Insert Link": "Voeg link toe"
15
+ "Media": "Media"
16
+ "Insert Media (images and videos)": "Voeg media toe (afbeeldingen en foto's)"
17
+ "Table": "Tabel"
18
+ "Insert Table": "Voeg een tabel toe"
19
+ "Character": "Leesteken"
20
+ "Special Characters": "Speciale leestekens"
21
+ "Snippet": "Snippet"
22
+ "Snippet Panel": "Snippet paneel"
23
+ "History": "Geschiedenis"
24
+ "Page Version History": "Pagina versie geschiedenis"
25
+ "Notes": "Aantekeningen"
26
+ "Page Notes": "Pagina aantekeningen"
27
+ "Style": "Stijl"
28
+ "Block Format": "Block opmaak"
29
+ "Background Color": "Achtergrondkleur"
30
+ "Text Color": "Tekst kleur"
31
+ "Bold": "Vet"
32
+ "Italicize": "Italic"
33
+ "Overline": "Overline"
34
+ "Strikethrough": "Doorgestreept"
35
+ "Underline": "Onderstreept"
36
+ "Subscript": "Subscript"
37
+ "Superscript": "Superscript"
38
+ "Align Left": "Links uitlijnen"
39
+ "Center": "Midden"
40
+ "Align Right": "Rechts uitlijnen"
41
+ "Justify Full": "Opvullen"
42
+ "Unordered List": "Bullet lijst"
43
+ "Numbered List": "Genummerde lijst"
44
+ "Decrease Indentation": "Minder inspringen"
45
+ "Increase Indentation": "Meer inspringen"
46
+ "Insert Table Row": "Voeg een rij toe"
47
+ "Insert a table row before the cursor": "Voeg een rij toe voor de cursor"
48
+ "Insert a table row after the cursor": "Voeg een rij toe na de cursor"
49
+ "Delete Table Row": "Verwijder rij"
50
+ "Delete this table row": "Verwijder deze rij"
51
+ "Insert Table Column": "Voe kolom toe"
52
+ "Insert a table column before the cursor": "Voe kolom toe voor de cursor"
53
+ "Insert a table column after the cursor": "Voe kolom toe na de cursor"
54
+ "Delete Table Column": "Verwijder kolom"
55
+ "Delete this table column": "Verwijder deze kolom"
56
+ "Increase Cell Columns": "Meer kolommen"
57
+ "Decrease Cell Columns": "Minder kolommen"
58
+ "Increase Cell Rows": "Meer rijen"
59
+ "Decrease Cell Rows": "Minder rijen"
60
+ "Horizontal Rule": "Horizontale lijn"
61
+ "Insert a horizontal rule": "Voeg horizontale lijn toe"
62
+ "Remove Formatting": "Wis opmaak"
63
+ "Remove formatting for the selection": "Wis opmak van deze selectie"
64
+ "Edit HTML": "Bewerk HTML"
65
+ "Edit the HTML content": "Bewerk de HTML content"
66
+ "Edit Snippet Settings": "Bewerk snippet eigenschappen"
67
+ "Remove Snippet": "Verwijder snippet"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s niet ondersteund voor deze browser. Ondersteunde browsers zijn: %s."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor kan maar één keer worden gestart."
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "Opera is niet volledig ondersteund en kan soms niet optimaal werken."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing."
75
+ "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region."
76
+ "Mercury was unable to save to the url: %s": "Mercury was unable to save to the url: %s"
77
+ # Confirmations
78
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "Je hebt nog niet opgeslagen. Weet je zeker dat je de pagina wilt verlaten zonder eerst op te slaan?"
79
+
80
+ # ### Toolbar / Buttons
81
+ # Error Messages
82
+ "Unknown button type \"%s\" used for the \"%s\" button.": "Unknoon boottun type-a \"%s\" used fur zee \"%s\" boottun."
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "Unknoon boottun strooctoore-a -- pleese-a prufeede-a un errey, oobject, oor streeng fur \"%s\"."
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": "Mercury was unable to load %s for the \"%s\" dialog."
88
+ "Mercury was unable to load %s for the lightview.": "Mercury was unable to load %s for the lightview."
89
+ "Mercury was unable to load %s for the modal.": "Mercury was unable to load %s for the modal."
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": "Error loading the preview for the \"%s\" snippet."
94
+ # Misc
95
+ "Snippet Options": "Snippet eigenschappen"
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %s": "Het is niet gelukt om het serverantwoord te verwerken: %s"
100
+ "Error: Unable to upload the file": "Fout: Het is niet gelukt het bestand te uploaden."
101
+ "Malformed response from server": "Fout antwoord van de server"
102
+ "Too large": "Te groot"
103
+ "Unsupported format": "Niet ondersteund formaat"
104
+ # Statuses
105
+ "Processing...": "Verwerken..."
106
+ "Uploading...": "Uploaden..."
107
+ "Aborted": "Geannuleert"
108
+ "Successfully uploaded...": "Succesvol geupload..."
109
+ "Name: %s": "Naam: %s"
110
+ "Size: %s": "Grootte: %s"
111
+ "Type: %s": "Type: %s"
112
+
113
+ # Inserting Media
114
+ "Error: The provided youtube share url was invalid.": "Irrur: Zee prufeeded youtube shere-a url ves infeleed."
115
+ "Error: The provided vimeo url was invalid.": "Irrur: Zee prufeeded vimeo url ves infeleed."
116
+
117
+ # Statusbar
118
+ "Path:": "Pad"
119
+
120
+
121
+ # ## HTML / Template Strings
122
+
123
+ # ### Modals
124
+ # Insert Link Modal (link.html)
125
+ "Link Content": "Link content"
126
+ "Standard Links": "Standaard Links"
127
+ "URL": "URL"
128
+ "Index / Bookmark Links": "Index / Favorieten Links"
129
+ "Existing Links": "Bestaande Links"
130
+ "Bookmark": "Favorieten"
131
+ "Options": "Opties"
132
+ "Link Target": "Link doel"
133
+ "Self (the same window or tab)": "Self (zelfde venster)"
134
+ "Blank (a new window or tab)": "Blank (nieuw venster of tab)"
135
+ "Top (removes any frames)": "Top (verwijder frames)"
136
+ "Popup Window (javascript new window popup)": "Popup (nieuw venster door javascript)"
137
+ "Popup Width": "Popup breedte"
138
+ "Popup Height": "Popup hoogte"
139
+ "Insert Link": "Voeg link toe"
140
+
141
+ # Insert Media Modal (media.html)
142
+ "Images": "Afbeeldingen"
143
+ "Videos": "Video's"
144
+ "YouTube Share URL": "Youtube deel URL"
145
+ "Vimeo URL": "Vimeo URL"
146
+ "Alignment": "Uitlijning"
147
+ "None": "Geen"
148
+ "Left": "Links"
149
+ "Right": "Rechts"
150
+ "Top": "Boven"
151
+ "Middle": "Midden"
152
+ "Bottom": "Onder"
153
+ "Absolute Middle": "Absolute Midden"
154
+ "Absolute Bottom": "Absolute Onder"
155
+ "Width": "Breedte"
156
+ "Height": "Hoogte"
157
+ "Insert Media": "Media invoegen"
158
+
159
+ # Insert Table Modal (table.html)
160
+ "Rows": "Rijen"
161
+ "Add Before": "Voe toe voor"
162
+ "Add After": "Voeg toe na"
163
+ "Remove": "Verwijder"
164
+ "Columns": "Kolommen"
165
+ "Row Span": "Rij breedte"
166
+ "Column Span": "Kolom breedte"
167
+ "Options": "Opties"
168
+ "Alignment": "Uitlijning"
169
+ "Border": "Rand"
170
+ "Spacing": "Spacing"
171
+ "Insert Table": "Voeg tabel toe"
172
+
173
+ # HTML Editor Modal (htmleditor.html)
174
+ "HTML Editor": "HTML editor"
175
+ "Save and Replace": "Opslaan en vervangen"
176
+
177
+ # ### Dialogs / Etc.
178
+ # Color Palettes (forecolor.html, backcolor.html)
179
+ "Last Color Picked": "Laatst gekozen kleur"
180
+
181
+ # Block Format Select (formatblock.html)
182
+ "Heading 1": "Kop 1"
183
+ "Heading 2": "Kop 2"
184
+ "Heading 3": "Kop 3"
185
+ "Heading 4": "Kop 4"
186
+ "Heading 5": "Kop 5"
187
+ "Heading 6": "Kop 6"
188
+ "Paragraph": "Paragraaf"
189
+ "Blockquote": "Citaat"
190
+ "Formatted": "Opgemaakt"
191
+
192
+ # About Mercury Panel (about.html)
193
+ "Project Home": "Project Home"
194
+ "Project Source": "Project bron"
195
+
196
+ # ### Demo / Placeholder / Defaults
197
+ "The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "Het geschiedenis venster moet nog worden geimplementeeerd met een server back-end."
198
+
199
+ "The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "Het aanekeningen venster moet nog worden geimplementeeerd met een server back-end."
200
+
201
+ "Snippet Name": "Snippet naam"
202
+ "A one or two line long description of what this snippet does.": "Een korte beschrijving wat de snippet doet."
203
+
204
+ "First Name": "Voornaam"
205
+ "Favorite Beer": "Favoriet bier"
206
+ "Insert Snippet": "Voeg snippet toe"
@@ -0,0 +1,211 @@
1
+ Mercury.I18n['pt'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "Salvar"
6
+ "Save this page": "Salvar esta página"
7
+ "Preview": "Prévia"
8
+ "Preview this page": "Ver como esta página está ficando"
9
+ "Undo": "Desfazer"
10
+ "Undo your last action": "Desfazer minha última ação"
11
+ "Redo": "Refazer"
12
+ "Redo your last action": "Refazer minha última ação"
13
+ "Link": "Link"
14
+ "Insert Link": "Inserir um Link"
15
+ "Media": "Mídia"
16
+ "Insert Media (images and videos)": "Inserir Mídia (Imagens e Vídeos)"
17
+ "Table": "Tabela"
18
+ "Insert Table": "Desenhar Tabela"
19
+ "Character": "Caracteres"
20
+ "Special Characters": "Caracteres Especiais"
21
+ "Snippet": "Snippets"
22
+ "Snippet Panel": "Painel de Snippets"
23
+ "History": "Histórico"
24
+ "Page Version History": "Veja o histórico desta página"
25
+ "Notes": "Anotações"
26
+ "Page Notes": "Anotações da página"
27
+ "Style": "Estilos"
28
+ "Block Format": "Bloco"
29
+ "Background Color": "Cor de Fundo"
30
+ "Text Color": "Cor de Texto"
31
+ "Bold": "Negrito"
32
+ "Italicize": "Itálico"
33
+ "Overline": "Sobrelinha"
34
+ "Strikethrough": "Riscado"
35
+ "Underline": "Sublinha"
36
+ "Subscript": "Sub-elevado"
37
+ "Superscript": "Sobre-elevado"
38
+ "Align Left": "À esquerda"
39
+ "Center": "Centralizado"
40
+ "Align Right": "À direita"
41
+ "Justify Full": "Justificado"
42
+ "Unordered List": "Lista sem números"
43
+ "Numbered List": "Lista com números"
44
+ "Decrease Indentation": "Aumentar recuo"
45
+ "Increase Indentation": "Diminuir recuo"
46
+ "Insert Table Row": "Inserir Linha"
47
+ "Insert a table row before the cursor": "Insere linha antes do cursor"
48
+ "Insert a table row after the cursor": "Insere linha após do cursor"
49
+ "Delete Table Row": "Remove linha"
50
+ "Delete this table row": "Remove esta linha"
51
+ "Insert Table Column": "Insere Coluna"
52
+ "Insert a table column before the cursor": "Insere coluna antes do cursor"
53
+ "Insert a table column after the cursor": "Insere coluna após do cursor"
54
+ "Delete Table Column": "Remove coluna"
55
+ "Delete this table column": "Remove esta coluna"
56
+ "Increase Cell Columns": "Aumenta colunas da celula"
57
+ "Decrease Cell Columns": "Reduz colunas da celula"
58
+ "Increase Cell Rows": "Aumenta linhas da celula"
59
+ "Decrease Cell Rows": "Reduz linhas da celula"
60
+ "Horizontal Rule": "Linha horizontal"
61
+ "Insert a horizontal rule": "Inserir linha horizontal"
62
+ "Remove Formatting": "Remover formatação"
63
+ "Remove formatting for the selection": "Remover toda a formatação para o texto selecionado"
64
+ "Edit HTML": "Editar HTML"
65
+ "Edit the HTML content": "Edita o HTML do conteúdo"
66
+ "Edit Snippet Settings": "Edita configurações de snippets"
67
+ "Remove Snippet": "Remover Snippets"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s não aceita seu navegador. Utilize um dos seguintes: %s."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor não pode ser inicializado duas vezes"
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "Mercury.PageEditor não é garantido no navegador Opera, seus resultados podem não ser os esperados."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor não pôde carregar: %s\n\nPor favor, recarregue a página."
75
+ "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "A região não digitada corretamente, não foi definido um 'data-type', ou \"%s\" é desconhecido na região de \"%s\"."
76
+ "Mercury was unable to save to the url: %s": ""
77
+ # Confirmations
78
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "Você modificou esta página. Quer sair sem salvar seu trabalho?"
79
+
80
+ # ### Toolbar / Buttons
81
+ # Error Messages
82
+ "Unknown button type \"%s\" used for the \"%s\" button.": "Tipo de botão \"%s\" não é conhecido, usado no botão \"%s\"."
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "Estrutura de botão desconhecida -- por favor, fomente um array, objeto ou string para \"%s\"."
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": "Mercury não carregou \"%s\" para a janela \"%s\"."
88
+ "Mercury was unable to load %s for the lightview.": "Mercury não carregou \"%s\" na lightview."
89
+ "Mercury was unable to load %s for the modal.": "Mercury não carregou \"%s\" como modal."
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": "Erro carregando a pré-visulização do snippet \"%s\"."
94
+ # Misc
95
+ "Snippet Options": "Opções de Snippet"
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %s": "Não foi possível processar a 'response': \"%s\"."
100
+ "Error: Unable to upload the file": "Erro: Não foi possível carregar o arquivo."
101
+ "Malformed response from server": "A 'response' do servidor foi formada incorretamente" # needs translation
102
+ "Too large": "Muito Grande"
103
+ "Unsupported format": "Formato não suportado"
104
+ # Statuses
105
+ "Processing...": "Processando..."
106
+ "Uploading...": "Enviando..."
107
+ "Aborted": "Abortado"
108
+ "Successfully uploaded...": "Enviado com sucesso."
109
+ "Name: %s": "Nome: \"%s\"."
110
+ "Size: %s": "Tamanho: \"%s\"."
111
+ "Type: %s": "Tipo: \"%s\"."
112
+
113
+ # Inserting Media
114
+ "Error: The provided youtube share url was invalid.": "Erro: Link inválido no youtube."
115
+ "Error: The provided vimeo url was invalid.": "Erro: Link inválido no vimeo."
116
+
117
+ # Statusbar
118
+ "Path:": "Caminho"
119
+
120
+
121
+ # ## HTML / Template Strings
122
+
123
+ # ### Modals
124
+ # Insert Link Modal (link.html)
125
+ "Link Content": "Conteúdo do Link"
126
+ "Standard Links": "Links Padrão"
127
+ "URL": "URL (endereço)"
128
+ "Index / Bookmark Links": "Index / Links Marcados"
129
+ "Existing Links": "Links existentes"
130
+ "Bookmark": "Links marcados"
131
+ "Options": "Opções"
132
+ "Link Target": "Abrir em"
133
+ "Self (the same window or tab)": "Self (na própria janela ou aba)"
134
+ "Blank (a new window or tab)": "Blank (numa nova aba)"
135
+ "Top (removes any frames)": "Top (na janela, ignorando frames)"
136
+ "Popup Window (javascript new window popup)": "Popup Window (Janela feia em javascript)"
137
+ "Popup Width": "Largura do popup"
138
+ "Popup Height": "Altura do popup"
139
+ "Insert Link": "Inserir Link"
140
+
141
+ # Insert Media Modal (media.html)
142
+ "Images": "Imagens"
143
+ "Videos": "Vídeos"
144
+ "YouTube Share URL": "Link do Youtube"
145
+ "Vimeo URL": "Link do Vimeo"
146
+ "Alignment": "Alinhamento"
147
+ "None": "Nenhum"
148
+ "Left": "Esquerda"
149
+ "Right": "Direita"
150
+ "Top": "Cima"
151
+ "Middle": "Meio"
152
+ "Bottom": "Baixo"
153
+ "Absolute Middle": "Meio Absoluto"
154
+ "Absolute Bottom": "Baixo Absoluto"
155
+ "Width": "Largura"
156
+ "Height": "Altura"
157
+ "Insert Media": "Inserir Mídia"
158
+
159
+ # Insert Table Modal (table.html)
160
+ "Rows": "Linhas"
161
+ "Add Before": "Antes"
162
+ "Add After": "Depois"
163
+ "Remove": "Remover"
164
+ "Columns": "Colunas"
165
+ "Row Span": "Células horizontais"
166
+ "Column Span": "Células verticais"
167
+ "Options": "Opções"
168
+ "Alignment": "Alinhamento"
169
+ "Border": "Borda"
170
+ "Spacing": "Espaçamento"
171
+ "Insert Table": "Inserir Tabela"
172
+
173
+ # HTML Editor Modal (htmleditor.html)
174
+ "HTML Editor": "Editor HTML"
175
+ "Save and Replace": "Salvar e Modificar"
176
+
177
+ # ### Dialogs / Etc.
178
+ # Color Palettes (forecolor.html, backcolor.html)
179
+ "Last Color Picked": "Última cor"
180
+
181
+ # Block Format Select (formatblock.html)
182
+ "Heading 1": "Título 1"
183
+ "Heading 2": "Título 2"
184
+ "Heading 3": "Título 3"
185
+ "Heading 4": "Título 4"
186
+ "Heading 5": "Título 5"
187
+ "Heading 6": "Título 6"
188
+ "Paragraph": "Paragrafo"
189
+ "Blockquote": "Menção"
190
+ "Formatted": "Datilografado"
191
+
192
+ # About Mercury Panel (about.html)
193
+ "Project Home": "Página inicial do projeto"
194
+ "Project Source": "Fontes do projeto"
195
+
196
+ # ### Demo / Placeholder / Defaults
197
+ "The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "O painel de histórico deve ser implementado junto ao código lado-servidor. Como isto é um demo, ele não foi incluído."
198
+
199
+ "The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "O painel de anotações deve ser implementado junto ao código lado-servidor. Como isto é um demo, ele não foi incluído."
200
+
201
+ "Snippet Name": "Nome do snippet"
202
+ "A one or two line long description of what this snippet does.": ""
203
+
204
+ "First Name": "Primeio Nome"
205
+ "Favorite Beer": "Cerveja Favorita"
206
+ "Insert Snippet": "Inserir Snippet"
207
+
208
+
209
+ # ## Custom Regional Overrides (eg. en-US)
210
+ _BR_:
211
+ "Save": "Salvar"