publify_core 9.2.10 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +57 -18
- data/app/assets/javascripts/lang/ar_AR.js +17 -0
- data/app/controllers/admin/{content_controller.rb → articles_controller.rb} +24 -24
- data/app/controllers/admin/dashboard_controller.rb +3 -3
- data/app/controllers/admin/feedback_controller.rb +23 -23
- data/app/controllers/admin/pages_controller.rb +2 -2
- data/app/controllers/admin/post_types_controller.rb +10 -4
- data/app/controllers/admin/redirects_controller.rb +10 -6
- data/app/controllers/admin/resources_controller.rb +2 -2
- data/app/controllers/admin/sidebar_controller.rb +2 -2
- data/app/controllers/admin/tags_controller.rb +5 -3
- data/app/controllers/admin/themes_controller.rb +1 -2
- data/app/controllers/admin/users_controller.rb +5 -3
- data/app/controllers/articles_controller.rb +5 -5
- data/app/controllers/authors_controller.rb +2 -2
- data/app/controllers/base_controller.rb +0 -3
- data/app/controllers/feedback_controller.rb +3 -3
- data/app/controllers/tags_controller.rb +3 -3
- data/app/helpers/authors_helper.rb +1 -1
- data/app/helpers/base_helper.rb +6 -6
- data/app/models/ability.rb +1 -1
- data/app/models/archives_sidebar.rb +3 -3
- data/app/models/article.rb +13 -13
- data/app/models/blog.rb +3 -6
- data/app/models/content.rb +1 -3
- data/app/models/content_base.rb +2 -13
- data/app/models/feedback.rb +1 -2
- data/app/models/meta_sidebar.rb +1 -1
- data/app/models/note.rb +2 -2
- data/app/models/redirect.rb +0 -1
- data/app/models/sidebar.rb +1 -1
- data/app/models/static_sidebar.rb +1 -1
- data/app/models/tag.rb +7 -8
- data/app/models/tag_sidebar.rb +3 -3
- data/app/models/text_filter.rb +17 -43
- data/app/models/user.rb +2 -2
- data/app/services/title_builder.rb +4 -4
- data/app/views/admin/{content → articles}/_article_list.html.erb +3 -3
- data/app/views/admin/{content → articles}/_form.html.erb +11 -1
- data/app/views/admin/{content → articles}/index.html.erb +1 -1
- data/app/views/admin/dashboard/_drafts.html.erb +2 -2
- data/app/views/admin/dashboard/_overview.html.erb +1 -1
- data/app/views/admin/dashboard/_welcome.html.erb +4 -4
- data/app/views/admin/dashboard/index.html.erb +0 -7
- data/app/views/admin/feedback/article.html.erb +12 -6
- data/app/views/admin/feedback/edit.html.erb +14 -2
- data/app/views/admin/feedback/index.html.erb +6 -7
- data/app/views/admin/pages/_form.html.erb +13 -14
- data/app/views/admin/seo/show.html.erb +12 -1
- data/app/views/admin/shared/_menu.html.erb +5 -4
- data/app/views/admin/tags/_index_and_form.html.erb +2 -1
- data/app/views/articles/_comment_errors.html.erb +11 -1
- data/app/views/articles/read.html.erb +1 -1
- data/app/views/layouts/administration.html.erb +9 -17
- data/config/i18n-tasks.yml +8 -1
- data/config/initializers/devise.rb +1 -1
- data/config/locales/ar.yml +885 -0
- data/config/locales/da.yml +12 -12
- data/config/locales/de.yml +12 -12
- data/config/locales/en.yml +12 -12
- data/config/locales/es-MX.yml +12 -12
- data/config/locales/fr.yml +12 -12
- data/config/locales/he.yml +12 -12
- data/config/locales/it.yml +12 -12
- data/config/locales/ja.yml +13 -13
- data/config/locales/lt.yml +12 -12
- data/config/locales/{nb-NO.yml → nb.yml} +13 -13
- data/config/locales/nl.yml +13 -13
- data/config/locales/pl.yml +12 -12
- data/config/locales/pt-BR.yml +12 -12
- data/config/locales/ro.yml +12 -12
- data/config/locales/ru.yml +13 -13
- data/config/locales/sidebars.ar.yml +20 -0
- data/config/locales/{sidebars.nb-NO.yml → sidebars.nb.yml} +1 -1
- data/config/locales/zh-CN.yml +12 -12
- data/config/locales/zh-TW.yml +12 -12
- data/config/routes.rb +2 -2
- data/db/migrate/20150807134129_simplify_redirect_relations.rb +1 -0
- data/db/migrate/20150808052637_add_blog_ids.rb +3 -1
- data/db/migrate/20160605103918_replace_profile_id_with_string.rb +1 -0
- data/db/migrate/20160701062604_add_blog_id_to_resources.rb +2 -0
- data/db/migrate/20190208152646_move_text_filter_to_name.rb +17 -17
- data/db/migrate/20221007091049_remove_table_sitealizer.rb +19 -0
- data/db/migrate/20221010092846_remove_page_caches_table.rb +15 -0
- data/db/migrate/20221012163214_remove_itunes_fields_from_resources.rb +14 -0
- data/db/seeds.rb +0 -4
- data/lib/publify_core/content_text_helpers.rb +11 -0
- data/lib/publify_core/lang.rb +1 -1
- data/lib/publify_core/testing_support/factories/articles.rb +55 -0
- data/lib/publify_core/testing_support/factories/blogs.rb +24 -0
- data/lib/publify_core/testing_support/factories/comments.rb +40 -0
- data/lib/publify_core/testing_support/factories/contents.rb +7 -0
- data/lib/publify_core/testing_support/factories/notes.rb +17 -0
- data/lib/publify_core/testing_support/factories/pages.rb +13 -0
- data/lib/publify_core/testing_support/factories/post_types.rb +8 -0
- data/lib/publify_core/testing_support/factories/redirects.rb +9 -0
- data/lib/publify_core/testing_support/factories/resources.rb +16 -0
- data/lib/publify_core/testing_support/factories/sequences.rb +12 -0
- data/lib/publify_core/testing_support/factories/sidebars.rb +10 -0
- data/lib/publify_core/testing_support/factories/tags.rb +9 -0
- data/lib/publify_core/testing_support/factories/trackbacks.rb +13 -0
- data/lib/publify_core/testing_support/factories/users.rb +43 -0
- data/lib/publify_core/version.rb +1 -1
- data/lib/publify_core.rb +3 -3
- data/lib/publify_textfilter_markdown.rb +8 -9
- data/lib/publify_textfilter_markdown_smartquotes.rb +20 -0
- data/lib/publify_textfilter_twitterfilter.rb +36 -18
- data/lib/sidebar_field.rb +2 -2
- data/lib/sidebar_registry.rb +0 -12
- data/lib/text_filter_plugin.rb +23 -30
- metadata +213 -105
- data/lib/publify_core/testing_support/factories.rb +0 -240
- data/lib/publify_textfilter_textile.rb +0 -24
- data/lib/tasks/i18n.rake +0 -9
- /data/app/views/admin/{content → articles}/autosave.js.erb +0 -0
- /data/app/views/admin/{content → articles}/edit.html.erb +0 -0
- /data/app/views/admin/{content → articles}/index.js.erb +0 -0
- /data/app/views/admin/{content → articles}/new.html.erb +0 -0
data/config/locales/da.yml
CHANGED
|
@@ -19,14 +19,8 @@ da:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Error, you are not allowed to perform this action
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ da:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: Article was successfully updated
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ da:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you start and write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: Velkommen tilbage, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: ændre din blogs udseende
|
|
@@ -158,14 +154,17 @@ da:
|
|
|
158
154
|
feedback:
|
|
159
155
|
article:
|
|
160
156
|
action_or_other_html: "%{first_action} eller %{second_action}"
|
|
157
|
+
actions: Actions
|
|
161
158
|
add_a_comment: Add a comment
|
|
162
159
|
author: Forfatter
|
|
163
160
|
cancel: Anuller
|
|
164
161
|
comments_for_html: Kommentarer for %{title}
|
|
162
|
+
content: Indhold
|
|
163
|
+
created_at: Created at
|
|
165
164
|
email: Email
|
|
166
165
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
167
166
|
save: Gem
|
|
168
|
-
|
|
167
|
+
status: Status
|
|
169
168
|
url: Url
|
|
170
169
|
your_comment: Your comment
|
|
171
170
|
bulkops:
|
|
@@ -212,7 +211,6 @@ da:
|
|
|
212
211
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
213
212
|
presumed_ham: Presumed ham
|
|
214
213
|
presumed_spam: Presumed spam
|
|
215
|
-
select_all: Select all
|
|
216
214
|
spam: Spam
|
|
217
215
|
status: Status
|
|
218
216
|
unapproved_comments: Unapproved comments
|
|
@@ -573,6 +571,7 @@ da:
|
|
|
573
571
|
sidebar_plugins: Sidebar plugins
|
|
574
572
|
tags: Tags
|
|
575
573
|
titles: Titles
|
|
574
|
+
view_blog: View blog
|
|
576
575
|
write: Write
|
|
577
576
|
twitter_alert:
|
|
578
577
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -790,6 +789,7 @@ da:
|
|
|
790
789
|
helper:
|
|
791
790
|
at: at
|
|
792
791
|
langs:
|
|
792
|
+
ar_AR: Arabic
|
|
793
793
|
da_DK: Danish
|
|
794
794
|
de_DE: German
|
|
795
795
|
en_US: English (US)
|
data/config/locales/de.yml
CHANGED
|
@@ -19,14 +19,8 @@ de:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Error, you are not allowed to perform this action
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ de:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: Article was successfully updated
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ de:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: Welcome back, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: change your blog presentation
|
|
@@ -158,14 +154,17 @@ de:
|
|
|
158
154
|
feedback:
|
|
159
155
|
article:
|
|
160
156
|
action_or_other_html: "%{first_action} oder %{second_action}"
|
|
157
|
+
actions: Actions
|
|
161
158
|
add_a_comment: Add a comment
|
|
162
159
|
author: Autor
|
|
163
160
|
cancel: Abbrechen
|
|
164
161
|
comments_for_html: Kommentare für %{title}
|
|
162
|
+
content: Content
|
|
163
|
+
created_at: Created at
|
|
165
164
|
email: Email
|
|
166
165
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
167
166
|
save: Speichern
|
|
168
|
-
|
|
167
|
+
status: Status
|
|
169
168
|
url: Url
|
|
170
169
|
your_comment: Your comment
|
|
171
170
|
bulkops:
|
|
@@ -212,7 +211,6 @@ de:
|
|
|
212
211
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
213
212
|
presumed_ham: Presumed ham
|
|
214
213
|
presumed_spam: Presumed spam
|
|
215
|
-
select_all: Select all
|
|
216
214
|
spam: Spam
|
|
217
215
|
status: Status
|
|
218
216
|
unapproved_comments: Unapproved comments
|
|
@@ -576,6 +574,7 @@ de:
|
|
|
576
574
|
sidebar_plugins: Sidebar plugins
|
|
577
575
|
tags: Tags
|
|
578
576
|
titles: Titles
|
|
577
|
+
view_blog: Blog anschauen
|
|
579
578
|
write: Write
|
|
580
579
|
twitter_alert:
|
|
581
580
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -794,6 +793,7 @@ de:
|
|
|
794
793
|
helper:
|
|
795
794
|
at: at
|
|
796
795
|
langs:
|
|
796
|
+
ar_AR: Arabic
|
|
797
797
|
da_DK: Danish
|
|
798
798
|
de_DE: German
|
|
799
799
|
en_US: English (US)
|
data/config/locales/en.yml
CHANGED
|
@@ -19,14 +19,8 @@ en:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Error, you are not allowed to perform this action
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ en:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: Article was successfully updated
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ en:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: Welcome back, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: change your blog presentation
|
|
@@ -158,14 +154,17 @@ en:
|
|
|
158
154
|
feedback:
|
|
159
155
|
article:
|
|
160
156
|
action_or_other_html: "%{first_action} or %{second_action}"
|
|
157
|
+
actions: Actions
|
|
161
158
|
add_a_comment: Add a comment
|
|
162
159
|
author: Author
|
|
163
160
|
cancel: Cancel
|
|
164
161
|
comments_for_html: Comments for %{title}
|
|
162
|
+
content: Content
|
|
163
|
+
created_at: Created at
|
|
165
164
|
email: Email
|
|
166
165
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
167
166
|
save: Save
|
|
168
|
-
|
|
167
|
+
status: Status
|
|
169
168
|
url: Url
|
|
170
169
|
your_comment: Your comment
|
|
171
170
|
bulkops:
|
|
@@ -212,7 +211,6 @@ en:
|
|
|
212
211
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
213
212
|
presumed_ham: Presumed ham
|
|
214
213
|
presumed_spam: Presumed spam
|
|
215
|
-
select_all: Select all
|
|
216
214
|
spam: Spam
|
|
217
215
|
status: Status
|
|
218
216
|
unapproved_comments: Unapproved comments
|
|
@@ -572,6 +570,7 @@ en:
|
|
|
572
570
|
sidebar_plugins: Sidebar plugins
|
|
573
571
|
tags: Tags
|
|
574
572
|
titles: Titles
|
|
573
|
+
view_blog: View blog
|
|
575
574
|
write: Write
|
|
576
575
|
twitter_alert:
|
|
577
576
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -789,6 +788,7 @@ en:
|
|
|
789
788
|
helper:
|
|
790
789
|
at: at
|
|
791
790
|
langs:
|
|
791
|
+
ar_AR: Arabic
|
|
792
792
|
da_DK: Danish
|
|
793
793
|
de_DE: German
|
|
794
794
|
en_US: English (US)
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -19,14 +19,8 @@ es-MX:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: no puede ser vacío
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Error, you are not allowed to perform this action
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ es-MX:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: Article was successfully updated
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ es-MX:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you start and write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: Welcome back, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: cambiar la presentacion del blog
|
|
@@ -158,14 +154,17 @@ es-MX:
|
|
|
158
154
|
feedback:
|
|
159
155
|
article:
|
|
160
156
|
action_or_other_html: "%{first_action} o %{second_action}"
|
|
157
|
+
actions: Actions
|
|
161
158
|
add_a_comment: Add a comment
|
|
162
159
|
author: Autor
|
|
163
160
|
cancel: Cancelar
|
|
164
161
|
comments_for_html: Comentarios para %{title}
|
|
162
|
+
content: Content
|
|
163
|
+
created_at: Created at
|
|
165
164
|
email: Email
|
|
166
165
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
167
166
|
save: Guardar
|
|
168
|
-
|
|
167
|
+
status: Estado
|
|
169
168
|
url: Url
|
|
170
169
|
your_comment: Your comment
|
|
171
170
|
bulkops:
|
|
@@ -212,7 +211,6 @@ es-MX:
|
|
|
212
211
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
213
212
|
presumed_ham: Presumed ham
|
|
214
213
|
presumed_spam: Presumed spam
|
|
215
|
-
select_all: Select all
|
|
216
214
|
spam: Spam
|
|
217
215
|
status: Estado
|
|
218
216
|
unapproved_comments: Unapproved comments
|
|
@@ -574,6 +572,7 @@ es-MX:
|
|
|
574
572
|
sidebar_plugins: Sidebar plugins
|
|
575
573
|
tags: Tags
|
|
576
574
|
titles: Titles
|
|
575
|
+
view_blog: View blog
|
|
577
576
|
write: Write
|
|
578
577
|
twitter_alert:
|
|
579
578
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -792,6 +791,7 @@ es-MX:
|
|
|
792
791
|
helper:
|
|
793
792
|
at: a
|
|
794
793
|
langs:
|
|
794
|
+
ar_AR: Arabic
|
|
795
795
|
da_DK: Danés
|
|
796
796
|
de_DE: Alemán
|
|
797
797
|
en_US: Inglés (US)
|
data/config/locales/fr.yml
CHANGED
|
@@ -19,14 +19,8 @@ fr:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: ne peut être laissé vide
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Erreur, vous n'êtes pas autorisé à réaliser cette action
|
|
28
|
-
successfully_deleted: "%{name} a été supprimé avec succès"
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Erreur, vous n'avez pas les droits requis pour effectuer cette action
|
|
32
26
|
article_list:
|
|
@@ -87,6 +81,11 @@ fr:
|
|
|
87
81
|
withdrawn: Supprimé
|
|
88
82
|
update:
|
|
89
83
|
success: Cet article a été mis à jour avec succès
|
|
84
|
+
base:
|
|
85
|
+
not_allowed: Erreur, vous n'êtes pas autorisé à réaliser cette action
|
|
86
|
+
successfully_created: "%{name} a été créé avec succès"
|
|
87
|
+
successfully_deleted: "%{name} a été supprimé avec succès"
|
|
88
|
+
successfully_updated: "%{name} a été mis à jour avec succès"
|
|
90
89
|
dashboard:
|
|
91
90
|
comment:
|
|
92
91
|
by: Par
|
|
@@ -97,9 +96,6 @@ fr:
|
|
|
97
96
|
no_drafts_yet: Pas de brouillons, pourquoi ne pas en écrire un ?
|
|
98
97
|
your_drafts: Vos brouillons
|
|
99
98
|
index:
|
|
100
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
101
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
102
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
103
99
|
welcome_back: Bienvenue, %{user_name} !
|
|
104
100
|
overview:
|
|
105
101
|
change_your_blog_presentation: changer l'apparence de votre blog
|
|
@@ -160,15 +156,18 @@ fr:
|
|
|
160
156
|
feedback:
|
|
161
157
|
article:
|
|
162
158
|
action_or_other_html: "%{first_action} ou %{second_action}"
|
|
159
|
+
actions: Actions
|
|
163
160
|
add_a_comment: Ajouter un commentaire
|
|
164
161
|
author: Auteur
|
|
165
162
|
cancel: Annuler
|
|
166
163
|
comments_for_html: Commentaire sur %{title}
|
|
164
|
+
content: Contenu
|
|
165
|
+
created_at: Created at
|
|
167
166
|
email: Email
|
|
168
167
|
no_feedback: 'Il n''y a pas encore de commentaires, pourquoi ne pas en créer
|
|
169
168
|
un ? '
|
|
170
169
|
save: Sauver
|
|
171
|
-
|
|
170
|
+
status: État
|
|
172
171
|
url: Site
|
|
173
172
|
your_comment: Votre commentaire
|
|
174
173
|
bulkops:
|
|
@@ -216,7 +215,6 @@ fr:
|
|
|
216
215
|
un ? '
|
|
217
216
|
presumed_ham: Probablement valide
|
|
218
217
|
presumed_spam: Probablement du spam
|
|
219
|
-
select_all: Tout sélectionner
|
|
220
218
|
spam: Spam
|
|
221
219
|
status: État
|
|
222
220
|
unapproved_comments: Commentaires non validés
|
|
@@ -588,6 +586,7 @@ fr:
|
|
|
588
586
|
sidebar_plugins: Widgets
|
|
589
587
|
tags: Tags
|
|
590
588
|
titles: Titles
|
|
589
|
+
view_blog: Voir le blog
|
|
591
590
|
write: Write
|
|
592
591
|
twitter_alert:
|
|
593
592
|
fill_the_twitter_credentials: fill in the oauth credentials
|
|
@@ -807,6 +806,7 @@ fr:
|
|
|
807
806
|
helper:
|
|
808
807
|
at: à
|
|
809
808
|
langs:
|
|
809
|
+
ar_AR: Arabic
|
|
810
810
|
da_DK: Danois
|
|
811
811
|
de_DE: Allemand
|
|
812
812
|
en_US: Anglais (Américain)
|
data/config/locales/he.yml
CHANGED
|
@@ -19,14 +19,8 @@ he:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: שגיאה, אינך רשאי לבצע פעולה זו
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ he:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: הכתבה עודכנה בהצלחה.
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: על ידי
|
|
@@ -95,9 +94,6 @@ he:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you start and write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: ברוך הבא, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: change your blog presentation
|
|
@@ -157,14 +153,17 @@ he:
|
|
|
157
153
|
feedback:
|
|
158
154
|
article:
|
|
159
155
|
action_or_other_html: "%{first_action} או %{second_action}"
|
|
156
|
+
actions: Actions
|
|
160
157
|
add_a_comment: Add a comment
|
|
161
158
|
author: כותב
|
|
162
159
|
cancel: בטל
|
|
163
160
|
comments_for_html: תגובות עבור %{title}
|
|
161
|
+
content: תוכן
|
|
162
|
+
created_at: Created at
|
|
164
163
|
email: דואל
|
|
165
164
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
166
165
|
save: שמור
|
|
167
|
-
|
|
166
|
+
status: מצב
|
|
168
167
|
url: כתובת
|
|
169
168
|
your_comment: Your comment
|
|
170
169
|
bulkops:
|
|
@@ -211,7 +210,6 @@ he:
|
|
|
211
210
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
212
211
|
presumed_ham: Presumed ham
|
|
213
212
|
presumed_spam: Presumed spam
|
|
214
|
-
select_all: Select all
|
|
215
213
|
spam: ספאם
|
|
216
214
|
status: מצב
|
|
217
215
|
unapproved_comments: תגובות לא מאושרות
|
|
@@ -570,6 +568,7 @@ he:
|
|
|
570
568
|
sidebar_plugins: Sidebar plugins
|
|
571
569
|
tags: Tags
|
|
572
570
|
titles: Titles
|
|
571
|
+
view_blog: View blog
|
|
573
572
|
write: Write
|
|
574
573
|
twitter_alert:
|
|
575
574
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -785,6 +784,7 @@ he:
|
|
|
785
784
|
helper:
|
|
786
785
|
at: at
|
|
787
786
|
langs:
|
|
787
|
+
ar_AR: Arabic
|
|
788
788
|
da_DK: Danish
|
|
789
789
|
de_DE: German
|
|
790
790
|
en_US: English (US)
|
data/config/locales/it.yml
CHANGED
|
@@ -19,14 +19,8 @@ it:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: Error, you are not allowed to perform this action
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ it:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: Article was successfully updated
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ it:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you start and write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: Welcome back, %{user_name}!
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: change your blog presentation
|
|
@@ -158,14 +154,17 @@ it:
|
|
|
158
154
|
feedback:
|
|
159
155
|
article:
|
|
160
156
|
action_or_other_html: "%{first_action} o %{second_action}"
|
|
157
|
+
actions: Actions
|
|
161
158
|
add_a_comment: Add a comment
|
|
162
159
|
author: Autore
|
|
163
160
|
cancel: Annulla
|
|
164
161
|
comments_for_html: Commenti per %{title}
|
|
162
|
+
content: Content
|
|
163
|
+
created_at: Created at
|
|
165
164
|
email: Email
|
|
166
165
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
167
166
|
save: Salva
|
|
168
|
-
|
|
167
|
+
status: Stato
|
|
169
168
|
url: Sito
|
|
170
169
|
your_comment: Your comment
|
|
171
170
|
bulkops:
|
|
@@ -212,7 +211,6 @@ it:
|
|
|
212
211
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
213
212
|
presumed_ham: Presumed ham
|
|
214
213
|
presumed_spam: Presumed spam
|
|
215
|
-
select_all: Select all
|
|
216
214
|
spam: Spam
|
|
217
215
|
status: Stato
|
|
218
216
|
unapproved_comments: Unapproved comments
|
|
@@ -574,6 +572,7 @@ it:
|
|
|
574
572
|
sidebar_plugins: Sidebar plugins
|
|
575
573
|
tags: Tags
|
|
576
574
|
titles: Titles
|
|
575
|
+
view_blog: View blog
|
|
577
576
|
write: Write
|
|
578
577
|
twitter_alert:
|
|
579
578
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -791,6 +790,7 @@ it:
|
|
|
791
790
|
helper:
|
|
792
791
|
at: at
|
|
793
792
|
langs:
|
|
793
|
+
ar_AR: Arabic
|
|
794
794
|
da_DK: Danish
|
|
795
795
|
de_DE: German
|
|
796
796
|
en_US: English (US)
|
data/config/locales/ja.yml
CHANGED
|
@@ -19,14 +19,8 @@ ja:
|
|
|
19
19
|
attributes:
|
|
20
20
|
title:
|
|
21
21
|
blank: can't be blank
|
|
22
|
-
template:
|
|
23
|
-
body: ''
|
|
24
|
-
header: ''
|
|
25
22
|
admin:
|
|
26
|
-
|
|
27
|
-
not_allowed: Error, you are not allowed to perform this action
|
|
28
|
-
successfully_deleted: This %{name} was deleted successfully
|
|
29
|
-
content:
|
|
23
|
+
articles:
|
|
30
24
|
access_granted:
|
|
31
25
|
error: あなたのアカウントではこの操作は許可されていません
|
|
32
26
|
article_list:
|
|
@@ -85,6 +79,11 @@ ja:
|
|
|
85
79
|
withdrawn: Withdrawn
|
|
86
80
|
update:
|
|
87
81
|
success: 記事が更新されました
|
|
82
|
+
base:
|
|
83
|
+
not_allowed: Error, you are not allowed to perform this action
|
|
84
|
+
successfully_created: "%{name} was successfully created."
|
|
85
|
+
successfully_deleted: This %{name} was deleted successfully
|
|
86
|
+
successfully_updated: "%{name} was successfully updated."
|
|
88
87
|
dashboard:
|
|
89
88
|
comment:
|
|
90
89
|
by: By
|
|
@@ -95,9 +94,6 @@ ja:
|
|
|
95
94
|
no_drafts_yet: No drafts yet, why don't you start and write one
|
|
96
95
|
your_drafts: Your drafts
|
|
97
96
|
index:
|
|
98
|
-
textile_deprecated_html: The Textile text filter has been deprecated and will
|
|
99
|
-
be removed soon. Some of your content still uses this filter. Run the <code>publify:textile_to_markdown</code>
|
|
100
|
-
rake task to convert it to Markdown, or convert your content manually.
|
|
101
97
|
welcome_back: お帰りなさいませ、%{user_name} 様
|
|
102
98
|
overview:
|
|
103
99
|
change_your_blog_presentation: change your blog presentation
|
|
@@ -157,14 +153,17 @@ ja:
|
|
|
157
153
|
feedback:
|
|
158
154
|
article:
|
|
159
155
|
action_or_other_html: "%{first_action} または %{second_action}"
|
|
156
|
+
actions: Actions
|
|
160
157
|
add_a_comment: Add a comment
|
|
161
158
|
author: 投稿者
|
|
162
159
|
cancel: キャンセル
|
|
163
160
|
comments_for_html: "〜へコメント%{title}"
|
|
161
|
+
content: コンテンツ
|
|
162
|
+
created_at: Created at
|
|
164
163
|
email: メールアドレス
|
|
165
|
-
no_feedback: There
|
|
164
|
+
no_feedback: There is no feedback yet. Why don't you create some?
|
|
166
165
|
save: 保存
|
|
167
|
-
|
|
166
|
+
status: ステータス
|
|
168
167
|
url: Url
|
|
169
168
|
your_comment: Your comment
|
|
170
169
|
bulkops:
|
|
@@ -211,7 +210,6 @@ ja:
|
|
|
211
210
|
no_feedback: There is no feedback yet. Why don't you create some?
|
|
212
211
|
presumed_ham: Presumed ham
|
|
213
212
|
presumed_spam: Presumed spam
|
|
214
|
-
select_all: Select all
|
|
215
213
|
spam: スパム
|
|
216
214
|
status: ステータス
|
|
217
215
|
unapproved_comments: 未承認コメント
|
|
@@ -561,6 +559,7 @@ ja:
|
|
|
561
559
|
sidebar_plugins: Sidebar plugins
|
|
562
560
|
tags: Tags
|
|
563
561
|
titles: Titles
|
|
562
|
+
view_blog: View blog
|
|
564
563
|
write: Write
|
|
565
564
|
twitter_alert:
|
|
566
565
|
fill_the_twitter_credentials: fill in the OAuth credentials
|
|
@@ -773,6 +772,7 @@ ja:
|
|
|
773
772
|
helper:
|
|
774
773
|
at: at
|
|
775
774
|
langs:
|
|
775
|
+
ar_AR: Arabic
|
|
776
776
|
da_DK: Danish
|
|
777
777
|
de_DE: German
|
|
778
778
|
en_US: English (US)
|