alchemy_cms 3.0.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -2
- data/README.md +29 -17
- data/Rakefile +1 -1
- data/alchemy_cms.gemspec +3 -3
- data/app/assets/javascripts/alchemy/alchemy.js +1 -0
- data/app/assets/javascripts/alchemy/alchemy.translations.js.coffee +43 -1
- data/app/assets/stylesheets/alchemy/_mixins.scss +1 -2
- data/app/assets/stylesheets/alchemy/buttons.scss +5 -0
- data/app/assets/stylesheets/alchemy/dialogs.scss +0 -1
- data/app/assets/stylesheets/alchemy/frame.scss +12 -9
- data/app/controllers/alchemy/admin/elements_controller.rb +10 -9
- data/app/models/alchemy/element.rb +1 -1
- data/app/views/alchemy/admin/pictures/info.html.erb +3 -2
- data/app/views/alchemy/admin/tags/edit.html.erb +1 -1
- data/app/views/alchemy/essences/_essence_picture_editor.html.erb +1 -6
- data/app/views/alchemy/messages/contact_form_mail.es.text.erb +12 -0
- data/app/views/layouts/alchemy/admin.html.erb +2 -0
- data/config/locales/alchemy.en.yml +1 -0
- data/config/locales/alchemy.es.yml +958 -0
- data/config/locales/alchemy.ru.yml +837 -0
- data/config/locales/simple_form.es.yml +6 -0
- data/config/locales/simple_form.ru.yml +25 -0
- data/lib/alchemy/version.rb +1 -2
- data/lib/rails/generators/alchemy/scaffold/files/alchemy.es.yml +31 -0
- data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +1 -0
- data/spec/controllers/admin/elements_controller_spec.rb +44 -26
- data/spec/models/element_spec.rb +11 -0
- data/spec/models/page_spec.rb +6 -4
- data/vendor/assets/javascripts/tinymce/langs/es.js +197 -0
- data/vendor/assets/javascripts/tinymce/langs/ru.js +197 -0
- metadata +25 -11
@@ -0,0 +1,25 @@
|
|
1
|
+
ru:
|
2
|
+
simple_form:
|
3
|
+
"yes": 'Да'
|
4
|
+
"no": 'Нет'
|
5
|
+
required:
|
6
|
+
text: 'обязательные поля'
|
7
|
+
mark: '*'
|
8
|
+
# You can uncomment the line below if you need to overwrite the whole required html.
|
9
|
+
# When using html, text and mark won't be used.
|
10
|
+
# html: '<abbr title="required">*</abbr>'
|
11
|
+
error_notification:
|
12
|
+
default_message: "Пожалуйста, исправьте эти ошибки:"
|
13
|
+
# Labels and hints examples
|
14
|
+
# labels:
|
15
|
+
# defaults:
|
16
|
+
# password: 'Password'
|
17
|
+
# user:
|
18
|
+
# new:
|
19
|
+
# email: 'E-mail to sign in.'
|
20
|
+
# edit:
|
21
|
+
# email: 'E-mail.'
|
22
|
+
# hints:
|
23
|
+
# defaults:
|
24
|
+
# username: 'User name to sign in.'
|
25
|
+
# password: 'No special characters, please.'
|
data/lib/alchemy/version.rb
CHANGED
@@ -0,0 +1,31 @@
|
|
1
|
+
es:
|
2
|
+
alchemy:
|
3
|
+
|
4
|
+
# Translations for page layout names
|
5
|
+
page_layout_names:
|
6
|
+
index: Inicio
|
7
|
+
|
8
|
+
# Translations for element names
|
9
|
+
element_names:
|
10
|
+
article: Artículo
|
11
|
+
|
12
|
+
# Translations for content names
|
13
|
+
content_names:
|
14
|
+
headline: Titular
|
15
|
+
text: Texto
|
16
|
+
picture: Imagen
|
17
|
+
|
18
|
+
# Default texts for new contents created
|
19
|
+
default_content_texts:
|
20
|
+
article_headline: "Bienvenido a tu primera página de Alchemy CMS"
|
21
|
+
article_text: '<p><strong>Como empezar.</strong></p><p>Lo primero de todo deberías leer sobre Alchemy y su arquitectura en las <a class="external" href="http://guides.alchemy-cms.com/edge/alchemy_approach.html" target="_blank" data-link-target="blank">guías</a>.</p><p>Las cosas más importantes que debes saber sobre Alchemy son elementos (<i>elements</i>) y disposiciones de página (<i>page layouts</i>).</p><p><span style="text-decoration: underline;"><strong>Elementos:</strong></span></p><p>Con Alchemy puedes dividir las páginas en partes de contenido, elementos. Estos elementos se pueden definir mediante varios tipos de contenido básicos: esencias (<i>essences</i>). Las esencias básicas son:</p><ul><li>EssenceText - <em>Un única línea de texto</em></li><li>EssenceRichtext - <em>Un bloque de texto formateado mediante TinyMCE</em></li><li>EssencePicture - <em>Una referencia a una imagen</em></li><li>EssenceHtml - <em>Código HTML empotrado</em></li><li>EssenceSelect - <em>Una selección de valores</em></li><li>EssenceBoolean - <em>Una casilla de verificación</em></li></ul><p>Los elementos se definen en el fichero YAML <strong>config/alchemy/elements.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/edge/elements.html" target="_blank" data-link-target="blank">Lee más sobre elementos y cómo definirlos en las guías.</a></p><p><span style="text-decoration: underline;"><strong>Tipos de página:</strong></span></p><p>Puedes definir varios tipos de páginas, llamados disposiciones de páginas (<i>page layouts</i>). Puedes asignar elementos a las disposiciones de páginas y controlar cómo se comportan los elementos y una página con una disposición concreta.</p><p>Las disposiciones de páginas se definen en el fichero YAML <strong>config/alchemy/page_layouts.yml</strong></p><p><a class="external" href="http://guides.alchemy-cms.com/edge/page_layouts.html" target="_blank" data-link-target="blank">Lee más sobre definir disposiciones de páginas en las guías.</a></p>'
|
22
|
+
|
23
|
+
# Hint texts for elements
|
24
|
+
element_hints:
|
25
|
+
article: "Este es el texto de ayuda del elemento artículo. Puedes cambiar este texto en `config/locales/alchemy.en.yml`. Siéntete libre de cambiarlo a tu gusto, es tuyo."
|
26
|
+
|
27
|
+
# Hint texts for contents
|
28
|
+
content_hints:
|
29
|
+
headline: "Esta es una sencilla linea de texto sin formato"
|
30
|
+
picture: "Las imágenes se almacenan en la librería. Puedes asignar una imagen varias veces en tu sitio. Alchemy tiene una herramienta de recorte de imagen integrada."
|
31
|
+
text: "Este es un bloque de texto enriquecido mediante el editor TinyMCE. Puedes cambiar la configuración del editor. Ver http://guides.alchemy-cms.com/edge/customize_tinymce.html"
|
@@ -32,6 +32,7 @@ module Alchemy
|
|
32
32
|
template "page_layouts.yml.tt", "#{Rails.root}/config/alchemy/page_layouts.yml"
|
33
33
|
copy_file "#{current_path}/files/alchemy.en.yml", "#{Rails.root}/config/locales/alchemy.en.yml"
|
34
34
|
copy_file "#{current_path}/files/alchemy.de.yml", "#{Rails.root}/config/locales/alchemy.de.yml"
|
35
|
+
copy_file "#{current_path}/files/alchemy.es.yml", "#{Rails.root}/config/locales/alchemy.es.yml"
|
35
36
|
copy_file "#{current_path}/files/application.html.erb", "#{Rails.root}/app/views/layouts/application.html.erb"
|
36
37
|
copy_file "#{current_path}/files/_standard.html.erb", "#{Rails.root}/app/views/alchemy/page_layouts/_standard.html.erb"
|
37
38
|
copy_file "#{current_path}/files/_article_view.html.erb", "#{Rails.root}/app/views/alchemy/elements/_article_view.html.erb"
|
@@ -69,6 +69,50 @@ module Alchemy
|
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
+
describe '#order' do
|
73
|
+
let(:element_1) { FactoryGirl.create(:element) }
|
74
|
+
let(:element_2) { FactoryGirl.create(:element) }
|
75
|
+
let(:element_3) { FactoryGirl.create(:element) }
|
76
|
+
let(:element_ids) { [element_1.id, element_3.id, element_2.id] }
|
77
|
+
|
78
|
+
it "sets new position for given element ids" do
|
79
|
+
xhr :post, :order, element_ids: element_ids
|
80
|
+
expect(Element.all.pluck(:id)).to eq(element_ids)
|
81
|
+
end
|
82
|
+
|
83
|
+
context "untrashing" do
|
84
|
+
let(:trashed_element) { FactoryGirl.create(:element, public: false, position: nil, page_id: 58, cell_id: 32) }
|
85
|
+
|
86
|
+
before do
|
87
|
+
# Because of a before_create filter it can not be created with a nil position and needs to be trashed here
|
88
|
+
trashed_element.trash!
|
89
|
+
end
|
90
|
+
|
91
|
+
it "sets a list of trashed element ids" do
|
92
|
+
xhr :post, :order, element_ids: [trashed_element.id]
|
93
|
+
expect(assigns(:trashed_elements).to_a).to eq [trashed_element.id]
|
94
|
+
end
|
95
|
+
|
96
|
+
it "should set a new position to the element" do
|
97
|
+
xhr :post, :order, element_ids: [trashed_element.id]
|
98
|
+
trashed_element.reload
|
99
|
+
trashed_element.position.should_not == nil
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should assign the (new) page_id to the element" do
|
103
|
+
xhr :post, :order, element_ids: [trashed_element.id], page_id: 1, cell_id: nil
|
104
|
+
trashed_element.reload
|
105
|
+
trashed_element.page_id.should == 1
|
106
|
+
end
|
107
|
+
|
108
|
+
it "should assign the (new) cell_id to the element" do
|
109
|
+
xhr :post, :order, element_ids: [trashed_element.id], page_id: 1, cell_id: 5
|
110
|
+
trashed_element.reload
|
111
|
+
trashed_element.cell_id.should == 5
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
72
116
|
describe '#new' do
|
73
117
|
let(:alchemy_page) { build_stubbed(:page) }
|
74
118
|
|
@@ -406,31 +450,5 @@ module Alchemy
|
|
406
450
|
end
|
407
451
|
end
|
408
452
|
end
|
409
|
-
|
410
|
-
describe "untrashing" do
|
411
|
-
before do
|
412
|
-
@element = create(:element, :public => false, :position => nil, :page_id => 58, :cell_id => 32)
|
413
|
-
# Because of a before_create filter it can not be created with a nil position and needs to be trashed here
|
414
|
-
@element.trash!
|
415
|
-
end
|
416
|
-
|
417
|
-
it "should set a new position to the element" do
|
418
|
-
xhr :post, :order, {:element_ids => ["#{@element.id}"]}
|
419
|
-
@element.reload
|
420
|
-
@element.position.should_not == nil
|
421
|
-
end
|
422
|
-
|
423
|
-
it "should assign the (new) page_id to the element" do
|
424
|
-
xhr :post, :order, {:element_ids => ["#{@element.id}"], :page_id => 1, :cell_id => nil}
|
425
|
-
@element.reload
|
426
|
-
@element.page_id.should == 1
|
427
|
-
end
|
428
|
-
|
429
|
-
it "should assign the (new) cell_id to the element" do
|
430
|
-
xhr :post, :order, {:element_ids => ["#{@element.id}"], :page_id => 1, :cell_id => 5}
|
431
|
-
@element.reload
|
432
|
-
@element.cell_id.should == 5
|
433
|
-
end
|
434
|
-
end
|
435
453
|
end
|
436
454
|
end
|
data/spec/models/element_spec.rb
CHANGED
@@ -242,6 +242,17 @@ module Alchemy
|
|
242
242
|
end
|
243
243
|
end
|
244
244
|
|
245
|
+
describe '#essence_error_messages' do
|
246
|
+
let(:element) { Element.new(name: 'article') }
|
247
|
+
it "should return the translation with the translated content label" do
|
248
|
+
I18n.should_receive(:t).with('content_names.content', default: 'Content').and_return('Content')
|
249
|
+
I18n.should_receive(:t).with('content', scope: "content_names.article", default: 'Content').and_return('Contenido')
|
250
|
+
I18n.should_receive(:t).with('article.content.invalid', {:scope=>"content_validations", :default=>[:"fields.content.invalid", :"errors.invalid"], :field=>"Contenido"})
|
251
|
+
element.should_receive(:essence_errors).and_return({'content' => [:invalid]})
|
252
|
+
element.essence_error_messages
|
253
|
+
end
|
254
|
+
end
|
255
|
+
|
245
256
|
describe '#display_name_with_preview_text' do
|
246
257
|
let(:element) { FactoryGirl.build_stubbed(:element, name: 'Foo') }
|
247
258
|
|
data/spec/models/page_spec.rb
CHANGED
@@ -183,14 +183,16 @@ module Alchemy
|
|
183
183
|
|
184
184
|
context "public has changed" do
|
185
185
|
it "should update published_at" do
|
186
|
-
|
187
|
-
|
186
|
+
expect {
|
187
|
+
page.update_attributes!(public: true)
|
188
|
+
}.to change {page.read_attribute(:published_at) }
|
188
189
|
end
|
189
190
|
|
190
191
|
it "should not update already set published_at" do
|
191
192
|
page.update_attributes!(published_at: 2.weeks.ago)
|
192
|
-
|
193
|
-
|
193
|
+
expect {
|
194
|
+
page.update_attributes!(public: true)
|
195
|
+
}.to_not change { page.read_attribute(:published_at) }
|
194
196
|
end
|
195
197
|
end
|
196
198
|
|
@@ -0,0 +1,197 @@
|
|
1
|
+
tinymce.addI18n('es',{
|
2
|
+
"Cut": "Cortar",
|
3
|
+
"Heading 5": "Encabezado 5",
|
4
|
+
"Header 2": "Encabezado 2 ",
|
5
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Tu navegador no soporta acceso directo al portapapeles. Por favor usa las teclas Crtl+X\/C\/V de tu teclado",
|
6
|
+
"Heading 4": "Encabezado 4",
|
7
|
+
"Div": "Capa",
|
8
|
+
"Heading 2": "Encabezado 2",
|
9
|
+
"Paste": "Pegar",
|
10
|
+
"Close": "Cerrar",
|
11
|
+
"Font Family": "Familia de fuentes",
|
12
|
+
"Pre": "Pre",
|
13
|
+
"Align right": "Alinear a la derecha",
|
14
|
+
"New document": "Nuevo documento",
|
15
|
+
"Blockquote": "Bloque de cita",
|
16
|
+
"Numbered list": "Lista numerada",
|
17
|
+
"Heading 1": "Encabezado 1",
|
18
|
+
"Headings": "Encabezados",
|
19
|
+
"Increase indent": "Incrementar sangr\u00eda",
|
20
|
+
"Formats": "Formatos",
|
21
|
+
"Headers": "Encabezados",
|
22
|
+
"Select all": "Seleccionar todo",
|
23
|
+
"Header 3": "Encabezado 3",
|
24
|
+
"Blocks": "Bloques",
|
25
|
+
"Undo": "Deshacer",
|
26
|
+
"Strikethrough": "Tachado",
|
27
|
+
"Bullet list": "Lista de vi\u00f1etas",
|
28
|
+
"Header 1": "Encabezado 1",
|
29
|
+
"Superscript": "Super\u00edndice",
|
30
|
+
"Clear formatting": "Limpiar formato",
|
31
|
+
"Font Sizes": "Tama\u00f1os de fuente",
|
32
|
+
"Subscript": "Sub\u00edndice",
|
33
|
+
"Header 6": "Encabezado 6",
|
34
|
+
"Redo": "Rehacer",
|
35
|
+
"Paragraph": "P\u00e1rrafo",
|
36
|
+
"Ok": "Ok",
|
37
|
+
"Bold": "Negrita",
|
38
|
+
"Code": "C\u00f3digo",
|
39
|
+
"Italic": "It\u00e1lica",
|
40
|
+
"Align center": "Alinear al centro",
|
41
|
+
"Header 5": "Encabezado 5 ",
|
42
|
+
"Heading 6": "Encabezado 6",
|
43
|
+
"Heading 3": "Encabezado 3",
|
44
|
+
"Decrease indent": "Disminuir sangr\u00eda",
|
45
|
+
"Header 4": "Encabezado 4",
|
46
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
47
|
+
"Underline": "Subrayado",
|
48
|
+
"Cancel": "Cancelar",
|
49
|
+
"Justify": "Justificar",
|
50
|
+
"Inline": "en l\u00ednea",
|
51
|
+
"Copy": "Copiar",
|
52
|
+
"Align left": "Alinear a la izquierda",
|
53
|
+
"Visual aids": "Ayudas visuales",
|
54
|
+
"Lower Greek": "Inferior Griega",
|
55
|
+
"Square": "Cuadrado",
|
56
|
+
"Default": "Por defecto",
|
57
|
+
"Lower Alpha": "Inferior Alfa",
|
58
|
+
"Circle": "C\u00edrculo",
|
59
|
+
"Disc": "Disco",
|
60
|
+
"Upper Alpha": "Superior Alfa",
|
61
|
+
"Upper Roman": "Superior Romana",
|
62
|
+
"Lower Roman": "Inferior Romana",
|
63
|
+
"Name": "Nombre",
|
64
|
+
"Anchor": "Ancla",
|
65
|
+
"You have unsaved changes are you sure you want to navigate away?": "Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?",
|
66
|
+
"Restore last draft": "Restaurar el \u00faltimo borrador",
|
67
|
+
"Special character": "Car\u00e1cter especial",
|
68
|
+
"Source code": "C\u00f3digo fuente",
|
69
|
+
"Color": "Color",
|
70
|
+
"Right to left": "De derecha a izquierda",
|
71
|
+
"Left to right": "De izquierda a derecha",
|
72
|
+
"Emoticons": "Emoticonos",
|
73
|
+
"Robots": "Robots",
|
74
|
+
"Document properties": "Propiedades del documento",
|
75
|
+
"Title": "T\u00edtulo",
|
76
|
+
"Keywords": "Palabras clave",
|
77
|
+
"Encoding": "Codificaci\u00f3n",
|
78
|
+
"Description": "Descripci\u00f3n",
|
79
|
+
"Author": "Autor",
|
80
|
+
"Fullscreen": "Pantalla completa",
|
81
|
+
"Horizontal line": "L\u00ednea horizontal",
|
82
|
+
"Horizontal space": "Espacio horizontal",
|
83
|
+
"Insert\/edit image": "Insertar\/editar imagen",
|
84
|
+
"General": "General",
|
85
|
+
"Advanced": "Avanzado",
|
86
|
+
"Source": "Fuente",
|
87
|
+
"Border": "Borde",
|
88
|
+
"Constrain proportions": "Restringir proporciones",
|
89
|
+
"Vertical space": "Espacio vertical",
|
90
|
+
"Image description": "Descripci\u00f3n de la imagen",
|
91
|
+
"Style": "Estilo",
|
92
|
+
"Dimensions": "Dimensiones",
|
93
|
+
"Insert image": "Insertar imagen",
|
94
|
+
"Insert date\/time": "Insertar fecha\/hora",
|
95
|
+
"Remove link": "Quitar enlace",
|
96
|
+
"Url": "URL",
|
97
|
+
"Text to display": "Texto para mostrar",
|
98
|
+
"Anchors": "Anclas",
|
99
|
+
"Insert link": "Insertar enlace",
|
100
|
+
"New window": "Nueva ventana",
|
101
|
+
"None": "Ninguno",
|
102
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:\/\/ ?",
|
103
|
+
"Target": "Destino",
|
104
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?",
|
105
|
+
"Insert\/edit link": "Insertar\/editar enlace",
|
106
|
+
"Insert\/edit video": "Insertar\/editar video",
|
107
|
+
"Poster": "Miniatura",
|
108
|
+
"Alternative source": "Fuente alternativa",
|
109
|
+
"Paste your embed code below:": "Pega tu c\u00f3digo embebido debajo",
|
110
|
+
"Insert video": "Insertar video",
|
111
|
+
"Embed": "Incrustado",
|
112
|
+
"Nonbreaking space": "Espacio fijo",
|
113
|
+
"Page break": "Salto de p\u00e1gina",
|
114
|
+
"Paste as text": "Pegar como texto",
|
115
|
+
"Preview": "Previsualizar",
|
116
|
+
"Print": "Imprimir",
|
117
|
+
"Save": "Guardar",
|
118
|
+
"Could not find the specified string.": "No se encuentra la cadena de texto especificada",
|
119
|
+
"Replace": "Reemplazar",
|
120
|
+
"Next": "Siguiente",
|
121
|
+
"Whole words": "Palabras completas",
|
122
|
+
"Find and replace": "Buscar y reemplazar",
|
123
|
+
"Replace with": "Reemplazar con",
|
124
|
+
"Find": "Buscar",
|
125
|
+
"Replace all": "Reemplazar todo",
|
126
|
+
"Match case": "Coincidencia exacta",
|
127
|
+
"Prev": "Anterior",
|
128
|
+
"Spellcheck": "Corrector ortogr\u00e1fico",
|
129
|
+
"Finish": "Finalizar",
|
130
|
+
"Ignore all": "Ignorar todos",
|
131
|
+
"Ignore": "Ignorar",
|
132
|
+
"Add to Dictionary": "A\u00f1adir al Diccionario",
|
133
|
+
"Insert row before": "Insertar fila antes",
|
134
|
+
"Rows": "Filas",
|
135
|
+
"Height": "Alto",
|
136
|
+
"Paste row after": "Pegar la fila despu\u00e9s",
|
137
|
+
"Alignment": "Alineaci\u00f3n",
|
138
|
+
"Border color": "Color del borde",
|
139
|
+
"Column group": "Grupo de columnas",
|
140
|
+
"Row": "Fila",
|
141
|
+
"Insert column before": "Insertar columna antes",
|
142
|
+
"Split cell": "Dividir celdas",
|
143
|
+
"Cell padding": "Relleno de celda",
|
144
|
+
"Cell spacing": "Espacio entre celdas",
|
145
|
+
"Row type": "Tipo de fila",
|
146
|
+
"Insert table": "Insertar tabla",
|
147
|
+
"Body": "Cuerpo",
|
148
|
+
"Caption": "Subt\u00edtulo",
|
149
|
+
"Footer": "Pie de p\u00e1gina",
|
150
|
+
"Delete row": "Eliminar fila",
|
151
|
+
"Paste row before": "Pegar la fila antes",
|
152
|
+
"Scope": "\u00c1mbito",
|
153
|
+
"Delete table": "Eliminar tabla",
|
154
|
+
"H Align": "Alineamiento Horizontal",
|
155
|
+
"Top": "Arriba",
|
156
|
+
"Header cell": "Celda de la cebecera",
|
157
|
+
"Column": "Columna",
|
158
|
+
"Row group": "Grupo de filas",
|
159
|
+
"Cell": "Celda",
|
160
|
+
"Middle": "Centro",
|
161
|
+
"Cell type": "Tipo de celda",
|
162
|
+
"Copy row": "Copiar fila",
|
163
|
+
"Row properties": "Propiedades de la fila",
|
164
|
+
"Table properties": "Propiedades de la tabla",
|
165
|
+
"Bottom": "Abajo",
|
166
|
+
"V Align": "Alineamiento Vertical",
|
167
|
+
"Header": "Cabecera",
|
168
|
+
"Right": "Derecha",
|
169
|
+
"Insert column after": "Insertar columna despu\u00e9s",
|
170
|
+
"Cols": "Columnas",
|
171
|
+
"Insert row after": "Insertar fila despu\u00e9s ",
|
172
|
+
"Width": "Ancho",
|
173
|
+
"Cell properties": "Propiedades de la celda",
|
174
|
+
"Left": "Izquierda",
|
175
|
+
"Cut row": "Cortar fila",
|
176
|
+
"Delete column": "Eliminar columna",
|
177
|
+
"Center": "Centrado",
|
178
|
+
"Merge cells": "Combinar celdas",
|
179
|
+
"Insert template": "Insertar plantilla",
|
180
|
+
"Templates": "Plantillas",
|
181
|
+
"Background color": "Color de fondo",
|
182
|
+
"Custom...": "Personalizar...",
|
183
|
+
"Custom color": "Color personalizado",
|
184
|
+
"No color": "Sin color",
|
185
|
+
"Text color": "Color del texto",
|
186
|
+
"Show blocks": "Mostrar bloques",
|
187
|
+
"Show invisible characters": "Mostrar caracteres invisibles",
|
188
|
+
"Words: {0}": "Palabras: {0}",
|
189
|
+
"Insert": "Insertar",
|
190
|
+
"File": "Archivo",
|
191
|
+
"Edit": "Editar",
|
192
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda",
|
193
|
+
"Tools": "Herramientas",
|
194
|
+
"View": "Ver",
|
195
|
+
"Table": "Tabla",
|
196
|
+
"Format": "Formato"
|
197
|
+
});
|
@@ -0,0 +1,197 @@
|
|
1
|
+
tinymce.addI18n('ru',{
|
2
|
+
"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c",
|
3
|
+
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
4
|
+
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
5
|
+
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u044f \u043a\u043b\u0430\u0432\u0438\u0448: Ctrl+X\/C\/V.",
|
6
|
+
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
7
|
+
"Div": "\u0411\u043b\u043e\u043a",
|
8
|
+
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
9
|
+
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
10
|
+
"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
|
11
|
+
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
12
|
+
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
13
|
+
"Align right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
14
|
+
"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
15
|
+
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
16
|
+
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
17
|
+
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
18
|
+
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
19
|
+
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
20
|
+
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442",
|
21
|
+
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
22
|
+
"Select all": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435",
|
23
|
+
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
24
|
+
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
25
|
+
"Undo": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c",
|
26
|
+
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
27
|
+
"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
28
|
+
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
29
|
+
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
30
|
+
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442",
|
31
|
+
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
32
|
+
"Subscript": "\u041d\u0438\u0436\u043d\u0438\u0439 \u0438\u043d\u0434\u0435\u043a\u0441",
|
33
|
+
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
34
|
+
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
35
|
+
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
36
|
+
"Ok": "\u041e\u043a",
|
37
|
+
"Bold": "\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439",
|
38
|
+
"Code": "\u041a\u043e\u0434",
|
39
|
+
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
40
|
+
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
41
|
+
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
42
|
+
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
43
|
+
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
44
|
+
"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
45
|
+
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
46
|
+
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0432\u0438\u0434\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430, \u043f\u043e\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e.",
|
47
|
+
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
48
|
+
"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
49
|
+
"Justify": "\u041f\u043e \u0448\u0438\u0440\u0438\u043d\u0435",
|
50
|
+
"Inline": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435",
|
51
|
+
"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
52
|
+
"Align left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
53
|
+
"Visual aids": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0443\u0440\u044b",
|
54
|
+
"Lower Greek": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
55
|
+
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442\u044b",
|
56
|
+
"Default": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439",
|
57
|
+
"Lower Alpha": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
58
|
+
"Circle": "\u041e\u043a\u0440\u0443\u0436\u043d\u043e\u0441\u0442\u0438",
|
59
|
+
"Disc": "\u041a\u0440\u0443\u0433\u0438",
|
60
|
+
"Upper Alpha": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b",
|
61
|
+
"Upper Roman": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
62
|
+
"Lower Roman": "\u0421\u0442\u0440\u043e\u0447\u043d\u044b\u0435 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b",
|
63
|
+
"Name": "\u0418\u043c\u044f",
|
64
|
+
"Anchor": "\u042f\u043a\u043e\u0440\u044c",
|
65
|
+
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0439\u0442\u0438?",
|
66
|
+
"Restore last draft": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430",
|
67
|
+
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
68
|
+
"Source code": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434",
|
69
|
+
"Color": "\u0426\u0432\u0435\u0442",
|
70
|
+
"Right to left": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0435\u0432\u043e",
|
71
|
+
"Left to right": "\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
72
|
+
"Emoticons": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0430\u0439\u043b",
|
73
|
+
"Robots": "\u0420\u043e\u0431\u043e\u0442\u044b",
|
74
|
+
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
75
|
+
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
76
|
+
"Keywords": "\u041a\u043b\u044e\u0447\u0438\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430",
|
77
|
+
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
|
78
|
+
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
79
|
+
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
80
|
+
"Fullscreen": "\u041f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u044b\u0439 \u0440\u0435\u0436\u0438\u043c",
|
81
|
+
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043b\u0438\u043d\u0438\u044f",
|
82
|
+
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
83
|
+
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
84
|
+
"General": "\u041e\u0431\u0449\u0435\u0435",
|
85
|
+
"Advanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435",
|
86
|
+
"Source": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
87
|
+
"Border": "\u0420\u0430\u043c\u043a\u0430",
|
88
|
+
"Constrain proportions": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438",
|
89
|
+
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
90
|
+
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
91
|
+
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
92
|
+
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
93
|
+
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
94
|
+
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u0443\/\u0432\u0440\u0435\u043c\u044f",
|
95
|
+
"Remove link": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
96
|
+
"Url": "\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044b\u043b\u043a\u0438",
|
97
|
+
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
|
98
|
+
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
99
|
+
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
100
|
+
"New window": "\u0412 \u043d\u043e\u0432\u043e\u043c \u043e\u043a\u043d\u0435",
|
101
|
+
"None": "\u041d\u0435\u0442",
|
102
|
+
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u0441\u044b\u043b\u043a\u043e\u0439. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abhttp:\/\/\u00bb?",
|
103
|
+
"Target": "\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
104
|
+
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 URL \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0412\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u00abmailto:\u00bb?",
|
105
|
+
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
|
106
|
+
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\/\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
107
|
+
"Poster": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
108
|
+
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a",
|
109
|
+
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0435:",
|
110
|
+
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e",
|
111
|
+
"Embed": "\u041a\u043e\u0434 \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438",
|
112
|
+
"Nonbreaking space": "\u041d\u0435\u0440\u0430\u0437\u0440\u044b\u0432\u043d\u044b\u0439 \u043f\u0440\u043e\u0431\u0435\u043b",
|
113
|
+
"Page break": "\u0420\u0430\u0437\u0440\u044b\u0432 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b",
|
114
|
+
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442",
|
115
|
+
"Preview": "\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440",
|
116
|
+
"Print": "\u041f\u0435\u0447\u0430\u0442\u044c",
|
117
|
+
"Save": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
118
|
+
"Could not find the specified string.": "\u0417\u0430\u0434\u0430\u043d\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430",
|
119
|
+
"Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c",
|
120
|
+
"Next": "\u0412\u043d\u0438\u0437",
|
121
|
+
"Whole words": "\u0421\u043b\u043e\u0432\u043e \u0446\u0435\u043b\u0438\u043a\u043e\u043c",
|
122
|
+
"Find and replace": "\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",
|
123
|
+
"Replace with": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",
|
124
|
+
"Find": "\u041d\u0430\u0439\u0442\u0438",
|
125
|
+
"Replace all": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",
|
126
|
+
"Match case": "\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",
|
127
|
+
"Prev": "\u0412\u0432\u0435\u0440\u0445",
|
128
|
+
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
129
|
+
"Finish": "\u0417\u0430\u043a\u043e\u043d\u0447\u0438\u0442\u044c",
|
130
|
+
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435",
|
131
|
+
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
132
|
+
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0441\u043b\u043e\u0432\u0430\u0440\u044c",
|
133
|
+
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
134
|
+
"Rows": "\u0421\u0442\u0440\u043e\u043a\u0438",
|
135
|
+
"Height": "\u0412\u044b\u0441\u043e\u0442\u0430",
|
136
|
+
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
137
|
+
"Alignment": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
138
|
+
"Border color": "\u0426\u0432\u0435\u0442 \u0440\u0430\u043c\u043a\u0438",
|
139
|
+
"Column group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u043a\u043e\u043b\u043e\u043d\u043e\u043a",
|
140
|
+
"Row": "\u0421\u0442\u0440\u043e\u043a\u0430",
|
141
|
+
"Insert column before": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043b\u0435\u0432\u0430",
|
142
|
+
"Split cell": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0443",
|
143
|
+
"Cell padding": "\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
144
|
+
"Cell spacing": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u043e\u0442\u0441\u0442\u0443\u043f",
|
145
|
+
"Row type": "\u0422\u0438\u043f \u0441\u0442\u0440\u043e\u043a\u0438",
|
146
|
+
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
147
|
+
"Body": "\u0422\u0435\u043b\u043e",
|
148
|
+
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
149
|
+
"Footer": "\u041d\u0438\u0437",
|
150
|
+
"Delete row": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
151
|
+
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
152
|
+
"Scope": "Scope",
|
153
|
+
"Delete table": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443",
|
154
|
+
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
155
|
+
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u0443",
|
156
|
+
"Header cell": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
157
|
+
"Column": "\u0421\u0442\u043e\u043b\u0431\u0435\u0446",
|
158
|
+
"Row group": "\u0413\u0440\u0443\u043f\u043f\u0430 \u0441\u0442\u0440\u043e\u043a",
|
159
|
+
"Cell": "\u042f\u0447\u0435\u0439\u043a\u0430",
|
160
|
+
"Middle": "\u041f\u043e \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435",
|
161
|
+
"Cell type": "\u0422\u0438\u043f \u044f\u0447\u0435\u0439\u043a\u0438",
|
162
|
+
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
163
|
+
"Row properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0442\u0440\u043e\u043a\u0438",
|
164
|
+
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u044b",
|
165
|
+
"Bottom": "\u041f\u043e \u043d\u0438\u0437\u0443",
|
166
|
+
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435",
|
167
|
+
"Header": "\u0428\u0430\u043f\u043a\u0430",
|
168
|
+
"Right": "\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
169
|
+
"Insert column after": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0441\u043f\u0440\u0430\u0432\u0430",
|
170
|
+
"Cols": "\u0421\u0442\u043e\u043b\u0431\u0446\u044b",
|
171
|
+
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043d\u0438\u0437\u0443",
|
172
|
+
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
173
|
+
"Cell properties": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u044f\u0447\u0435\u0439\u043a\u0438",
|
174
|
+
"Left": "\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
175
|
+
"Cut row": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443",
|
176
|
+
"Delete column": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
|
177
|
+
"Center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
178
|
+
"Merge cells": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u044f\u0447\u0435\u0439\u043a\u0438",
|
179
|
+
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0430\u0431\u043b\u043e\u043d",
|
180
|
+
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u044b",
|
181
|
+
"Background color": "\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430",
|
182
|
+
"Custom...": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c\u2026",
|
183
|
+
"Custom color": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0446\u0432\u0435\u0442",
|
184
|
+
"No color": "\u0411\u0435\u0437 \u0446\u0432\u0435\u0442\u0430",
|
185
|
+
"Text color": "\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430",
|
186
|
+
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438",
|
187
|
+
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b",
|
188
|
+
"Words: {0}": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043b\u043e\u0432: {0}",
|
189
|
+
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
190
|
+
"File": "\u0424\u0430\u0439\u043b",
|
191
|
+
"Edit": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c",
|
192
|
+
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 ALT-F9 \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u043c\u0435\u043d\u044e, ALT-F10 \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, ALT-0 \u0434\u043b\u044f \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u043e\u043c\u043e\u0449\u0438.",
|
193
|
+
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b",
|
194
|
+
"View": "\u0412\u0438\u0434",
|
195
|
+
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
196
|
+
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
197
|
+
});
|