mercury-rails 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. data/app/assets/images/mercury/toolbar/primary/tools.png +0 -0
  2. data/app/assets/images/mercury/toolbar/primary/user.png +0 -0
  3. data/app/assets/javascripts/mercury/dialogs/snippetpanel.js.coffee +1 -1
  4. data/app/assets/javascripts/mercury/lightview.js.coffee +11 -4
  5. data/app/assets/javascripts/mercury/locales/ar.locale.js.coffee +0 -4
  6. data/app/assets/javascripts/mercury/locales/da.locale.js.coffee +0 -4
  7. data/app/assets/javascripts/mercury/locales/de.locale.js.coffee +0 -4
  8. data/app/assets/javascripts/mercury/locales/es.locale.js.coffee +0 -4
  9. data/app/assets/javascripts/mercury/locales/example.local.js.coffee +0 -4
  10. data/app/assets/javascripts/mercury/locales/fr.locale.js.coffee +0 -4
  11. data/app/assets/javascripts/mercury/locales/hu.locale.js.coffee +209 -0
  12. data/app/assets/javascripts/mercury/locales/it.locale.js.coffee +0 -4
  13. data/app/assets/javascripts/mercury/locales/ko.local.js.coffee +0 -4
  14. data/app/assets/javascripts/mercury/locales/nl.locale.js.coffee +0 -4
  15. data/app/assets/javascripts/mercury/locales/pt.locale.js.coffee +0 -4
  16. data/app/assets/javascripts/mercury/locales/ru.locale.js.coffee +200 -0
  17. data/app/assets/javascripts/mercury/locales/sv.local.js.coffee +0 -4
  18. data/app/assets/javascripts/mercury/locales/swedish_chef.locale.js.coffee +0 -4
  19. data/app/assets/javascripts/mercury/locales/zh.local.js.coffee +0 -4
  20. data/app/assets/javascripts/mercury/mercury-compiled.js +10720 -0
  21. data/app/assets/javascripts/mercury/mercury.js.coffee +1 -1
  22. data/app/assets/javascripts/mercury/modal.js.coffee +14 -7
  23. data/app/assets/javascripts/mercury/modals/htmleditor.js.coffee +1 -1
  24. data/app/assets/javascripts/mercury/modals/insertmedia.js.coffee +2 -0
  25. data/app/assets/javascripts/mercury/modals/inserttable.js.coffee +10 -4
  26. data/app/assets/javascripts/mercury/page_editor.js.coffee +9 -9
  27. data/app/assets/javascripts/mercury/palette.js.coffee +1 -1
  28. data/app/assets/javascripts/mercury/panel.js.coffee +1 -0
  29. data/app/assets/javascripts/mercury/region.js.coffee +3 -3
  30. data/app/assets/javascripts/mercury/regions/{full.coffee → full.js.coffee} +2 -2
  31. data/app/assets/javascripts/mercury/regions/{markdown.coffee → markdown.js.coffee} +7 -1
  32. data/app/assets/javascripts/mercury/regions/snippets.js.coffee +1 -1
  33. data/app/assets/javascripts/mercury/select.js.coffee +1 -1
  34. data/app/assets/javascripts/mercury/snippet.js.coffee +40 -21
  35. data/app/assets/javascripts/mercury/toolbar.button.js.coffee +35 -20
  36. data/app/assets/javascripts/mercury/toolbar.expander.js.coffee +4 -3
  37. data/app/assets/javascripts/mercury/toolbar.js.coffee +6 -2
  38. data/app/assets/stylesheets/_mercury-bootstrap-overrides.scss +61 -0
  39. data/app/assets/stylesheets/_mercury-sass.scss +33 -0
  40. data/app/assets/stylesheets/mercury.css +1 -0
  41. data/app/assets/stylesheets/mercury/all_images.css.erb +4 -0
  42. data/app/assets/stylesheets/mercury/dialog.css +5 -2
  43. data/app/assets/stylesheets/mercury/mercury.css +0 -1
  44. data/app/assets/stylesheets/mercury/toolbar.css +3 -0
  45. data/app/assets/stylesheets/mercury/uploader.css +1 -1
  46. data/app/views/mercury/modals/media.html +10 -0
  47. data/app/views/mercury/panels/snippets.html +6 -1
  48. data/app/views/mercury/snippets/example/options.html.erb +1 -1
  49. data/app/views/mercury/snippets/no_options/preview.html.erb +1 -0
  50. data/features/loading/loading.feature +1 -1
  51. data/features/regions/full/basic_editing.feature +2 -2
  52. data/features/regions/full/inserting_media.feature +18 -0
  53. data/features/regions/full/inserting_snippets.feature +11 -0
  54. data/features/step_definitions/custom_web_steps.rb +22 -0
  55. data/features/step_definitions/mercury_steps.rb +1 -439
  56. data/features/support/selectors.rb +23 -0
  57. data/lib/generators/mercury/install/images/templates/ar_paperclip_image.rb +2 -0
  58. data/lib/mercury/cucumber/step_definitions.rb +13 -0
  59. data/lib/mercury/cucumber/step_definitions/mercury_steps.rb +408 -0
  60. data/{features → lib/mercury/cucumber}/support/mercury_contents.rb +1 -1
  61. data/{features → lib/mercury/cucumber}/support/mercury_selectors.rb +0 -20
  62. data/lib/mercury/rails.rb +1 -0
  63. data/lib/mercury/version.rb +1 -1
  64. data/spec/dummy/config/application.rb +4 -1
  65. data/spec/dummy/config/database.yml +10 -0
  66. data/spec/dummy/db/.gitkeep +0 -0
  67. data/spec/dummy/public/index.html +13 -2
  68. data/spec/javascripts/mercury/lightview_spec.js.coffee +33 -1
  69. data/spec/javascripts/mercury/modal_spec.js.coffee +35 -3
  70. data/spec/javascripts/mercury/modals/htmleditor_spec.js.coffee +1 -1
  71. data/spec/javascripts/mercury/modals/insertmedia_spec.js.coffee +6 -2
  72. data/spec/javascripts/mercury/modals/inserttable_spec.js.coffee +10 -0
  73. data/spec/javascripts/mercury/page_editor_spec.js.coffee +6 -5
  74. data/spec/javascripts/mercury/region_spec.js.coffee +4 -0
  75. data/spec/javascripts/mercury/snippet_spec.js.coffee +65 -21
  76. data/spec/javascripts/mercury/toolbar_spec.js.coffee +22 -0
  77. data/spec/javascripts/templates/mercury/modals/insertmedia.html +10 -0
  78. metadata +26 -16
  79. data/spec/dummy/config/database.example.yml +0 -25
  80. data/spec/dummy/config/database.travisci.yml +0 -4
@@ -7,4 +7,4 @@
7
7
 
8
8
  # when an element is dragged, set it so we have a global object
9
9
  @element.find('img[data-snippet]').on 'dragstart', ->
10
- Mercury.snippet = jQuery(@).data('snippet')
10
+ Mercury.snippet = {name: jQuery(@).data('snippet'), hasOptions: !(jQuery(@).data('options') == false)}
@@ -12,6 +12,7 @@ class @Mercury.Lightview
12
12
  show: (url, options) ->
13
13
  @url = url || @url
14
14
  @options = options || @options
15
+ @options.ujsHandling = true unless @options.ujsHandling == false
15
16
 
16
17
  Mercury.trigger('focus:window')
17
18
  @initializeLightview()
@@ -53,9 +54,10 @@ class @Mercury.Lightview
53
54
  @titleElement.find('.mercury-lightview-close').on 'click', =>
54
55
  @hide()
55
56
 
56
- @element.on 'ajax:beforeSend', (event, xhr, options) =>
57
- options.success = (content) =>
58
- @loadContent(content)
57
+ if @options.ujsHandling
58
+ @element.on 'ajax:beforeSend', (event, xhr, options) =>
59
+ options.success = (content) =>
60
+ @loadContent(content)
59
61
 
60
62
  jQuery(document).on 'keydown', (event) =>
61
63
  @hide() if event.keyCode == 27 && @visible
@@ -195,6 +197,7 @@ class @Mercury.Lightview
195
197
  @initialize()
196
198
 
197
199
  @element.localize(Mercury.locale()) if Mercury.config.localization.enabled
200
+ @element.find('.lightview-close').on('click', @hide)
198
201
  @resize()
199
202
 
200
203
 
@@ -202,12 +205,16 @@ class @Mercury.Lightview
202
205
  @titleElement.find('span').html(Mercury.I18n(@options.title))
203
206
 
204
207
 
208
+ serializeForm: ->
209
+ return @element.find('form').serializeObject() || {}
210
+
211
+
205
212
  reset: ->
206
213
  @titleElement.find('span').html('')
207
214
  @contentElement.html('')
208
215
 
209
216
 
210
- hide: ->
217
+ hide: =>
211
218
  return if @showing
212
219
  @options = {}
213
220
 
@@ -134,7 +134,6 @@ Mercury.I18n['ar'] =
134
134
  "Popup Window (javascript new window popup)": "نافذة منبثقة (جافا سكريبت نافذة منبثقة جديد)"
135
135
  "Popup Width": "عرض النافذة المنبثقة"
136
136
  "Popup Height": "طول النافذة المنبثقة"
137
- "Insert Link": "إدراج رابط"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "صور"
@@ -162,11 +161,8 @@ Mercury.I18n['ar'] =
162
161
  "Columns": "أعمدة"
163
162
  "Row Span": "إمتداد الصف"
164
163
  "Column Span": "إمتداد العمود"
165
- "Options": "الخيارات"
166
- "Alignment": "المحاذاة"
167
164
  "Border": "الحدود"
168
165
  "Spacing": "تباعد"
169
- "Insert Table": "إدراج جدول"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "HTML محرر"
@@ -134,7 +134,6 @@ Mercury.I18n['da'] =
134
134
  "Popup Window (javascript new window popup)": "Popupvindue (JavaScript nyt vindue popup)"
135
135
  "Popup Width": "Bredde for popup"
136
136
  "Popup Height": "Højde for popup"
137
- "Insert Link": "Indsæt link"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Billeder"
@@ -162,11 +161,8 @@ Mercury.I18n['da'] =
162
161
  "Columns": "Kolonner"
163
162
  "Row Span": "Rækkevidde"
164
163
  "Column Span": "Kolonnevidde"
165
- "Options": "Indstillinger"
166
- "Alignment": "Justering"
167
164
  "Border": "Ramme"
168
165
  "Spacing": "Mellemrum"
169
- "Insert Table": "Indsæt tabel"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "HTML-editor"
@@ -134,7 +134,6 @@ Mercury.I18n['de'] =
134
134
  "Popup Window (javascript new window popup)": "Popupfenster"
135
135
  "Popup Width": "Popup-Breite"
136
136
  "Popup Height": "Popup-Höhe"
137
- "Insert Link": "Link einfügen"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Bilder"
@@ -162,11 +161,8 @@ Mercury.I18n['de'] =
162
161
  "Columns": "Spalten"
163
162
  "Row Span": "Reihenabstand"
164
163
  "Column Span": "Spaltenabstand"
165
- "Options": "Optionen"
166
- "Alignment": "Ausrichtung"
167
164
  "Border": "Rahmen"
168
165
  "Spacing": "Zwischenraum"
169
- "Insert Table": "Tabelle einfügen"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "HTML-Editor"
@@ -134,7 +134,6 @@ Mercury.I18n['es'] =
134
134
  "Popup Window (javascript new window popup)": "Ventana Popup (nueva ventana popup con javascript)"
135
135
  "Popup Width": "Ancho de Popup"
136
136
  "Popup Height": "Alto de Popup"
137
- "Insert Link": "Insertar Enlace"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Imágenes"
@@ -162,11 +161,8 @@ Mercury.I18n['es'] =
162
161
  "Columns": "Columnas"
163
162
  "Row Span": "Unir Fila"
164
163
  "Column Span": "Unir Columna"
165
- "Options": "Opciones"
166
- "Alignment": "Alineación"
167
164
  "Border": "Borde"
168
165
  "Spacing": "Espaciado"
169
- "Insert Table": "Insertar Tabla"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "Editor HTML"
@@ -138,7 +138,6 @@ Mercury.I18n['en'] =
138
138
  "Popup Window (javascript new window popup)": ""
139
139
  "Popup Width": ""
140
140
  "Popup Height": ""
141
- "Insert Link": ""
142
141
 
143
142
  # Insert Media Modal (media.html)
144
143
  "Images": ""
@@ -166,11 +165,8 @@ Mercury.I18n['en'] =
166
165
  "Columns": ""
167
166
  "Row Span": ""
168
167
  "Column Span": ""
169
- "Options": ""
170
- "Alignment": ""
171
168
  "Border": ""
172
169
  "Spacing": ""
173
- "Insert Table": ""
174
170
 
175
171
  # HTML Editor Modal (htmleditor.html)
176
172
  "HTML Editor": ""
@@ -134,7 +134,6 @@ Mercury.I18n['fr'] =
134
134
  "Popup Window (javascript new window popup)": "Popup (nouvelle fenêtre javascript)"
135
135
  "Popup Width": "Largeur de la popup"
136
136
  "Popup Height": "Hauteur de la popup"
137
- "Insert Link": "Insérer le lien"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Images"
@@ -162,11 +161,8 @@ Mercury.I18n['fr'] =
162
161
  "Columns": "Colonnes"
163
162
  "Row Span": "sur X lignes"
164
163
  "Column Span": "sur X colonnes"
165
- "Options": "Options"
166
- "Alignment": "Alignement"
167
164
  "Border": "Bordure"
168
165
  "Spacing": "Espacement"
169
- "Insert Table": "Insérer le tableau"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "Editeur HTML"
@@ -0,0 +1,209 @@
1
+ Mercury.I18n['hu'] =
2
+ # ## Javascript Strings
3
+
4
+ # ### Default Configuration
5
+ "Save": "Mentés"
6
+ "Save this page": "Az oldal elmentése"
7
+ "Preview": "Előnézet"
8
+ "Preview this page": "Az oldal előnézete"
9
+ "Undo": "Visszavonás"
10
+ "Undo your last action": "Utolsó visszavonása"
11
+ "Redo": "Ismétlés"
12
+ "Redo your last action": "Utolsó ismétlése"
13
+ "Link": "Hivatkozás"
14
+ "Insert Link": "Hivatkozás beszúrása"
15
+ "Media": "Média"
16
+ "Insert Media (images and videos)": "Képek és videók beszúrása"
17
+ "Table": "Táblázat"
18
+ "Insert Table": "Táblázat beszúrása"
19
+ "Character": "Karakter"
20
+ "Special Characters": "Különleges karakter"
21
+ "Snippet": "Darabka"
22
+ "Snippet Panel": "Darabkák"
23
+ "History": "Előzmények"
24
+ "Page Version History": "Oldal változatai"
25
+ "Notes": "Megjegyzések"
26
+ "Page Notes": "Oldal megjegyzései"
27
+ "Style": "Stílus"
28
+ "Block Format": "Bekezdés formázása"
29
+ "Background Color": "Háttérszín"
30
+ "Text Color": "Szövegszín"
31
+ "Bold": "Félkövér"
32
+ "Italicize": "Dőlt"
33
+ "Overline": "Föléhúzott"
34
+ "Strikethrough": "Áthúzott"
35
+ "Underline": "Aláhúzott"
36
+ "Subscript": "Alsó index"
37
+ "Superscript": "Felső index"
38
+ "Align Left": "Balra"
39
+ "Center": "Középre"
40
+ "Align Right": "Jobbra"
41
+ "Justify Full": "Sorkizárt"
42
+ "Unordered List": "Rendezetlen lista"
43
+ "Numbered List": "Számozott lista"
44
+ "Decrease Indentation": "Behúzás csökkentése"
45
+ "Increase Indentation": "Behúzás növelése"
46
+ "Insert Table Row": "Táblázat sor beszúrása"
47
+ "Insert a table row before the cursor": "Táblázat sor a kurzor elé"
48
+ "Insert a table row after the cursor": "Táblázat sor a kurzor mögé"
49
+ "Delete Table Row": "Táblázat sor törlése"
50
+ "Delete this table row": "Ennek a sornak a törlése"
51
+ "Insert Table Column": "Tábla oszlop beszúrása"
52
+ "Insert a table column before the cursor": "Tábla oszlop a kurzor elé"
53
+ "Insert a table column after the cursor": "Tábla oszlop a kurzor mögé"
54
+ "Delete Table Column": "Tábla oszlop törlése"
55
+ "Delete this table column": "Ennek az oszlopnak a törlése"
56
+ "Increase Cell Columns": "Cella oszlopok növelése"
57
+ "Decrease Cell Columns": "Cella oszlopok csökkentése"
58
+ "Increase Cell Rows": "Cella sorok növelése"
59
+ "Decrease Cell Rows": "Cella sorok csökkentése"
60
+ "Horizontal Rule": "Vízszintes vonal"
61
+ "Insert a horizontal rule": "Vízszintes vonal beszúrása"
62
+ "Remove Formatting": "Formázás eltávolítása"
63
+ "Remove formatting for the selection": "Formázás eltávolítása a kijelölésben"
64
+ "Edit HTML": "HTML szerkesztése"
65
+ "Edit the HTML content": "HTML tartalom szerkesztése"
66
+ "Edit Snippet Settings": "Darabkák beállításai"
67
+ "Remove Snippet": "Darabka törlése"
68
+
69
+ # ### General
70
+ # Error Messages
71
+ "Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s nem támogatott. Támogatott böngészők: %s."
72
+ "Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor can only be instantiated once."
73
+ "Opera isn't a fully supported browser, your results may not be optimal.": "Az Opera böngésző nem teljesen támogatott, az oldal hibásan működhet."
74
+ "Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "A Mercury.PageEditor betöltése sikertelen: %s\n\nKérjük próbálja meg frissíteni az oldalt."
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": "Nem tudtam menteni: %s"
77
+ "invalid": "érvénytelen"
78
+ "can't be blank": "nem lehet üres"
79
+ # Confirmations
80
+ "You have unsaved changes. Are you sure you want to leave without saving them first?": "Nincs minden elmentve. Biztos benne, hogy elhaggya az oldalt mentés nélkül?"
81
+
82
+ # ### Toolbar / Buttons
83
+ # Error Messages
84
+ "Unknown button type \"%s\" used for the \"%s\" button.": "Ismeretlen gomb típus \"%s\" használata a \"%s\" gombhoz."
85
+ "Unknown button structure -- please provide an array, object, or string for \"%s\".": "Ismeretlen gomb struktúra -- tömböt, objektumot, vagy string-et adjon meg \"%s\"-nek."
86
+
87
+ # ### Modals / Dialogs / Etc.
88
+ # Error Messages
89
+ "Mercury was unable to load %s for the \"%s\" dialog.": "Mercury was unable to load %s for the \"%s\" dialog."
90
+ "Mercury was unable to load %s for the lightview.": "Mercury was unable to load %s for the lightview."
91
+ "Mercury was unable to load %s for the modal.": "Mercury was unable to load %s for the modal."
92
+
93
+ # ### Snippets
94
+ # Error Messages
95
+ "Error loading the preview for the \"%s\" snippet.": "Hiba történt a \"%s\" darabka előnézetének betöltésekor."
96
+ # Misc
97
+ "Snippet Options": "Darabka beállításai"
98
+
99
+ # ### Uploader
100
+ # Error Messages
101
+ "Unable to process response: %s": "Nem sikerült feldolgozni a választ: %s"
102
+ "Error: Unable to upload the file": "Hiba: Nem sikerült feltölteni a fájlt"
103
+ "Malformed response from server": "Hibás válasz a kiszolgálótól" # needs translation
104
+ "Too large": "Túl nagy"
105
+ "Unsupported format": "Nem támogatott formátum"
106
+ # Statuses
107
+ "Processing...": "Feldolgozás..."
108
+ "Uploading...": "Feltöltés..."
109
+ "Aborted": "Megszakadt"
110
+ "Successfully uploaded...": "Sikeresen feltöltve..."
111
+ "Name: %s": "Név: %s"
112
+ "Size: %s": "Méret: %s"
113
+ "Type: %s": "Type: %s"
114
+
115
+ # Inserting Media
116
+ "Error: The provided youtube share url was invalid.": "Hiba: A megadott youtube megosztott url érvénytelen."
117
+ "Error: The provided vimeo url was invalid.": "Hiba: A megadott vimeo url érvénytelen."
118
+
119
+ # Statusbar
120
+ "Path:": "Útvonal"
121
+
122
+
123
+ # ## HTML / Template Strings
124
+
125
+ # ### Modals
126
+ # Insert Link Modal (link.html)
127
+ "Link Content": "Hivatkozás leírása"
128
+ "Standard Links": "Egyszerű hivatkozás"
129
+ "URL": "URL"
130
+ "Lista / Könyvjelző hivatkozás": ""
131
+ "Existing Links": "Létező hivatkozások"
132
+ "Bookmark": "Könyvjelző"
133
+ "Options": "Beállítások"
134
+ "Link Target": "Hivatkozás célpontja"
135
+ "Self (the same window or tab)": "Önmaga (azonos ablakban vagy fülön)"
136
+ "Blank (a new window or tab)": "Új (egy új ablakban vagy fülön)"
137
+ "Top (removes any frames)": "Felső (eltűnteti a kereteket)"
138
+ "Popup Window (javascript new window popup)": "Felbukkanó ablak (javascript felbukkanó ablak)"
139
+ "Popup Width": "Szélesség"
140
+ "Popup Height": "Magasság"
141
+
142
+ # Insert Media Modal (media.html)
143
+ "Images": "Képek"
144
+ "Videos": "Videók"
145
+ "YouTube URL": "YouTube hivatkozás"
146
+ "Vimeo URL": "Vimeo hivatkozás"
147
+ "Alignment": "Elrendezés"
148
+ "None": "Nincs"
149
+ "Left": "Balra"
150
+ "Right": "Jobbra"
151
+ "Top": "Fel"
152
+ "Middle": "Középre"
153
+ "Bottom": "Le"
154
+ "Absolute Middle": "Abszolút középre"
155
+ "Absolute Bottom": "Abszolút alulra"
156
+ "Width": "Szélesség"
157
+ "Height": "Magasság"
158
+ "Insert Media": "Média beszúrása"
159
+
160
+ # Insert Table Modal (table.html)
161
+ "Rows": "Sorok"
162
+ "Add Before": "+ elé"
163
+ "Add After": "+ mögé"
164
+ "Remove": "Eltávolít"
165
+ "Columns": "Oszlopok"
166
+ "Row Span": "Sor összevonás"
167
+ "Column Span": "Oszlop összevonás"
168
+ "Border": "Keret"
169
+ "Spacing": "Elhelyezés"
170
+
171
+ # HTML Editor Modal (htmleditor.html)
172
+ "HTML Editor": "HTML szerkesztő"
173
+ "Save and Replace": "Mentés és csere"
174
+
175
+ # ### Dialogs / Etc.
176
+ # Color Palettes (forecolor.html, backcolor.html)
177
+ "Last Color Picked": "Utoljára választott szín"
178
+
179
+ # Block Format Select (formatblock.html)
180
+ "Heading 1": "Címsor 1"
181
+ "Heading 2": "Címsor 2"
182
+ "Heading 3": "Címsor 3"
183
+ "Heading 4": "Címsor 4"
184
+ "Heading 5": "Címsor 5"
185
+ "Heading 6": "Címsor 6"
186
+ "Paragraph": "Bekezdés"
187
+ "Blockquote": "Idézet"
188
+ "Formatted": "Formázott"
189
+
190
+ # About Mercury Panel (about.html)
191
+ "Project Home": "Projekt oldala"
192
+ "Project Source": "Projekt forrása"
193
+
194
+ # ### Demo / Placeholder / Defaults
195
+ "The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it."
196
+
197
+ "The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it."
198
+
199
+ "Snippet Name": "Darabka neve"
200
+ "A one or two line long description of what this snippet does.": "Egy 1-2 soros leírás, hogy mit is csinál ez a darabka."
201
+
202
+ "First Name": "Keresztnév"
203
+ "Favorite Beer": "Kedvenc sör"
204
+ "Insert Snippet": "Darabka beszúrása"
205
+
206
+
207
+ # ## Custom Regional Overrides (eg. en-US)
208
+ #_US_:
209
+ # "Save": ""
@@ -134,7 +134,6 @@ Mercury.I18n['it'] =
134
134
  "Popup Window (javascript new window popup)": "Popup (nuova finestra attraverso javascript)"
135
135
  "Popup Width": "Altezza del popup"
136
136
  "Popup Height": "Larghezza del popup"
137
- "Insert Link": "Inserisci link"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Immagini"
@@ -162,11 +161,8 @@ Mercury.I18n['it'] =
162
161
  "Columns": "Colonne"
163
162
  "Row Span": "Estensione in righe"
164
163
  "Column Span": "Estensione in colonne"
165
- "Options": "Opzioni"
166
- "Alignment": "Allineamento"
167
164
  "Border": "Bordo"
168
165
  "Spacing": "Spaziatura"
169
- "Insert Table": "Inserisci tabella"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "Editor HTML"
@@ -134,7 +134,6 @@ Mercury.I18n['ko'] =
134
134
  "Popup Window (javascript new window popup)": "팝업 창 (자바스크립트로 새 창을 띄웁니다.)"
135
135
  "Popup Width": "팝업 창 넓이"
136
136
  "Popup Height": "팝업 창 높이"
137
- "Insert Link": "링크 추가"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "그림:"
@@ -162,11 +161,8 @@ Mercury.I18n['ko'] =
162
161
  "Columns": "컬럼"
163
162
  "Row Span": "열 합치기"
164
163
  "Column Span": "컬럼 합치기"
165
- "Options": "설정"
166
- "Alignment": "정렬"
167
164
  "Border": "외곽선"
168
165
  "Spacing": "여백"
169
- "Insert Table": "표 추가"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "HTML 편집기"
@@ -134,7 +134,6 @@ Mercury.I18n['nl'] =
134
134
  "Popup Window (javascript new window popup)": "Popup (nieuw venster door javascript)"
135
135
  "Popup Width": "Popup breedte"
136
136
  "Popup Height": "Popup hoogte"
137
- "Insert Link": "Voeg link toe"
138
137
 
139
138
  # Insert Media Modal (media.html)
140
139
  "Images": "Afbeeldingen"
@@ -162,11 +161,8 @@ Mercury.I18n['nl'] =
162
161
  "Columns": "Kolommen"
163
162
  "Row Span": "Rij breedte"
164
163
  "Column Span": "Kolom breedte"
165
- "Options": "Opties"
166
- "Alignment": "Uitlijning"
167
164
  "Border": "Rand"
168
165
  "Spacing": "Spacing"
169
- "Insert Table": "Voeg tabel toe"
170
166
 
171
167
  # HTML Editor Modal (htmleditor.html)
172
168
  "HTML Editor": "HTML editor"