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,211 @@
1
+ Mercury.I18n['en'] =
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": ""
65
+ "Edit the HTML content": ""
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.": ""
72
+ "Mercury.PageEditor can only be instantiated once.": ""
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.": ""
75
+ "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": ""
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.": ""
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": ""
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": ""
88
+ "Mercury was unable to load %s for the lightview.": ""
89
+ "Mercury was unable to load %s for the modal.": ""
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": ""
94
+ # Misc
95
+ "Snippet Options": ""
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %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": ""
110
+ "Size: %s": ""
111
+ "Type: %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": ""
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": ""
145
+ "Vimeo URL": ""
146
+ "Alignment": ""
147
+ "None": ""
148
+ "Left": ""
149
+ "Right": ""
150
+ "Top": ""
151
+ "Middle": ""
152
+ "Bottom": ""
153
+ "Absolute Middle": ""
154
+ "Absolute Bottom": ""
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": ""
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": ""
183
+ "Heading 2": ""
184
+ "Heading 3": ""
185
+ "Heading 4": ""
186
+ "Heading 5": ""
187
+ "Heading 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": ""
207
+
208
+
209
+ # ## Custom Regional Overrides (eg. en-US)
210
+ _US_:
211
+ "Save": ""
@@ -0,0 +1,211 @@
1
+ Mercury.I18n['fr'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "Enregistrer"
6
+ "Save this page": "Enregistrer cette page"
7
+ "Preview": "Aperçu"
8
+ "Preview this page": "Aperçu de cette page"
9
+ "Undo": "Annuler"
10
+ "Undo your last action": "Annuler la dernière action"
11
+ "Redo": "Refaire"
12
+ "Redo your last action": "Refaire la dernière action"
13
+ "Link": "Lien"
14
+ "Insert Link": "Insérer un lien"
15
+ "Media": "Média"
16
+ "Insert Media (images and videos)": "Insérer un média (images et vidéos)"
17
+ "Table": "Tableau"
18
+ "Insert Table": "Insérer un tableau"
19
+ "Character": "Caractère"
20
+ "Special Characters": "Caractères spéciaux"
21
+ "Snippet": "Extrait"
22
+ "Snippet Panel": "Panneau d'extrait"
23
+ "History": "Historique"
24
+ "Page Version History": "Historique des versions de la page"
25
+ "Notes": "Notes"
26
+ "Page Notes": "Notes sur la page"
27
+ "Style": "Style"
28
+ "Block Format": "Format de bloc"
29
+ "Background Color": "Couleur d'arrière-plan"
30
+ "Text Color": "Couleur du texte"
31
+ "Bold": "Gras"
32
+ "Italicize": "Italique"
33
+ "Overline": "Surligné"
34
+ "Strikethrough": "Barré"
35
+ "Underline": "Souligné"
36
+ "Subscript": "Indice"
37
+ "Superscript": "Exposant"
38
+ "Align Left": "Aligné à gauche"
39
+ "Center": "Centré"
40
+ "Align Right": "Aligné à droite"
41
+ "Justify Full": "Justifié"
42
+ "Unordered List": "Liste non ordonnée"
43
+ "Numbered List": "Liste ordonnée"
44
+ "Decrease Indentation": "Diminuer l'indentation"
45
+ "Increase Indentation": "Augmenter l'indentation"
46
+ "Insert Table Row": "Insérer une ligne"
47
+ "Insert a table row before the cursor": "Insérer une ligne avant le curseur"
48
+ "Insert a table row after the cursor": "Insérer une ligne après le curseur"
49
+ "Delete Table Row": "Supprimer une ligne"
50
+ "Delete this table row": "Supprimer cette ligne"
51
+ "Insert Table Column": "Insérer une colonne"
52
+ "Insert a table column before the cursor": "Insérer une colonne avant le curseur"
53
+ "Insert a table column after the cursor": "Insérer une colonne après le curseur"
54
+ "Delete Table Column": "Supprimer cette colonne"
55
+ "Delete this table column": "Supprimer cette colonne"
56
+ "Increase Cell Columns": "Augmenter d'une colonne"
57
+ "Decrease Cell Columns": "Diminuer d'une colonne"
58
+ "Increase Cell Rows": "Augmenter d'une ligne"
59
+ "Decrease Cell Rows": "Diminuer d'une ligne"
60
+ "Horizontal Rule": "Ligne horizontale"
61
+ "Insert a horizontal rule": "Insérer une ligne horizontale"
62
+ "Remove Formatting": "Retirer le style"
63
+ "Remove formatting for the selection": "Retirer le style de la sélection"
64
+ "Edit HTML": "Editer le HTML"
65
+ "Edit the HTML content": "Editer le contenu HTML"
66
+ "Edit Snippet Settings": "Editer les paramètres de l'extrait"
67
+ "Remove Snippet": "Supprimer l'extrait"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s n'est pas supporté dans ce client. Les navigateurs supportés sont %s."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor ne peut être démarré qu'une fois."
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "Opéra n'est pas totalement supporté, le résultat ne sera peut-être pas optimal."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor n'a pas pu démarrer: %s\n\nEssayez de rafraichir la page."
75
+ "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "La région est mal formée, le type de donnée est manquant ou \"%s\" est inconnu pour la région \"%s\"."
76
+ "Mercury was unable to save to the url: %s": "Mercury n'a pas pu sauvegarder sur l'URL : %s"
77
+ # Confirmations
78
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "Il y a des changements non sauvegardés. Etes-vous sûr de vouloir quitter sans les enregistrer ?"
79
+
80
+ # ### Toolbar / Buttons
81
+ # Error Messages
82
+ "Unknown button type \"%s\" used for the \"%s\" button.": "Le type \"%s\" est inconnu pour le boutton \"%s\"."
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "Structure de boutton inconnue -- veuillez fournir un tableau, un objet ou une chaîne pour \"%s\"."
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": "Mercury n'a pas pu charger %s pour la fenêtre \"%s\"."
88
+ "Mercury was unable to load %s for the lightview.": "Mercury n'a pas pu charger %s pour l'aperçu."
89
+ "Mercury was unable to load %s for the modal.": "Mercury n'a pas pu charger %s pour la modale."
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": "Erreur lors du chargement de l'aperçu de l'extrait \"%s\""
94
+ # Misc
95
+ "Snippet Options": "Options de l'extrait"
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %s": "Impossible de traiter la réponse : %s"
100
+ "Error: Unable to upload the file": "Erreur : l'envoi du fichier à échoué"
101
+ "Malformed response from server": "" # needs translation
102
+ "Too large": "Trop grand"
103
+ "Unsupported format": "Format non supporté"
104
+ # Statuses
105
+ "Processing...": "Traitement..."
106
+ "Uploading...": "Envoi..."
107
+ "Aborted": "Annulé"
108
+ "Successfully uploaded...": "Envoi réussi"
109
+ "Name: %s": "Nom : %s"
110
+ "Size: %s": "Taille : %s"
111
+ "Type: %s": "Type : %s"
112
+
113
+ # Inserting Media
114
+ "Error: The provided youtube share url was invalid.": "Erreur : l'URL Youtube indiquée est invalide."
115
+ "Error: The provided vimeo url was invalid.": "Erreur : l'URL Vimeo indiquée est invalide."
116
+
117
+ # Statusbar
118
+ "Path:": "Chemin :"
119
+
120
+
121
+ # ## HTML / Template Strings
122
+
123
+ # ### Modals
124
+ # Insert Link Modal (link.html)
125
+ "Link Content": "Contenu du lien"
126
+ "Standard Links": "Liens standard"
127
+ "URL": "URL"
128
+ "Index / Bookmark Links": "Liens d'index/marque-page"
129
+ "Existing Links": "Liens existants"
130
+ "Bookmark": "Marque-page"
131
+ "Options": "Options"
132
+ "Link Target": "Cible du lien"
133
+ "Self (the same window or tab)": "Cette fenêtre"
134
+ "Blank (a new window or tab)": "Nouvelle fenêtre"
135
+ "Top (removes any frames)": "Hors frames"
136
+ "Popup Window (javascript new window popup)": "Popup (nouvelle fenêtre javascript)"
137
+ "Popup Width": "Largeur de la popup"
138
+ "Popup Height": "Hauteur de la popup"
139
+ "Insert Link": "Insérer le lien"
140
+
141
+ # Insert Media Modal (media.html)
142
+ "Images": "Images"
143
+ "Videos": "Vidéos"
144
+ "YouTube Share URL": "URL Youtube"
145
+ "Vimeo URL": "URL Vimeo"
146
+ "Alignment": "Alignement"
147
+ "None": "Aucun"
148
+ "Left": "Gauche"
149
+ "Right": "Droite"
150
+ "Top": "Haut"
151
+ "Middle": "Milieu"
152
+ "Bottom": "Bas"
153
+ "Absolute Middle": "Milieu absolu"
154
+ "Absolute Bottom": "Bas absolu"
155
+ "Width": "Largeur"
156
+ "Height": "Hauteur"
157
+ "Insert Media": "Insérer le média"
158
+
159
+ # Insert Table Modal (table.html)
160
+ "Rows": "Lignes"
161
+ "Add Before": "Ajouter avant"
162
+ "Add After": "Ajouter après"
163
+ "Remove": "Enlever"
164
+ "Columns": "Colonnes"
165
+ "Row Span": "sur X lignes"
166
+ "Column Span": "sur X colonnes"
167
+ "Options": "Options"
168
+ "Alignment": "Alignement"
169
+ "Border": "Bordure"
170
+ "Spacing": "Espacement"
171
+ "Insert Table": "Insérer le tableau"
172
+
173
+ # HTML Editor Modal (htmleditor.html)
174
+ "HTML Editor": "Editeur HTML"
175
+ "Save and Replace": "Enregistrer et remplacer"
176
+
177
+ # ### Dialogs / Etc.
178
+ # Color Palettes (forecolor.html, backcolor.html)
179
+ "Last Color Picked": "Dernière couleur sélectionnée"
180
+
181
+ # Block Format Select (formatblock.html)
182
+ "Heading 1": "Titre 1"
183
+ "Heading 2": "Titre 2"
184
+ "Heading 3": "Titre 3"
185
+ "Heading 4": "Titre 4"
186
+ "Heading 5": "Titre 5"
187
+ "Heading 6": "Titre 6"
188
+ "Paragraph": "Paragraphe"
189
+ "Blockquote": "Citation"
190
+ "Formatted": "Formatté"
191
+
192
+ # About Mercury Panel (about.html)
193
+ "Project Home": "Page du projet"
194
+ "Project Source": "Code 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.": "Le panneau historique est censé fonctionner avec un serveur. Il n'est pas inclus dans cette démo."
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.": "Le panneau notes est censé fonctionner avec un serveur. Il n'est pas inclus dans cette démo."
200
+
201
+ "Snippet Name": "Nom de l'extrait"
202
+ "A one or two line long description of what this snippet does.": "Une description d'une ou deux lignes de ce que fait l'extrait."
203
+
204
+ "First Name": "Prénom"
205
+ "Favorite Beer": "Bière favorite"
206
+ "Insert Snippet": "Insérer extrait"
207
+
208
+
209
+ # ## Custom Regional Overrides (eg. fr-LU -- French (Luxembourg))
210
+ _LU_:
211
+ "Save": "Enregistrer"
@@ -0,0 +1,208 @@
1
+ Mercury.I18n['it'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "Salva"
6
+ "Save this page": "Salva questa pagina"
7
+ "Preview": "Anteprima"
8
+ "Preview this page": "Visualizza l'anteprima di questa pagina"
9
+ "Undo": "Annulla"
10
+ "Undo your last action": "Annulla l'ultima azione"
11
+ "Redo": "Ripristina"
12
+ "Redo your last action": "Ripristina l'ultima azione"
13
+ "Link": "Link"
14
+ "Insert Link": "Inserisci link"
15
+ "Media": "Multimediali"
16
+ "Insert Media (images and videos)": "Inserisci oggetti multimediali (immagini e video)"
17
+ "Table": "Tabella"
18
+ "Insert Table": "Inserisci tabella"
19
+ "Character": "Caratteri"
20
+ "Special Characters": "Caratteri speciali"
21
+ "Snippet": "Ritagli"
22
+ "Snippet Panel": "Pannello dei ritagli"
23
+ "History": "Storia"
24
+ "Page Version History": "Storia delle versioni della pagina"
25
+ "Notes": "Note"
26
+ "Page Notes": "Note per la pagina"
27
+ "Style": "Stile"
28
+ "Block Format": "Formato blocco"
29
+ "Background Color": "Colore di sfondo"
30
+ "Text Color": "Colore del testo"
31
+ "Bold": "Grassetto"
32
+ "Italicize": "Corsivo"
33
+ "Overline": "Linea sopra"
34
+ "Strikethrough": "Barrato"
35
+ "Underline": "Sottolinea"
36
+ "Subscript": "Pedice"
37
+ "Superscript": "Apice"
38
+ "Align Left": "Allinea a destra"
39
+ "Center": "Centra"
40
+ "Align Right": "Allinea a sinistra"
41
+ "Justify Full": "Giustifica"
42
+ "Unordered List": "Lista non ordinata"
43
+ "Numbered List": "Lista numerata"
44
+ "Decrease Indentation": "Diminuisci identazione"
45
+ "Increase Indentation": "Aumenta identazione"
46
+ "Insert Table Row": "Inserisci riga nella tabella"
47
+ "Insert a table row before the cursor": "Inserisci riga nella tabella prima del cursore"
48
+ "Insert a table row after the cursor": "Inserisci riga nella tabella dopo il cursore"
49
+ "Delete Table Row": "Elimina riga della tabella"
50
+ "Delete this table row": "Elimina questa riga della tabella"
51
+ "Insert Table Column": "Inserisci colonna nella tabella"
52
+ "Insert a table column before the cursor": "Inserisci colonna nella tabella prima del cursore"
53
+ "Insert a table column after the cursor": "Inserisci colonna nella tabella dopo il cursore"
54
+ "Delete Table Column": "Elimina colonna della tabella"
55
+ "Delete this table column": "Elimina questa colonna della tabella"
56
+ "Increase Cell Columns": "Aumenta le colonne occupate da questa cella"
57
+ "Decrease Cell Columns": "Diminuisci le colonne occupate da questa cella"
58
+ "Increase Cell Rows": "Aumenta le righe occupate da questa cella"
59
+ "Decrease Cell Rows": "Diminuisci le righe occupate da questa cella"
60
+ "Horizontal Rule": "Separatore orizzontale"
61
+ "Insert a horizontal rule": "Inserisci un separatore orizzontale"
62
+ "Remove Formatting": "Rimuovi formattazione"
63
+ "Remove formatting for the selection": "Rimuovi formattazione per la selezione"
64
+ "Edit HTML": "Modifica HTML"
65
+ "Edit the HTML content": "Modifica la sorgente HTML"
66
+ "Edit Snippet Settings": "Modifica le impostazioni dei ritagli"
67
+ "Remove Snippet": "Rimuovi ritaglio"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s non è supportato in questo computer. I browser supportati sono %s."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor può essere istanziato una sola volta."
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "Opera non è un browser pienamente supportato, il risultato potrebbe non essere ottimale."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "È fallito il caricamento di Mercury.PageEditor: %s\n\nProva a ricaricare la pagina."
75
+ "Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "Il tipo di regione è malformato, data-type non è stato fornito, o \"%s\" è sconosciuto per la regione \"%s\"."
76
+ "Mercury was unable to save to the url: %s": "Mercury non è stato in grado di salvare l'url: %s"
77
+ # Confirmations
78
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "Hai cambiamenti non salvati. Sei sicuro di voler abbandonare questa pagina senza prima salvarli?"
79
+
80
+ # ### Toolbar / Buttons
81
+ # Error Messages
82
+ "Unknown button type \"%s\" used for the \"%s\" button.": "Tipo sconosciuto di bottone \"%s\" utilizzato per il bottone \"%s\"."
83
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "Struttura del bottone sconosciuta -- fornisci un array, un oggetto o una stringa per \"%s\"."
84
+
85
+ # ### Modals / Dialogs / Etc.
86
+ # Error Messages
87
+ "Mercury was unable to load %s for the \"%s\" dialog.": "Mercury non è stato in grado di caricare %s per il dialogo \"%s\"."
88
+ "Mercury was unable to load %s for the lightview.": "Mercury non è stato in grado di caricare %s per la lightview."
89
+ "Mercury was unable to load %s for the modal.": "Mercury non è stato in grado di caricare %s per il dialogo modale."
90
+
91
+ # ### Snippets
92
+ # Error Messages
93
+ "Error loading the preview for the \"%s\" snippet.": "Errore caricando l'anteprima per il ritaglio \"%s\"."
94
+ # Misc
95
+ "Snippet Options": "Opzioni ritaglio"
96
+
97
+ # ### Uploader
98
+ # Error Messages
99
+ "Unable to process response: %s": "Impossibile elaborare la risposta: %s"
100
+ "Error: Unable to upload the file": "Errore: Impossibile caricare il file"
101
+ "Malformed response from server": "Risposta malformata dal server" # needs translation
102
+ "Too large": "Troppo largo"
103
+ "Unsupported format": "Formato non supportato"
104
+ # Statuses
105
+ "Processing...": "Elaborazione in corso..."
106
+ "Uploading...": "Upload in corso..."
107
+ "Aborted": "Fallito"
108
+ "Successfully uploaded...": "Caricato con successo..."
109
+ "Name: %s": "Nome: %s"
110
+ "Size: %s": "Grandezza: %s"
111
+ "Type: %s": "Tipo: %s"
112
+
113
+ # Inserting Media
114
+ "Error: The provided youtube share url was invalid.": "Errore: l'url della condivisione di youtube non è valido"
115
+ "Error: The provided vimeo url was invalid.": "Errore: l'url vimeo non è valido"
116
+
117
+ # Statusbar
118
+ "Path:": "Percorso"
119
+
120
+
121
+ # ## HTML / Template Strings
122
+
123
+ # ### Modals
124
+ # Insert Link Modal (link.html)
125
+ "Link Content": "Contenuti del link"
126
+ "Standard Links": "Link normale"
127
+ "URL": "URL"
128
+ "Index / Bookmark Links": "Link all'indice / ai segnalibri"
129
+ "Existing Links": "Link esistente"
130
+ "Bookmark": "Segnalibro"
131
+ "Options": "Opzioni"
132
+ "Link Target": "Destinazione del link"
133
+ "Self (the same window or tab)": "Self (stessa finestra o tab)"
134
+ "Blank (a new window or tab)": "Blank (nuova finestra o tab)"
135
+ "Top (removes any frames)": "Top (rimuove tutti i frames)"
136
+ "Popup Window (javascript new window popup)": "Popup (nuova finestra attraverso javascript)"
137
+ "Popup Width": "Altezza del popup"
138
+ "Popup Height": "Larghezza del popup"
139
+ "Insert Link": "Inserisci link"
140
+
141
+ # Insert Media Modal (media.html)
142
+ "Images": "Immagini"
143
+ "Videos": "Video"
144
+ "YouTube Share URL": "URL YouTube"
145
+ "Vimeo URL": "URL Vimeo"
146
+ "Alignment": "Allineamento"
147
+ "None": "Nessuno"
148
+ "Left": "Sinistra"
149
+ "Right": "Destra"
150
+ "Top": "Alto"
151
+ "Middle": "Centro"
152
+ "Bottom": "Basso"
153
+ "Absolute Middle": "Centro assoluto"
154
+ "Absolute Bottom": "Basso assoluto"
155
+ "Width": "Larghezzza"
156
+ "Height": "Altezza"
157
+ "Insert Media": "Inserisci oggetto multimediale"
158
+
159
+ # Insert Table Modal (table.html)
160
+ "Rows": "Righe"
161
+ "Add Before": "Prima"
162
+ "Add After": "Dopo"
163
+ "Remove": "Rimuovi"
164
+ "Columns": "Colonne"
165
+ "Row Span": "Estensione in righe"
166
+ "Column Span": "Estensione in colonne"
167
+ "Options": "Opzioni"
168
+ "Alignment": "Allineamento"
169
+ "Border": "Bordo"
170
+ "Spacing": "Spaziatura"
171
+ "Insert Table": "Inserisci tabella"
172
+
173
+ # HTML Editor Modal (htmleditor.html)
174
+ "HTML Editor": "Editor HTML"
175
+ "Save and Replace": "Salva e sostituisci"
176
+
177
+ # ### Dialogs / Etc.
178
+ # Color Palettes (forecolor.html, backcolor.html)
179
+ "Last Color Picked": "Ultimo colore selezionato"
180
+
181
+ # Block Format Select (formatblock.html)
182
+ "Heading 1": "Titolo 1"
183
+ "Heading 2": "Titolo 2"
184
+ "Heading 3": "Titolo 3"
185
+ "Heading 4": "Titolo 4"
186
+ "Heading 5": "Titolo 5"
187
+ "Heading 6": "Titolo 6"
188
+ "Paragraph": "Paragrafo"
189
+ "Blockquote": "Citazione"
190
+ "Formatted": "Formattato"
191
+
192
+ # About Mercury Panel (about.html)
193
+ "Project Home": "Homepage del progetto"
194
+ "Project Source": "Sorgente del progetto"
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.": "Si prevede che il pannello della storia venga implementato a livello del server back-end. Poiché questa è una demo, non l'abbiamo incluso."
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.": "Si prevede che il pannello delle note venga implementato a livello del server back-end. Poiché questa è una demo, non l'abbiamo incluso."
200
+
201
+ "Snippet Name": "Nome del ritaglio"
202
+ "A one or two line long description of what this snippet does.": "Una descrizione lunga una o due linee di ciò che fa il ritaglio."
203
+
204
+ "First Name": "Nome"
205
+ "Favorite Beer": "Birra preferita"
206
+ "Insert Snippet": "Inserisci ritaglio"
207
+
208
+