mercury-rails 0.2.3 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. data/app/controllers/{images_controller.rb → mercury/images_controller.rb} +3 -3
  2. data/app/controllers/mercury_controller.rb +13 -3
  3. data/app/models/{image.rb → mercury/image.rb} +3 -1
  4. data/app/views/layouts/mercury.html.erb +14 -6
  5. data/app/views/mercury/lightviews/about.html +7 -3
  6. data/app/views/mercury/modals/character.html +2 -2
  7. data/app/views/mercury/modals/htmleditor.html +2 -2
  8. data/app/views/mercury/modals/link.html +3 -3
  9. data/app/views/mercury/modals/media.html +3 -3
  10. data/app/views/mercury/modals/table.html +3 -3
  11. data/app/views/mercury/panels/snippets.html +1 -1
  12. data/app/views/mercury/selects/formatblock.html +9 -9
  13. data/app/views/mercury/snippets/example/options.html.erb +27 -16
  14. data/config/engine.rb +35 -0
  15. data/db/migrate/{20110526035601_create_images.rb → 20110526035601_create_mercury_images.rb} +2 -2
  16. data/features/loading/loading.feature +1 -1
  17. data/features/loading/navigating.feature +1 -1
  18. data/features/loading/user_interface.feature +2 -2
  19. data/features/regions/editable/basic_editing.feature +8 -8
  20. data/features/regions/editable/inserting_snippets.feature +4 -5
  21. data/features/regions/editable/inserting_tables.feature +9 -9
  22. data/features/step_definitions/mercury_steps.rb +20 -23
  23. data/features/step_definitions/web_steps.rb +5 -5
  24. data/features/support/mercury_selectors.rb +1 -0
  25. data/lib/generators/mercury/install/install_generator.rb +24 -3
  26. data/lib/generators/mercury/install/templates/mongoid_paperclip_image.rb +17 -0
  27. data/lib/mercury-rails.rb +0 -1
  28. data/lib/mercury/authentication.rb +8 -0
  29. data/spec/javascripts/mercury/dialog_spec.js.coffee +28 -21
  30. data/spec/javascripts/mercury/dialogs/backcolor_spec.js.coffee +0 -2
  31. data/spec/javascripts/mercury/dialogs/forecolor_spec.js.coffee +0 -2
  32. data/spec/javascripts/mercury/dialogs/formatblock_spec.js.coffee +0 -2
  33. data/spec/javascripts/mercury/dialogs/snippetpanel_spec.js.coffee +0 -2
  34. data/spec/javascripts/mercury/dialogs/style_spec.js.coffee +0 -2
  35. data/spec/javascripts/mercury/history_buffer_spec.js.coffee +0 -2
  36. data/spec/javascripts/mercury/lightview_spec.js.coffee +42 -21
  37. data/spec/javascripts/mercury/mercury_spec.js.coffee +87 -7
  38. data/spec/javascripts/mercury/modal_spec.js.coffee +53 -23
  39. data/spec/javascripts/mercury/modals/htmleditor_spec.js.coffee +0 -2
  40. data/spec/javascripts/mercury/modals/insertcharacter_spec.js.coffee +2 -3
  41. data/spec/javascripts/mercury/modals/insertlink_spec.js.coffee +0 -2
  42. data/spec/javascripts/mercury/modals/insertmedia_spec.js.coffee +2 -2
  43. data/spec/javascripts/mercury/modals/insertsnippet_spec.js.coffee +0 -2
  44. data/spec/javascripts/mercury/modals/inserttable_spec.js.coffee +2 -4
  45. data/spec/javascripts/mercury/native_extensions_spec.js.coffee +20 -2
  46. data/spec/javascripts/mercury/page_editor_spec.js.coffee +130 -35
  47. data/spec/javascripts/mercury/palette_spec.js.coffee +4 -6
  48. data/spec/javascripts/mercury/panel_spec.js.coffee +44 -6
  49. data/spec/javascripts/mercury/region_spec.js.coffee +42 -8
  50. data/spec/javascripts/mercury/regions/editable_spec.js.coffee +0 -2
  51. data/spec/javascripts/mercury/regions/markupable_spec.js.coffee +0 -2
  52. data/spec/javascripts/mercury/regions/snippetable_spec.js.coffee +3 -5
  53. data/spec/javascripts/mercury/select_spec.js.coffee +4 -6
  54. data/spec/javascripts/mercury/snippet_spec.js.coffee +3 -4
  55. data/spec/javascripts/mercury/snippet_toolbar_spec.js.coffee +2 -4
  56. data/spec/javascripts/mercury/statusbar_spec.js.coffee +0 -2
  57. data/spec/javascripts/mercury/table_editor_spec.js.coffee +2 -4
  58. data/spec/javascripts/mercury/toolbar.button_group_spec.js.coffee +0 -2
  59. data/spec/javascripts/mercury/toolbar.button_spec.js.coffee +34 -15
  60. data/spec/javascripts/mercury/toolbar.expander_spec.js.coffee +0 -2
  61. data/spec/javascripts/mercury/toolbar_spec.js.coffee +41 -26
  62. data/spec/javascripts/mercury/tooltip_spec.js.coffee +3 -5
  63. data/spec/javascripts/mercury/uploader_spec.js.coffee +8 -14
  64. data/spec/javascripts/spec_helper.js +1 -0
  65. data/spec/javascripts/templates/mercury/page_editor.html +1 -0
  66. data/spec/javascripts/templates/mercury/region.html +2 -2
  67. data/vendor/assets/images/mercury/missing-image.png +0 -0
  68. data/vendor/assets/javascripts/mercury.js +218 -112
  69. data/vendor/assets/javascripts/mercury/dependencies/{jquery-1.6.js → jquery-1.7.js} +2030 -1595
  70. data/vendor/assets/javascripts/mercury/dependencies/jquery.additions.js +55 -0
  71. data/vendor/assets/javascripts/mercury/dialog.js.coffee +7 -5
  72. data/vendor/assets/javascripts/mercury/dialogs/backcolor.js.coffee +1 -1
  73. data/vendor/assets/javascripts/mercury/dialogs/forecolor.js.coffee +1 -1
  74. data/vendor/assets/javascripts/mercury/dialogs/formatblock.js.coffee +1 -1
  75. data/vendor/assets/javascripts/mercury/dialogs/{objectspanel.js.coffee → snippetpanel.js.coffee} +2 -2
  76. data/vendor/assets/javascripts/mercury/dialogs/style.js.coffee +1 -1
  77. data/vendor/assets/javascripts/mercury/finalize.js.coffee +3 -0
  78. data/vendor/assets/javascripts/mercury/lightview.js.coffee +76 -30
  79. data/vendor/assets/javascripts/mercury/locales/da.locale.js.coffee +211 -0
  80. data/vendor/assets/javascripts/mercury/locales/de.locale.js.coffee +206 -0
  81. data/vendor/assets/javascripts/mercury/locales/es.locale.js.coffee +211 -0
  82. data/vendor/assets/javascripts/mercury/locales/example.local.js.coffee +211 -0
  83. data/vendor/assets/javascripts/mercury/locales/fr.locale.js.coffee +211 -0
  84. data/vendor/assets/javascripts/mercury/locales/it.locale.js.coffee +208 -0
  85. data/vendor/assets/javascripts/mercury/locales/ko.local.js.coffee +206 -0
  86. data/vendor/assets/javascripts/mercury/locales/nl.locale.js.coffee +206 -0
  87. data/vendor/assets/javascripts/mercury/locales/pt.locale.js.coffee +211 -0
  88. data/vendor/assets/javascripts/mercury/locales/sv.local.js.coffee +209 -0
  89. data/vendor/assets/javascripts/mercury/locales/swedish_chef.locale.js.coffee +213 -0
  90. data/vendor/assets/javascripts/mercury/mercury.js.coffee +62 -17
  91. data/vendor/assets/javascripts/mercury/modal.js.coffee +34 -21
  92. data/vendor/assets/javascripts/mercury/modals/htmleditor.js.coffee +1 -2
  93. data/vendor/assets/javascripts/mercury/modals/insertcharacter.js.coffee +3 -3
  94. data/vendor/assets/javascripts/mercury/modals/insertlink.js.coffee +4 -4
  95. data/vendor/assets/javascripts/mercury/modals/insertmedia.js.coffee +10 -9
  96. data/vendor/assets/javascripts/mercury/modals/insertsnippet.js.coffee +1 -1
  97. data/vendor/assets/javascripts/mercury/modals/inserttable.js.coffee +8 -9
  98. data/vendor/assets/javascripts/mercury/native_extensions.js.coffee +26 -8
  99. data/vendor/assets/javascripts/mercury/page_editor.js.coffee +68 -46
  100. data/vendor/assets/javascripts/mercury/palette.js.coffee +1 -1
  101. data/vendor/assets/javascripts/mercury/panel.js.coffee +25 -7
  102. data/vendor/assets/javascripts/mercury/plugins/save_as_xml/mercury/page_editor.js.coffee +1 -0
  103. data/vendor/assets/javascripts/mercury/region.js.coffee +21 -17
  104. data/vendor/assets/javascripts/mercury/regions/editable.js.coffee +47 -35
  105. data/vendor/assets/javascripts/mercury/regions/markupable.js.coffee +43 -36
  106. data/vendor/assets/javascripts/mercury/regions/snippetable.js.coffee +22 -24
  107. data/vendor/assets/javascripts/mercury/select.js.coffee +3 -2
  108. data/vendor/assets/javascripts/mercury/snippet.js.coffee +2 -1
  109. data/vendor/assets/javascripts/mercury/snippet_toolbar.js.coffee +10 -7
  110. data/vendor/assets/javascripts/mercury/statusbar.js.coffee +4 -4
  111. data/vendor/assets/javascripts/mercury/table_editor.js.coffee +1 -3
  112. data/vendor/assets/javascripts/mercury/toolbar.button.js.coffee +42 -20
  113. data/vendor/assets/javascripts/mercury/toolbar.button_group.js.coffee +3 -3
  114. data/vendor/assets/javascripts/mercury/toolbar.expander.js.coffee +2 -2
  115. data/vendor/assets/javascripts/mercury/toolbar.js.coffee +8 -6
  116. data/vendor/assets/javascripts/mercury/tooltip.js.coffee +13 -9
  117. data/vendor/assets/javascripts/mercury/uploader.js.coffee +22 -16
  118. data/vendor/assets/javascripts/mercury_loader.js +2 -0
  119. data/vendor/assets/javascripts/mercury_overrides.js +6 -0
  120. data/vendor/assets/stylesheets/mercury/all_images.css.erb +89 -0
  121. data/vendor/assets/stylesheets/mercury/dialog.css +13 -4
  122. data/vendor/assets/stylesheets/mercury/lightview.css +66 -15
  123. data/vendor/assets/stylesheets/mercury/mercury.css +12 -7
  124. data/vendor/assets/stylesheets/mercury/modal.css +9 -5
  125. data/vendor/assets/stylesheets/mercury/toolbar.css +3 -29
  126. metadata +266 -144
  127. data/POST_INSTALL +0 -15
  128. data/README.md +0 -299
  129. data/VERSION +0 -1
  130. data/annotated_source.template +0 -57
  131. data/config/routes.rb +0 -15
  132. data/mercury-rails.gemspec +0 -288
  133. data/spec/javascripts/responses/blank.html +0 -1
  134. data/vendor/assets/javascripts/mercury/lightviews/imageprocessor.js.coffee +0 -2
@@ -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
+
@@ -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": "글감 넣기"