diff options
author | Philip Arndt <parndt@gmail.com> | 2011-02-21 13:16:42 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2011-02-21 13:21:56 +1300 |
commit | f221da62cde073059424eddaa1f7a52ed67de848 (patch) | |
tree | 563d1dcb3abd2230a453609665965ef33348a06f /config | |
parent | 4228fa4146360751edb1241e187f67d03128cdaf (diff) | |
download | refinerycms-blog-f221da62cde073059424eddaa1f7a52ed67de848.tar.gz refinerycms-blog-f221da62cde073059424eddaa1f7a52ed67de848.tar.bz2 refinerycms-blog-f221da62cde073059424eddaa1f7a52ed67de848.zip |
Added settings click-button functionality for toggling comments being enabled, with translations.
Diffstat (limited to 'config')
-rw-r--r-- | config/locales/en.yml | 1 | ||||
-rw-r--r-- | config/locales/es.yml | 1 | ||||
-rw-r--r-- | config/locales/fr.yml | 5 | ||||
-rw-r--r-- | config/locales/it.yml | 1 | ||||
-rw-r--r-- | config/locales/pt-BR.yml | 1 | ||||
-rw-r--r-- | config/locales/ru.yml | 1 | ||||
-rw-r--r-- | config/routes.rb | 1 |
7 files changed, 9 insertions, 2 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml index 21a1459..6585d5b 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -74,6 +74,7 @@ en: title: Settings moderation: Moderation update_notified: Update who gets notified + comments: Comments blog: comment_mailer: notification: diff --git a/config/locales/es.yml b/config/locales/es.yml index 10b533c..cd1c616 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -71,6 +71,7 @@ es: title: Configuración moderation: Moderación update_notified: ¿Quién recibe las notificaciones? + comments: Comentarios blog: comment_mailer: notification: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index c09f25f..b012054 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -22,7 +22,7 @@ fr: no_items_yet: 'Il n''y aucun %{type} de commentaires.' show: comment: Commenter - blog_post: Article + blog_post: Article from: Écrit par date: Écrit le message: Commentaire @@ -57,7 +57,7 @@ fr: manage: Gérer new: Créer une nouvelle catégorie comments: - title: Commentaires + title: Commentaires title_with_count: 'Commentaires (%{new_count} nouveau(x))' new: Nouveau unmoderated: Nouveau @@ -71,6 +71,7 @@ fr: title: Paramêtres moderation: Modération update_notified: Mettre à jour les personnes à notifier + comments: Commentaires blog: comment_mailer: notification: diff --git a/config/locales/it.yml b/config/locales/it.yml index e0c9c79..e68a331 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -71,6 +71,7 @@ it: title: Impostazioni moderation: Moderazione update_notified: Aggiornare destinatario notifica + comments: Commenti blog: shared: categories: diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index deeeb3a..1d856bb 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -71,6 +71,7 @@ pt-BR: title: Configurações moderation: Moderação update_notified: Quem receberá a notificação? + comments: Comentários blog: comment_mailer: notification: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 493b895..98b22fc 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -71,6 +71,7 @@ ru: title: Настройки moderation: Модерирование update_notified: Настроить уведомления + comments: Комментарии blog: comment_mailer: notification: diff --git a/config/routes.rb b/config/routes.rb index 73d4a11..e37987a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -34,6 +34,7 @@ Refinery::Application.routes.draw do post :notification_recipients get :moderation + get :comments end end end |