camaleon_cms 2.5.0 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of camaleon_cms might be problematic. Click here for more details.

Files changed (144) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/apps/plugins/front_cache/front_cache_helper.rb +1 -1
  4. data/app/assets/config/camaleon-cms.js +0 -1
  5. data/app/assets/images/camaleon_cms/language/md.png +0 -0
  6. data/app/assets/javascripts/camaleon_cms/bootstrap.min.js +4 -5
  7. data/app/assets/stylesheets/camaleon_cms/bootstrap.min.css +6 -0
  8. data/app/assets/{fonts/camaleon_cms → stylesheets/camaleon_cms/fonts}/glyphicons-halflings-regular.eot +0 -0
  9. data/app/assets/{fonts/camaleon_cms → stylesheets/camaleon_cms/fonts}/glyphicons-halflings-regular.svg +0 -0
  10. data/app/assets/{fonts/camaleon_cms → stylesheets/camaleon_cms/fonts}/glyphicons-halflings-regular.ttf +0 -0
  11. data/app/assets/{fonts/camaleon_cms → stylesheets/camaleon_cms/fonts}/glyphicons-halflings-regular.woff +0 -0
  12. data/app/assets/{fonts/camaleon_cms → stylesheets/camaleon_cms/fonts}/glyphicons-halflings-regular.woff2 +0 -0
  13. data/app/controllers/camaleon_cms/admin/sessions_controller.rb +1 -1
  14. data/app/controllers/camaleon_cms/frontend_controller.rb +4 -1
  15. data/app/helpers/camaleon_cms/admin/breadcrumb_helper.rb +1 -1
  16. data/app/helpers/camaleon_cms/camaleon_helper.rb +4 -4
  17. data/app/helpers/camaleon_cms/frontend/seo_helper.rb +2 -1
  18. data/app/helpers/camaleon_cms/frontend/site_helper.rb +1 -6
  19. data/app/helpers/camaleon_cms/short_code_helper.rb +3 -3
  20. data/app/helpers/camaleon_cms/uploader_helper.rb +3 -2
  21. data/app/models/camaleon_cms/ability.rb +94 -92
  22. data/app/models/camaleon_cms/category.rb +45 -44
  23. data/app/models/camaleon_cms/custom_field.rb +26 -25
  24. data/app/models/camaleon_cms/custom_field_group.rb +115 -114
  25. data/app/models/camaleon_cms/custom_fields_relationship.rb +21 -19
  26. data/app/models/camaleon_cms/media.rb +48 -44
  27. data/app/models/camaleon_cms/meta.rb +5 -3
  28. data/app/models/camaleon_cms/nav_menu.rb +27 -24
  29. data/app/models/camaleon_cms/nav_menu_item.rb +58 -54
  30. data/app/models/camaleon_cms/plugin.rb +62 -60
  31. data/app/models/camaleon_cms/post.rb +205 -226
  32. data/app/models/camaleon_cms/post_comment.rb +44 -42
  33. data/app/models/camaleon_cms/post_default.rb +65 -62
  34. data/app/models/camaleon_cms/post_relationship.rb +1 -2
  35. data/app/models/camaleon_cms/post_tag.rb +9 -6
  36. data/app/models/camaleon_cms/post_type.rb +170 -163
  37. data/app/models/camaleon_cms/site.rb +211 -203
  38. data/app/models/camaleon_cms/term_relationship.rb +16 -14
  39. data/app/models/camaleon_cms/term_taxonomy.rb +49 -54
  40. data/app/models/camaleon_cms/theme.rb +24 -23
  41. data/app/models/camaleon_cms/user.rb +18 -13
  42. data/app/models/camaleon_cms/user_role.rb +130 -128
  43. data/app/models/camaleon_cms/widget/assigned.rb +25 -21
  44. data/app/models/camaleon_cms/widget/main.rb +40 -36
  45. data/app/models/camaleon_cms/widget/sidebar.rb +20 -16
  46. data/app/models/concerns/camaleon_cms/user_methods.rb +1 -1
  47. data/app/validators/camaleon_cms/post_uniq_validator.rb +28 -0
  48. data/app/validators/camaleon_cms/uniq_validator.rb +9 -0
  49. data/app/views/camaleon_cms/shortcode_templates/widget.html.erb +1 -1
  50. data/config/initializers/assets.rb +1 -1
  51. data/config/initializers/non_digest_assets.rb +3 -0
  52. data/config/locales/camaleon_cms/admin/ar.yml +1 -0
  53. data/config/locales/camaleon_cms/admin/de.yml +1 -0
  54. data/config/locales/camaleon_cms/admin/en.yml +82 -21
  55. data/config/locales/camaleon_cms/admin/fr.yml +1 -0
  56. data/config/locales/camaleon_cms/admin/it.yml +1 -0
  57. data/config/locales/camaleon_cms/admin/js/de.yml +51 -0
  58. data/config/locales/camaleon_cms/admin/js/en.yml +51 -0
  59. data/config/locales/camaleon_cms/admin/js/es.yml +53 -0
  60. data/config/locales/camaleon_cms/admin/js/it.yml +44 -0
  61. data/config/locales/camaleon_cms/admin/js/nl.yml +42 -0
  62. data/config/locales/camaleon_cms/admin/js/pt-BR.yml +44 -0
  63. data/config/locales/camaleon_cms/admin/js/ru.yml +51 -0
  64. data/config/locales/camaleon_cms/admin/js/uk.yml +51 -0
  65. data/config/locales/camaleon_cms/admin/js/zh-CN.yml +51 -0
  66. data/config/locales/camaleon_cms/admin/nl.yml +1 -0
  67. data/config/locales/camaleon_cms/admin/ru.yml +1 -0
  68. data/config/locales/camaleon_cms/admin/uk.yml +2 -1
  69. data/config/locales/camaleon_cms/admin/zh-CH.yml +1 -0
  70. data/config/locales/camaleon_cms/common.md +3 -0
  71. data/config/locales/camaleon_cms/common/ar.yml +66 -0
  72. data/config/locales/camaleon_cms/common/de.yml +66 -0
  73. data/config/locales/camaleon_cms/common/en.yml +63 -0
  74. data/config/locales/camaleon_cms/common/es.yml +66 -0
  75. data/config/locales/camaleon_cms/common/fr.yml +66 -0
  76. data/config/locales/camaleon_cms/common/it.yml +63 -0
  77. data/config/locales/camaleon_cms/common/md.yml +60 -0
  78. data/config/locales/camaleon_cms/common/nl.yml +64 -0
  79. data/config/locales/camaleon_cms/common/pt-BR.yml +65 -0
  80. data/config/locales/camaleon_cms/common/pt.yml +65 -0
  81. data/config/locales/camaleon_cms/common/ru.yml +66 -0
  82. data/config/locales/camaleon_cms/common/uk.yml +64 -0
  83. data/config/locales/camaleon_cms/common/zh-CN.yml +66 -0
  84. data/config/locales/camaleon_cms/languages/ar.yml +16 -0
  85. data/config/locales/camaleon_cms/languages/de.yml +16 -0
  86. data/config/locales/camaleon_cms/languages/en.yml +16 -0
  87. data/config/locales/camaleon_cms/languages/es.yml +16 -0
  88. data/config/locales/camaleon_cms/languages/it.yml +16 -0
  89. data/config/locales/camaleon_cms/languages/md.yml +15 -0
  90. data/config/locales/camaleon_cms/languages/nl.yml +16 -0
  91. data/config/locales/camaleon_cms/languages/pt-BR.yml +16 -0
  92. data/config/locales/camaleon_cms/languages/pt.yml +16 -0
  93. data/config/locales/camaleon_cms/languages/ru.yml +16 -0
  94. data/config/locales/camaleon_cms/languages/uk.yml +16 -0
  95. data/config/locales/camaleon_cms/languages/zh-CN.yml +16 -0
  96. data/config/locales/camaleon_cms/routes/de.yml +8 -0
  97. data/config/locales/camaleon_cms/routes/es.yml +8 -0
  98. data/config/locales/camaleon_cms/routes/fr.yml +8 -0
  99. data/config/locales/camaleon_cms/routes/it.yml +8 -0
  100. data/config/locales/camaleon_cms/routes/md.yml +8 -0
  101. data/config/locales/camaleon_cms/routes/pt-BR.yml +8 -0
  102. data/config/locales/camaleon_cms/routes/pt.yml +8 -0
  103. data/config/locales/camaleon_cms/routes/ru.yml +8 -0
  104. data/config/locales/camaleon_cms/routes/uk.yml +8 -0
  105. data/config/locales/camaleon_cms/routes/zh-CN.yml +8 -0
  106. data/config/locales/md.yml +207 -0
  107. data/config/routes/admin.rb +1 -1
  108. data/lib/camaleon_cms/version.rb +1 -1
  109. data/lib/generators/camaleon_cms/theme_template/views/layouts/index.html.erb +19 -16
  110. data/lib/plugin_routes.rb +1 -26
  111. data/spec/dummy/config/application.rb +15 -3
  112. data/spec/features/admin/not_found_spec.rb +10 -0
  113. metadata +132 -123
  114. data/app/assets/stylesheets/camaleon_cms/bootstrap.min.css.scss +0 -6799
  115. data/config/locales/camaleon_cms/admin/js.yml +0 -435
  116. data/config/locales/camaleon_cms/common.yml +0 -784
  117. data/config/locales/camaleon_cms/languages.yml +0 -167
  118. data/config/locales/camaleon_cms/routes.yml +0 -71
  119. data/spec/dummy/db/development.sqlite3 +0 -0
  120. data/spec/dummy/db/test.sqlite3 +0 -0
  121. data/spec/dummy/log/development.log +0 -233
  122. data/spec/dummy/log/test.log +0 -46368
  123. data/spec/dummy/public/media/1/rails_tmp.png +0 -0
  124. data/spec/dummy/public/media/1/rails_tmp_1.png +0 -0
  125. data/spec/dummy/public/media/1/rails_tmp_2.png +0 -0
  126. data/spec/dummy/public/media/1/rails_tmp_3.png +0 -0
  127. data/spec/dummy/public/media/1/sample/rails_tmp.png +0 -0
  128. data/spec/dummy/public/media/1/sample/thumb/rails_tmp-png.png +0 -0
  129. data/spec/dummy/public/media/1/slide33.jpg +0 -0
  130. data/spec/dummy/public/media/1/thumb/rails_tmp-png.png +0 -0
  131. data/spec/dummy/public/media/1/thumb/rails_tmp-png_20x.png +0 -0
  132. data/spec/dummy/public/media/1/thumb/rails_tmp-png_300x300.png +0 -0
  133. data/spec/dummy/public/media/1/thumb/rails_tmp-png_505x350.png +0 -0
  134. data/spec/dummy/public/media/1/thumb/rails_tmp_1-png.png +0 -0
  135. data/spec/dummy/public/media/1/thumb/rails_tmp_2-png.png +0 -0
  136. data/spec/dummy/public/media/1/thumb/rails_tmp_3-png.png +0 -0
  137. data/spec/dummy/public/media/1/thumb/slide33-jpg.jpg +0 -0
  138. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-13.472.html +0 -457
  139. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-13.472.png +0 -0
  140. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-28.693.html +0 -428
  141. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-28.693.png +0 -0
  142. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-22-45.502.html +0 -337
  143. data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-22-45.502.png +0 -0
  144. data/spec/support/fixtures/rails_tmp.png +0 -0
@@ -1,435 +0,0 @@
1
- en:
2
- camaleon_cms:
3
- admin:
4
- js:
5
- msg:
6
- approved: 'Approved'
7
- draft: 'Saved draft success'
8
- updated_success: 'Updated Successfully'
9
- edit_menu: 'Place each item in the order you prefer. Click on the icon of a pencil to edit the item and click the icon in the form of x to delete the item.'
10
- delete_item: 'Really want to delete this item?'
11
- remove_items_submenu: 'Really remove this item and its sub menu items?'
12
- you_must_upload_image: 'You must upload an image'
13
- you_must_upload_video: 'You must upload an video'
14
- no_response_fields: 'No response fields '
15
- you_must_upload_json_file: 'You must upload an json file'
16
- no_templates_defined: 'No templates defined'
17
- avatar_updated: 'Updated Avatar'
18
- form_error: 'Form Error'
19
- option_title: 'Option Title'
20
- permalink: 'Permalink'
21
- recover: 'Recovering...'
22
- type_contents: 'Type Contents'
23
- confirm_del: "Are you sure to delete this item?"
24
- media_title: 'Media Uploader'
25
- pending: 'Pending'
26
- preview: 'Preview'
27
- spam: 'Spam'
28
- view_page: 'View Page'
29
- view_draft: 'View Draft'
30
- processing: 'Processing...'
31
- upload_image: 'Upload Image'
32
-
33
- button:
34
- edit: "Edit"
35
- accept: "Accept"
36
- cancel: "Cancel"
37
- delete: "Delete"
38
- clone: "Clone"
39
- add_tag: 'Add Tag'
40
- close: 'Close'
41
- settings: 'Settings'
42
- save: "Save"
43
- submit: "Submit"
44
- name: "Name"
45
- size: "Size"
46
- insert: "Insert"
47
- url: "URL"
48
- root: "root"
49
- replace_image: 'Replace Image'
50
- save_new_image: 'Save New Image'
51
-
52
- zh-CN:
53
- camaleon_cms:
54
- admin:
55
- js:
56
- msg:
57
- approved: '批准'
58
- draft: '保存草稿成功'
59
- updated_success: '已成功更新'
60
- edit_menu: '按照您喜欢的顺序放置每个项目。单击铅笔的图标以编辑项目,然后单击 x 形式的图标以删除项目。'
61
- delete_item: '真的要删除此项吗?'
62
- remove_items_submenu: '真的删除此项目及其子菜单项?'
63
- you_must_upload_image: '您必须上传图片'
64
- you_must_upload_video: '您必须上传视频'
65
- no_response_fields: '无响应字段 '
66
- you_must_upload_json_file: '您必须上传一个 JSON 文件'
67
- no_templates_defined: '未定义模板'
68
- avatar_updated: '更新头像'
69
- form_error: '表单错误'
70
- option_title: '选项标题'
71
- permalink: '固定链接'
72
- pending: '待定'
73
- preview: '预览'
74
- spam: '无用'
75
- view_page: '查看页面'
76
- view_draft: '查看草稿'
77
- recover: '恢复...'
78
- processing: '处理中...'
79
- type_contents: '类型内容'
80
- upload_image: '上传图片'
81
- confirm_del: '您确定要删除此项目吗?'
82
- media_title: '媒体上传器'
83
- replace_image: '替换图片'
84
- save_new_image: '保存新图片'
85
-
86
- button:
87
- edit: '编辑'
88
- accept: '接受'
89
- cancel: '取消'
90
- delete: '刪除'
91
- clone: '克隆'
92
- add_tag: '添加标签'
93
- close: '关闭'
94
- settings: '设置'
95
- save: '保存'
96
- submit: '提交'
97
- name: '名称'
98
- size: '尺寸'
99
- insert: '插入'
100
- url: '网址'
101
- root: '根'
102
-
103
- pt-BR:
104
- camaleon_cms:
105
- admin:
106
- js:
107
- msg:
108
- approved: 'Aprovado'
109
- draft: 'Rascunho salvo com sucesso'
110
- updated_success: 'Atualizado com sucesso'
111
- edit_menu: 'Posicione cada item na ordem de sua preferência. Clique no ícone do lápis para editar o item e clique no formato de X para deletar o item.'
112
- delete_item: 'Realmente deseja deletar esse item?'
113
- remove_items_submenu: 'Realmente deseja remover esse item e seus sub menu items?'
114
- you_must_upload_image: 'Você deve fazer o upload de uma image'
115
- you_must_upload_video: 'Você deve fazer o upload de um vídeo'
116
- no_response_fields: 'Não há campos de resposta '
117
- you_must_upload_json_file: 'Você deve fazer o upload de um JSON'
118
- no_templates_defined: 'Não há templates definidos'
119
- avatar_updated: 'Avatar Atualizado'
120
- form_error: 'Erro no Form'
121
- option_title: 'Título de Opção'
122
- permalink: 'Link Permanente'
123
- recover: 'Recuperando...'
124
- type_contents: 'Conteúdo de Tipo'
125
- confirm_del: "Tem certeza que deseja deletar esse item?"
126
- media_title: 'Uploader de Mídia'
127
-
128
- button:
129
- edit: "Editar"
130
- accept: "Aceitar"
131
- cancel: "Cancelar"
132
- delete: "Deletar"
133
- clone: "Clonar"
134
- add_tag: 'Adicionar Tag'
135
- close: 'Fechar'
136
- settings: 'Configurações'
137
- save: "Salvar"
138
- submit: "Submeter"
139
- name: "Nome"
140
- size: "Tamanho"
141
- insert: "Inserir"
142
- url: "URL"
143
- root: "raiz"
144
- replace_image: 'Substituir imagem'
145
- save_new_image: 'Salvar Nova Imagem'
146
- es:
147
- camaleon_cms:
148
- admin:
149
- js:
150
- msg:
151
- approved: 'Aprovado'
152
- draft: 'Borrador guardado con éxito'
153
- updated_success: 'Actualizado correctamente'
154
- edit_menu: 'Coloque cada elemento en el orden que prefiera. Haga clic en el icono de un lápiz para editar el elemento y haga clic en el icono en forma de x para eliminar el elemento.'
155
- delete_item: 'Realmente quiere eliminar este elemento?'
156
- remove_items_submenu: 'Realmente eliminar este elemento y sus elementos de menú secundario?'
157
- you_must_upload_image: 'Usted debe cargar una imagen'
158
- you_must_upload_video: 'Usted debe subir un vídeo'
159
- no_response_fields: 'No hay campos de respuesta '
160
- you_must_upload_json_file: 'Usted debe cargar un archivo json'
161
- no_templates_defined: 'No hay plantillas definidas'
162
- avatar_updated: 'Fotografía Actualizada'
163
- form_error: 'Error Formulario'
164
- option_title: 'Opción Título'
165
- permalink: 'Enlace Permanente'
166
- pending: 'Pendiente'
167
- preview: 'Vista Previa'
168
- spam: 'No deseado'
169
- view_page: 'Ver Página'
170
- view_draft: 'Ver Borrador'
171
- recover: 'Recuperando...'
172
- processing: 'Procesando...'
173
- type_contents: 'Tipo de Contenidos'
174
- upload_image: 'Subir Imagen'
175
- confirm_del: "Esta seguro de eliminar este item?"
176
- media_title: 'Archivos'
177
-
178
- button:
179
- edit: "Edit"
180
- accept: "Accept"
181
- cancel: "Cancel"
182
- delete: "Delete"
183
- clone: "Duplicar"
184
- close: 'Cerrar'
185
- add_tag: 'Agregar Etiqueta'
186
- settings: 'Configuración'
187
- save: "Guardar"
188
- submit: "Ingresar"
189
- name: "Nombre"
190
- size: "Tamaño"
191
- insert: "Insertar"
192
- url: "URL"
193
- root: "Raiz"
194
- replace_image: 'Reemplazar Imagen'
195
- save_new_image: 'Guardar Nueva Imagen'
196
- auto_crop: 'Recorte Automático'
197
- edit_image: 'Editar Imagen'
198
-
199
- it:
200
- camaleon_cms:
201
- admin:
202
- js:
203
- msg:
204
- approved: 'Approvato'
205
- draft: 'Bozza salvata'
206
- label_required: "ergoineroinregfoin"
207
- placeholder_required: "rofmfvopfrmpvo"
208
- updated_success: 'Aggiornato'
209
- edit_menu: "Posiziona ogni elemento nell'ordine preferito. Clicca sull'icona della matita per modificarlo e sulla x per cancellarlo"
210
- delete_item: 'Vuoi davvero eliminare questo oggetto?'
211
- remove_items_submenu: 'Vuoi rimuovere questo oggetto e i suoi sotto menù?'
212
- you_must_upload_image: "Devi caricare un'immagine"
213
- you_must_upload_video: 'Devi caricare un video'
214
- no_response_fields: 'Nessuna replica'
215
- you_must_upload_json_file: 'Devi caricare un file JSON'
216
- no_templates_defined: 'Nessun template definito'
217
- avatar_updated: 'Aggiorna Avatar'
218
- form_error: 'Errore nel form'
219
- option_title: 'Opzioni titolo'
220
- permalink: 'Permalink'
221
- pending: 'In attesa'
222
- preview: 'Anteprima'
223
- spam: 'Spam'
224
- view_page: 'Vedi pagina'
225
- view_draft: 'Vedi Bozza'
226
- recover: 'Ripristino...'
227
- processing: 'Caricamento...'
228
- type_contents: 'Type Contents'
229
- upload_image: 'Carica Immagine'
230
- confirm_del: "Sei sicuro di voler eliminare l'articolo?"
231
- button:
232
- edit: "Edit"
233
- accept: "Accept"
234
- cancel: "Cancel"
235
- delete: "Delete"
236
- clone: "Duplicare"
237
- add_tag: 'Aggiungi Tag'
238
- close: 'Chiudi'
239
- settings: 'Impostazioni'
240
- save: "Salvare"
241
- submit: "Presentare"
242
- nl:
243
- camaleon_cms:
244
- admin:
245
- js:
246
- msg:
247
- approved: 'Goedgekeurd'
248
- draft: 'Concept succesvol opgeslagen'
249
- updated_success: 'Succesvol bijgewerkt'
250
- edit_menu: 'Plaatst elk item in de gewenste volgorde. Klik op het icoontje van een potlood om het item te bewerken en klik op het icoon in de vorm van x om het item te verwijderen.'
251
- delete_item: 'Wil je dit item echt verwijderen?'
252
- remove_items_submenu: 'Wilt je dit item en alle submenu-items echt verwijden?'
253
- you_must_upload_image: 'Je moet een afbeelding te uploaden'
254
- you_must_upload_video: 'Je moet een video te uploaden'
255
- no_response_fields: 'Geen reactie velden '
256
- you_must_upload_json_file: 'Je moet een JSON bestand uploaden'
257
- no_templates_defined: 'Geen sjablonen ingesteld'
258
- avatar_updated: 'Avatar bijgewerkt'
259
- form_error: 'Formulier fout'
260
- option_title: 'Optie titel'
261
- permalink: 'Permalink'
262
- recover: 'Herstelts...'
263
- type_contents: 'Type Inhoud'
264
- confirm_del: "Wil je dit item echt verwijderen?"
265
- media_title: 'Media Uploader'
266
-
267
- button:
268
- edit: "Bewerk"
269
- accept: "Accepteer"
270
- cancel: "Annuleer"
271
- delete: "Verwijder"
272
- clone: "Kopiëren"
273
- add_tag: 'Tag toevoegen'
274
- close: 'Sluiten'
275
- settings: 'Instellingen'
276
- save: "Opslaan"
277
- submit: "Verstuur"
278
- name: "Naam"
279
- size: "Grootte"
280
- insert: "Invoegen"
281
- url: "URL"
282
- root: "root"
283
-
284
- de:
285
- camaleon_cms:
286
- admin:
287
- js:
288
- msg:
289
- approved: 'Freigegeben'
290
- draft: 'Entwurft erfolgreich gespeichert'
291
- updated_success: 'Erfolgreich aktualisiert'
292
- edit_menu: 'Sortiere die Menüelemente nach deinem Geschmack. Klicke auf den Stift um das Element zu bearbeiten. Klick auf das X um das Element zu löschen.'
293
- delete_item: 'Willst du dieses Item wirklich löschen?'
294
- remove_items_submenu: 'Willst du dieses Item mit all seinen Sub-Menü-Items löschen?'
295
- you_must_upload_image: 'Du musst ein Bild hochladen'
296
- you_must_upload_video: 'Du musst ein Video hochladen'
297
- no_response_fields: 'Keine Antwortfelder '
298
- you_must_upload_json_file: 'Du musst eine JSON-Datei hochladen'
299
- no_templates_defined: 'Keine Templates definiert'
300
- avatar_updated: 'Avatar aktualisiert'
301
- form_error: 'Formularfehler'
302
- option_title: 'Option Titel'
303
- permalink: 'Permalink'
304
- recover: 'Stelle wieder her...'
305
- type_contents: 'Type Contents'
306
- confirm_del: "Bist du sicher, dass dieses Item gelöscht werden soll?"
307
- media_title: 'Media Uploader'
308
- pending: 'Nicht freigegeben'
309
- preview: 'Vorschau'
310
- spam: 'Spam'
311
- view_page: 'Seite ansehen'
312
- view_draft: 'Entwurf ansehen'
313
- processing: 'Bearbeite...'
314
- upload_image: 'Bilder hochladen'
315
-
316
- button:
317
- edit: "Bearbeiten"
318
- accept: "Akzeptieren"
319
- cancel: "Abbrechen"
320
- delete: "Löschen"
321
- clone: "Klonen"
322
- add_tag: 'Tag hinzufügen'
323
- close: 'Schließen'
324
- settings: 'Einstellungen'
325
- save: "Speichern"
326
- submit: "Absenden"
327
- name: "Name"
328
- size: "Größe"
329
- insert: "Einfügen"
330
- url: "URL"
331
- root: "Hauptverzeichnis"
332
- replace_image: 'Bild ersetzen'
333
- save_new_image: 'Neues Bild speichern'
334
-
335
- ru:
336
- camaleon_cms:
337
- admin:
338
- js:
339
- msg:
340
- approved: 'Утверждено'
341
- draft: 'Черновик сохранен'
342
- updated_success: 'Успішно оновлено'
343
- edit_menu: 'Разместите каждый элемент в порядке, который вы предпочитаете. Нажмите на значок карандаша, чтобы отредактировать элемент и нажмите значок в форме х, чтобы удалить элемент.'
344
- delete_item: 'Удалить этот элемент?'
345
- remove_items_submenu: 'Удалить элемент и его подменю?'
346
- you_must_upload_image: 'Необходимо загрузить изображение'
347
- you_must_upload_video: 'Необходимо загрузить видео'
348
- no_response_fields: 'Нет ответа'
349
- you_must_upload_json_file: 'Необходимо загрузить файл в формате json'
350
- no_templates_defined: 'Шаблон не выбран'
351
- avatar_updated: 'Аватар обновлен'
352
- form_error: 'Ошибка формы'
353
- option_title: 'Название опции'
354
- permalink: 'Постоянная ссылка'
355
- recover: 'Восстановление...'
356
- type_contents: 'Тип контента'
357
- confirm_del: "Вы уверены, что хотите удалить этот элемент?"
358
- media_title: 'Медиа загрузка'
359
- pending: 'Ожидание'
360
- preview: 'Предпросмотр'
361
- spam: 'Спам'
362
- view_page: 'Посмотреть страницу'
363
- view_draft: 'Посмотреть черновик'
364
- processing: 'Обработка...'
365
- upload_image: 'Загрузить'
366
-
367
- button:
368
- edit: "Редактировать"
369
- accept: "Принять"
370
- cancel: "Отменить"
371
- delete: "Удалить"
372
- clone: "Копировать"
373
- add_tag: 'Добавить тэг'
374
- close: 'Закрыть'
375
- settings: 'Настройки'
376
- save: "Сохранить"
377
- submit: "Сохранить"
378
- name: "Имя"
379
- size: "Размер"
380
- insert: "Вставить"
381
- url: "URL"
382
- root: "корень"
383
- replace_image: 'Изменить изображение'
384
- save_new_image: 'Сохранить новое изображение'
385
-
386
- uk:
387
- camaleon_cms:
388
- admin:
389
- js:
390
- msg:
391
- approved: 'Затверджено'
392
- draft: 'Ескіз збережено'
393
- updated_success: 'Успішно оновлено'
394
- edit_menu: 'Розмістіть кожен елемент у порядку, якому ви віддаєте перевагу. Натисніть на значок олівця, щоб відредагувати елемент і натисніть значок у формі х, щоб видалити елемент.'
395
- delete_item: 'Дійсно хочете видалити цей елемент?'
396
- remove_items_submenu: 'Дійсно видалити цей елемент та його підменю?'
397
- you_must_upload_image: 'Вам потрібно завантажити зображення'
398
- you_must_upload_video: 'Вам потрібно завантажити відео'
399
- no_response_fields: 'Немає відповіді '
400
- you_must_upload_json_file: 'Вам потрібно завантажити файл у форматі json'
401
- no_templates_defined: 'Не визначено шаблонів'
402
- avatar_updated: 'Аватар оновлено'
403
- form_error: 'Помилка форми'
404
- option_title: 'Назва опції'
405
- permalink: 'Постійне посилання'
406
- recover: 'Відновлення...'
407
- type_contents: 'Тип вмісту'
408
- confirm_del: "Ви впевнені, що чочете видалити цей елемент?"
409
- media_title: 'Медіа-завантажувач'
410
- pending: 'Очікує'
411
- preview: 'Перегляд'
412
- spam: 'Спам'
413
- view_page: 'Переглянути сторінку'
414
- view_draft: 'Переглянути ескіз'
415
- processing: 'Обробка...'
416
- upload_image: 'Завантажити'
417
-
418
- button:
419
- edit: "Редагувати"
420
- accept: "Прийняти"
421
- cancel: "Скасувати"
422
- delete: "Видалити"
423
- clone: "Клонувати"
424
- add_tag: 'Додати тег'
425
- close: 'Закрити'
426
- settings: 'Налаштування'
427
- save: "Зберегти"
428
- submit: "Відправити"
429
- name: "Імʼя"
430
- size: "Розмір"
431
- insert: "Вставити"
432
- url: "URL"
433
- root: "корінь"
434
- replace_image: 'Замінити зображення'
435
- save_new_image: 'Зберегти нове зображення'
@@ -1,784 +0,0 @@
1
- # encoding: utf-8
2
- # this is used for common translations plugin
3
- # note: doesn't support multi level
4
- ar:
5
- camaleon_cms:
6
- common:
7
- profile: "الملف الشخصي"
8
- dashboard: "لوحة التحكم"
9
- read_more: "أقرا المزيد"
10
- submit: "إرسال"
11
- send: "إرسال"
12
- login: "تسجيل الدخول"
13
- logout: "تسجيل الخروج"
14
- confirm: "هل أنت متأكد?"
15
- register: "تسجيل"
16
- proceted_article: 'Protected article'
17
-
18
- comment_msg: "يجب تسجيل الدخول لنشر تعليق"
19
- comment: "تعليق"
20
- comments: "تعليقات"
21
- message: "رسائل"
22
- leave_comment: "ترك تعليق"
23
- comment_new: "اضافة تعليق"
24
- comment_saved: "تم حفظ التعليق"
25
- comment_error: "لم يتم حفظ التعليق"
26
- comment_reply: "الرد"
27
- edit: "تعديل"
28
-
29
- recent_posts: "المشاركات الاخيره"
30
-
31
-
32
- search_msg: "نتائج البحث عن:"
33
- search_not_found: "لم يتم العثور علي عناصر البحث"
34
- category_list: "قائمة الفئات"
35
- post_tag_list: "Tag List"
36
- sub_category_list: "Sub Category List"
37
- content_list: "المحتويات: %s"
38
- visit: "زياره"
39
- no_contents_found: "لم يتم العثور علي محتويات"
40
- no_results_found: "لم يتم العثور علي نتائج"
41
-
42
- author: "المؤلف"
43
- site: "الموقع"
44
- categories: "الفئات"
45
- next: "التالي"
46
- prev: "السابق"
47
- current: "الحاليه"
48
- search: "بحث"
49
- file_format_error: "File format not allowed"
50
- file_size_exceeded: "File size exceeded"
51
-
52
- notice: "News "
53
- share: "Share on"
54
- share_facebook: "Share Facebook"
55
- share_twitter: "Share Twitter"
56
- share_google_plus: "Share Google Plus"
57
- back_top: "Back to Top"
58
- total_followers_social: "Total of followers on social networks"
59
- latest_articles: "Latest Articles"
60
- photo_gallery: "Photo gallery"
61
- home_galleries: "Go to the home of galleries"
62
- addition: "Addition"
63
- view_all_news: "View all news"
64
- extra_attributes: "Extra Attributes"
65
-
66
- will_paginate:
67
- previous_label: 'Previous'
68
- next_label: 'Next'
69
-
70
- de:
71
- camaleon_cms:
72
- common:
73
- profile: "Profil"
74
- dashboard: "Dashboard"
75
- read_more: "Mehr lesen"
76
- submit: "Absenden"
77
- send: "Senden"
78
- login: "Login"
79
- logout: "Logout"
80
- confirm: "Bist du sicher?"
81
- register: "Registrieren"
82
- proceted_article: 'Geschützter Artikel'
83
-
84
- comment_msg: "Du musst eingeloggt sein, um kommentieren zu können"
85
- comment: "Kommentar"
86
- comments: "Kommentare"
87
- message: "Nachricht"
88
- leave_comment: "Schreibe einen Kommentar"
89
- comment_new: "Neuer Kommentar"
90
- comment_saved: "Dein Kommentar wurde gespeichert"
91
- comment_error: "Es gab einen Fehler beim Speichern des Kommentars"
92
- comment_reply: "Antworten"
93
- edit: "Bearbeiten"
94
-
95
- recent_posts: "Neuste Posts"
96
-
97
-
98
- search_msg: "Suchergebnisse für:"
99
- search_not_found: "Die Suche ergab keine Treffer"
100
- category_list: "Kategorieliste"
101
- post_tag_list: "Tag-Liste"
102
- sub_category_list: "Unterkategorieliste"
103
- content_list: "Content-Liste: %s"
104
- visit: "Besuchen"
105
- no_contents_found: "Keine Inhalte gefunden"
106
- no_results_found: "Keine Ergebnisse"
107
-
108
- author: "Autor"
109
- site: "Seite"
110
- categories: "Kategorien"
111
- next: "Nächste"
112
- prev: "Vorherige"
113
- current: "Aktuell"
114
- search: "Suche"
115
- file_format_error: "Dateiformat nicht erlaubt"
116
- file_size_exceeded: "Dateigröße überschritten"
117
-
118
- notice: "Nachrichten "
119
- share: "Teilen auf"
120
- share_facebook: "Teilen auf Facebook"
121
- share_twitter: "Teilen auf Twitter"
122
- share_google_plus: "Teilen auf Google Plus"
123
- back_top: "Zum Anfang"
124
- total_followers_social: "Follower in Sozialen Netzwerken"
125
- latest_articles: "Neuste Artikel"
126
- photo_gallery: "Fotogallerie"
127
- home_galleries: "Zur Galleriestartseite"
128
- addition: "Addition"
129
- view_all_news: "All Neuigkeiten sehen"
130
- extra_attributes: "Extra-Attribute"
131
-
132
- will_paginate:
133
- previous_label: 'Vorherige'
134
- next_label: 'Nächste'
135
-
136
-
137
- en:
138
- camaleon_cms:
139
- common:
140
- profile: "Profile"
141
- dashboard: "Dashboard"
142
- read_more: "Read More"
143
- submit: "Submit"
144
- send: "Send"
145
- login: "Login"
146
- logout: "Logout"
147
- confirm: "Are you sure?"
148
- register: "Register"
149
- proceted_article: 'Protected article'
150
-
151
- comment_msg: "You must be logged in to post a comment"
152
- comment: "Comment"
153
- comments: "Comments"
154
- message: "Message"
155
- leave_comment: "Leave a comment"
156
- comment_new: "New Comment"
157
- comment_saved: "Your comment was saved"
158
- comment_error: "An error was occurred on save comment"
159
- comment_reply: "Reply"
160
- edit: "Edit"
161
-
162
- recent_posts: "Recent Posts"
163
-
164
-
165
- search_msg: "Search Results for:"
166
- search_not_found: "Search items were not found to list"
167
- category_list: "Category List"
168
- post_tag_list: "Tag List"
169
- sub_category_list: "Sub Category List"
170
- content_list: "Content list: %s"
171
- visit: "Visit"
172
- no_contents_found: "No contents found"
173
- no_results_found: "No results found"
174
-
175
- author: "Author"
176
- site: "Site"
177
- categories: "Categories"
178
- next: "Next"
179
- prev: "Prev"
180
- current: "Current"
181
- search: "Search"
182
- file_format_error: "File format not allowed"
183
- file_size_exceeded: "File size exceeded"
184
-
185
- notice: "News "
186
- share: "Share on"
187
- share_facebook: "Share Facebook"
188
- share_twitter: "Share Twitter"
189
- share_google_plus: "Share Google Plus"
190
- back_top: "Back to Top"
191
- total_followers_social: "Total of followers on social networks"
192
- latest_articles: "Latest Articles"
193
- photo_gallery: "Photo gallery"
194
- home_galleries: "Go to the home of galleries"
195
- addition: "Addition"
196
- view_all_news: "View all news"
197
- extra_attributes: "Extra Attributes"
198
-
199
- will_paginate:
200
- previous_label: 'Previous'
201
- next_label: 'Next'
202
-
203
- es:
204
- camaleon_cms:
205
- common:
206
- read_more: "Leer Más"
207
- submit: "Ingresar"
208
- send: "Enviar"
209
- login: "Ingresar"
210
- logout: "Salir"
211
- confirm: "Estas seguro?"
212
- register: "Registrarse"
213
- reload: 'Recargar'
214
- clear_cache: 'Limpiar Caché'
215
-
216
- comment_msg: "Tu debes estar logeado para comentar"
217
- comment: "Comentario"
218
- leave_comment: "Dejar un comentario"
219
- comments: "Comentarios"
220
- message: "Mensaje"
221
- comment_new: "Nuevo Comentario"
222
- comment_saved: "Su comentario se a guardado"
223
- comment_error: "Ocurrió un error al enviar su comentario"
224
- comment_reply: "Respuesta"
225
- edit: "Editar"
226
-
227
- recent_posts: "Artículos Recientes"
228
-
229
-
230
- search_msg: "Resultados de búsqueda para: "
231
- search_not_found: "Elementos de busqueda no se encontraron para listar"
232
- category_list: "Lista de Categorías"
233
- post_tag_list: "Lista de Etiquetas"
234
- sub_category_list: "Lista de Sub Categorías"
235
- content_list: "Lista de contenidos: %s"
236
- visit: "Visitar"
237
- no_contents_found: "No se encontraron contenidos"
238
- no_results_found: "No se encontraron resultados"
239
-
240
- author: "Autor"
241
- site: "Sitio"
242
- categories: "Categorías"
243
- next: "Siguiente"
244
- prev: "Anterior"
245
- current: "Actual"
246
- search: "Buscar"
247
- file_format_error: "Formato de archivo no permitido"
248
- file_size_exceeded: "Tamaño excedido"
249
-
250
- notice: "Noticias de "
251
- share: "Comparte en"
252
- share_facebook: "Compartir en Facebook"
253
- share_twitter: "Compartir en Twitter"
254
- share_google_plus: "Compartir en Google Plus"
255
- back_top: "Volver arriba"
256
- total_followers_social: "Total de seguidores en redes sociales"
257
- latest_articles: "Ultimos Articulos"
258
- related_articles: 'Artículos Relacionados'
259
- photo_gallery: "Galerías de fotos"
260
- home_galleries: "Ir a la portada de galerias"
261
- addition: "Ademas"
262
- view_all_news: "Ver todas las noticias"
263
- extra_attributes: "Otros Atributos"
264
-
265
- will_paginate:
266
- previous_label: 'Anterior'
267
- next_label: 'Siguiente'
268
-
269
- it:
270
- camaleon_cms:
271
- common:
272
- read_more: "Leggi tutto"
273
- submit: "Conferma"
274
- send: "Invia"
275
- login: "Login"
276
- logout: "Logout"
277
- confirm: "Confermi?"
278
- register: "Registrazione"
279
-
280
- comment_msg: "Devi essere loggato per poter commentare"
281
- comment: "Commento"
282
- comments: "Commenti"
283
- message: "Messaggio"
284
- leave_comment: "Lascia un commento"
285
- comment_new: "Nuovo Commento"
286
- comment_saved: "Il tuo commento è stato salvato"
287
- comment_error: "C'è stato un errore durante il salvataggio del commento"
288
- comment_reply: "Rispondi"
289
- edit: "Modifica"
290
-
291
- recent_posts: "Articoli recenti"
292
-
293
-
294
- search_msg: "Risultati della ricerca per:"
295
- search_not_found: "Nessun risultato trovato"
296
- category_list: "Lista categorie"
297
- post_tag_list: "Lista tag"
298
- sub_category_list: "Lista sottocategorie"
299
- content_list: "Lista Contenuti: %s"
300
- visit: "Visita"
301
- no_contents_found: "Nessun contenuto trovato"
302
- no_results_found: "Nessun risultato trovato"
303
-
304
- author: "Autore"
305
- site: "Sito"
306
- categories: "Categorie"
307
- next: "Successivo"
308
- prev: "Precedente"
309
- current: "Corrente"
310
- search: "Cerca"
311
- file_format_error: "Formato file non accettato"
312
- file_size_exceeded: "File troppo grande"
313
-
314
- notice: "News"
315
- share: "Condividi su"
316
- share_facebook: "Condividi su Facebook"
317
- share_twitter: "Condividi su Twitter"
318
- share_google_plus: "Condividi su Google Plus"
319
- back_top: "Torna su"
320
- total_followers_social: "Follower totali sui social network"
321
- latest_articles: "Ultimi articoli"
322
- photo_gallery: "Galleria foto"
323
- home_galleries: "Vai alla home delle gallerie"
324
- addition: "Aggiungi"
325
- view_all_news: "Vedi tutte le news"
326
- extra_attributes: "Attributi extra"
327
-
328
- will_paginate:
329
- previous_label: 'Precedente'
330
- next_label: 'Successivo'
331
-
332
- nl:
333
- camaleon_cms:
334
- common:
335
- read_more: "Lees meer"
336
- submit: "Verstuur"
337
- send: "Verstuur"
338
- login: "Login"
339
- logout: "Uitloggen"
340
- confirm: "Weet je het zeker?"
341
- register: "Registreer"
342
- proceted_article: 'Beveiligd artikel'
343
-
344
- comment_msg: "Je moet inglogd zijn om een reactie te plaatsen"
345
- comment: "Reactie"
346
- comments: "Reacties"
347
- message: "Message"
348
- leave_comment: "Laat een reactie achter"
349
- comment_new: "Nieuwe Reactie"
350
- comment_saved: "Je reactie is opgeslagen"
351
- comment_error: "Er heeft zich een fout voorgedaan bij het opslaan van je reactie"
352
- comment_reply: "Antwoord"
353
- edit: "Bewerk"
354
-
355
- recent_posts: "Recente Berichten"
356
-
357
-
358
- search_msg: "Zoekresultaten voor:"
359
- search_not_found: "Er zijn geen zoekresultaten gevonden"
360
- category_list: "categorieën Overzicht"
361
- post_tag_list: "Tag Overzicht"
362
- sub_category_list: "subcategorieën Overzicht"
363
- content_list: "Inhoud Overzicht: %s"
364
- visit: "Bezoek"
365
- no_contents_found: "Geen inhoud gevonden"
366
- no_results_found: "Geen resultaten gevonden"
367
-
368
- author: "Auteur"
369
- site: "Site"
370
- categories: "Categorieën"
371
- next: "Volgende"
372
- prev: "Vorige"
373
- current: "Huidig"
374
- search: "Zoeken"
375
- file_format_error: "Bestandstype niet toegstaan"
376
- file_size_exceeded: "Bestandsgroote overschreden"
377
-
378
- notice: "Nieuws "
379
- share: "Delen op"
380
- share_facebook: "Deel op Facebook"
381
- share_twitter: "Deel op Twitter"
382
- share_google_plus: "Deel op Google+"
383
- back_top: "Terug naar boven"
384
- total_followers_social: "Totaal aantal volgers op sociale media"
385
- latest_articles: "Laatste Berichten"
386
- photo_gallery: "Fotogallerij"
387
- home_galleries: "Naar hetfotogallerijen overzicht"
388
- addition: "Toevoeging"
389
- view_all_news: "Al het nieuws bekijken"
390
- extra_attributes: "Extra Attributen"
391
-
392
- will_paginate:
393
- previous_label: 'Vorige'
394
- next_label: 'Volgende'
395
-
396
- uk:
397
- camaleon_cms:
398
- common:
399
- read_more: "Читати далі"
400
- submit: "Відправити"
401
- send: "Відправити"
402
- login: "Вхід"
403
- logout: "Вихід"
404
- confirm: "Ви підтверджуєте?"
405
- register: "Зареєструватися"
406
- proceted_article: 'Захищена стаття'
407
-
408
- comment_msg: "Вам нужно войти чтобы оставить комментарий"
409
- comment: "Коментар"
410
- comments: "Коментарі"
411
- message: "Повідомлення"
412
- leave_comment: "Залишити коментар"
413
- comment_new: "Новий коментар"
414
- comment_saved: "Ваш коментар був збережений"
415
- comment_error: "Сталася помилка при збереженні коментаря"
416
- comment_reply: "Відповісти"
417
- edit: "Редагувати"
418
-
419
- recent_posts: "Недавні пости"
420
-
421
-
422
- search_msg: "Результати пошуку для:"
423
- search_not_found: "Пошук не дав результатів"
424
- category_list: "Список категорій"
425
- post_tag_list: "Список тегів"
426
- sub_category_list: "Список підкатегорій"
427
- content_list: "Список вмісту: %s"
428
- visit: "Відвідати"
429
- no_contents_found: "Вміст не знайдений"
430
- no_results_found: "Результатів не знайдено"
431
-
432
- author: "Автор"
433
- site: "Сайт"
434
- categories: "Категоріі"
435
- next: "Наступний"
436
- prev: "Попередній"
437
- current: "Поточний"
438
- search: "Пошук"
439
- file_format_error: "Формат файла заборонений"
440
- file_size_exceeded: "Розмір файлу перевищений"
441
-
442
- notice: "Новини"
443
- share: "Поділитися"
444
- share_facebook: "Поділитися у Facebook"
445
- share_twitter: "Поділитися у Twitter"
446
- share_google_plus: "Поділитися у Google Plus"
447
- back_top: "Повернутись до початку"
448
- total_followers_social: "Всього послідовників в соціальних мережах"
449
- latest_articles: "Останні статті"
450
- photo_gallery: "Фотогалерея"
451
- home_galleries: "Перейти на головну галерею"
452
- addition: "Доповнення"
453
- view_all_news: "Переглянути всі новини"
454
- extra_attributes: "Додаткові атрибуты"
455
-
456
- will_paginate:
457
- previous_label: 'Попередній'
458
- next_label: 'Наступний'
459
-
460
- ru:
461
- camaleon_cms:
462
- common:
463
- read_more: "Прочитать больше"
464
- submit: "Отправить"
465
- send: "Отправить"
466
- login: "Вход"
467
- logout: "Выход"
468
- confirm: "Вы подтверждаете?"
469
- register: "Зарегистрироваться"
470
- proceted_article: 'Защищенная статья'
471
-
472
- comment_msg: "Вам нужно войти чтобы оставить комментарий"
473
- comment: "Комментарий"
474
- comments: "Комментарии"
475
- message: "Сообщение"
476
- leave_comment: "Оставить комментарий"
477
- comment_new: "Новый комментарий"
478
- comment_saved: "Ваш комментарий был сохранен"
479
- comment_error: "Произошла ошибка при сохранении комментария"
480
- comment_reply: "Ответить"
481
- edit: "Редактировать"
482
-
483
- recent_posts: "Недавние Посты"
484
-
485
-
486
- search_msg: "Результаты поиска для:"
487
- search_not_found: "Search items were not found to list"
488
- category_list: "Список категорий"
489
- post_tag_list: "Список тегов"
490
- sub_category_list: "Список подкатегорий"
491
- content_list: "Список контентов: %s"
492
- visit: "Посетить"
493
- no_contents_found: "Контенты не найдены"
494
- no_results_found: "Результатов не найдено"
495
-
496
- author: "Автор"
497
- site: "Сайт"
498
- categories: "Категории"
499
- next: "Следующий"
500
- prev: "Предыдущий"
501
- current: "Текущий"
502
- search: "Поиск"
503
- file_format_error: "Формат файла запрещен"
504
- file_size_exceeded: "Превышен допустимый размер файла"
505
-
506
- notice: "Новости "
507
- share: "Поделиться"
508
- share_facebook: "Поделиться Facebook"
509
- share_twitter: "Поделиться Twitter"
510
- share_google_plus: "Поделиться Google Plus"
511
- back_top: "Вернуться к началу"
512
- total_followers_social: "Всего последователей в социальных сетях"
513
- latest_articles: "Последние статьи"
514
- photo_gallery: "Фотогалерея"
515
- home_galleries: "Перейти на главную галерею"
516
- addition: "Дополнение"
517
- view_all_news: "Смотреть все новости"
518
- extra_attributes: "Дополнительные атрибуты"
519
-
520
- will_paginate:
521
- previous_label: 'Предыдущий'
522
- next_label: 'Следующий'
523
-
524
- pt:
525
- camaleon_cms:
526
- common:
527
- profile: "Perfil"
528
- dashboard: "Página Inicial"
529
- read_more: "Ler Mais"
530
- submit: "Submeter"
531
- send: "Enviar"
532
- login: "Login"
533
- logout: "Sair"
534
- confirm: "Tem certeza?"
535
- register: "Registar"
536
- proceted_article: 'Artigo Protegido'
537
-
538
- comment_msg: "Deverá fazer login para poder comentar"
539
- comment: "Comentário"
540
- comments: "Comentários"
541
- message: "Mensagem"
542
- leave_comment: "Deixar um comentário"
543
- comment_new: "Novo comentário"
544
- comment_saved: "Seu comentário foi salvo"
545
- comment_error: "Ocorreu um erro ao tentar gravar o comentário"
546
- comment_reply: "Responder"
547
- edit: "Editar"
548
-
549
- recent_posts: "Publicações Recentes"
550
-
551
- search_msg: "Procurar Resultados para:"
552
- search_not_found: "A busca não encontrou nenhum resultado"
553
- category_list: "Listagem de Categorias"
554
- post_tag_list: "Lista de Tags"
555
- sub_category_list: "Lista de Sub Categorias"
556
- content_list: "Lista de Conteúdo: %s"
557
- visit: "Visitar"
558
- no_contents_found: "Nenhum conteúdo encontrado"
559
- no_results_found: "Nenhum resultado encontrado"
560
-
561
- author: "Autor"
562
- site: "Sítio"
563
- categories: "Categorias"
564
- next: "Próximo"
565
- prev: "Anterior"
566
- current: "Atual"
567
- search: "Procurar"
568
- file_format_error: "Formato de arquivo não permitido"
569
- file_size_exceeded: "Tamanho do arquivo excedeu o limite"
570
-
571
- notice: "Novidades "
572
- share: "Partilhar em"
573
- share_facebook: "Partilhar no Facebook"
574
- share_twitter: "Partilhar no Twitter"
575
- share_google_plus: "Partilhar no Google Plus"
576
- back_top: "Voltar para o topo"
577
- total_followers_social: "Total de seguidores nas redes sociais"
578
- latest_articles: "Últimos Artigos"
579
- photo_gallery: "Galeria de Fotos"
580
- home_galleries: "Ir para a página principal das Categorias"
581
- addition: "Adição"
582
- view_all_news: "Ver todas as notícias"
583
- extra_attributes: "Atributos Extra"
584
-
585
- will_paginate:
586
- previous_label: 'Anterior'
587
- next_label: 'Seguinte'
588
-
589
- pt-BR:
590
- camaleon_cms:
591
- common:
592
- profile: "Perfil"
593
- dashboard: "Página Inicial"
594
- read_more: "Ler Mais"
595
- submit: "Submeter"
596
- send: "Enviar"
597
- login: "Login"
598
- logout: "Sair"
599
- confirm: "Você tem certeza?"
600
- register: "Registrar"
601
- proceted_article: 'Artigo Protegido'
602
-
603
- comment_msg: "Você deve estar logado para postar um comentário"
604
- comment: "Comentário"
605
- comments: "Comentários"
606
- message: "Mensagem"
607
- leave_comment: "Deixar um comentário"
608
- comment_new: "Novo comentário"
609
- comment_saved: "Seu comentário foi salvo"
610
- comment_error: "Ocorreu um erro ao tentar salvar o comentário"
611
- comment_reply: "Responder"
612
- edit: "Editar"
613
-
614
- recent_posts: "Posts Recentes"
615
-
616
- search_msg: "Procurar Resultados para:"
617
- search_not_found: "A busca não achou nenhum item"
618
- category_list: "Listagem de Categorias"
619
- post_tag_list: "Lista de Tags"
620
- sub_category_list: "Lista de Sub Categorias"
621
- content_list: "Lista de Conteúdo: %s"
622
- visit: "Visitar"
623
- no_contents_found: "Nenhum conteúdo encontrado"
624
- no_results_found: "Nenhum resultado encontrado"
625
-
626
- author: "Autor"
627
- site: "Site"
628
- categories: "Categorias"
629
- next: "Próximo"
630
- prev: "Anterior"
631
- current: "Atual"
632
- search: "Procurar"
633
- file_format_error: "Formato de arquivo não permitido"
634
- file_size_exceeded: "Tamanho do arquivo excedeu o limite"
635
-
636
- notice: "Novidades "
637
- share: "Compatilhar em"
638
- share_facebook: "Compartilhar no Facebook"
639
- share_twitter: "Compartilhar no Twitter"
640
- share_google_plus: "Compartilhar no Google Plus"
641
- back_top: "Voltar para o topo"
642
- total_followers_social: "Total de seguidores nas redes sociais"
643
- latest_articles: "Últimos Artigos"
644
- photo_gallery: "Galeria de Fotos"
645
- home_galleries: "Ir para a home das Categorias"
646
- addition: "Adição"
647
- view_all_news: "Ver todas as notícias"
648
- extra_attributes: "Atributos Extras"
649
-
650
- will_paginate:
651
- previous_label: 'Anterior'
652
- next_label: 'Próximo'
653
-
654
- fr:
655
- camaleon_cms:
656
- common:
657
- profile: "Profil"
658
- dashboard: "Tableau de bord"
659
- read_more: "En savoir plus"
660
- submit: "Soumettre"
661
- send: "Envoyer"
662
- login: "Connexion"
663
- logout: "Déconnexion"
664
- confirm: "Êtes-vous sûr?"
665
- register: "Enregistrer"
666
- proceted_article: 'Article protégé'
667
-
668
- comment_msg: "Vous devez être connecté pour publier un commentaire"
669
- comment: "Commentaire"
670
- comments: "Commentaires"
671
- message: "Message"
672
- leave_comment: "Laisser un commentaire"
673
- comment_new: "Nouveau commentaire"
674
- comment_saved: "Votre commentaire est enregistré"
675
- comment_error: "Une erreur est survenue lors de l'enregistrement du commentaire"
676
- comment_reply: "Répondre"
677
- edit: "Editer"
678
-
679
- recent_posts: "Posts récents"
680
-
681
-
682
- search_msg: "Chercher des résultats pour:"
683
- search_not_found: "Aucun résultat ne correspond aux critères de recherche."
684
- category_list: "Liste des catégories"
685
- post_tag_list: "Liste des tags"
686
- sub_category_list: "Liste des sous-catégories"
687
- content_list: "Liste de contenu : %s"
688
- visit: "Visite"
689
- no_contents_found: "Aucun contenu trouvé"
690
- no_results_found: "Aucun résultat trouvé"
691
-
692
- author: "Auteur"
693
- site: "Site"
694
- categories: "Catégories"
695
- next: "Suivant"
696
- prev: "Précédent"
697
- current: "Courant"
698
- search: "Rechercher"
699
- file_format_error: "Format de fichier invalide"
700
- file_size_exceeded: "Taille du fichier excessive"
701
-
702
- notice: "Nouvelles "
703
- share: "Partager sur"
704
- share_facebook: "Partage sur Facebook"
705
- share_twitter: "Partager sur Twitter"
706
- share_google_plus: "Partager sur Google Plus"
707
- back_top: "Retour en haut"
708
- total_followers_social: "Total de followers sur les réseaux sociaux"
709
- latest_articles: "Derniers articles"
710
- photo_gallery: "Galerie photo"
711
- home_galleries: "Aller à l'accueil des galeries"
712
- addition: "Addition"
713
- view_all_news: "Voir toutes les nouvelles"
714
- extra_attributes: "Attributs extras"
715
-
716
- will_paginate:
717
- previous_label: 'Précédent'
718
- next_label: 'Suivant'
719
-
720
- zh-CN:
721
- camaleon_cms:
722
- common:
723
- profile: "简介"
724
- dashboard: "主页"
725
- read_more: "更多"
726
- submit: "提交"
727
- send: "发送"
728
- login: "登录"
729
- logout: "注销"
730
- confirm: "是否确定?"
731
- register: "注册"
732
- proceted_article: '受保护的文章'
733
-
734
- comment_msg: "您必须登录才能发表评论"
735
- comment: "评论"
736
- comments: "评论"
737
- message: "消息"
738
- leave_comment: "发表评论"
739
- comment_new: "新评论"
740
- comment_saved: "评论已经保存"
741
- comment_error: "保存评论时发生错误"
742
- comment_reply: "回复"
743
- edit: "编辑"
744
-
745
- recent_posts: "最近发布内容"
746
-
747
-
748
- search_msg: "搜索结果:"
749
- search_not_found: "找不到列表中的搜索项"
750
- category_list: "分类列表"
751
- post_tag_list: "标签列表"
752
- sub_category_list: "子分类列表"
753
- content_list: "内容列表: %s"
754
- visit: "访问"
755
- no_contents_found: "未找到内容"
756
- no_results_found: "未找到结果"
757
-
758
- author: "作者"
759
- site: "站点"
760
- categories: "分类"
761
- next: "向下"
762
- prev: "向上"
763
- current: "当前"
764
- search: "搜索"
765
- file_format_error: "文件格式不允许"
766
- file_size_exceeded: "超过文件大小"
767
-
768
- notice: "新闻"
769
- share: "分享"
770
- share_facebook: "分享到 Facebook"
771
- share_twitter: "分享到 Twitter"
772
- share_google_plus: "分享到 Google Plus"
773
- back_top: "返回顶部"
774
- total_followers_social: "社交网络上的关注者总数"
775
- latest_articles: "最新文章"
776
- photo_gallery: "照片库"
777
- home_galleries: "返回图片库"
778
- addition: "添加"
779
- view_all_news: "查看所有新闻"
780
- extra_attributes: "额外属性"
781
-
782
- will_paginate:
783
- previous_label: '上一页'
784
- next_label: '下一页'