refinerycms-whatson 1.8.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 (137) hide show
  1. data/.gitignore +48 -0
  2. data/.tork.rb +2 -0
  3. data/.travis.yml +2 -0
  4. data/Gemfile +7 -0
  5. data/Rakefile +3 -0
  6. data/app/controllers/admin/whatson/categories_controller.rb +11 -0
  7. data/app/controllers/admin/whatson/comments_controller.rb +40 -0
  8. data/app/controllers/admin/whatson/posts_controller.rb +97 -0
  9. data/app/controllers/admin/whatson/settings_controller.rb +53 -0
  10. data/app/controllers/whatson/categories_controller.rb +13 -0
  11. data/app/controllers/whatson/posts_controller.rb +109 -0
  12. data/app/controllers/whatson_controller.rb +16 -0
  13. data/app/helpers/whatson_posts_helper.rb +56 -0
  14. data/app/mailers/whatson/comment_mailer.rb +13 -0
  15. data/app/models/categorization.rb +7 -0
  16. data/app/models/whatson/comment_mailer.rb +1 -0
  17. data/app/models/whatson_category.rb +19 -0
  18. data/app/models/whatson_comment.rb +137 -0
  19. data/app/models/whatson_post.rb +114 -0
  20. data/app/views/admin/whatson/_submenu.html.erb +96 -0
  21. data/app/views/admin/whatson/categories/_category.html.erb +16 -0
  22. data/app/views/admin/whatson/categories/_form.html.erb +19 -0
  23. data/app/views/admin/whatson/categories/_sortable_list.html.erb +7 -0
  24. data/app/views/admin/whatson/categories/edit.html.erb +1 -0
  25. data/app/views/admin/whatson/categories/index.html.erb +26 -0
  26. data/app/views/admin/whatson/categories/new.html.erb +1 -0
  27. data/app/views/admin/whatson/comments/_comment.html.erb +20 -0
  28. data/app/views/admin/whatson/comments/_sortable_list.html.erb +7 -0
  29. data/app/views/admin/whatson/comments/index.html.erb +35 -0
  30. data/app/views/admin/whatson/comments/show.html.erb +63 -0
  31. data/app/views/admin/whatson/posts/_form.css.erb +20 -0
  32. data/app/views/admin/whatson/posts/_form.html.erb +110 -0
  33. data/app/views/admin/whatson/posts/_form.js.erb +23 -0
  34. data/app/views/admin/whatson/posts/_form_part.html.erb +3 -0
  35. data/app/views/admin/whatson/posts/_post.html.erb +24 -0
  36. data/app/views/admin/whatson/posts/_sortable_list.html.erb +7 -0
  37. data/app/views/admin/whatson/posts/_teaser_part.html.erb +11 -0
  38. data/app/views/admin/whatson/posts/edit.html.erb +1 -0
  39. data/app/views/admin/whatson/posts/index.html.erb +28 -0
  40. data/app/views/admin/whatson/posts/new.html.erb +1 -0
  41. data/app/views/admin/whatson/posts/uncategorized.html.erb +26 -0
  42. data/app/views/admin/whatson/settings/notification_recipients.html.erb +24 -0
  43. data/app/views/shared/admin/_autocomplete.html.erb +55 -0
  44. data/app/views/whatson/categories/show.html.erb +21 -0
  45. data/app/views/whatson/comment_mailer/notification.html.erb +17 -0
  46. data/app/views/whatson/posts/_comment.html.erb +10 -0
  47. data/app/views/whatson/posts/_nav.html.erb +11 -0
  48. data/app/views/whatson/posts/archive.html.erb +20 -0
  49. data/app/views/whatson/posts/index.html.erb +24 -0
  50. data/app/views/whatson/posts/index.rss.builder +17 -0
  51. data/app/views/whatson/posts/show.html.erb +98 -0
  52. data/app/views/whatson/posts/tagged.html.erb +22 -0
  53. data/app/views/whatson/shared/_archive_list.html.erb +9 -0
  54. data/app/views/whatson/shared/_categories.html.erb +10 -0
  55. data/app/views/whatson/shared/_post.html.erb +46 -0
  56. data/app/views/whatson/shared/_related_posts.html.erb +10 -0
  57. data/app/views/whatson/shared/_rss_feed.html.erb +2 -0
  58. data/app/views/whatson/shared/_tags.html.erb +8 -0
  59. data/config/locales/bg.yml +158 -0
  60. data/config/locales/cs.yml +128 -0
  61. data/config/locales/de.yml +130 -0
  62. data/config/locales/en.yml +159 -0
  63. data/config/locales/es.yml +159 -0
  64. data/config/locales/fr.yml +154 -0
  65. data/config/locales/it.yml +156 -0
  66. data/config/locales/ja.yml +159 -0
  67. data/config/locales/nb.yml +30 -0
  68. data/config/locales/nl.yml +134 -0
  69. data/config/locales/pl.yml +134 -0
  70. data/config/locales/pt-BR.yml +143 -0
  71. data/config/locales/ru.yml +135 -0
  72. data/config/locales/sk.yml +128 -0
  73. data/config/locales/zh-CN.yml +128 -0
  74. data/config/routes.rb +47 -0
  75. data/db/migrate/1_create_whatson_structure.rb +54 -0
  76. data/db/migrate/2_add_user_id_to_whatson_posts.rb +11 -0
  77. data/db/migrate/3_acts_as_taggable_on_migration.rb +28 -0
  78. data/db/migrate/4_create_seo_meta_for_whatson.rb +25 -0
  79. data/db/migrate/5_add_cached_slugs.rb +11 -0
  80. data/db/migrate/6_add_custom_url_field_to_whatson_posts.rb +9 -0
  81. data/db/migrate/7_add_custom_teaser_field_to_whatson_posts.rb +10 -0
  82. data/db/migrate/8_add_primary_key_to_categorizations.rb +12 -0
  83. data/db/seeds/refinerycms_whatson.rb +20 -0
  84. data/features/authors.feature +15 -0
  85. data/features/category.feature +23 -0
  86. data/features/support/factories/whatson_categories.rb +5 -0
  87. data/features/support/factories/whatson_comments.rb +8 -0
  88. data/features/support/factories/whatson_posts.rb +9 -0
  89. data/features/support/paths.rb +24 -0
  90. data/features/support/step_definitions/authors_steps.rb +7 -0
  91. data/features/support/step_definitions/category_steps.rb +11 -0
  92. data/features/support/step_definitions/tags_steps.rb +13 -0
  93. data/features/tags.feature +26 -0
  94. data/lib/gemspec.rb +37 -0
  95. data/lib/generators/refinerycms_whatson_generator.rb +8 -0
  96. data/lib/refinery/whatson/tabs.rb +28 -0
  97. data/lib/refinery/whatson/version.rb +17 -0
  98. data/lib/refinerycms-whatson.rb +41 -0
  99. data/public/images/refinerycms-whatson/icons/cog.png +0 -0
  100. data/public/images/refinerycms-whatson/icons/comment.png +0 -0
  101. data/public/images/refinerycms-whatson/icons/comment_cross.png +0 -0
  102. data/public/images/refinerycms-whatson/icons/comment_tick.png +0 -0
  103. data/public/images/refinerycms-whatson/icons/comments.png +0 -0
  104. data/public/images/refinerycms-whatson/icons/down.gif +0 -0
  105. data/public/images/refinerycms-whatson/icons/folder.png +0 -0
  106. data/public/images/refinerycms-whatson/icons/folder_add.png +0 -0
  107. data/public/images/refinerycms-whatson/icons/folder_edit.png +0 -0
  108. data/public/images/refinerycms-whatson/icons/page.png +0 -0
  109. data/public/images/refinerycms-whatson/icons/page_add.png +0 -0
  110. data/public/images/refinerycms-whatson/icons/page_copy.png +0 -0
  111. data/public/images/refinerycms-whatson/icons/up.gif +0 -0
  112. data/public/images/refinerycms-whatson/rss-feed.png +0 -0
  113. data/public/javascripts/refinery/refinerycms-whatson.js +50 -0
  114. data/public/javascripts/refinerycms-whatson.js +25 -0
  115. data/public/stylesheets/refinery/refinerycms-whatson.css +57 -0
  116. data/public/stylesheets/refinerycms-whatson.css +93 -0
  117. data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  118. data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  119. data/public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  120. data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  121. data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  122. data/public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  123. data/public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  124. data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  125. data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  126. data/public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  127. data/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  128. data/public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  129. data/public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  130. data/public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  131. data/public/stylesheets/ui-lightness/jquery-ui-1.8.13.custom.css +330 -0
  132. data/readme.md +41 -0
  133. data/refinerycms-whatson.gemspec +18 -0
  134. data/spec/models/whatson_category_spec.rb +41 -0
  135. data/spec/models/whatson_comment_spec.rb +21 -0
  136. data/spec/models/whatson_post_spec.rb +217 -0
  137. metadata +235 -0
@@ -0,0 +1,154 @@
1
+ fr:
2
+ plugins:
3
+ refinerycms_whatson:
4
+ title: Whatson
5
+ admin:
6
+ whatson:
7
+ categories:
8
+ category:
9
+ edit: Modifier cette catégorie
10
+ delete: Supprimer cett catégorie
11
+ index:
12
+ no_items_yet: 'Il n''y a aucune catégorie pour le moment. Cliquez sur "%{create}" pour ajouter votre première catégorie.'
13
+ comments:
14
+ approved: 'Le commentaire de "%{author}" a été approuvé.'
15
+ comment:
16
+ view_live_html: 'Voir ce commentaire <br/><em>(Ouvre une nouvelle fenêtre)</em>'
17
+ read: Lire ce commentaire
18
+ reject: Rejeter ce commentaire
19
+ approve: Approuver ce commentaire
20
+ rejected: 'Le commentaire de "%{author}" a été rejeté.'
21
+ index:
22
+ no_items_yet: 'Il n''y aucun %{type} de commentaires.'
23
+ show:
24
+ comment: Commenter
25
+ whatson_post: Article
26
+ from: Écrit par
27
+ date: Écrit le
28
+ message: Commentaire
29
+ details: Détails
30
+ age: Âge
31
+ actions: Actions
32
+ back: Retour à la liste des commentaires
33
+ reject: Rejeter ce commentaire
34
+ approve: Approuver ce commentaire
35
+ posts:
36
+ form:
37
+ advanced_options: Options avancées
38
+ toggle_advanced_options: Cliquez ici pour accéder aux paramêtres des meta-tags et au menu des options
39
+ save_as_draft: Enregistrer comme Brouillon
40
+ published_at: Date de publication
41
+ index:
42
+ no_items_yet: 'Il n''y a aucun article pour l''instant. Cliquez sur "%{create}" pour ajouter votre premier article.'
43
+ uncategorized:
44
+ no_items_yet: 'Il n''y a aucun article non catégorisé.'
45
+ post:
46
+ view_live_html: 'Voir cet article sur le site<br/><em>(Ouvre une nouvelle fenêtre)</em>'
47
+ edit: Modifier cet article
48
+ delete: Supprimer cet article
49
+ settings:
50
+ notification_recipients:
51
+ value: Envoyer les notifications à
52
+ explanation: 'Chaque fois que quelqu''un écrit un commentaire sur un article, Refinery envoie un e-mail pour prévenir qu''il y a un nouveau commentaire.'
53
+ hint: 'Quand un nouveau commentaire est ajouté, Refinery vous enverra un e-mail de notifications.'
54
+ example: "Entrez une/des adresse(s) e-mail comme : jack@work.com, jill@office.com"
55
+ updated: 'Les destinataires des notifications sont définis : "%{recipients}"'
56
+ submenu:
57
+ categories:
58
+ title: Catégories
59
+ manage: Gérer
60
+ new: Créer une nouvelle catégorie
61
+ comments:
62
+ title: Commentaires
63
+ title_with_count: 'Commentaires (%{new_count} nouveau(x))'
64
+ new: Nouveau
65
+ unmoderated: Nouveau
66
+ approved: Approuvé
67
+ rejected: Rejeté
68
+ posts:
69
+ title: Articles
70
+ manage: Gérer les articles
71
+ new: Créer un nouvel article
72
+ uncategorized: Aricles non catégorisés
73
+ settings:
74
+ title: Paramêtres
75
+ moderation: Modération
76
+ update_notified: Mettre à jour les personnes à notifier
77
+ comments: Commentaires
78
+ whatson:
79
+ comment_mailer:
80
+ notification:
81
+ greeting: Bonjour
82
+ you_recieved_new_comment: Il y a un nouveau commentaire sur le whatson.
83
+ comment_starts: --- comment starts ---
84
+ comment_ends: --- comment ends ---
85
+ from: De
86
+ email: Email
87
+ message: Message
88
+ closing_line: Cordialement
89
+ ps: P.S. Tous les commentaires sont stockés dans la section "Whatson" de Refinery dans le menu "Commentaires" si vous voulez les revoir plus tard.
90
+ shared:
91
+ categories:
92
+ title: Catégories
93
+ rss_feed:
94
+ title: Flux RSS
95
+ subscribe: Souscrire
96
+ posts:
97
+ other: Autres articles
98
+ created_at: 'Écrit le %{when}'
99
+ read_more: Lire la suite
100
+ by: 'par'
101
+ comments:
102
+ singular: commentaire
103
+ none: aucun commentaire
104
+ archives: Archives
105
+ tags:
106
+ title: "Mots clés"
107
+ categories:
108
+ show:
109
+ no_posts: 'Il n''y a aucun article pour cette catégorie.'
110
+ posts:
111
+ post:
112
+ filed_in: Classé dans
113
+ comment: commentaire
114
+ comments:
115
+ by: 'Écrit par %{who}'
116
+ time_ago: 'il y a %{time} '
117
+ thank_you: 'Merci pour votre commentaire.'
118
+ thank_you_moderated: 'Merci pour votre commentaire. Votre message a été placé en attente de validation et apparaitra bientôt.'
119
+ index:
120
+ no_whatson_articles_yet: "Il n'y a aucun article pour l'instant. Restez en alerte."
121
+ show:
122
+ whatson_home: Accueil du whatson
123
+ comments:
124
+ title: Commentaires
125
+ add: Ajouter un commentaire
126
+ other: Autres articles
127
+ filed_in: Classé dans
128
+ tagged: Taggé
129
+ submit: Envoyer le commentaire
130
+ name: Nom
131
+ email: Email
132
+ message: Message
133
+ by: par
134
+ tagged:
135
+ no_whatson_articles_yet: "Il n'y a aucun article pour l'instant. Restez en alerte."
136
+ posts_tagged: Articles taggés
137
+ archive:
138
+ whatson_archive_for: 'Archive du whatson pour le %{date}'
139
+ no_whatson_articles_posted: "Il n'y a aucun article pour la date du %{date}. Restez en alerte."
140
+ activerecord:
141
+ models:
142
+ whatson_category: Categorie
143
+ whatson_comment: Commentaire
144
+ whatson_post: Article
145
+ attributes:
146
+ whatson_category:
147
+ title: Titre
148
+ whatson_comment:
149
+ name: Nom
150
+ email: Email
151
+ message: Message
152
+ whatson_post:
153
+ title: Titre
154
+ body: Corps
@@ -0,0 +1,156 @@
1
+ it:
2
+ plugins:
3
+ refinerycms_whatson:
4
+ title: Whatson
5
+ admin:
6
+ whatson:
7
+ categories:
8
+ category:
9
+ edit: Modifica questa categoria
10
+ delete: Elimina questa categoria per sempre
11
+ index:
12
+ no_items_yet: 'Nessuna categoria ancora presente. Fare click su "%{create}" per aggiungere la tua prima categoria.'
13
+ comments:
14
+ approved: 'Il commento di "%{author}" è stato approvato.'
15
+ comment:
16
+ view_live_html: 'Visualizza questo commento <em> <br/> live (si apre in una nuova finestra) </em>'
17
+ read: Leggi questo commento
18
+ reject: Rifiuta questo commento
19
+ approve: Approva questo commento
20
+ rejected: 'Il commento di "%{author}" è stato rifiutato.'
21
+ index:
22
+ no_items_yet: 'Non ci sono %{type} commenti.'
23
+ show:
24
+ comment: Commento
25
+ whatson_post: Articolo
26
+ from: Pubblicato da
27
+ date: Pubblicato il
28
+ message: Commento
29
+ details: Dettagli
30
+ age: età
31
+ actions: Azioni
32
+ back: Torna a tutti i commenti
33
+ reject: Rifiuta questo commento
34
+ approve: Approva questo commento
35
+ posts:
36
+ form:
37
+ advanced_options: Opzioni Avanzate
38
+ toggle_advanced_options: Clicca per accedere alle impostationi dei meta tag e del menu
39
+ save_as_draft: Salva come Bozza
40
+ published_at: Data di Pubblicazione
41
+ custom_url: Url personalizzato
42
+ custom_url_help: Puoi scegliere un url specifico per questo articolo. Lasciando questo campo vuoto verrà utilizzato il titolo.
43
+ copy_body: Copia il testo dell'articolo nel teaser
44
+ copy_body_help: Lascia il teaser bianco per creare il teaser automaticamente.
45
+ index:
46
+ no_items_yet: 'Non ci sono ancora articoli in questo Whatson. Clicca su "%{create}" per aggiungerne uno.'
47
+ uncategorized:
48
+ no_items_yet: 'Non ci sono articoli senza categoria.'
49
+ post:
50
+ view_live_html: 'Visualizza questo articolo sul sito <br/><em>(si aprirà in una nuova finestra)</em>'
51
+ edit: Modifica questo articolo
52
+ delete: Rimuovi questo articolo per sempre
53
+ settings:
54
+ notification_recipients:
55
+ value: Inviare notifiche a
56
+ explanation: "Ogni volta che qualcuno commenta un articolo, Refinery invia una mail per avvisare che c'è un nuovo comemnto"
57
+ hint: 'Quando viene aggiunto un nuovo commento Refinery ti invierà una email di notifica.'
58
+ example: "Inserisci il tuo indirizzo email. È possibile insierire più indirizzi separati dalla virgola. Es: jack@work.com, jill@office.com"
59
+ updated: 'I destinatari delle notifiche sono stati impostati "%{recipients}"'
60
+ submenu:
61
+ categories:
62
+ title: Categorie
63
+ manage: Gestione categorie
64
+ new: Crea una nuova categoria
65
+ comments:
66
+ title: Commenti
67
+ title_with_count: 'Commenti (%{new_count} nuovi)'
68
+ new: Nuovo
69
+ unmoderated: Nuovo
70
+ approved: Approvato
71
+ rejected: Rifiutato
72
+ posts:
73
+ title: Articoli
74
+ manage: Gestione articoli
75
+ new: Crea un nuovo articolo
76
+ uncategorized: Articoli senza categoria
77
+ settings:
78
+ title: Impostazioni
79
+ moderation: Moderazione
80
+ update_notified: Aggiornare i destinatari delle notifiche
81
+ comments: Commenti
82
+ whatson:
83
+ comment_mailer:
84
+ notification:
85
+ greeting: Ciao
86
+ you_recieved_new_comment: Hai ricevuto un commento sul tuo sito.
87
+ comment_starts: --- inizio commento ---
88
+ comment_ends: --- fine commento ---
89
+ from: Da
90
+ email: Email
91
+ message: Testo
92
+ closing_line: Saluti
93
+ ps: 'P.S. Tutti i commenti sono memorizzati nella sezione "Whatson di Refinery sotto la voce "Commenti" se mai volessi visualizzarli lì.'
94
+ shared:
95
+ categories:
96
+ title: Categorie
97
+ rss_feed:
98
+ title: RSS Feed
99
+ subscribe: Iscriviti
100
+ posts:
101
+ other: Altri Articoli
102
+ created_at: 'Pubblicato il %{when}'
103
+ read_more: Continua a leggere
104
+ comments:
105
+ singular: commento
106
+ plural: commenti
107
+ none: nessun commento
108
+ tags:
109
+ title: "Tags"
110
+ categories:
111
+ show:
112
+ no_posts: Non sono ancora presenti articoli.
113
+ posts:
114
+ post:
115
+ filed_in: Archiviato in
116
+ comment: commento
117
+ comments:
118
+ by: 'Pubblicato da %{who}'
119
+ time_ago: '%{time} fa'
120
+ thank_you: 'Grazie per aver scritto un commento.'
121
+ thank_you_moderated: 'Grazie per aver scritto un commento. Il tuo messaggio è stato inserito nella coda di moderazione e sarà visibile a breve.'
122
+ index:
123
+ no_whatson_articles_yet: Non sono stati ancora pubblicati articoli nel whatson. Continuate a seguirci.
124
+ show:
125
+ comments:
126
+ title: Commenti
127
+ add: Scrivi un Commento
128
+ other: Altri Articoli
129
+ filed_in: Archiviato in
130
+ submit: Invia commento
131
+ tagged: Taggato
132
+ name: Nome
133
+ email: Email
134
+ message: Articolo
135
+ by: da
136
+ tagged:
137
+ no_whatson_articles_yet: Non sono stati ancora pubblicati articoli nel whatson. Continuate a seguirci.
138
+ posts_tagged: Articoli taggati
139
+ archive:
140
+ whatson_archive_for: 'Articoli pubblicati il %{date}'
141
+ no_whatson_articles_posted: Non sono stati pubblicati articoli nel whatson il %{date}. Continuate a seguirci.
142
+ activerecord:
143
+ models:
144
+ whatson_category: Categoria
145
+ whatson_comment: Commento
146
+ whatson_post: Articolo
147
+ attributes:
148
+ whatson_category:
149
+ title: Titolo
150
+ whatson_comment:
151
+ name: Nome
152
+ email: Email
153
+ message: Testo
154
+ whatson_post:
155
+ title: Titolo
156
+ body: Testo
@@ -0,0 +1,159 @@
1
+ ja:
2
+ refinery:
3
+ plugins:
4
+ refinerycms_whatson:
5
+ title: ブログ
6
+ admin:
7
+ whatson:
8
+ categories:
9
+ category:
10
+ edit: このカテゴリを編集
11
+ delete: このカテゴリを削除
12
+ index:
13
+ no_items_yet: 'まだカテゴリが一つも登録されていません。「%{create}」をクリックし、カテゴリを作成して下さい。'
14
+ comments:
15
+ approved: '「%{author}さん」の投稿が承認されました。'
16
+ comment:
17
+ view_live_html: 'このコメントを見る<br/><em>(新規ウインドウに開かれます)</em>'
18
+ read: このコメントを読む
19
+ reject: このコメントを却下する
20
+ approve: このコメントを承認する
21
+ rejected: '「%{author}」によるコメントが却下されました。'
22
+ index:
23
+ no_items_yet: '%{type}に関するコメントがありません。'
24
+ show:
25
+ comment: コメント
26
+ whatson_post: 投稿
27
+ from: 投稿者
28
+ date: 投稿時刻
29
+ message: コメント
30
+ details: 詳細
31
+ age: 投稿から
32
+ actions: アクション
33
+ back: 全てのコメントに戻る
34
+ reject: このコメントを却下する
35
+ approve: このコメントを承認する
36
+ posts:
37
+ form:
38
+ advanced_options: 詳細オプション
39
+ toggle_advanced_options: メタタグの設定メニューをアクセスするにはここをクリックして下さい
40
+ save_as_draft: 下書きとして保存
41
+ published_at: 公開時刻
42
+ custom_url: カスタムURL
43
+ custom_url_help: 投稿のURLをここのテキストとして登録する。
44
+ copy_body: 本文を短説明文にコピーする
45
+ copy_body_help: 短説明文として本文を引用します。短説明文を空にすると自動的に反映されます。
46
+ index:
47
+ no_items_yet: '投稿がありません。「%{create}」をクリックし、作成して下さい。'
48
+ uncategorized:
49
+ no_items_yet: '未分類の投稿がありませす。'
50
+ post:
51
+ view_live_html: 'この投稿を見る。<br/><em>(新規ウィンドウに開かれます)</em>'
52
+ edit: この投稿を編集する
53
+ delete: この投稿を削除する
54
+ settings:
55
+ notification_recipients:
56
+ value: 通知の受信者
57
+ explanation: '投稿にコメントが出される度にRefineryが通知を送れます。'
58
+ hint: 'コメントが追加されたらメールで通知されます。'
59
+ example: "複数のメールアドを登録することが出来ます。入力例: jack@work.com, jill@office.com"
60
+ updated: '通知受信者の「%{recipients}」に通知が送信されました。'
61
+ submenu:
62
+ categories:
63
+ title: カテゴリ
64
+ manage: 管理
65
+ new: 新規カテゴリ作成
66
+ comments:
67
+ title: コメント
68
+ title_with_count: 'コメント (新規%{new_count}通)'
69
+ new: 新規
70
+ unmoderated: 新規
71
+ approved: 承認された
72
+ rejected: 却下された
73
+ posts:
74
+ title: 投稿
75
+ manage: 投稿管理
76
+ new: 新規投稿
77
+ uncategorized: 未分類
78
+ settings:
79
+ title: 設定
80
+ moderation: 管理する
81
+ update_notified: 通知者を変更・更新する
82
+ comments: コメント
83
+ whatson:
84
+ comment_mailer:
85
+ notification:
86
+ greeting: こんにちわ
87
+ you_recieved_new_comment: サイトに新規コメントが投稿されました。
88
+ comment_starts: --- コメント開始 ---
89
+ comment_ends: --- コメント終了 ---
90
+ from: 差出人
91
+ email: メール
92
+ message: メッセージ
93
+ closing_line: 以上、
94
+ ps: '追記: 全てのコメントを見るにはRefineryブログの「コメント」に参照して下さい。'
95
+ shared:
96
+ categories:
97
+ title: カテゴリ
98
+ rss_feed:
99
+ title: RSSフィード
100
+ subscribe: フィードを登録する
101
+ posts:
102
+ other: 他の投稿
103
+ created_at: '%{when}に投稿'
104
+ read_more: もっと読む
105
+ comments:
106
+ singular: コメント
107
+ none: コメントが未登録
108
+ archives: アーカイブ
109
+ tags:
110
+ title: "タグ"
111
+ categories:
112
+ show:
113
+ no_posts: 投稿がありません。
114
+ posts:
115
+ post:
116
+ filed_in: に分類されている
117
+ comment: コメント
118
+ comments:
119
+ by: '%{who}より'
120
+ time_ago: '%{time}前に'
121
+ thank_you: 'コメントをありがとうございます。'
122
+ thank_you_moderated: 'コメントをありがとうございます。コメントが承認待ちとされています。承認次第公開されます。'
123
+ index:
124
+ no_whatson_articles_yet: ブログ記事がまだ投稿されてません。
125
+ show:
126
+ whatson_home: ブログ・ホーム
127
+ comments:
128
+ title: コメント
129
+ add: コメントを投稿
130
+ other: 他のブログ投稿
131
+ filed_in: に分類されている
132
+ tagged: とのタグが付いている
133
+ submit: コメントを送信
134
+ name: 名前
135
+ email: メール
136
+ message: メッセージ
137
+ by: '投稿者:'
138
+ tagged:
139
+ no_whatson_articles_yet: ブログ記事がまだ投稿されてません。
140
+ posts_tagged: 投稿タグ
141
+ archive:
142
+ whatson_archive_for: '%{date}搭載のブログ記事'
143
+ no_whatson_articles_posted: '%{date}付のブログ記事が投稿されてません。'
144
+ activerecord:
145
+ models:
146
+ refinery/whatson_category: カテゴリ
147
+ refinery/whatson_comment: コメント
148
+ refinery/whatson_post: 投稿
149
+ attributes:
150
+ refinery/whatson_category:
151
+ title: 題名
152
+ refinery/whatson_comment:
153
+ name: 名前
154
+ email: メール
155
+ message: メッセージ
156
+ refinery/whatson_post:
157
+ title: 題名
158
+ body: 本文
159
+ teaser: 短紹介文