kiteditor 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +25 -0
- data/app/controllers/mercury/images_controller.rb +5 -0
- data/app/controllers/mercury_controller.rb +34 -0
- data/app/models/mercury/image.rb +17 -0
- data/app/views/layouts/mercury.html.erb +33 -0
- data/app/views/layouts/popup.html.haml +9 -0
- data/app/views/mercury/images/_list.html.haml +22 -0
- data/app/views/mercury/images/index.html.haml +4 -0
- data/app/views/mercury/images/index.js.erb +2 -0
- data/app/views/mercury/lightviews/about.html +11 -0
- data/app/views/mercury/modals/character.html +255 -0
- data/app/views/mercury/modals/htmleditor.html +13 -0
- data/app/views/mercury/modals/link.html +94 -0
- data/app/views/mercury/modals/media.html +1 -0
- data/app/views/mercury/modals/table.html +84 -0
- data/app/views/mercury/palettes/backcolor.html +73 -0
- data/app/views/mercury/palettes/forecolor.html +73 -0
- data/app/views/mercury/panels/history.html +3 -0
- data/app/views/mercury/panels/notes.html +3 -0
- data/app/views/mercury/panels/snippets.html +12 -0
- data/app/views/mercury/selects/formatblock.html +11 -0
- data/app/views/mercury/selects/style.html +5 -0
- data/app/views/mercury/snippets/example/options.html.erb +34 -0
- data/app/views/mercury/snippets/example/preview.html.erb +1 -0
- data/config/engine.rb +44 -0
- data/db/migrate/20110526035601_create_mercury_images.rb +11 -0
- data/features/loading/loading.feature +22 -0
- data/features/loading/navigating.feature +77 -0
- data/features/loading/user_interface.feature +67 -0
- data/features/regions/editable/advanced_editing.feature +0 -0
- data/features/regions/editable/basic_editing.feature +195 -0
- data/features/regions/editable/inserting_links.feature +98 -0
- data/features/regions/editable/inserting_media.feature +110 -0
- data/features/regions/editable/inserting_snippets.feature +102 -0
- data/features/regions/editable/inserting_special_characters.feature +24 -0
- data/features/regions/editable/inserting_tables.feature +109 -0
- data/features/regions/editable/pasting.feature +0 -0
- data/features/regions/editable/uploading_images.feature +0 -0
- data/features/regions/markupable/advanced_editing.feature +0 -0
- data/features/regions/markupable/basic_editing.feature +0 -0
- data/features/regions/markupable/inserting_links.feature +0 -0
- data/features/regions/markupable/inserting_media.feature +0 -0
- data/features/regions/markupable/inserting_snippets.feature +0 -0
- data/features/regions/markupable/inserting_special_characters.feature +0 -0
- data/features/regions/markupable/inserting_tables.feature +0 -0
- data/features/regions/markupable/uploading_images.feature +0 -0
- data/features/regions/snippetable/advanced_editing.feature +0 -0
- data/features/regions/snippetable/basic_editing.feature +0 -0
- data/features/regions/snippetable/inserting_snippets.feature +0 -0
- data/features/saving/saving.feature +33 -0
- data/features/step_definitions/debug_steps.rb +14 -0
- data/features/step_definitions/mercury_steps.rb +438 -0
- data/features/step_definitions/web_steps.rb +211 -0
- data/features/support/env.rb +46 -0
- data/features/support/mercury_contents.rb +25 -0
- data/features/support/mercury_selectors.rb +148 -0
- data/features/support/paths.rb +38 -0
- data/features/support/selectors.rb +44 -0
- data/lib/generators/mercury/install/install_generator.rb +49 -0
- data/lib/generators/mercury/install/templates/mongoid_paperclip_image.rb +17 -0
- data/lib/mercury/authentication.rb +8 -0
- data/lib/mercury-rails.rb +3 -0
- data/spec/javascripts/mercury/dialog_spec.js.coffee +281 -0
- data/spec/javascripts/mercury/dialogs/backcolor_spec.js.coffee +37 -0
- data/spec/javascripts/mercury/dialogs/forecolor_spec.js.coffee +37 -0
- data/spec/javascripts/mercury/dialogs/formatblock_spec.js.coffee +25 -0
- data/spec/javascripts/mercury/dialogs/snippetpanel_spec.js.coffee +30 -0
- data/spec/javascripts/mercury/dialogs/style_spec.js.coffee +25 -0
- data/spec/javascripts/mercury/history_buffer_spec.js.coffee +76 -0
- data/spec/javascripts/mercury/lightview_spec.js.coffee +497 -0
- data/spec/javascripts/mercury/mercury_spec.js.coffee +132 -0
- data/spec/javascripts/mercury/modal_spec.js.coffee +504 -0
- data/spec/javascripts/mercury/modals/htmleditor_spec.js.coffee +30 -0
- data/spec/javascripts/mercury/modals/insertcharacter_spec.js.coffee +29 -0
- data/spec/javascripts/mercury/modals/insertlink_spec.js.coffee +220 -0
- data/spec/javascripts/mercury/modals/insertmedia_spec.js.coffee +167 -0
- data/spec/javascripts/mercury/modals/insertsnippet_spec.js.coffee +52 -0
- data/spec/javascripts/mercury/modals/inserttable_spec.js.coffee +160 -0
- data/spec/javascripts/mercury/native_extensions_spec.js.coffee +60 -0
- data/spec/javascripts/mercury/page_editor_spec.js.coffee +750 -0
- data/spec/javascripts/mercury/palette_spec.js.coffee +49 -0
- data/spec/javascripts/mercury/panel_spec.js.coffee +185 -0
- data/spec/javascripts/mercury/region_spec.js.coffee +298 -0
- data/spec/javascripts/mercury/regions/editable_spec.js.coffee +561 -0
- data/spec/javascripts/mercury/regions/markupable_spec.js.coffee +367 -0
- data/spec/javascripts/mercury/regions/snippetable_spec.js.coffee +370 -0
- data/spec/javascripts/mercury/select_spec.js.coffee +49 -0
- data/spec/javascripts/mercury/snippet_spec.js.coffee +245 -0
- data/spec/javascripts/mercury/snippet_toolbar_spec.js.coffee +184 -0
- data/spec/javascripts/mercury/statusbar_spec.js.coffee +150 -0
- data/spec/javascripts/mercury/table_editor_spec.js.coffee +194 -0
- data/spec/javascripts/mercury/toolbar.button_group_spec.js.coffee +90 -0
- data/spec/javascripts/mercury/toolbar.button_spec.js.coffee +360 -0
- data/spec/javascripts/mercury/toolbar.expander_spec.js.coffee +118 -0
- data/spec/javascripts/mercury/toolbar_spec.js.coffee +222 -0
- data/spec/javascripts/mercury/tooltip_spec.js.coffee +186 -0
- data/spec/javascripts/mercury/uploader_spec.js.coffee +514 -0
- data/spec/javascripts/spec_helper.js +513 -0
- data/spec/javascripts/templates/mercury/dialog.html +2 -0
- data/spec/javascripts/templates/mercury/dialogs/backcolor.html +5 -0
- data/spec/javascripts/templates/mercury/dialogs/forecolor.html +5 -0
- data/spec/javascripts/templates/mercury/dialogs/formatblock.html +3 -0
- data/spec/javascripts/templates/mercury/dialogs/snippetpanel.html +16 -0
- data/spec/javascripts/templates/mercury/dialogs/style.html +3 -0
- data/spec/javascripts/templates/mercury/lightview.html +13 -0
- data/spec/javascripts/templates/mercury/modal.html +13 -0
- data/spec/javascripts/templates/mercury/modals/htmleditor.html +5 -0
- data/spec/javascripts/templates/mercury/modals/insertcharacter.html +5 -0
- data/spec/javascripts/templates/mercury/modals/insertlink.html +30 -0
- data/spec/javascripts/templates/mercury/modals/insertmedia.html +35 -0
- data/spec/javascripts/templates/mercury/modals/insertsnippet.html +6 -0
- data/spec/javascripts/templates/mercury/modals/inserttable.html +27 -0
- data/spec/javascripts/templates/mercury/page_editor.html +35 -0
- data/spec/javascripts/templates/mercury/palette.html +16 -0
- data/spec/javascripts/templates/mercury/panel.html +16 -0
- data/spec/javascripts/templates/mercury/region.html +2 -0
- data/spec/javascripts/templates/mercury/regions/editable.html +3 -0
- data/spec/javascripts/templates/mercury/regions/snippetable.html +4 -0
- data/spec/javascripts/templates/mercury/select.html +16 -0
- data/spec/javascripts/templates/mercury/snippet.html +1 -0
- data/spec/javascripts/templates/mercury/snippet_toolbar.html +16 -0
- data/spec/javascripts/templates/mercury/statusbar.html +8 -0
- data/spec/javascripts/templates/mercury/table_editor.html +65 -0
- data/spec/javascripts/templates/mercury/toolbar.button.html +64 -0
- data/spec/javascripts/templates/mercury/toolbar.button_group.html +9 -0
- data/spec/javascripts/templates/mercury/toolbar.expander.html +18 -0
- data/spec/javascripts/templates/mercury/toolbar.html +11 -0
- data/spec/javascripts/templates/mercury/tooltip.html +12 -0
- data/spec/javascripts/templates/mercury/uploader.html +11 -0
- data/vendor/assets/images/mercury/button.png +0 -0
- data/vendor/assets/images/mercury/close.png +0 -0
- data/vendor/assets/images/mercury/default-snippet.png +0 -0
- data/vendor/assets/images/mercury/loading-dark.gif +0 -0
- data/vendor/assets/images/mercury/loading-light.gif +0 -0
- data/vendor/assets/images/mercury/missing-image.png +0 -0
- data/vendor/assets/images/mercury/search-icon.png +0 -0
- data/vendor/assets/images/mercury/temp-logo.png +0 -0
- data/vendor/assets/images/mercury/toolbar/editable/buttons.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/_expander.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/_pressed.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/historypanel.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/insertcharacter.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/insertlink.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/insertmedia.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/inserttable.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/inspectorpanel.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/notespanel.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/preview.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/redo.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/save.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/snippetpanel.png +0 -0
- data/vendor/assets/images/mercury/toolbar/primary/undo.png +0 -0
- data/vendor/assets/images/mercury/toolbar/snippetable/buttons.png +0 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery-1.7.js +9300 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery-ui-1.8.13.custom.js +1328 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery-ui-1.8.18.custom.min.js +356 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery-ui.1.8.13.custom.min.js +356 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery.additions.js +206 -0
- data/vendor/assets/javascripts/mercury/dependencies/jquery.htmlClean.js +527 -0
- data/vendor/assets/javascripts/mercury/dependencies/liquidmetal.js +88 -0
- data/vendor/assets/javascripts/mercury/dependencies/showdown.js +1340 -0
- data/vendor/assets/javascripts/mercury/dialog.js.coffee +159 -0
- data/vendor/assets/javascripts/mercury/dialogs/backcolor.js.coffee +6 -0
- data/vendor/assets/javascripts/mercury/dialogs/forecolor.js.coffee +6 -0
- data/vendor/assets/javascripts/mercury/dialogs/formatblock.js.coffee +4 -0
- data/vendor/assets/javascripts/mercury/dialogs/snippetpanel.js.coffee +10 -0
- data/vendor/assets/javascripts/mercury/dialogs/style.js.coffee +4 -0
- data/vendor/assets/javascripts/mercury/finalize.js.coffee +3 -0
- data/vendor/assets/javascripts/mercury/history_buffer.js.coffee +30 -0
- data/vendor/assets/javascripts/mercury/lightview.js.coffee +205 -0
- data/vendor/assets/javascripts/mercury/locales/da.locale.js.coffee +0 -0
- data/vendor/assets/javascripts/mercury/locales/de.locale.js.coffee +206 -0
- data/vendor/assets/javascripts/mercury/locales/es.locale.js.coffee +211 -0
- data/vendor/assets/javascripts/mercury/locales/example.local.js.coffee +211 -0
- data/vendor/assets/javascripts/mercury/locales/fr.locale.js.coffee +211 -0
- data/vendor/assets/javascripts/mercury/locales/it.locale.js.coffee +208 -0
- data/vendor/assets/javascripts/mercury/locales/ko.local.js.coffee +206 -0
- data/vendor/assets/javascripts/mercury/locales/nl.locale.js.coffee +206 -0
- data/vendor/assets/javascripts/mercury/locales/pt.locale.js.coffee +211 -0
- data/vendor/assets/javascripts/mercury/locales/sv.local.js.coffee +209 -0
- data/vendor/assets/javascripts/mercury/locales/swedish_chef.locale.js.coffee +213 -0
- data/vendor/assets/javascripts/mercury/mercury.js.coffee +109 -0
- data/vendor/assets/javascripts/mercury/modal.js.coffee +204 -0
- data/vendor/assets/javascripts/mercury/modals/htmleditor.js.coffee +11 -0
- data/vendor/assets/javascripts/mercury/modals/insertcharacter.js.coffee +4 -0
- data/vendor/assets/javascripts/mercury/modals/insertlink.js.coffee +95 -0
- data/vendor/assets/javascripts/mercury/modals/insertmedia.js.coffee +107 -0
- data/vendor/assets/javascripts/mercury/modals/insertsnippet.js.coffee +12 -0
- data/vendor/assets/javascripts/mercury/modals/inserttable.js.coffee +54 -0
- data/vendor/assets/javascripts/mercury/native_extensions.js.coffee +55 -0
- data/vendor/assets/javascripts/mercury/page_editor.js.coffee +241 -0
- data/vendor/assets/javascripts/mercury/palette.js.coffee +29 -0
- data/vendor/assets/javascripts/mercury/panel.js.coffee +115 -0
- data/vendor/assets/javascripts/mercury/plugins/save_as_xml/mercury/page_editor.js.coffee +28 -0
- data/vendor/assets/javascripts/mercury/plugins/save_as_xml/plugin.js +9 -0
- data/vendor/assets/javascripts/mercury/region.js.coffee +107 -0
- data/vendor/assets/javascripts/mercury/regions/editable.js.coffee +600 -0
- data/vendor/assets/javascripts/mercury/regions/markupable.js.coffee +398 -0
- data/vendor/assets/javascripts/mercury/regions/simple.js.coffee +339 -0
- data/vendor/assets/javascripts/mercury/regions/snippetable.js.coffee +124 -0
- data/vendor/assets/javascripts/mercury/select.js.coffee +44 -0
- data/vendor/assets/javascripts/mercury/snippet.js.coffee +104 -0
- data/vendor/assets/javascripts/mercury/snippet_toolbar.js.coffee +72 -0
- data/vendor/assets/javascripts/mercury/statusbar.js.coffee +51 -0
- data/vendor/assets/javascripts/mercury/support/history.js +1 -0
- data/vendor/assets/javascripts/mercury/table_editor.js.coffee +265 -0
- data/vendor/assets/javascripts/mercury/toolbar.button.js.coffee +173 -0
- data/vendor/assets/javascripts/mercury/toolbar.button_group.js.coffee +42 -0
- data/vendor/assets/javascripts/mercury/toolbar.expander.js.coffee +56 -0
- data/vendor/assets/javascripts/mercury/toolbar.js.coffee +86 -0
- data/vendor/assets/javascripts/mercury/tooltip.js.coffee +74 -0
- data/vendor/assets/javascripts/mercury/uploader.js.coffee +227 -0
- data/vendor/assets/javascripts/mercury.js +479 -0
- data/vendor/assets/javascripts/mercury_loader.js +193 -0
- data/vendor/assets/javascripts/mercury_overrides.js +6 -0
- data/vendor/assets/javascripts/popup.js +8 -0
- data/vendor/assets/stylesheets/mercury/all_images.css.erb +89 -0
- data/vendor/assets/stylesheets/mercury/dialog.css +208 -0
- data/vendor/assets/stylesheets/mercury/lightview.css +151 -0
- data/vendor/assets/stylesheets/mercury/mercury.css +151 -0
- data/vendor/assets/stylesheets/mercury/modal.css +183 -0
- data/vendor/assets/stylesheets/mercury/statusbar.css +32 -0
- data/vendor/assets/stylesheets/mercury/toolbar.css +304 -0
- data/vendor/assets/stylesheets/mercury/tooltip.css +26 -0
- data/vendor/assets/stylesheets/mercury/uploader.css +111 -0
- data/vendor/assets/stylesheets/mercury.css +28 -0
- data/vendor/assets/stylesheets/mercury_overrides.css +17 -0
- data/vendor/assets/stylesheets/popup.css.erb +37 -0
- metadata +634 -0
@@ -0,0 +1,211 @@
|
|
1
|
+
Mercury.I18n['es'] =
|
2
|
+
# ## Javascript Strings
|
3
|
+
|
4
|
+
# ### Default Configuration
|
5
|
+
"Save": "Guardar"
|
6
|
+
"Save this page": "Guardar esta página"
|
7
|
+
"Preview": "Vista previa"
|
8
|
+
"Preview this page": "Previsualizar esta página"
|
9
|
+
"Undo": "Deshacer"
|
10
|
+
"Undo your last action": "Deshacer tu última acción"
|
11
|
+
"Redo": "Rehacer"
|
12
|
+
"Redo your last action": "Rehacer tu última acción"
|
13
|
+
"Link": "Enlace"
|
14
|
+
"Insert Link": "Insertar enlace"
|
15
|
+
"Media": "Media"
|
16
|
+
"Insert Media (images and videos)": "Insertar Media (imágenes y vídeos)"
|
17
|
+
"Table": "Tabla"
|
18
|
+
"Insert Table": "Insertar tabla"
|
19
|
+
"Character": "Carácter"
|
20
|
+
"Special Characters": "Caracteres especiales"
|
21
|
+
"Snippet": "Snippet"
|
22
|
+
"Snippet Panel": "Panel de snippets"
|
23
|
+
"History": "Historial"
|
24
|
+
"Page Version History": "Historial de Versiones de la Página"
|
25
|
+
"Notes": "Notas"
|
26
|
+
"Page Notes": "Notas de Página"
|
27
|
+
"Style": "Estilo"
|
28
|
+
"Block Format": "Formato de bloque"
|
29
|
+
"Background Color": "Color de Fondo del Texto"
|
30
|
+
"Text Color": "Color de Texto"
|
31
|
+
"Bold": "Negrita"
|
32
|
+
"Italicize": "Cursiva"
|
33
|
+
"Overline": "Subrayado superior"
|
34
|
+
"Strikethrough": "Tachado"
|
35
|
+
"Underline": "Subrayado inferior"
|
36
|
+
"Subscript": "Subíndice"
|
37
|
+
"Superscript": "Superíndice"
|
38
|
+
"Align Left": "Alinear a la izquierda"
|
39
|
+
"Center": "Centrar"
|
40
|
+
"Align Right": "Alinear a la derecha"
|
41
|
+
"Justify Full": "Justificar"
|
42
|
+
"Unordered List": "Lista con viñetas"
|
43
|
+
"Numbered List": "Lista numerada"
|
44
|
+
"Decrease Indentation": "Reducir tabulación"
|
45
|
+
"Increase Indentation": "Aumentar tabulación"
|
46
|
+
"Insert Table Row": "Añadir Fila"
|
47
|
+
"Insert a table row before the cursor": "Añadir fila antes del cursor"
|
48
|
+
"Insert a table row after the cursor": "Añadir fila después del cursor"
|
49
|
+
"Delete Table Row": "Eliminar Fila"
|
50
|
+
"Delete this table row": "Eliminar esta fila"
|
51
|
+
"Insert Table Column": "Añadir Columna"
|
52
|
+
"Insert a table column before the cursor": "Añadir columna antes del cursor"
|
53
|
+
"Insert a table column after the cursor": "Añadir columna después del cursor"
|
54
|
+
"Delete Table Column": "Eliminar Columna"
|
55
|
+
"Delete this table column": "Eliminar esta columna"
|
56
|
+
"Increase Cell Columns": "Incrementar Columnas"
|
57
|
+
"Decrease Cell Columns": "Reducir Columnas"
|
58
|
+
"Increase Cell Rows": "Incrementar Filas"
|
59
|
+
"Decrease Cell Rows": "Reducir Filas"
|
60
|
+
"Horizontal Rule": "Línea Horizontal"
|
61
|
+
"Insert a horizontal rule": "Insertar una línea horizontal"
|
62
|
+
"Remove Formatting": "Borrar Formato"
|
63
|
+
"Remove formatting for the selection": "Borrar formato para la selección"
|
64
|
+
"Edit HTML": "Editar HTML"
|
65
|
+
"Edit the HTML content": "Editar el contenido HTML"
|
66
|
+
"Edit Snippet Settings": "Editar Opciones de Snippets"
|
67
|
+
"Remove Snippet": "Eliminar Snippet"
|
68
|
+
|
69
|
+
# ### General
|
70
|
+
# Error Messages
|
71
|
+
"Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s no está soportado en este cliente. Los navegadores soportados son %s."
|
72
|
+
"Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor solo puede ser llamado una vez."
|
73
|
+
"Opera isn't a fully supported browser, your results may not be optimal.": "Opera no es un navegador completamente soportado, los resultados podrían no ser óptimos."
|
74
|
+
"Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor no se ha podido cargar: %s\n\nPor favor intentalo de nuevo refrescando."
|
75
|
+
"Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "El tipo de Region es incorrecto, no se ha especificado un data-type , o \"%s\" es desconocido para la region \"%s\""
|
76
|
+
"Mercury was unable to save to the url: %s": "Mercury no pudo guardar en la url: %s"
|
77
|
+
# Confirmations
|
78
|
+
"You have unsaved changes.Are you sure you want to leave without saving them first?": "Has hecho cambios que no han sido guardados. ¿Estás seguro de que quieres salir sin guardar estos cambios?"
|
79
|
+
|
80
|
+
# ### Toolbar / Buttons
|
81
|
+
# Error Messages
|
82
|
+
"Unknown button type \"%s\" used for the \"%s\" button.": "Desconocido tipo de botón (button type) \"%s\" usado para el botón \"%s\""
|
83
|
+
"Unknown button structure -- please provide an array, object, or string for \"%s\".": "Desconocida estructura de botón (button structure). Por favor especifica un array, objecto, o string para \"%s\"."
|
84
|
+
|
85
|
+
# ### Modals / Dialogs / Etc.
|
86
|
+
# Error Messages
|
87
|
+
"Mercury was unable to load %s for the \"%s\" dialog.": "Mercury no pudo cargar %s para el diálogo \"%s\"."
|
88
|
+
"Mercury was unable to load %s for the lightview.": "Mercury no pudo cargar %s para el lightview."
|
89
|
+
"Mercury was unable to load %s for the modal.": "Mercury no pudo cargar %s para el modal."
|
90
|
+
|
91
|
+
# ### Snippets
|
92
|
+
# Error Messages
|
93
|
+
"Error loading the preview for the \"%s\" snippet.": "Error cargando la vista previa para el snippet \"%s\"."
|
94
|
+
# Misc
|
95
|
+
"Snippet Options": "Opciones de Snippet"
|
96
|
+
|
97
|
+
# ### Uploader
|
98
|
+
# Error Messages
|
99
|
+
"Unable to process response: %s": "No se puede procesar la respuesta: %s"
|
100
|
+
"Error: Unable to upload the file": "Error: No se puede subir el archivo"
|
101
|
+
"Malformed response from server": "" # needs translation
|
102
|
+
"Too large": "Demasiado grande"
|
103
|
+
"Unsupported format": "Formato no soportado"
|
104
|
+
# Statuses
|
105
|
+
"Processing...": "Procesando..."
|
106
|
+
"Uploading...": "Subiendo..."
|
107
|
+
"Aborted": "Cancelado"
|
108
|
+
"Successfully uploaded...": "Subido correctamente..."
|
109
|
+
"Name: %s": "Nombre: %s"
|
110
|
+
"Size: %s": "Tamaño: %s"
|
111
|
+
"Type: %s": "Tipo: %s"
|
112
|
+
|
113
|
+
# Inserting Media
|
114
|
+
"Error: The provided youtube share url was invalid.": "Error: La URL de YouTube introducida no es válida"
|
115
|
+
"Error: The provided vimeo url was invalid.": "Error: La URL de Vimeo introducida no es válida"
|
116
|
+
|
117
|
+
# Statusbar
|
118
|
+
"Path:": "Ruta:"
|
119
|
+
|
120
|
+
|
121
|
+
# ## HTML / Template Strings
|
122
|
+
|
123
|
+
# ### Modals
|
124
|
+
# Insert Link Modal (link.html)
|
125
|
+
"Link Content": "Contenido del Enlace"
|
126
|
+
"Standard Links": "Enlace estándar"
|
127
|
+
"URL": "URL"
|
128
|
+
"Index / Bookmark Links": "Index / Enlaces a marcadores"
|
129
|
+
"Existing Links": "Links existentes"
|
130
|
+
"Bookmark": "Marcadores"
|
131
|
+
"Options": "Opciones"
|
132
|
+
"Link Target": "Destino del Enlace"
|
133
|
+
"Self (the same window or tab)": "Self (la misma ventana o pestaña)"
|
134
|
+
"Blank (a new window or tab)": "Blank (una nueva ventana o pestaña)"
|
135
|
+
"Top (removes any frames)": "Top (elimina cualquier frame)"
|
136
|
+
"Popup Window (javascript new window popup)": "Ventana Popup (nueva ventana popup con javascript)"
|
137
|
+
"Popup Width": "Ancho de Popup"
|
138
|
+
"Popup Height": "Alto de Popup"
|
139
|
+
"Insert Link": "Insertar Enlace"
|
140
|
+
|
141
|
+
# Insert Media Modal (media.html)
|
142
|
+
"Images": "Imágenes"
|
143
|
+
"Videos": "Videos"
|
144
|
+
"YouTube Share URL": "YouTube URL"
|
145
|
+
"Vimeo URL": "Vimeo URL"
|
146
|
+
"Alignment": "Alineación"
|
147
|
+
"None": "Ninguna"
|
148
|
+
"Left": "Izquierda"
|
149
|
+
"Right": "Derecha"
|
150
|
+
"Top": "Arriba"
|
151
|
+
"Middle": "Medio"
|
152
|
+
"Bottom": "Abajo"
|
153
|
+
"Absolute Middle": "Medio absoluto"
|
154
|
+
"Absolute Bottom": "Abajo absoluto"
|
155
|
+
"Width": "Ancho"
|
156
|
+
"Height": "Alto"
|
157
|
+
"Insert Media": "Insertar Media"
|
158
|
+
|
159
|
+
# Insert Table Modal (table.html)
|
160
|
+
"Rows": "Filas"
|
161
|
+
"Add Before": "Insertar antes"
|
162
|
+
"Add After": "Insertar después"
|
163
|
+
"Remove": "Eliminar"
|
164
|
+
"Columns": "Columnas"
|
165
|
+
"Row Span": "Unir Fila"
|
166
|
+
"Column Span": "Unir Columna"
|
167
|
+
"Options": "Opciones"
|
168
|
+
"Alignment": "Alineación"
|
169
|
+
"Border": "Borde"
|
170
|
+
"Spacing": "Espaciado"
|
171
|
+
"Insert Table": "Insertar Tabla"
|
172
|
+
|
173
|
+
# HTML Editor Modal (htmleditor.html)
|
174
|
+
"HTML Editor": "Editor HTML"
|
175
|
+
"Save and Replace": "Guardar y Reemplazar"
|
176
|
+
|
177
|
+
# ### Dialogs / Etc.
|
178
|
+
# Color Palettes (forecolor.html, backcolor.html)
|
179
|
+
"Last Color Picked": "Último Color Seleccionado"
|
180
|
+
|
181
|
+
# Block Format Select (formatblock.html)
|
182
|
+
"Heading 1": "Encabezado 1"
|
183
|
+
"Heading 2": "Encabezado 2"
|
184
|
+
"Heading 3": "Encabezado 3"
|
185
|
+
"Heading 4": "Encabezado 4"
|
186
|
+
"Heading 5": "Encabezado 5"
|
187
|
+
"Heading 6": "Encabezado 6"
|
188
|
+
"Paragraph": "Párrafo"
|
189
|
+
"Blockquote": "Cita"
|
190
|
+
"Formatted": "Formateado"
|
191
|
+
|
192
|
+
# About Mercury Panel (about.html)
|
193
|
+
"Project Home": "Página del proyecto"
|
194
|
+
"Project Source": "Código del proyecto"
|
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.": "El panel de historial está pensado para ser implementado en la parte del servidor (back end). Puesto que esto es una demo, no lo hemos incluido."
|
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.": "El panel de notas está pensado para ser implementado en la parte del servidor (back end). Puesto que esto es una demo, no lo hemos incluido."
|
200
|
+
|
201
|
+
"Snippet Name": "Nombre del Snippet"
|
202
|
+
"A one or two line long description of what this snippet does.": "Descripción de una o dos lineas sobre que hace el snippet"
|
203
|
+
|
204
|
+
"First Name": "Nombre"
|
205
|
+
"Favorite Beer": "Cerveza Favorita"
|
206
|
+
"Insert Snippet": "Insertar Snippet"
|
207
|
+
|
208
|
+
|
209
|
+
# ## Custom Regional Overrides (eg. es-AR -- Spanish (Argentina))
|
210
|
+
_AR_:
|
211
|
+
"Save": "Guardar"
|
@@ -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"
|