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['pt'] =
|
2
|
+
# ## Javascript Strings
|
3
|
+
|
4
|
+
# ### Default Configuration
|
5
|
+
"Save": "Salvar"
|
6
|
+
"Save this page": "Salvar esta página"
|
7
|
+
"Preview": "Prévia"
|
8
|
+
"Preview this page": "Ver como esta página está ficando"
|
9
|
+
"Undo": "Desfazer"
|
10
|
+
"Undo your last action": "Desfazer minha última ação"
|
11
|
+
"Redo": "Refazer"
|
12
|
+
"Redo your last action": "Refazer minha última ação"
|
13
|
+
"Link": "Link"
|
14
|
+
"Insert Link": "Inserir um Link"
|
15
|
+
"Media": "Mídia"
|
16
|
+
"Insert Media (images and videos)": "Inserir Mídia (Imagens e Vídeos)"
|
17
|
+
"Table": "Tabela"
|
18
|
+
"Insert Table": "Desenhar Tabela"
|
19
|
+
"Character": "Caracteres"
|
20
|
+
"Special Characters": "Caracteres Especiais"
|
21
|
+
"Snippet": "Snippets"
|
22
|
+
"Snippet Panel": "Painel de Snippets"
|
23
|
+
"History": "Histórico"
|
24
|
+
"Page Version History": "Veja o histórico desta página"
|
25
|
+
"Notes": "Anotações"
|
26
|
+
"Page Notes": "Anotações da página"
|
27
|
+
"Style": "Estilos"
|
28
|
+
"Block Format": "Bloco"
|
29
|
+
"Background Color": "Cor de Fundo"
|
30
|
+
"Text Color": "Cor de Texto"
|
31
|
+
"Bold": "Negrito"
|
32
|
+
"Italicize": "Itálico"
|
33
|
+
"Overline": "Sobrelinha"
|
34
|
+
"Strikethrough": "Riscado"
|
35
|
+
"Underline": "Sublinha"
|
36
|
+
"Subscript": "Sub-elevado"
|
37
|
+
"Superscript": "Sobre-elevado"
|
38
|
+
"Align Left": "À esquerda"
|
39
|
+
"Center": "Centralizado"
|
40
|
+
"Align Right": "À direita"
|
41
|
+
"Justify Full": "Justificado"
|
42
|
+
"Unordered List": "Lista sem números"
|
43
|
+
"Numbered List": "Lista com números"
|
44
|
+
"Decrease Indentation": "Aumentar recuo"
|
45
|
+
"Increase Indentation": "Diminuir recuo"
|
46
|
+
"Insert Table Row": "Inserir Linha"
|
47
|
+
"Insert a table row before the cursor": "Insere linha antes do cursor"
|
48
|
+
"Insert a table row after the cursor": "Insere linha após do cursor"
|
49
|
+
"Delete Table Row": "Remove linha"
|
50
|
+
"Delete this table row": "Remove esta linha"
|
51
|
+
"Insert Table Column": "Insere Coluna"
|
52
|
+
"Insert a table column before the cursor": "Insere coluna antes do cursor"
|
53
|
+
"Insert a table column after the cursor": "Insere coluna após do cursor"
|
54
|
+
"Delete Table Column": "Remove coluna"
|
55
|
+
"Delete this table column": "Remove esta coluna"
|
56
|
+
"Increase Cell Columns": "Aumenta colunas da celula"
|
57
|
+
"Decrease Cell Columns": "Reduz colunas da celula"
|
58
|
+
"Increase Cell Rows": "Aumenta linhas da celula"
|
59
|
+
"Decrease Cell Rows": "Reduz linhas da celula"
|
60
|
+
"Horizontal Rule": "Linha horizontal"
|
61
|
+
"Insert a horizontal rule": "Inserir linha horizontal"
|
62
|
+
"Remove Formatting": "Remover formatação"
|
63
|
+
"Remove formatting for the selection": "Remover toda a formatação para o texto selecionado"
|
64
|
+
"Edit HTML": "Editar HTML"
|
65
|
+
"Edit the HTML content": "Edita o HTML do conteúdo"
|
66
|
+
"Edit Snippet Settings": "Edita configurações de snippets"
|
67
|
+
"Remove Snippet": "Remover Snippets"
|
68
|
+
|
69
|
+
# ### General
|
70
|
+
# Error Messages
|
71
|
+
"Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s não aceita seu navegador. Utilize um dos seguintes: %s."
|
72
|
+
"Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor não pode ser inicializado duas vezes"
|
73
|
+
"Opera isn't a fully supported browser, your results may not be optimal.": "Mercury.PageEditor não é garantido no navegador Opera, seus resultados podem não ser os esperados."
|
74
|
+
"Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor não pôde carregar: %s\n\nPor favor, recarregue a página."
|
75
|
+
"Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "A região não digitada corretamente, não foi definido um 'data-type', ou \"%s\" é desconhecido na região de \"%s\"."
|
76
|
+
"Mercury was unable to save to the url: %s": ""
|
77
|
+
# Confirmations
|
78
|
+
"You have unsaved changes. Are you sure you want to leave without saving them first?": "Você modificou esta página. Quer sair sem salvar seu trabalho?"
|
79
|
+
|
80
|
+
# ### Toolbar / Buttons
|
81
|
+
# Error Messages
|
82
|
+
"Unknown button type \"%s\" used for the \"%s\" button.": "Tipo de botão \"%s\" não é conhecido, usado no botão \"%s\"."
|
83
|
+
"Unknown button structure -- please provide an array, object, or string for \"%s\".": "Estrutura de botão desconhecida -- por favor, fomente um array, objeto ou string para \"%s\"."
|
84
|
+
|
85
|
+
# ### Modals / Dialogs / Etc.
|
86
|
+
# Error Messages
|
87
|
+
"Mercury was unable to load %s for the \"%s\" dialog.": "Mercury não carregou \"%s\" para a janela \"%s\"."
|
88
|
+
"Mercury was unable to load %s for the lightview.": "Mercury não carregou \"%s\" na lightview."
|
89
|
+
"Mercury was unable to load %s for the modal.": "Mercury não carregou \"%s\" como modal."
|
90
|
+
|
91
|
+
# ### Snippets
|
92
|
+
# Error Messages
|
93
|
+
"Error loading the preview for the \"%s\" snippet.": "Erro carregando a pré-visulização do snippet \"%s\"."
|
94
|
+
# Misc
|
95
|
+
"Snippet Options": "Opções de Snippet"
|
96
|
+
|
97
|
+
# ### Uploader
|
98
|
+
# Error Messages
|
99
|
+
"Unable to process response: %s": "Não foi possível processar a 'response': \"%s\"."
|
100
|
+
"Error: Unable to upload the file": "Erro: Não foi possível carregar o arquivo."
|
101
|
+
"Malformed response from server": "A 'response' do servidor foi formada incorretamente" # needs translation
|
102
|
+
"Too large": "Muito Grande"
|
103
|
+
"Unsupported format": "Formato não suportado"
|
104
|
+
# Statuses
|
105
|
+
"Processing...": "Processando..."
|
106
|
+
"Uploading...": "Enviando..."
|
107
|
+
"Aborted": "Abortado"
|
108
|
+
"Successfully uploaded...": "Enviado com sucesso."
|
109
|
+
"Name: %s": "Nome: \"%s\"."
|
110
|
+
"Size: %s": "Tamanho: \"%s\"."
|
111
|
+
"Type: %s": "Tipo: \"%s\"."
|
112
|
+
|
113
|
+
# Inserting Media
|
114
|
+
"Error: The provided youtube share url was invalid.": "Erro: Link inválido no youtube."
|
115
|
+
"Error: The provided vimeo url was invalid.": "Erro: Link inválido no vimeo."
|
116
|
+
|
117
|
+
# Statusbar
|
118
|
+
"Path:": "Caminho"
|
119
|
+
|
120
|
+
|
121
|
+
# ## HTML / Template Strings
|
122
|
+
|
123
|
+
# ### Modals
|
124
|
+
# Insert Link Modal (link.html)
|
125
|
+
"Link Content": "Conteúdo do Link"
|
126
|
+
"Standard Links": "Links Padrão"
|
127
|
+
"URL": "URL (endereço)"
|
128
|
+
"Index / Bookmark Links": "Index / Links Marcados"
|
129
|
+
"Existing Links": "Links existentes"
|
130
|
+
"Bookmark": "Links marcados"
|
131
|
+
"Options": "Opções"
|
132
|
+
"Link Target": "Abrir em"
|
133
|
+
"Self (the same window or tab)": "Self (na própria janela ou aba)"
|
134
|
+
"Blank (a new window or tab)": "Blank (numa nova aba)"
|
135
|
+
"Top (removes any frames)": "Top (na janela, ignorando frames)"
|
136
|
+
"Popup Window (javascript new window popup)": "Popup Window (Janela feia em javascript)"
|
137
|
+
"Popup Width": "Largura do popup"
|
138
|
+
"Popup Height": "Altura do popup"
|
139
|
+
"Insert Link": "Inserir Link"
|
140
|
+
|
141
|
+
# Insert Media Modal (media.html)
|
142
|
+
"Images": "Imagens"
|
143
|
+
"Videos": "Vídeos"
|
144
|
+
"YouTube Share URL": "Link do Youtube"
|
145
|
+
"Vimeo URL": "Link do Vimeo"
|
146
|
+
"Alignment": "Alinhamento"
|
147
|
+
"None": "Nenhum"
|
148
|
+
"Left": "Esquerda"
|
149
|
+
"Right": "Direita"
|
150
|
+
"Top": "Cima"
|
151
|
+
"Middle": "Meio"
|
152
|
+
"Bottom": "Baixo"
|
153
|
+
"Absolute Middle": "Meio Absoluto"
|
154
|
+
"Absolute Bottom": "Baixo Absoluto"
|
155
|
+
"Width": "Largura"
|
156
|
+
"Height": "Altura"
|
157
|
+
"Insert Media": "Inserir Mídia"
|
158
|
+
|
159
|
+
# Insert Table Modal (table.html)
|
160
|
+
"Rows": "Linhas"
|
161
|
+
"Add Before": "Antes"
|
162
|
+
"Add After": "Depois"
|
163
|
+
"Remove": "Remover"
|
164
|
+
"Columns": "Colunas"
|
165
|
+
"Row Span": "Células horizontais"
|
166
|
+
"Column Span": "Células verticais"
|
167
|
+
"Options": "Opções"
|
168
|
+
"Alignment": "Alinhamento"
|
169
|
+
"Border": "Borda"
|
170
|
+
"Spacing": "Espaçamento"
|
171
|
+
"Insert Table": "Inserir Tabela"
|
172
|
+
|
173
|
+
# HTML Editor Modal (htmleditor.html)
|
174
|
+
"HTML Editor": "Editor HTML"
|
175
|
+
"Save and Replace": "Salvar e Modificar"
|
176
|
+
|
177
|
+
# ### Dialogs / Etc.
|
178
|
+
# Color Palettes (forecolor.html, backcolor.html)
|
179
|
+
"Last Color Picked": "Última cor"
|
180
|
+
|
181
|
+
# Block Format Select (formatblock.html)
|
182
|
+
"Heading 1": "Título 1"
|
183
|
+
"Heading 2": "Título 2"
|
184
|
+
"Heading 3": "Título 3"
|
185
|
+
"Heading 4": "Título 4"
|
186
|
+
"Heading 5": "Título 5"
|
187
|
+
"Heading 6": "Título 6"
|
188
|
+
"Paragraph": "Paragrafo"
|
189
|
+
"Blockquote": "Menção"
|
190
|
+
"Formatted": "Datilografado"
|
191
|
+
|
192
|
+
# About Mercury Panel (about.html)
|
193
|
+
"Project Home": "Página inicial do projeto"
|
194
|
+
"Project Source": "Fontes do projeto"
|
195
|
+
|
196
|
+
# ### Demo / Placeholder / Defaults
|
197
|
+
"The history panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "O painel de histórico deve ser implementado junto ao código lado-servidor. Como isto é um demo, ele não foi incluído."
|
198
|
+
|
199
|
+
"The notes panel is expected to be implemented with a server back end. Since this is a demo, we didn't include it.": "O painel de anotações deve ser implementado junto ao código lado-servidor. Como isto é um demo, ele não foi incluído."
|
200
|
+
|
201
|
+
"Snippet Name": "Nome do snippet"
|
202
|
+
"A one or two line long description of what this snippet does.": ""
|
203
|
+
|
204
|
+
"First Name": "Primeio Nome"
|
205
|
+
"Favorite Beer": "Cerveja Favorita"
|
206
|
+
"Insert Snippet": "Inserir Snippet"
|
207
|
+
|
208
|
+
|
209
|
+
# ## Custom Regional Overrides (eg. en-US)
|
210
|
+
_BR_:
|
211
|
+
"Save": "Salvar"
|
@@ -0,0 +1,209 @@
|
|
1
|
+
Mercury.I18n['sv'] =
|
2
|
+
# ## Javascript Strings
|
3
|
+
|
4
|
+
# ### Default Configuration
|
5
|
+
"Save": "Spara"
|
6
|
+
"Save this page": "Spara denna sida"
|
7
|
+
"Preview": "Förhandsgranska"
|
8
|
+
"Preview this page": "Förhandsgranska denna sida"
|
9
|
+
"Undo": "Ångra"
|
10
|
+
"Undo your last action": "Ångra senaste händelsen"
|
11
|
+
"Redo": "Gör om"
|
12
|
+
"Redo your last action": "Gör om senaste händelsen"
|
13
|
+
"Link": "Länk"
|
14
|
+
"Insert Link": "Infoga länk"
|
15
|
+
"Media": "Media"
|
16
|
+
"Insert Media (images and videos)": "Infoga Media (bilder och video)"
|
17
|
+
"Table": "Tabell"
|
18
|
+
"Insert Table": "Infoga Tabell"
|
19
|
+
"Character": "Tecken"
|
20
|
+
"Special Characters": "Specialtecken"
|
21
|
+
"Snippet": "Snippet"
|
22
|
+
"Snippet Panel": "Snippetpanel"
|
23
|
+
"History": "Historia"
|
24
|
+
"Page Version History": "Sidans versionshistorik"
|
25
|
+
"Notes": "Anteckningar"
|
26
|
+
"Page Notes": "Sidanteckningar"
|
27
|
+
"Style": "Stil"
|
28
|
+
"Block Format": "Blockformat"
|
29
|
+
"Background Color": "Bakgrundsfärg"
|
30
|
+
"Text Color": "Textfärg"
|
31
|
+
"Bold": "Fet"
|
32
|
+
"Italicize": "Kursiv"
|
33
|
+
"Overline": "Överstruken"
|
34
|
+
"Strikethrough": "Genomstruken"
|
35
|
+
"Underline": "Understruken"
|
36
|
+
"Subscript": "Nedsänkt"
|
37
|
+
"Superscript": "Överskrift"
|
38
|
+
"Align Left": "Vänsterjustera"
|
39
|
+
"Center": "Centrera"
|
40
|
+
"Align Right": "Högerjustera"
|
41
|
+
"Justify Full": "Justera"
|
42
|
+
"Unordered List": "Osorterad lista"
|
43
|
+
"Numbered List": "Numrerad lista"
|
44
|
+
"Decrease Indentation": "Minska indrag"
|
45
|
+
"Increase Indentation": "Öka indrag"
|
46
|
+
"Insert Table Row": "Infoga tabellrad"
|
47
|
+
"Insert a table row before the cursor": "Infoga en tabellrad före pekaren"
|
48
|
+
"Insert a table row after the cursor": "Infoga en tabellrad efter pekaren"
|
49
|
+
"Delete Table Row": "Ta bort tabellrad"
|
50
|
+
"Delete this table row": "Ta bort denna tabellrad"
|
51
|
+
"Insert Table Column": "Infoga tabellkolumn"
|
52
|
+
"Insert a table column before the cursor": "Infoga en tabellkolumn före pekaren"
|
53
|
+
"Insert a table column after the cursor": "Infoga en tabellkolumn efter pekaren"
|
54
|
+
"Delete Table Column": "Ta bort tabellkolumn"
|
55
|
+
"Delete this table column": "Ta bort denna tabellkolumn"
|
56
|
+
"Increase Cell Columns": "Öka cellkolumner"
|
57
|
+
"Decrease Cell Columns": "Minska cellkolumner"
|
58
|
+
"Increase Cell Rows": "Öka cellrader"
|
59
|
+
"Decrease Cell Rows": "Minska cellrader"
|
60
|
+
"Horizontal Rule": "Horisontell avgränsare"
|
61
|
+
"Insert a horizontal rule": "Lägg till horisontell avgränsare"
|
62
|
+
"Remove Formatting": "Ta bort formatering"
|
63
|
+
"Remove formatting for the selection": "Ta bort formatering för markeringen"
|
64
|
+
"Edit HTML": "Redigera HTML"
|
65
|
+
"Edit the HTML content": "Redigera HTML-inehållet"
|
66
|
+
"Edit Snippet Settings": "Rädigera inställningar för Snippet"
|
67
|
+
"Remove Snippet": "Ta bort Snippet"
|
68
|
+
|
69
|
+
# ### General
|
70
|
+
# Error Messages
|
71
|
+
"Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s stöds inte i denna klient. Stödda webbläsare är %s."
|
72
|
+
"Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor kan bara ha en instans."
|
73
|
+
"Opera isn't a fully supported browser, your results may not be optimal.": "Stödet för webbläsaren Opera är inte komplett, resultatet kanske därför inte är optimalt"
|
74
|
+
"Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PageEditor misslyckades att ladda: %s\n\nVänligen försök att ladda om sidan."
|
75
|
+
"Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "Regionstyp är felaktigt formaterad, ingen datatyp angavs, eller \"%s\" är okänt för \"%s\" regionen."
|
76
|
+
"Mercury was unable to save to the url: %s": "Mercury kunde inte spara till adressen: %s"
|
77
|
+
# Confirmations
|
78
|
+
"You have unsaved changes. Are you sure you want to leave without saving them first?": "Du har osparade ändringar. Är du säker på att du vill lämna sidan utan att spara dem först?"
|
79
|
+
|
80
|
+
# ### Toolbar / Buttons
|
81
|
+
# Error Messages
|
82
|
+
"Unknown button type \"%s\" used for the \"%s\" button.": "Okänd knapptyp \"%s\" använd för \"%s\" knappen."
|
83
|
+
"Unknown button structure -- please provide an array, object, or string for \"%s\".": "Okänd knappstruktur -- vänligen skicka en array, objekt eller sträng för \"%s\"."
|
84
|
+
|
85
|
+
# ### Modals / Dialogs / Etc.
|
86
|
+
# Error Messages
|
87
|
+
"Mercury was unable to load %s for the \"%s\" dialog.": "Mercury kunde inte ladda %s för \"%s\" dialogen."
|
88
|
+
"Mercury was unable to load %s for the lightview.": "Mercury kunde inte ladda %s för lightwiev."
|
89
|
+
"Mercury was unable to load %s for the modal.": "Mercury kunde inte ladda %s för denna modal."
|
90
|
+
|
91
|
+
# ### Snippets
|
92
|
+
# Error Messages
|
93
|
+
"Error loading the preview for the \"%s\" snippet.": "Kunde inte ladda förhandsgranskningen av \"%s\" snippet."
|
94
|
+
# Misc
|
95
|
+
"Snippet Options": "Inställningar för Snippet"
|
96
|
+
|
97
|
+
# ### Uploader
|
98
|
+
# Error Messages
|
99
|
+
"Unable to process response: %s": "Kunde inte hantera svaret: %s"
|
100
|
+
"Error: Unable to upload the file": "Fel: Kunde inte ladda up filen"
|
101
|
+
"Malformed response from server": "Felformaterat svar från servern" # needs translation
|
102
|
+
"Too large": "För stor"
|
103
|
+
"Unsupported format": "Formatet stöds inte"
|
104
|
+
# Statuses
|
105
|
+
"Processing...": "Hanterar..."
|
106
|
+
"Uploading...": "Laddar upp..."
|
107
|
+
"Aborted": "Avbrutet"
|
108
|
+
"Successfully uploaded...": "Uppladdning lyckades..."
|
109
|
+
"Name: %s": "Namn: %s"
|
110
|
+
"Size: %s": "Storlek: %s"
|
111
|
+
"Type: %s": "Typ: %s"
|
112
|
+
|
113
|
+
# Inserting Media
|
114
|
+
"Error: The provided youtube share url was invalid.": "Fel: Den angivna delningsadressen för Youtube är felaktig."
|
115
|
+
"Error: The provided vimeo url was invalid.": "Fel: Den angivna Vimeo-adressen är felaktig."
|
116
|
+
|
117
|
+
# Statusbar
|
118
|
+
"Path:": "Sökväg:"
|
119
|
+
|
120
|
+
|
121
|
+
# ## HTML / Template Strings
|
122
|
+
|
123
|
+
# ### Modals
|
124
|
+
# Insert Link Modal (link.html)
|
125
|
+
"Link Content": "Länkinehåll"
|
126
|
+
"Standard Links": "Standardlänkar"
|
127
|
+
"URL": "URL"
|
128
|
+
"Index / Bookmark Links": "Index / Bokmärkeslänkar"
|
129
|
+
"Existing Links": "Existerande länkar"
|
130
|
+
"Bookmark": "Bokmärken"
|
131
|
+
"Options": "Inställningar"
|
132
|
+
"Link Target": "Länkmål"
|
133
|
+
"Self (the same window or tab)": "Self (samma fönster eller flik)"
|
134
|
+
"Blank (a new window or tab)": "Blank (ett nytt fönster eller flik)"
|
135
|
+
"Top (removes any frames)": "Top (tar bort eventuella ramar)"
|
136
|
+
"Popup Window (javascript new window popup)": "Popupfönster (javascript nytt fönster)"
|
137
|
+
"Popup Width": "Bredd för popup"
|
138
|
+
"Popup Height": "Höjd för popup"
|
139
|
+
"Insert Link": "Infoga länk"
|
140
|
+
|
141
|
+
# Insert Media Modal (media.html)
|
142
|
+
"Images": "Bilder"
|
143
|
+
"Videos": "Video"
|
144
|
+
"YouTube Share URL": "YouTube delnings-URL"
|
145
|
+
"Vimeo URL": "Vimeo-URL"
|
146
|
+
"Alignment": "Justering"
|
147
|
+
"None": "Ingen"
|
148
|
+
"Left": "Vänster"
|
149
|
+
"Right": "Höger"
|
150
|
+
"Top": "Över"
|
151
|
+
"Middle": "Mitten"
|
152
|
+
"Bottom": "Under"
|
153
|
+
"Absolute Middle": "Absolut mitt"
|
154
|
+
"Absolute Bottom": "Absolut under"
|
155
|
+
"Width": "Bredd"
|
156
|
+
"Height": "Höjd"
|
157
|
+
"Insert Media": "Infoga media"
|
158
|
+
|
159
|
+
# Insert Table Modal (table.html)
|
160
|
+
"Rows": "Rader"
|
161
|
+
"Add Before": "Infoga före"
|
162
|
+
"Add After": "Ifnoga efter"
|
163
|
+
"Remove": "Ta bort"
|
164
|
+
"Columns": "Kolumner"
|
165
|
+
"Row Span": "Rad-vidd"
|
166
|
+
"Column Span": "Kolumn-vidd"
|
167
|
+
"Options": "Inställningar"
|
168
|
+
"Alignment": "Justering"
|
169
|
+
"Border": "Ram"
|
170
|
+
"Spacing": "Mellanrum"
|
171
|
+
"Insert Table": "Infoga tabell"
|
172
|
+
|
173
|
+
# HTML Editor Modal (htmleditor.html)
|
174
|
+
"HTML Editor": "HTML-redigerare"
|
175
|
+
"Save and Replace": "Spara och ersätt"
|
176
|
+
|
177
|
+
# ### Dialogs / Etc.
|
178
|
+
# Color Palettes (forecolor.html, backcolor.html)
|
179
|
+
"Last Color Picked": "Senast valda förg"
|
180
|
+
|
181
|
+
# Block Format Select (formatblock.html)
|
182
|
+
"Heading 1": "Rubrik 1"
|
183
|
+
"Heading 2": "Rubrik 2"
|
184
|
+
"Heading 3": "Rubrik 3"
|
185
|
+
"Heading 4": "Rubrik 4"
|
186
|
+
"Heading 5": "Rubrik 5"
|
187
|
+
"Heading 6": "Rubrik 6"
|
188
|
+
"Paragraph": "Paragraf"
|
189
|
+
"Blockquote": "Citattext"
|
190
|
+
"Formatted": "Fornaterad"
|
191
|
+
|
192
|
+
# About Mercury Panel (about.html)
|
193
|
+
"Project Home": "Projektets hemsida"
|
194
|
+
"Project Source": "Projektets källkod"
|
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.": "Historikpanelen förväntas implementeras med en server back end. Eftersom detta är en demo så inkluderade vi den inte."
|
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.": "Anteckningspanelen förväntas implementeras med en server back end. Eftersom detta är en demo så inkluderade vi den inte."
|
200
|
+
|
201
|
+
"Snippet Name": "Snippetnamn"
|
202
|
+
"A one or two line long description of what this snippet does.": "En eller två rader lång beskrivning för vad denna snipet gör."
|
203
|
+
|
204
|
+
"First Name": "Förnamn"
|
205
|
+
"Favorite Beer": "Favoritöl"
|
206
|
+
"Insert Snippet": "Infoga snippet"
|
207
|
+
|
208
|
+
|
209
|
+
# ## Custom Regional Overrides (eg. en-US)
|
@@ -0,0 +1,213 @@
|
|
1
|
+
Mercury.I18n['swedish_chef'] =
|
2
|
+
# ## Javascript Strings
|
3
|
+
|
4
|
+
# ### Default Configuration
|
5
|
+
"Save": "Sefe-a"
|
6
|
+
"Save this page": "Sefe-a thees pege-a"
|
7
|
+
"Preview": "Prefeeoo"
|
8
|
+
"Preview this page": "Prefeeoo thees pege-a"
|
9
|
+
"Undo": "Undu"
|
10
|
+
"Undo your last action": "Undu yuoor lest ecshun"
|
11
|
+
"Redo": "Redu"
|
12
|
+
"Redo your last action": "Redu yuoor lest ecshun"
|
13
|
+
"Link": "Leenk"
|
14
|
+
"Insert Link": "Insert Leenk"
|
15
|
+
"Media": "Medeea"
|
16
|
+
"Insert Media (images and videos)": "Insert Medeea (imeges und feedeus)"
|
17
|
+
"Table": "Teble-a"
|
18
|
+
"Insert Table": "Insert Teble-a"
|
19
|
+
"Character": "Cherecter"
|
20
|
+
"Special Characters": "Speceeel Cherecters"
|
21
|
+
"Snippet": "Sneeppet"
|
22
|
+
"Snippet Panel": "Sneeppet Punel"
|
23
|
+
"History": "Heestury"
|
24
|
+
"Page Version History": "Pege-a Ferseeun Heestury"
|
25
|
+
"Notes": "Nutes"
|
26
|
+
"Page Notes": "Pege-a Nutes"
|
27
|
+
"Style": "Style-a"
|
28
|
+
"Block Format": "Bluck Furmet"
|
29
|
+
"Background Color": "Beckgruoond Culur"
|
30
|
+
"Text Color": "Text Culur"
|
31
|
+
"Bold": "Buld"
|
32
|
+
"Italicize": "Iteleecize-a"
|
33
|
+
"Overline": "Ooferleene-a"
|
34
|
+
"Strikethrough": "Streekethruoogh"
|
35
|
+
"Underline": "Underleene-a"
|
36
|
+
"Subscript": "Soobscreept"
|
37
|
+
"Superscript": "Sooperscreept"
|
38
|
+
"Align Left": "Eleegn Lefft"
|
39
|
+
"Center": "Center"
|
40
|
+
"Align Right": "Eleegn Reeght"
|
41
|
+
"Justify Full": "Joosteeffy Fooll"
|
42
|
+
"Unordered List": "Unurdered Leest"
|
43
|
+
"Numbered List": "Noombered Leest"
|
44
|
+
"Decrease Indentation": "Decreese-a Indenteshun"
|
45
|
+
"Increase Indentation": "Increese-a Indenteshun"
|
46
|
+
"Insert Table Row": "Insert Teble-a Roo"
|
47
|
+
"Insert a table row before the cursor": "Insert a teble-a roo beffure-a zee coorsur"
|
48
|
+
"Insert a table row after the cursor": "Insert a teble-a roo effter zee coorsur"
|
49
|
+
"Delete Table Row": "Delete-a Teble-a Roo"
|
50
|
+
"Delete this table row": "Delete-a thees teble-a roo"
|
51
|
+
"Insert Table Column": "Insert Teble-a Culoomn"
|
52
|
+
"Insert a table column before the cursor": "Insert a teble-a culoomn beffure-a zee coorsur"
|
53
|
+
"Insert a table column after the cursor": "Insert a teble-a culoomn effter zee coorsur"
|
54
|
+
"Delete Table Column": "Delete-a Teble-a Culoomn"
|
55
|
+
"Delete this table column": "Delete-a thees teble-a culoomn"
|
56
|
+
"Increase Cell Columns": "Increese-a Cell Culoomns"
|
57
|
+
"Decrease Cell Columns": "Decreese-a Cell Culoomns"
|
58
|
+
"Increase Cell Rows": "Increese-a Cell Roos"
|
59
|
+
"Decrease Cell Rows": "Decreese-a Cell Roos"
|
60
|
+
"Horizontal Rule": "Hureezuntel Roole-a"
|
61
|
+
"Insert a horizontal rule": "Insert a hureezuntel roole-a"
|
62
|
+
"Remove Formatting": "Remufe-a Furmetteeng"
|
63
|
+
"Remove formatting for the selection": "Remufe-a furmetteeng fur zee selecshun"
|
64
|
+
"Edit HTML": "Ideet HTML"
|
65
|
+
"Edit the HTML content": "Ideet zee HTML cuntent"
|
66
|
+
"Edit Snippet Settings": "Ideet Sneeppet Setteengs"
|
67
|
+
"Remove Snippet": "Remufe-a Sneeppet"
|
68
|
+
|
69
|
+
# ### General
|
70
|
+
# Error Messages
|
71
|
+
"Mercury.Regions.%s is unsupported in this client. Supported browsers are %s.": "Mercury.Regions.%s is unsooppurted in thees cleeent. Sooppurted broosers ere-a %s Bork Bork Bork!"
|
72
|
+
"Mercury.PageEditor can only be instantiated once.": "Mercury.PageEditor cun oonly be-a instunteeeted oonce-a. Bork Bork Bork!"
|
73
|
+
"Opera isn't a fully supported browser, your results may not be optimal.": "Opera isn't a foolly sooppurted brooser, yuoor resoolts mey nut be-a oopteemel."
|
74
|
+
"Mercury.PageEditor failed to load: %s\n\nPlease try refreshing.": "Mercury.PegeEdeetur feeeled tu lued: %s\n\nPleese-a try reffresheeng."
|
75
|
+
"Region type is malformed, no data-type provided, or \"%s\" is unknown for the \"%s\" region.": "Regeeun type-a is melffurmed, nu deta-type-a prufeeded, oor \"%s\" is unknoon fur zee \"%s\" regeeun."
|
76
|
+
"Mercury was unable to save to the url: %s": "Mercury ves uneble-a tu sefe-a tu zee url: %s"
|
77
|
+
# Confirmations
|
78
|
+
"You have unsaved changes. Are you sure you want to leave without saving them first?": "Yuoo hefe-a unsefed chunges. Ere-a yuoo soore-a yuoo vunt tu leefe-a veethuoot sefeeng zeem furst?"
|
79
|
+
|
80
|
+
# ### Toolbar / Buttons
|
81
|
+
# Error Messages
|
82
|
+
"Unknown button type \"%s\" used for the \"%s\" button.": "Unknoon boottun type-a \"%s\" used fur zee \"%s\" boottun."
|
83
|
+
"Unknown button structure -- please provide an array, object, or string for \"%s\".": "Unknoon boottun strooctoore-a -- pleese-a prufeede-a un errey, oobject, oor streeng fur \"%s\"."
|
84
|
+
|
85
|
+
# ### Modals / Dialogs / Etc.
|
86
|
+
# Error Messages
|
87
|
+
"Mercury was unable to load %s for the \"%s\" dialog.": "Mercury ves uneble-a tu lued %s fur zee \"%s\" deeelug."
|
88
|
+
"Mercury was unable to load %s for the lightview.": "Mercury ves uneble-a tu lued %s fur zee leeghtfioo."
|
89
|
+
"Mercury was unable to load %s for the modal.": "Mercury ves uneble-a tu lued %s fur zee mudel."
|
90
|
+
|
91
|
+
# ### Snippets
|
92
|
+
# Error Messages
|
93
|
+
"Error loading the preview for the \"%s\" snippet.": "Irrur luedeeng zee prefeeoo fur zee \"%s\" sneeppet."
|
94
|
+
# Misc
|
95
|
+
"Snippet Options": "Sneeppet Oopshuns"
|
96
|
+
|
97
|
+
# ### Uploader
|
98
|
+
# Error Messages
|
99
|
+
"Unable to process response: %s": "Uneble-a tu prucess respunse-a: %s"
|
100
|
+
"Error: Unable to upload the file": "Irrur: Uneble-a tu uplued zee feele-a"
|
101
|
+
"Malformed response from server": "Melffurmed respunse-a frum serfer"
|
102
|
+
"Too large": "Tuu lerge-a"
|
103
|
+
"Unsupported format": "Unsooppurted furmet"
|
104
|
+
# Statuses
|
105
|
+
"Processing...": "Prucesseeng..."
|
106
|
+
"Uploading...": "Upluedeeng..."
|
107
|
+
"Aborted": "Eburted"
|
108
|
+
"Successfully uploaded...": "Sooccessffoolly uplueded..."
|
109
|
+
"Name: %s": "Neme-a: %s"
|
110
|
+
"Size: %s": "Seeze-a: %s"
|
111
|
+
"Type: %s": "Type-a: %s"
|
112
|
+
|
113
|
+
# Inserting Media
|
114
|
+
"Error: The provided youtube share url was invalid.": "Irrur: Zee prufeeded youtube shere-a url ves infeleed."
|
115
|
+
"Error: The provided vimeo url was invalid.": "Irrur: Zee prufeeded vimeo url ves infeleed."
|
116
|
+
|
117
|
+
# Statusbar
|
118
|
+
"Path:": "Pet:"
|
119
|
+
|
120
|
+
|
121
|
+
# ## HTML / Template Strings
|
122
|
+
|
123
|
+
# ### Modals
|
124
|
+
# Insert Link Modal (link.html)
|
125
|
+
"Link Content": "Leenk Cuntent"
|
126
|
+
"Standard Links": "Stunderd Leenks"
|
127
|
+
"URL": "URL"
|
128
|
+
"Index / Bookmark Links": "Index / Buukmerk Leenks"
|
129
|
+
"Existing Links": "Ixeesting Leenks"
|
130
|
+
"Bookmark": "Buukmerk"
|
131
|
+
"Options": "Oopshuns"
|
132
|
+
"Link Target": "Leenk Terget"
|
133
|
+
"Self (the same window or tab)": "Selff (zee seme-a veendoo oor teb)"
|
134
|
+
"Blank (a new window or tab)": "Blunk (a noo veendoo oor teb)"
|
135
|
+
"Top (removes any frames)": "Tup (remufes uny fremes)"
|
136
|
+
"Popup Window (javascript new window popup)": "Pupoop Veendoo (jefescreept noo veendoo pupoop)"
|
137
|
+
"Popup Width": "Pupoop Veedt"
|
138
|
+
"Popup Height": "Pupoop Heeeght"
|
139
|
+
"Insert Link": "Insert Leenk"
|
140
|
+
|
141
|
+
# Insert Media Modal (media.html)
|
142
|
+
"Images": "Imeges"
|
143
|
+
"Videos": "Feedeus"
|
144
|
+
"YouTube Share URL": "YouTube Shere-a URL"
|
145
|
+
"Vimeo URL": "Vimeo URL"
|
146
|
+
"Alignment": "Eleegnment"
|
147
|
+
"None": "Nune-a"
|
148
|
+
"Left": "Lefft"
|
149
|
+
"Right": "Reeght"
|
150
|
+
"Top": "Tup"
|
151
|
+
"Middle": "Meeddle-a"
|
152
|
+
"Bottom": "Buttum"
|
153
|
+
"Absolute Middle": "Ebsuloote-a Meeddle-a"
|
154
|
+
"Absolute Bottom": "Ebsuloote-a Buttum"
|
155
|
+
"Width": "Veedt"
|
156
|
+
"Height": "Heeeght"
|
157
|
+
"Insert Media": "Insert Medeea"
|
158
|
+
|
159
|
+
# Insert Table Modal (table.html)
|
160
|
+
"Rows": "Roos"
|
161
|
+
"Add Before": "Edd Beffure-a"
|
162
|
+
"Add After": "Edd Effter"
|
163
|
+
"Remove": "Remufe-a"
|
164
|
+
"Columns": "Culoomns"
|
165
|
+
"Row Span": "Roo Spun"
|
166
|
+
"Column Span": "Culoomn Spun"
|
167
|
+
"Options": "Oopshuns"
|
168
|
+
"Alignment": "Eleegnment"
|
169
|
+
"Border": "Burder"
|
170
|
+
"Spacing": "Speceeng"
|
171
|
+
"Insert Table": "Insert Teble-a"
|
172
|
+
|
173
|
+
# HTML Editor Modal (htmleditor.html)
|
174
|
+
"HTML Editor": "HTML Ideetur"
|
175
|
+
"Save and Replace": "Sefe-a und Replece-a"
|
176
|
+
|
177
|
+
# ### Dialogs / Etc.
|
178
|
+
# Color Palettes (forecolor.html, backcolor.html)
|
179
|
+
"Last Color Picked": "Lest Culur Peecked"
|
180
|
+
|
181
|
+
# Block Format Select (formatblock.html)
|
182
|
+
"Heading 1": "Heedeeng 1"
|
183
|
+
"Heading 2": "Heedeeng 2"
|
184
|
+
"Heading 3": "Heedeeng 3"
|
185
|
+
"Heading 4": "Heedeeng 4"
|
186
|
+
"Heading 5": "Heedeeng 5"
|
187
|
+
"Heading 6": "Heedeeng 6"
|
188
|
+
"Paragraph": "Peregreph"
|
189
|
+
"Blockquote": "Bluckqooute-a"
|
190
|
+
"Formatted": "Furmetted"
|
191
|
+
|
192
|
+
# About Mercury Panel (about.html)
|
193
|
+
"Project Home": "Pruject Hume-a"
|
194
|
+
"Project Source": "Pruject Suoorce-a"
|
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.": "Zee heestury punel is ixpected tu be-a implemented veet a serfer beck ind. Seence-a thees is a demu, ve-a deedn't incloode-a 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.": "Zee nutes punel is ixpected tu be-a implemented veet a serfer beck ind. Seence-a thees is a demu, ve-a deedn't incloode-a it."
|
200
|
+
|
201
|
+
"Snippet Name": "Sneeppet Neme-a"
|
202
|
+
"A one or two line long description of what this snippet does.": "A oone-a oor tvu leene-a lung descreepshun ooff vhet thees sneeppet dues."
|
203
|
+
|
204
|
+
"First Name": "Furst Neme-a"
|
205
|
+
"Favorite Beer": "Fefureete-a Beer"
|
206
|
+
"Insert Snippet": "Insert Sneeppet"
|
207
|
+
|
208
|
+
|
209
|
+
# ## Custom Regional Overrides (eg. swedish_chef-BORK)
|
210
|
+
_BORK_:
|
211
|
+
"Save": "Bork!"
|
212
|
+
"Snippet Options": "Bork Oopshuns"
|
213
|
+
"Insert Link": "Bork! Leenk"
|