camaleon_cms 2.5.3.1 → 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.
- checksums.yaml +4 -4
- data/app/apps/plugins/front_cache/front_cache_helper.rb +1 -1
- data/app/assets/images/camaleon_cms/language/md.png +0 -0
- data/app/models/camaleon_cms/ability.rb +94 -92
- data/app/models/camaleon_cms/category.rb +45 -44
- data/app/models/camaleon_cms/custom_field.rb +26 -25
- data/app/models/camaleon_cms/custom_field_group.rb +115 -114
- data/app/models/camaleon_cms/custom_fields_relationship.rb +21 -19
- data/app/models/camaleon_cms/media.rb +48 -44
- data/app/models/camaleon_cms/meta.rb +5 -3
- data/app/models/camaleon_cms/nav_menu.rb +27 -24
- data/app/models/camaleon_cms/nav_menu_item.rb +58 -54
- data/app/models/camaleon_cms/plugin.rb +62 -60
- data/app/models/camaleon_cms/post.rb +205 -227
- data/app/models/camaleon_cms/post_comment.rb +44 -42
- data/app/models/camaleon_cms/post_default.rb +65 -62
- data/app/models/camaleon_cms/post_relationship.rb +1 -2
- data/app/models/camaleon_cms/post_tag.rb +9 -6
- data/app/models/camaleon_cms/post_type.rb +170 -163
- data/app/models/camaleon_cms/site.rb +211 -203
- data/app/models/camaleon_cms/term_relationship.rb +16 -14
- data/app/models/camaleon_cms/term_taxonomy.rb +49 -54
- data/app/models/camaleon_cms/theme.rb +24 -23
- data/app/models/camaleon_cms/user.rb +18 -13
- data/app/models/camaleon_cms/user_role.rb +130 -128
- data/app/models/camaleon_cms/widget/assigned.rb +25 -21
- data/app/models/camaleon_cms/widget/main.rb +40 -36
- data/app/models/camaleon_cms/widget/sidebar.rb +20 -16
- data/app/validators/camaleon_cms/post_uniq_validator.rb +28 -0
- data/app/validators/camaleon_cms/uniq_validator.rb +9 -0
- data/config/locales/camaleon_cms/admin/ar.yml +1 -0
- data/config/locales/camaleon_cms/admin/de.yml +1 -0
- data/config/locales/camaleon_cms/admin/en.yml +82 -21
- data/config/locales/camaleon_cms/admin/fr.yml +1 -0
- data/config/locales/camaleon_cms/admin/it.yml +1 -0
- data/config/locales/camaleon_cms/admin/js/de.yml +51 -0
- data/config/locales/camaleon_cms/admin/js/en.yml +51 -0
- data/config/locales/camaleon_cms/admin/js/es.yml +53 -0
- data/config/locales/camaleon_cms/admin/js/it.yml +44 -0
- data/config/locales/camaleon_cms/admin/js/nl.yml +42 -0
- data/config/locales/camaleon_cms/admin/js/pt-BR.yml +44 -0
- data/config/locales/camaleon_cms/admin/js/ru.yml +51 -0
- data/config/locales/camaleon_cms/admin/js/uk.yml +51 -0
- data/config/locales/camaleon_cms/admin/js/zh-CN.yml +51 -0
- data/config/locales/camaleon_cms/admin/nl.yml +1 -0
- data/config/locales/camaleon_cms/admin/ru.yml +1 -0
- data/config/locales/camaleon_cms/admin/uk.yml +2 -1
- data/config/locales/camaleon_cms/admin/zh-CH.yml +1 -0
- data/config/locales/camaleon_cms/common.md +3 -0
- data/config/locales/camaleon_cms/common/ar.yml +66 -0
- data/config/locales/camaleon_cms/common/de.yml +66 -0
- data/config/locales/camaleon_cms/common/en.yml +63 -0
- data/config/locales/camaleon_cms/common/es.yml +66 -0
- data/config/locales/camaleon_cms/common/fr.yml +66 -0
- data/config/locales/camaleon_cms/common/it.yml +63 -0
- data/config/locales/camaleon_cms/common/md.yml +60 -0
- data/config/locales/camaleon_cms/common/nl.yml +64 -0
- data/config/locales/camaleon_cms/common/pt-BR.yml +65 -0
- data/config/locales/camaleon_cms/common/pt.yml +65 -0
- data/config/locales/camaleon_cms/common/ru.yml +66 -0
- data/config/locales/camaleon_cms/common/uk.yml +64 -0
- data/config/locales/camaleon_cms/common/zh-CN.yml +66 -0
- data/config/locales/camaleon_cms/languages/ar.yml +16 -0
- data/config/locales/camaleon_cms/languages/de.yml +16 -0
- data/config/locales/camaleon_cms/languages/en.yml +16 -0
- data/config/locales/camaleon_cms/languages/es.yml +16 -0
- data/config/locales/camaleon_cms/languages/it.yml +16 -0
- data/config/locales/camaleon_cms/languages/md.yml +15 -0
- data/config/locales/camaleon_cms/languages/nl.yml +16 -0
- data/config/locales/camaleon_cms/languages/pt-BR.yml +16 -0
- data/config/locales/camaleon_cms/languages/pt.yml +16 -0
- data/config/locales/camaleon_cms/languages/ru.yml +16 -0
- data/config/locales/camaleon_cms/languages/uk.yml +16 -0
- data/config/locales/camaleon_cms/languages/zh-CN.yml +16 -0
- data/config/locales/camaleon_cms/routes/de.yml +8 -0
- data/config/locales/camaleon_cms/routes/es.yml +8 -0
- data/config/locales/camaleon_cms/routes/fr.yml +8 -0
- data/config/locales/camaleon_cms/routes/it.yml +8 -0
- data/config/locales/camaleon_cms/routes/md.yml +8 -0
- data/config/locales/camaleon_cms/routes/pt-BR.yml +8 -0
- data/config/locales/camaleon_cms/routes/pt.yml +8 -0
- data/config/locales/camaleon_cms/routes/ru.yml +8 -0
- data/config/locales/camaleon_cms/routes/uk.yml +8 -0
- data/config/locales/camaleon_cms/routes/zh-CN.yml +8 -0
- data/config/locales/md.yml +207 -0
- data/lib/camaleon_cms/version.rb +1 -1
- data/spec/dummy/config/application.rb +14 -2
- metadata +102 -109
- data/config/locales/camaleon_cms/admin/js.yml +0 -435
- data/config/locales/camaleon_cms/common.yml +0 -786
- data/config/locales/camaleon_cms/languages.yml +0 -167
- data/config/locales/camaleon_cms/routes.yml +0 -71
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -254
- data/spec/dummy/log/test.log +0 -46384
- data/spec/dummy/public/media/1/rails_tmp.png +0 -0
- data/spec/dummy/public/media/1/rails_tmp_1.png +0 -0
- data/spec/dummy/public/media/1/rails_tmp_2.png +0 -0
- data/spec/dummy/public/media/1/rails_tmp_3.png +0 -0
- data/spec/dummy/public/media/1/sample/rails_tmp.png +0 -0
- data/spec/dummy/public/media/1/sample/thumb/rails_tmp-png.png +0 -0
- data/spec/dummy/public/media/1/slide33.jpg +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp-png.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp-png_20x.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp-png_300x300.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp-png_505x350.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp_1-png.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp_2-png.png +0 -0
- data/spec/dummy/public/media/1/thumb/rails_tmp_3-png.png +0 -0
- data/spec/dummy/public/media/1/thumb/slide33-jpg.jpg +0 -0
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-13.472.html +0 -457
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-13.472.png +0 -0
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-28.693.html +0 -428
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-19-28.693.png +0 -0
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-22-45.502.html +0 -337
- data/spec/dummy/tmp/capybara/screenshot_2019-09-04-09-22-45.502.png +0 -0
- data/spec/support/fixtures/rails_tmp.png +0 -0
@@ -1,786 +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
|
-
profile: "Данные пользователя"
|
464
|
-
dashboard: "Панель управления"
|
465
|
-
read_more: "Прочитать больше"
|
466
|
-
submit: "Отправить"
|
467
|
-
send: "Отправить"
|
468
|
-
login: "Вход"
|
469
|
-
logout: "Выход"
|
470
|
-
confirm: "Вы подтверждаете?"
|
471
|
-
register: "Зарегистрироваться"
|
472
|
-
proceted_article: 'Защищенная статья'
|
473
|
-
|
474
|
-
comment_msg: "Вам нужно войти чтобы оставить комментарий"
|
475
|
-
comment: "Комментарий"
|
476
|
-
comments: "Комментарии"
|
477
|
-
message: "Сообщение"
|
478
|
-
leave_comment: "Оставить комментарий"
|
479
|
-
comment_new: "Новый комментарий"
|
480
|
-
comment_saved: "Ваш комментарий был сохранен"
|
481
|
-
comment_error: "Произошла ошибка при сохранении комментария"
|
482
|
-
comment_reply: "Ответить"
|
483
|
-
edit: "Редактировать"
|
484
|
-
|
485
|
-
recent_posts: "Недавние публикации"
|
486
|
-
|
487
|
-
|
488
|
-
search_msg: "Результаты поиска для:"
|
489
|
-
search_not_found: "Не найдено объектов поиска для отображения"
|
490
|
-
category_list: "Список категорий"
|
491
|
-
post_tag_list: "Список меток"
|
492
|
-
sub_category_list: "Список подкатегорий"
|
493
|
-
content_list: "Список содержимого: %s"
|
494
|
-
visit: "Посетить"
|
495
|
-
no_contents_found: "Содержимого не найдено"
|
496
|
-
no_results_found: "Результатов не найдено"
|
497
|
-
|
498
|
-
author: "Автор"
|
499
|
-
site: "Сайт"
|
500
|
-
categories: "Категории"
|
501
|
-
next: "Следующий"
|
502
|
-
prev: "Предыдущий"
|
503
|
-
current: "Текущий"
|
504
|
-
search: "Поиск"
|
505
|
-
file_format_error: "Ошибка формата файла"
|
506
|
-
file_size_exceeded: "Превышение допустимого размера файла"
|
507
|
-
|
508
|
-
notice: "Новости "
|
509
|
-
share: "Поделиться"
|
510
|
-
share_facebook: "Поделиться Facebook"
|
511
|
-
share_twitter: "Поделиться Twitter"
|
512
|
-
share_google_plus: "Поделиться Google Plus"
|
513
|
-
back_top: "Вернуться к началу"
|
514
|
-
total_followers_social: "Всего последователей в социальных сетях"
|
515
|
-
latest_articles: "Последние статьи"
|
516
|
-
photo_gallery: "Фотогалерея"
|
517
|
-
home_galleries: "Перейти на главную галерею"
|
518
|
-
addition: "Дополнение"
|
519
|
-
view_all_news: "Смотреть все новости"
|
520
|
-
extra_attributes: "Дополнительные атрибуты"
|
521
|
-
|
522
|
-
will_paginate:
|
523
|
-
previous_label: 'Предыдущий'
|
524
|
-
next_label: 'Следующий'
|
525
|
-
|
526
|
-
pt:
|
527
|
-
camaleon_cms:
|
528
|
-
common:
|
529
|
-
profile: "Perfil"
|
530
|
-
dashboard: "Página Inicial"
|
531
|
-
read_more: "Ler Mais"
|
532
|
-
submit: "Submeter"
|
533
|
-
send: "Enviar"
|
534
|
-
login: "Login"
|
535
|
-
logout: "Sair"
|
536
|
-
confirm: "Tem certeza?"
|
537
|
-
register: "Registar"
|
538
|
-
proceted_article: 'Artigo Protegido'
|
539
|
-
|
540
|
-
comment_msg: "Deverá fazer login para poder comentar"
|
541
|
-
comment: "Comentário"
|
542
|
-
comments: "Comentários"
|
543
|
-
message: "Mensagem"
|
544
|
-
leave_comment: "Deixar um comentário"
|
545
|
-
comment_new: "Novo comentário"
|
546
|
-
comment_saved: "Seu comentário foi salvo"
|
547
|
-
comment_error: "Ocorreu um erro ao tentar gravar o comentário"
|
548
|
-
comment_reply: "Responder"
|
549
|
-
edit: "Editar"
|
550
|
-
|
551
|
-
recent_posts: "Publicações Recentes"
|
552
|
-
|
553
|
-
search_msg: "Procurar Resultados para:"
|
554
|
-
search_not_found: "A busca não encontrou nenhum resultado"
|
555
|
-
category_list: "Listagem de Categorias"
|
556
|
-
post_tag_list: "Lista de Tags"
|
557
|
-
sub_category_list: "Lista de Sub Categorias"
|
558
|
-
content_list: "Lista de Conteúdo: %s"
|
559
|
-
visit: "Visitar"
|
560
|
-
no_contents_found: "Nenhum conteúdo encontrado"
|
561
|
-
no_results_found: "Nenhum resultado encontrado"
|
562
|
-
|
563
|
-
author: "Autor"
|
564
|
-
site: "Sítio"
|
565
|
-
categories: "Categorias"
|
566
|
-
next: "Próximo"
|
567
|
-
prev: "Anterior"
|
568
|
-
current: "Atual"
|
569
|
-
search: "Procurar"
|
570
|
-
file_format_error: "Formato de arquivo não permitido"
|
571
|
-
file_size_exceeded: "Tamanho do arquivo excedeu o limite"
|
572
|
-
|
573
|
-
notice: "Novidades "
|
574
|
-
share: "Partilhar em"
|
575
|
-
share_facebook: "Partilhar no Facebook"
|
576
|
-
share_twitter: "Partilhar no Twitter"
|
577
|
-
share_google_plus: "Partilhar no Google Plus"
|
578
|
-
back_top: "Voltar para o topo"
|
579
|
-
total_followers_social: "Total de seguidores nas redes sociais"
|
580
|
-
latest_articles: "Últimos Artigos"
|
581
|
-
photo_gallery: "Galeria de Fotos"
|
582
|
-
home_galleries: "Ir para a página principal das Categorias"
|
583
|
-
addition: "Adição"
|
584
|
-
view_all_news: "Ver todas as notícias"
|
585
|
-
extra_attributes: "Atributos Extra"
|
586
|
-
|
587
|
-
will_paginate:
|
588
|
-
previous_label: 'Anterior'
|
589
|
-
next_label: 'Seguinte'
|
590
|
-
|
591
|
-
pt-BR:
|
592
|
-
camaleon_cms:
|
593
|
-
common:
|
594
|
-
profile: "Perfil"
|
595
|
-
dashboard: "Página Inicial"
|
596
|
-
read_more: "Ler Mais"
|
597
|
-
submit: "Submeter"
|
598
|
-
send: "Enviar"
|
599
|
-
login: "Login"
|
600
|
-
logout: "Sair"
|
601
|
-
confirm: "Você tem certeza?"
|
602
|
-
register: "Registrar"
|
603
|
-
proceted_article: 'Artigo Protegido'
|
604
|
-
|
605
|
-
comment_msg: "Você deve estar logado para postar um comentário"
|
606
|
-
comment: "Comentário"
|
607
|
-
comments: "Comentários"
|
608
|
-
message: "Mensagem"
|
609
|
-
leave_comment: "Deixar um comentário"
|
610
|
-
comment_new: "Novo comentário"
|
611
|
-
comment_saved: "Seu comentário foi salvo"
|
612
|
-
comment_error: "Ocorreu um erro ao tentar salvar o comentário"
|
613
|
-
comment_reply: "Responder"
|
614
|
-
edit: "Editar"
|
615
|
-
|
616
|
-
recent_posts: "Posts Recentes"
|
617
|
-
|
618
|
-
search_msg: "Procurar Resultados para:"
|
619
|
-
search_not_found: "A busca não achou nenhum item"
|
620
|
-
category_list: "Listagem de Categorias"
|
621
|
-
post_tag_list: "Lista de Tags"
|
622
|
-
sub_category_list: "Lista de Sub Categorias"
|
623
|
-
content_list: "Lista de Conteúdo: %s"
|
624
|
-
visit: "Visitar"
|
625
|
-
no_contents_found: "Nenhum conteúdo encontrado"
|
626
|
-
no_results_found: "Nenhum resultado encontrado"
|
627
|
-
|
628
|
-
author: "Autor"
|
629
|
-
site: "Site"
|
630
|
-
categories: "Categorias"
|
631
|
-
next: "Próximo"
|
632
|
-
prev: "Anterior"
|
633
|
-
current: "Atual"
|
634
|
-
search: "Procurar"
|
635
|
-
file_format_error: "Formato de arquivo não permitido"
|
636
|
-
file_size_exceeded: "Tamanho do arquivo excedeu o limite"
|
637
|
-
|
638
|
-
notice: "Novidades "
|
639
|
-
share: "Compatilhar em"
|
640
|
-
share_facebook: "Compartilhar no Facebook"
|
641
|
-
share_twitter: "Compartilhar no Twitter"
|
642
|
-
share_google_plus: "Compartilhar no Google Plus"
|
643
|
-
back_top: "Voltar para o topo"
|
644
|
-
total_followers_social: "Total de seguidores nas redes sociais"
|
645
|
-
latest_articles: "Últimos Artigos"
|
646
|
-
photo_gallery: "Galeria de Fotos"
|
647
|
-
home_galleries: "Ir para a home das Categorias"
|
648
|
-
addition: "Adição"
|
649
|
-
view_all_news: "Ver todas as notícias"
|
650
|
-
extra_attributes: "Atributos Extras"
|
651
|
-
|
652
|
-
will_paginate:
|
653
|
-
previous_label: 'Anterior'
|
654
|
-
next_label: 'Próximo'
|
655
|
-
|
656
|
-
fr:
|
657
|
-
camaleon_cms:
|
658
|
-
common:
|
659
|
-
profile: "Profil"
|
660
|
-
dashboard: "Tableau de bord"
|
661
|
-
read_more: "En savoir plus"
|
662
|
-
submit: "Soumettre"
|
663
|
-
send: "Envoyer"
|
664
|
-
login: "Connexion"
|
665
|
-
logout: "Déconnexion"
|
666
|
-
confirm: "Êtes-vous sûr?"
|
667
|
-
register: "Enregistrer"
|
668
|
-
proceted_article: 'Article protégé'
|
669
|
-
|
670
|
-
comment_msg: "Vous devez être connecté pour publier un commentaire"
|
671
|
-
comment: "Commentaire"
|
672
|
-
comments: "Commentaires"
|
673
|
-
message: "Message"
|
674
|
-
leave_comment: "Laisser un commentaire"
|
675
|
-
comment_new: "Nouveau commentaire"
|
676
|
-
comment_saved: "Votre commentaire est enregistré"
|
677
|
-
comment_error: "Une erreur est survenue lors de l'enregistrement du commentaire"
|
678
|
-
comment_reply: "Répondre"
|
679
|
-
edit: "Editer"
|
680
|
-
|
681
|
-
recent_posts: "Posts récents"
|
682
|
-
|
683
|
-
|
684
|
-
search_msg: "Chercher des résultats pour:"
|
685
|
-
search_not_found: "Aucun résultat ne correspond aux critères de recherche."
|
686
|
-
category_list: "Liste des catégories"
|
687
|
-
post_tag_list: "Liste des tags"
|
688
|
-
sub_category_list: "Liste des sous-catégories"
|
689
|
-
content_list: "Liste de contenu : %s"
|
690
|
-
visit: "Visite"
|
691
|
-
no_contents_found: "Aucun contenu trouvé"
|
692
|
-
no_results_found: "Aucun résultat trouvé"
|
693
|
-
|
694
|
-
author: "Auteur"
|
695
|
-
site: "Site"
|
696
|
-
categories: "Catégories"
|
697
|
-
next: "Suivant"
|
698
|
-
prev: "Précédent"
|
699
|
-
current: "Courant"
|
700
|
-
search: "Rechercher"
|
701
|
-
file_format_error: "Format de fichier invalide"
|
702
|
-
file_size_exceeded: "Taille du fichier excessive"
|
703
|
-
|
704
|
-
notice: "Nouvelles "
|
705
|
-
share: "Partager sur"
|
706
|
-
share_facebook: "Partage sur Facebook"
|
707
|
-
share_twitter: "Partager sur Twitter"
|
708
|
-
share_google_plus: "Partager sur Google Plus"
|
709
|
-
back_top: "Retour en haut"
|
710
|
-
total_followers_social: "Total de followers sur les réseaux sociaux"
|
711
|
-
latest_articles: "Derniers articles"
|
712
|
-
photo_gallery: "Galerie photo"
|
713
|
-
home_galleries: "Aller à l'accueil des galeries"
|
714
|
-
addition: "Addition"
|
715
|
-
view_all_news: "Voir toutes les nouvelles"
|
716
|
-
extra_attributes: "Attributs extras"
|
717
|
-
|
718
|
-
will_paginate:
|
719
|
-
previous_label: 'Précédent'
|
720
|
-
next_label: 'Suivant'
|
721
|
-
|
722
|
-
zh-CN:
|
723
|
-
camaleon_cms:
|
724
|
-
common:
|
725
|
-
profile: "简介"
|
726
|
-
dashboard: "主页"
|
727
|
-
read_more: "更多"
|
728
|
-
submit: "提交"
|
729
|
-
send: "发送"
|
730
|
-
login: "登录"
|
731
|
-
logout: "注销"
|
732
|
-
confirm: "是否确定?"
|
733
|
-
register: "注册"
|
734
|
-
proceted_article: '受保护的文章'
|
735
|
-
|
736
|
-
comment_msg: "您必须登录才能发表评论"
|
737
|
-
comment: "评论"
|
738
|
-
comments: "评论"
|
739
|
-
message: "消息"
|
740
|
-
leave_comment: "发表评论"
|
741
|
-
comment_new: "新评论"
|
742
|
-
comment_saved: "评论已经保存"
|
743
|
-
comment_error: "保存评论时发生错误"
|
744
|
-
comment_reply: "回复"
|
745
|
-
edit: "编辑"
|
746
|
-
|
747
|
-
recent_posts: "最近发布内容"
|
748
|
-
|
749
|
-
|
750
|
-
search_msg: "搜索结果:"
|
751
|
-
search_not_found: "找不到列表中的搜索项"
|
752
|
-
category_list: "分类列表"
|
753
|
-
post_tag_list: "标签列表"
|
754
|
-
sub_category_list: "子分类列表"
|
755
|
-
content_list: "内容列表: %s"
|
756
|
-
visit: "访问"
|
757
|
-
no_contents_found: "未找到内容"
|
758
|
-
no_results_found: "未找到结果"
|
759
|
-
|
760
|
-
author: "作者"
|
761
|
-
site: "站点"
|
762
|
-
categories: "分类"
|
763
|
-
next: "向下"
|
764
|
-
prev: "向上"
|
765
|
-
current: "当前"
|
766
|
-
search: "搜索"
|
767
|
-
file_format_error: "文件格式不允许"
|
768
|
-
file_size_exceeded: "超过文件大小"
|
769
|
-
|
770
|
-
notice: "新闻"
|
771
|
-
share: "分享"
|
772
|
-
share_facebook: "分享到 Facebook"
|
773
|
-
share_twitter: "分享到 Twitter"
|
774
|
-
share_google_plus: "分享到 Google Plus"
|
775
|
-
back_top: "返回顶部"
|
776
|
-
total_followers_social: "社交网络上的关注者总数"
|
777
|
-
latest_articles: "最新文章"
|
778
|
-
photo_gallery: "照片库"
|
779
|
-
home_galleries: "返回图片库"
|
780
|
-
addition: "添加"
|
781
|
-
view_all_news: "查看所有新闻"
|
782
|
-
extra_attributes: "额外属性"
|
783
|
-
|
784
|
-
will_paginate:
|
785
|
-
previous_label: '上一页'
|
786
|
-
next_label: '下一页'
|