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.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +57 -18
  3. data/app/assets/javascripts/lang/ar_AR.js +17 -0
  4. data/app/controllers/admin/{content_controller.rb → articles_controller.rb} +24 -24
  5. data/app/controllers/admin/dashboard_controller.rb +3 -3
  6. data/app/controllers/admin/feedback_controller.rb +23 -23
  7. data/app/controllers/admin/pages_controller.rb +2 -2
  8. data/app/controllers/admin/post_types_controller.rb +10 -4
  9. data/app/controllers/admin/redirects_controller.rb +10 -6
  10. data/app/controllers/admin/resources_controller.rb +2 -2
  11. data/app/controllers/admin/sidebar_controller.rb +2 -2
  12. data/app/controllers/admin/tags_controller.rb +5 -3
  13. data/app/controllers/admin/themes_controller.rb +1 -2
  14. data/app/controllers/admin/users_controller.rb +5 -3
  15. data/app/controllers/articles_controller.rb +5 -5
  16. data/app/controllers/authors_controller.rb +2 -2
  17. data/app/controllers/base_controller.rb +0 -3
  18. data/app/controllers/feedback_controller.rb +3 -3
  19. data/app/controllers/tags_controller.rb +3 -3
  20. data/app/helpers/authors_helper.rb +1 -1
  21. data/app/helpers/base_helper.rb +6 -6
  22. data/app/models/ability.rb +1 -1
  23. data/app/models/archives_sidebar.rb +3 -3
  24. data/app/models/article.rb +13 -13
  25. data/app/models/blog.rb +3 -6
  26. data/app/models/content.rb +1 -3
  27. data/app/models/content_base.rb +2 -13
  28. data/app/models/feedback.rb +1 -2
  29. data/app/models/meta_sidebar.rb +1 -1
  30. data/app/models/note.rb +2 -2
  31. data/app/models/redirect.rb +0 -1
  32. data/app/models/sidebar.rb +1 -1
  33. data/app/models/static_sidebar.rb +1 -1
  34. data/app/models/tag.rb +7 -8
  35. data/app/models/tag_sidebar.rb +3 -3
  36. data/app/models/text_filter.rb +17 -43
  37. data/app/models/user.rb +2 -2
  38. data/app/services/title_builder.rb +4 -4
  39. data/app/views/admin/{content → articles}/_article_list.html.erb +3 -3
  40. data/app/views/admin/{content → articles}/_form.html.erb +11 -1
  41. data/app/views/admin/{content → articles}/index.html.erb +1 -1
  42. data/app/views/admin/dashboard/_drafts.html.erb +2 -2
  43. data/app/views/admin/dashboard/_overview.html.erb +1 -1
  44. data/app/views/admin/dashboard/_welcome.html.erb +4 -4
  45. data/app/views/admin/dashboard/index.html.erb +0 -7
  46. data/app/views/admin/feedback/article.html.erb +12 -6
  47. data/app/views/admin/feedback/edit.html.erb +14 -2
  48. data/app/views/admin/feedback/index.html.erb +6 -7
  49. data/app/views/admin/pages/_form.html.erb +13 -14
  50. data/app/views/admin/seo/show.html.erb +12 -1
  51. data/app/views/admin/shared/_menu.html.erb +5 -4
  52. data/app/views/admin/tags/_index_and_form.html.erb +2 -1
  53. data/app/views/articles/_comment_errors.html.erb +11 -1
  54. data/app/views/articles/read.html.erb +1 -1
  55. data/app/views/layouts/administration.html.erb +9 -17
  56. data/config/i18n-tasks.yml +8 -1
  57. data/config/initializers/devise.rb +1 -1
  58. data/config/locales/ar.yml +885 -0
  59. data/config/locales/da.yml +12 -12
  60. data/config/locales/de.yml +12 -12
  61. data/config/locales/en.yml +12 -12
  62. data/config/locales/es-MX.yml +12 -12
  63. data/config/locales/fr.yml +12 -12
  64. data/config/locales/he.yml +12 -12
  65. data/config/locales/it.yml +12 -12
  66. data/config/locales/ja.yml +13 -13
  67. data/config/locales/lt.yml +12 -12
  68. data/config/locales/{nb-NO.yml → nb.yml} +13 -13
  69. data/config/locales/nl.yml +13 -13
  70. data/config/locales/pl.yml +12 -12
  71. data/config/locales/pt-BR.yml +12 -12
  72. data/config/locales/ro.yml +12 -12
  73. data/config/locales/ru.yml +13 -13
  74. data/config/locales/sidebars.ar.yml +20 -0
  75. data/config/locales/{sidebars.nb-NO.yml → sidebars.nb.yml} +1 -1
  76. data/config/locales/zh-CN.yml +12 -12
  77. data/config/locales/zh-TW.yml +12 -12
  78. data/config/routes.rb +2 -2
  79. data/db/migrate/20150807134129_simplify_redirect_relations.rb +1 -0
  80. data/db/migrate/20150808052637_add_blog_ids.rb +3 -1
  81. data/db/migrate/20160605103918_replace_profile_id_with_string.rb +1 -0
  82. data/db/migrate/20160701062604_add_blog_id_to_resources.rb +2 -0
  83. data/db/migrate/20190208152646_move_text_filter_to_name.rb +17 -17
  84. data/db/migrate/20221007091049_remove_table_sitealizer.rb +19 -0
  85. data/db/migrate/20221010092846_remove_page_caches_table.rb +15 -0
  86. data/db/migrate/20221012163214_remove_itunes_fields_from_resources.rb +14 -0
  87. data/db/seeds.rb +0 -4
  88. data/lib/publify_core/content_text_helpers.rb +11 -0
  89. data/lib/publify_core/lang.rb +1 -1
  90. data/lib/publify_core/testing_support/factories/articles.rb +55 -0
  91. data/lib/publify_core/testing_support/factories/blogs.rb +24 -0
  92. data/lib/publify_core/testing_support/factories/comments.rb +40 -0
  93. data/lib/publify_core/testing_support/factories/contents.rb +7 -0
  94. data/lib/publify_core/testing_support/factories/notes.rb +17 -0
  95. data/lib/publify_core/testing_support/factories/pages.rb +13 -0
  96. data/lib/publify_core/testing_support/factories/post_types.rb +8 -0
  97. data/lib/publify_core/testing_support/factories/redirects.rb +9 -0
  98. data/lib/publify_core/testing_support/factories/resources.rb +16 -0
  99. data/lib/publify_core/testing_support/factories/sequences.rb +12 -0
  100. data/lib/publify_core/testing_support/factories/sidebars.rb +10 -0
  101. data/lib/publify_core/testing_support/factories/tags.rb +9 -0
  102. data/lib/publify_core/testing_support/factories/trackbacks.rb +13 -0
  103. data/lib/publify_core/testing_support/factories/users.rb +43 -0
  104. data/lib/publify_core/version.rb +1 -1
  105. data/lib/publify_core.rb +3 -3
  106. data/lib/publify_textfilter_markdown.rb +8 -9
  107. data/lib/publify_textfilter_markdown_smartquotes.rb +20 -0
  108. data/lib/publify_textfilter_twitterfilter.rb +36 -18
  109. data/lib/sidebar_field.rb +2 -2
  110. data/lib/sidebar_registry.rb +0 -12
  111. data/lib/text_filter_plugin.rb +23 -30
  112. metadata +213 -105
  113. data/lib/publify_core/testing_support/factories.rb +0 -240
  114. data/lib/publify_textfilter_textile.rb +0 -24
  115. data/lib/tasks/i18n.rake +0 -9
  116. /data/app/views/admin/{content → articles}/autosave.js.erb +0 -0
  117. /data/app/views/admin/{content → articles}/edit.html.erb +0 -0
  118. /data/app/views/admin/{content → articles}/index.js.erb +0 -0
  119. /data/app/views/admin/{content → articles}/new.html.erb +0 -0
@@ -19,14 +19,8 @@ lt:
19
19
  attributes:
20
20
  title:
21
21
  blank: can't be blank
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
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 @@ lt:
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 @@ lt:
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
@@ -167,14 +163,17 @@ lt:
167
163
  feedback:
168
164
  article:
169
165
  action_or_other_html: "%{first_action} arba %{second_action}"
166
+ actions: Actions
170
167
  add_a_comment: Add a comment
171
168
  author: Autorius
172
169
  cancel: Baigti
173
170
  comments_for_html: Komentarai %{title}
171
+ content: Content
172
+ created_at: Created at
174
173
  email: El. pašto adresas
175
174
  no_feedback: There is no feedback yet. Why don't you create some?
176
175
  save: Saugoti
177
- select_all: Select all
176
+ status: Statusas
178
177
  url: Url adresas
179
178
  your_comment: Your comment
180
179
  bulkops:
@@ -223,7 +222,6 @@ lt:
223
222
  no_feedback: There is no feedback yet. Why don't you create some?
224
223
  presumed_ham: Presumed ham
225
224
  presumed_spam: Presumed spam
226
- select_all: Select all
227
225
  spam: Spam
228
226
  status: Statusas
229
227
  unapproved_comments: Unapproved comments
@@ -587,6 +585,7 @@ lt:
587
585
  sidebar_plugins: Sidebar plugins
588
586
  tags: Tags
589
587
  titles: Titles
588
+ view_blog: View blog
590
589
  write: Write
591
590
  twitter_alert:
592
591
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -806,6 +805,7 @@ lt:
806
805
  helper:
807
806
  at: at
808
807
  langs:
808
+ ar_AR: Arabic
809
809
  da_DK: Danish
810
810
  de_DE: German
811
811
  en_US: English (US)
@@ -1,5 +1,5 @@
1
1
  ---
2
- nb-NO:
2
+ nb:
3
3
  accounts:
4
4
  back_to_html: "&larr; Tilbake til %{place}"
5
5
  back_to_login: Tilbake til innlogging
@@ -19,14 +19,8 @@ nb-NO:
19
19
  attributes:
20
20
  title:
21
21
  blank: kan ikke være blank
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
27
- not_allowed: Feil, du har ikke lov til å utføre denne handlingen
28
- successfully_deleted: Slettet %{name}
29
- content:
23
+ articles:
30
24
  access_granted:
31
25
  error: Du har ikke tillatelse til å utføre denne handlingen
32
26
  article_list:
@@ -85,6 +79,11 @@ nb-NO:
85
79
  withdrawn: Trukket tilbake
86
80
  update:
87
81
  success: Artikkel oppdatert
82
+ base:
83
+ not_allowed: Feil, du har ikke lov til å utføre denne handlingen
84
+ successfully_created: "%{name} was successfully created."
85
+ successfully_deleted: Slettet %{name}
86
+ successfully_updated: "%{name} was successfully updated."
88
87
  dashboard:
89
88
  comment:
90
89
  by: Av
@@ -95,9 +94,6 @@ nb-NO:
95
94
  no_drafts_yet: Ingen utkast enda, hvorfor ikke begynne å skrive et?
96
95
  your_drafts: Dine utkast
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 tilbake, %{user_name}!
102
98
  overview:
103
99
  change_your_blog_presentation: endre utseende på bloggen din
@@ -158,14 +154,17 @@ nb-NO:
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: Legg til kommentar
162
159
  author: Forfatter
163
160
  cancel: Avbryt
164
161
  comments_for_html: Kommentarer for %{title}
162
+ content: Innhold
163
+ created_at: Created at
165
164
  email: Epost
166
165
  no_feedback: Det finnes ingen diskusjon enda. Hva med å opprette en?
167
166
  save: Lagre
168
- select_all: Velg alle
167
+ status: Status
169
168
  url: URL
170
169
  your_comment: Din kommentar
171
170
  bulkops:
@@ -212,7 +211,6 @@ nb-NO:
212
211
  no_feedback: Det finnes ingen diskusjon enda. Hva med å opprette en?
213
212
  presumed_ham: Antatt ikke-spam
214
213
  presumed_spam: Antall spam
215
- select_all: Velg alle
216
214
  spam: Spam
217
215
  status: Status
218
216
  unapproved_comments: Kommentarer på vent
@@ -570,6 +568,7 @@ nb-NO:
570
568
  sidebar_plugins: Sidemarg-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: skrive inn oauth-token
@@ -785,6 +784,7 @@ nb-NO:
785
784
  helper:
786
785
  at: kl.
787
786
  langs:
787
+ ar_AR: Arabic
788
788
  da_DK: Dansk
789
789
  de_DE: Tysk
790
790
  en_US: Engelsk (amerikansk)
@@ -19,14 +19,8 @@ nl:
19
19
  attributes:
20
20
  title:
21
21
  blank: mag niet leeg zijn
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
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: Fout, je mag dit niet doen
32
26
  article_list:
@@ -85,6 +79,11 @@ nl:
85
79
  withdrawn: Withdrawn
86
80
  update:
87
81
  success: Artikel is succesvol bijgewerkt.
82
+ base:
83
+ not_allowed: Error, you are not allowed to perform this action
84
+ successfully_created: "%{name} is met succes aangemaakt."
85
+ successfully_deleted: This %{name} was deleted successfully
86
+ successfully_updated: "%{name} is met succes bijgewerkt."
88
87
  dashboard:
89
88
  comment:
90
89
  by: Door
@@ -95,9 +94,6 @@ nl:
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: Welkom terug, %{user_name}!
102
98
  overview:
103
99
  change_your_blog_presentation: je blog presentatie aanpassen
@@ -158,14 +154,17 @@ nl:
158
154
  feedback:
159
155
  article:
160
156
  action_or_other_html: "%{first_action} of %{second_action}"
157
+ actions: Actions
161
158
  add_a_comment: Voeg een commentaar toe
162
159
  author: Auteur
163
160
  cancel: Terug
164
161
  comments_for_html: Commentaren voor %{title}
162
+ content: Inhoud
163
+ created_at: Created at
165
164
  email: e-mail
166
- no_feedback: Er zijn nog geen feedback. Waarom begin je er niet een te maken?
165
+ no_feedback: Er zijn nog geen reacties. Waarom maak je er geen?
167
166
  save: Opslaan
168
- select_all: Select all
167
+ status: Status
169
168
  url: Url
170
169
  your_comment: Your comment
171
170
  bulkops:
@@ -212,7 +211,6 @@ nl:
212
211
  no_feedback: Er zijn nog geen reacties. Waarom maak je er geen?
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: Niet goedgekeurde reacties
@@ -577,6 +575,7 @@ nl:
577
575
  sidebar_plugins: Sidebar plugins
578
576
  tags: Trefwoorden
579
577
  titles: Titles
578
+ view_blog: Blog bekijken
580
579
  write: Write
581
580
  twitter_alert:
582
581
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -793,6 +792,7 @@ nl:
793
792
  helper:
794
793
  at: at
795
794
  langs:
795
+ ar_AR: Arabic
796
796
  da_DK: Danish
797
797
  de_DE: German
798
798
  en_US: English (US)
@@ -19,14 +19,8 @@ pl:
19
19
  attributes:
20
20
  title:
21
21
  blank: nie może być puste
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
27
- not_allowed: Błąd, nie masz wystarczających uprawnień aby to zrobić
28
- successfully_deleted: "%{name} zostało pomyślnie usunięte"
29
- content:
23
+ articles:
30
24
  access_granted:
31
25
  error: Wystąpił błąd. Nie masz wystarczających uprawnień.
32
26
  article_list:
@@ -85,6 +79,11 @@ pl:
85
79
  withdrawn: Withdrawn
86
80
  update:
87
81
  success: Artykuł został poprawnie zaktualizowany
82
+ base:
83
+ not_allowed: Błąd, nie masz wystarczających uprawnień aby to zrobić
84
+ successfully_created: "%{name} was successfully created."
85
+ successfully_deleted: "%{name} zostało pomyślnie usunięte"
86
+ successfully_updated: "%{name} was successfully updated."
88
87
  dashboard:
89
88
  comment:
90
89
  by: Przez
@@ -95,9 +94,6 @@ pl:
95
94
  no_drafts_yet: Brak szkiców.
96
95
  your_drafts: Twoje szkice
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: Witamy z powrotem, %{user_name}!
102
98
  overview:
103
99
  change_your_blog_presentation: zmienić wygląd swojego bloga
@@ -176,14 +172,17 @@ pl:
176
172
  feedback:
177
173
  article:
178
174
  action_or_other_html: "%{first_action} lub %{second_action}"
175
+ actions: Actions
179
176
  add_a_comment: Dodaj komentarz
180
177
  author: Autor
181
178
  cancel: Anuluj
182
179
  comments_for_html: Komentarze do %{title}
180
+ content: Treść
181
+ created_at: Created at
183
182
  email: Email
184
183
  no_feedback: Brak komentarzy.
185
184
  save: Zapisz
186
- select_all: Wybierz wszystko
185
+ status: Stan
187
186
  url: Url
188
187
  your_comment: Twój komentarz
189
188
  bulkops:
@@ -234,7 +233,6 @@ pl:
234
233
  no_feedback: Brak komentarzy.
235
234
  presumed_ham: Prawdopodobny nie-spam
236
235
  presumed_spam: Prawdopodobny spam
237
- select_all: Zaznacz wszystko
238
236
  spam: Spam
239
237
  status: Stan
240
238
  unapproved_comments: Niezaakceptowane komentarze
@@ -599,6 +597,7 @@ pl:
599
597
  sidebar_plugins: Sidebar plugins
600
598
  tags: Tags
601
599
  titles: Titles
600
+ view_blog: View blog
602
601
  write: Write
603
602
  twitter_alert:
604
603
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -818,6 +817,7 @@ pl:
818
817
  helper:
819
818
  at: at
820
819
  langs:
820
+ ar_AR: Arabic
821
821
  da_DK: Danish
822
822
  de_DE: German
823
823
  en_US: English (US)
@@ -19,14 +19,8 @@ pt-BR:
19
19
  attributes:
20
20
  title:
21
21
  blank: não pode ser vazio
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
27
- not_allowed: Erro, você não possui permissão para executar esta ação
28
- successfully_deleted: Este %{name} foi removido com sucesso
29
- content:
23
+ articles:
30
24
  access_granted:
31
25
  error: Erro, você não tem permissão para executar essa tarefa
32
26
  article_list:
@@ -85,6 +79,11 @@ pt-BR:
85
79
  withdrawn: Retirado
86
80
  update:
87
81
  success: Artigo atualizado com sucesso
82
+ base:
83
+ not_allowed: Erro, você não possui permissão para executar esta ação
84
+ successfully_created: "%{name} was successfully created."
85
+ successfully_deleted: Este %{name} foi removido com sucesso
86
+ successfully_updated: "%{name} was successfully updated."
88
87
  dashboard:
89
88
  comment:
90
89
  by: Por
@@ -95,9 +94,6 @@ pt-BR:
95
94
  no_drafts_yet: Nenhum rascunho ainda, porque você não inicia e cria um
96
95
  your_drafts: Seus rascunhos
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: Bem-vindo(a) novamente, %{user_name}!
102
98
  overview:
103
99
  change_your_blog_presentation: alterar a apresentação do seu blog
@@ -158,14 +154,17 @@ pt-BR:
158
154
  feedback:
159
155
  article:
160
156
  action_or_other_html: "%{first_action} ou %{second_action}"
157
+ actions: Actions
161
158
  add_a_comment: Adicionar um comentário
162
159
  author: Autor
163
160
  cancel: Cancelar
164
161
  comments_for_html: Comentários para %{title}
162
+ content: Conteúdo
163
+ created_at: Created at
165
164
  email: E-mail
166
165
  no_feedback: Não existem feedback ainda. Por que você não inicia e cria um?
167
166
  save: Salvar
168
- select_all: Selecionar todos
167
+ status: Estado
169
168
  url: Url
170
169
  your_comment: Seu comentário
171
170
  bulkops:
@@ -212,7 +211,6 @@ pt-BR:
212
211
  no_feedback: Não existem feedback ainda. Por que você não inicia e cria um?
213
212
  presumed_ham: Possível ham
214
213
  presumed_spam: Possível spam
215
- select_all: Selecionar todos
216
214
  spam: Spam
217
215
  status: Estado
218
216
  unapproved_comments: Comentários não aprovados
@@ -575,6 +573,7 @@ pt-BR:
575
573
  sidebar_plugins: Plugins da Sidebar
576
574
  tags: Tags
577
575
  titles: Titles
576
+ view_blog: View blog
578
577
  write: Escrever
579
578
  twitter_alert:
580
579
  fill_the_twitter_credentials: preencha com as credenciais OAuth
@@ -793,6 +792,7 @@ pt-BR:
793
792
  helper:
794
793
  at: em
795
794
  langs:
795
+ ar_AR: Arabic
796
796
  da_DK: Danish
797
797
  de_DE: German
798
798
  en_US: English (US)
@@ -19,14 +19,8 @@ ro:
19
19
  attributes:
20
20
  title:
21
21
  blank: can't be blank
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
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 @@ ro:
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 @@ ro:
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
@@ -167,14 +163,17 @@ ro:
167
163
  feedback:
168
164
  article:
169
165
  action_or_other_html: "%{first_action} sau %{second_action}"
166
+ actions: Actions
170
167
  add_a_comment: Add a comment
171
168
  author: Autor
172
169
  cancel: Anulare
173
170
  comments_for_html: Comentariile la %{title}
171
+ content: Content
172
+ created_at: Created at
174
173
  email: Email
175
174
  no_feedback: There is no feedback yet. Why don't you create some?
176
175
  save: Salvează
177
- select_all: Select all
176
+ status: Status
178
177
  url: Adresa
179
178
  your_comment: Your comment
180
179
  bulkops:
@@ -223,7 +222,6 @@ ro:
223
222
  no_feedback: There is no feedback yet. Why don't you create some?
224
223
  presumed_ham: Presumed ham
225
224
  presumed_spam: Presumed spam
226
- select_all: Select all
227
225
  spam: Spam
228
226
  status: Status
229
227
  unapproved_comments: Unapproved comments
@@ -588,6 +586,7 @@ ro:
588
586
  sidebar_plugins: Sidebar plugins
589
587
  tags: Tags
590
588
  titles: Titles
589
+ view_blog: View blog
591
590
  write: Publicare
592
591
  twitter_alert:
593
592
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -805,6 +804,7 @@ ro:
805
804
  helper:
806
805
  at: at
807
806
  langs:
807
+ ar_AR: Arabic
808
808
  da_DK: Danish
809
809
  de_DE: German
810
810
  en_US: English (US)
@@ -19,14 +19,8 @@ ru:
19
19
  attributes:
20
20
  title:
21
21
  blank: не может быть пустым
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
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 @@ ru:
85
79
  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 @@ ru:
95
94
  no_drafts_yet: Пока нет черновиков. Почему бы не взять и не написать?
96
95
  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: изменив тему блога
@@ -176,14 +172,17 @@ ru:
176
172
  feedback:
177
173
  article:
178
174
  action_or_other_html: "%{first_action} или %{second_action}"
175
+ actions: Actions
179
176
  add_a_comment: Добавить комментарий
180
177
  author: Автор
181
178
  cancel: Отменить
182
179
  comments_for_html: Комментарии к %{title}
180
+ content: Content
181
+ created_at: Created at
183
182
  email: Email
184
- no_feedback: Пока нет комментариев.
183
+ no_feedback: Ничего нет. Почему бы не начать и не добавить?
185
184
  save: Сохранить
186
- select_all: Выбрать все
185
+ status: Статус
187
186
  url: Url
188
187
  your_comment: Ваш комментарий
189
188
  bulkops:
@@ -234,7 +233,6 @@ ru:
234
233
  no_feedback: Ничего нет. Почему бы не начать и не добавить?
235
234
  presumed_ham: Предположительно хорошие
236
235
  presumed_spam: Предположительно спам
237
- select_all: Выбрать все
238
236
  spam: Спам
239
237
  status: Статус
240
238
  unapproved_comments: Unapproved comments
@@ -599,6 +597,7 @@ ru:
599
597
  sidebar_plugins: Боковые плагины
600
598
  tags: Теги
601
599
  titles: Заголовки
600
+ view_blog: View blog
602
601
  write: Публикация
603
602
  twitter_alert:
604
603
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -819,6 +818,7 @@ ru:
819
818
  helper:
820
819
  at: в
821
820
  langs:
821
+ ar_AR: Arabic
822
822
  da_DK: Danish
823
823
  de_DE: German
824
824
  en_US: Английский (американский)
@@ -0,0 +1,20 @@
1
+ ---
2
+ ar:
3
+ admin:
4
+ sidebar:
5
+ target_sidebar:
6
+ update: تحديث
7
+ meta_sidebar:
8
+ content:
9
+ admin: مشرف
10
+ powered_by_publify: مشغل بواسطة Publify
11
+ rss_feed: RSS خدمة
12
+ page_sidebar:
13
+ content:
14
+ pages: صفحات
15
+ search_sidebar:
16
+ content:
17
+ search: بحث
18
+ tag_sidebar:
19
+ content:
20
+ tags: علامات
@@ -1,5 +1,5 @@
1
1
  ---
2
- nb-NO:
2
+ nb:
3
3
  admin:
4
4
  sidebar:
5
5
  target_sidebar:
@@ -19,14 +19,8 @@ zh-CN:
19
19
  attributes:
20
20
  title:
21
21
  blank: can't be blank
22
- template:
23
- body: ''
24
- header: ''
25
22
  admin:
26
- base:
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 @@ zh-CN:
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 @@ zh-CN:
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: 修改你的博客外观
@@ -154,14 +150,17 @@ zh-CN:
154
150
  feedback:
155
151
  article:
156
152
  action_or_other_html: "%{first_action} 或 %{second_action}"
153
+ actions: Actions
157
154
  add_a_comment: Add a comment
158
155
  author: 作者
159
156
  cancel: 取消
160
157
  comments_for_html: 做出评论 %{title}
158
+ content: Content
159
+ created_at: Created at
161
160
  email: Email
162
161
  no_feedback: 这儿并不存在Feedback。让我们开始创建它。
163
162
  save: 保存
164
- select_all: Select all
163
+ status: 状态
165
164
  url: Url
166
165
  your_comment: Your comment
167
166
  bulkops:
@@ -208,7 +207,6 @@ zh-CN:
208
207
  no_feedback: 这儿并不存在Feedback。让我们开始创建它。
209
208
  presumed_ham: Presumed ham
210
209
  presumed_spam: Presumed spam
211
- select_all: Select all
212
210
  spam: Spam
213
211
  status: 状态
214
212
  unapproved_comments: Unapproved comments
@@ -562,6 +560,7 @@ zh-CN:
562
560
  sidebar_plugins: Sidebar plugins
563
561
  tags: Tags
564
562
  titles: Titles
563
+ view_blog: View blog
565
564
  write: Write
566
565
  twitter_alert:
567
566
  fill_the_twitter_credentials: fill in the OAuth credentials
@@ -774,6 +773,7 @@ zh-CN:
774
773
  helper:
775
774
  at: at
776
775
  langs:
776
+ ar_AR: Arabic
777
777
  da_DK: Danish
778
778
  de_DE: German
779
779
  en_US: English (US)