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.
- data/.gitignore +48 -0
- data/.tork.rb +2 -0
- data/.travis.yml +2 -0
- data/Gemfile +7 -0
- data/Rakefile +3 -0
- data/app/controllers/admin/whatson/categories_controller.rb +11 -0
- data/app/controllers/admin/whatson/comments_controller.rb +40 -0
- data/app/controllers/admin/whatson/posts_controller.rb +97 -0
- data/app/controllers/admin/whatson/settings_controller.rb +53 -0
- data/app/controllers/whatson/categories_controller.rb +13 -0
- data/app/controllers/whatson/posts_controller.rb +109 -0
- data/app/controllers/whatson_controller.rb +16 -0
- data/app/helpers/whatson_posts_helper.rb +56 -0
- data/app/mailers/whatson/comment_mailer.rb +13 -0
- data/app/models/categorization.rb +7 -0
- data/app/models/whatson/comment_mailer.rb +1 -0
- data/app/models/whatson_category.rb +19 -0
- data/app/models/whatson_comment.rb +137 -0
- data/app/models/whatson_post.rb +114 -0
- data/app/views/admin/whatson/_submenu.html.erb +96 -0
- data/app/views/admin/whatson/categories/_category.html.erb +16 -0
- data/app/views/admin/whatson/categories/_form.html.erb +19 -0
- data/app/views/admin/whatson/categories/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/categories/edit.html.erb +1 -0
- data/app/views/admin/whatson/categories/index.html.erb +26 -0
- data/app/views/admin/whatson/categories/new.html.erb +1 -0
- data/app/views/admin/whatson/comments/_comment.html.erb +20 -0
- data/app/views/admin/whatson/comments/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/comments/index.html.erb +35 -0
- data/app/views/admin/whatson/comments/show.html.erb +63 -0
- data/app/views/admin/whatson/posts/_form.css.erb +20 -0
- data/app/views/admin/whatson/posts/_form.html.erb +110 -0
- data/app/views/admin/whatson/posts/_form.js.erb +23 -0
- data/app/views/admin/whatson/posts/_form_part.html.erb +3 -0
- data/app/views/admin/whatson/posts/_post.html.erb +24 -0
- data/app/views/admin/whatson/posts/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/posts/_teaser_part.html.erb +11 -0
- data/app/views/admin/whatson/posts/edit.html.erb +1 -0
- data/app/views/admin/whatson/posts/index.html.erb +28 -0
- data/app/views/admin/whatson/posts/new.html.erb +1 -0
- data/app/views/admin/whatson/posts/uncategorized.html.erb +26 -0
- data/app/views/admin/whatson/settings/notification_recipients.html.erb +24 -0
- data/app/views/shared/admin/_autocomplete.html.erb +55 -0
- data/app/views/whatson/categories/show.html.erb +21 -0
- data/app/views/whatson/comment_mailer/notification.html.erb +17 -0
- data/app/views/whatson/posts/_comment.html.erb +10 -0
- data/app/views/whatson/posts/_nav.html.erb +11 -0
- data/app/views/whatson/posts/archive.html.erb +20 -0
- data/app/views/whatson/posts/index.html.erb +24 -0
- data/app/views/whatson/posts/index.rss.builder +17 -0
- data/app/views/whatson/posts/show.html.erb +98 -0
- data/app/views/whatson/posts/tagged.html.erb +22 -0
- data/app/views/whatson/shared/_archive_list.html.erb +9 -0
- data/app/views/whatson/shared/_categories.html.erb +10 -0
- data/app/views/whatson/shared/_post.html.erb +46 -0
- data/app/views/whatson/shared/_related_posts.html.erb +10 -0
- data/app/views/whatson/shared/_rss_feed.html.erb +2 -0
- data/app/views/whatson/shared/_tags.html.erb +8 -0
- data/config/locales/bg.yml +158 -0
- data/config/locales/cs.yml +128 -0
- data/config/locales/de.yml +130 -0
- data/config/locales/en.yml +159 -0
- data/config/locales/es.yml +159 -0
- data/config/locales/fr.yml +154 -0
- data/config/locales/it.yml +156 -0
- data/config/locales/ja.yml +159 -0
- data/config/locales/nb.yml +30 -0
- data/config/locales/nl.yml +134 -0
- data/config/locales/pl.yml +134 -0
- data/config/locales/pt-BR.yml +143 -0
- data/config/locales/ru.yml +135 -0
- data/config/locales/sk.yml +128 -0
- data/config/locales/zh-CN.yml +128 -0
- data/config/routes.rb +47 -0
- data/db/migrate/1_create_whatson_structure.rb +54 -0
- data/db/migrate/2_add_user_id_to_whatson_posts.rb +11 -0
- data/db/migrate/3_acts_as_taggable_on_migration.rb +28 -0
- data/db/migrate/4_create_seo_meta_for_whatson.rb +25 -0
- data/db/migrate/5_add_cached_slugs.rb +11 -0
- data/db/migrate/6_add_custom_url_field_to_whatson_posts.rb +9 -0
- data/db/migrate/7_add_custom_teaser_field_to_whatson_posts.rb +10 -0
- data/db/migrate/8_add_primary_key_to_categorizations.rb +12 -0
- data/db/seeds/refinerycms_whatson.rb +20 -0
- data/features/authors.feature +15 -0
- data/features/category.feature +23 -0
- data/features/support/factories/whatson_categories.rb +5 -0
- data/features/support/factories/whatson_comments.rb +8 -0
- data/features/support/factories/whatson_posts.rb +9 -0
- data/features/support/paths.rb +24 -0
- data/features/support/step_definitions/authors_steps.rb +7 -0
- data/features/support/step_definitions/category_steps.rb +11 -0
- data/features/support/step_definitions/tags_steps.rb +13 -0
- data/features/tags.feature +26 -0
- data/lib/gemspec.rb +37 -0
- data/lib/generators/refinerycms_whatson_generator.rb +8 -0
- data/lib/refinery/whatson/tabs.rb +28 -0
- data/lib/refinery/whatson/version.rb +17 -0
- data/lib/refinerycms-whatson.rb +41 -0
- data/public/images/refinerycms-whatson/icons/cog.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment_cross.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment_tick.png +0 -0
- data/public/images/refinerycms-whatson/icons/comments.png +0 -0
- data/public/images/refinerycms-whatson/icons/down.gif +0 -0
- data/public/images/refinerycms-whatson/icons/folder.png +0 -0
- data/public/images/refinerycms-whatson/icons/folder_add.png +0 -0
- data/public/images/refinerycms-whatson/icons/folder_edit.png +0 -0
- data/public/images/refinerycms-whatson/icons/page.png +0 -0
- data/public/images/refinerycms-whatson/icons/page_add.png +0 -0
- data/public/images/refinerycms-whatson/icons/page_copy.png +0 -0
- data/public/images/refinerycms-whatson/icons/up.gif +0 -0
- data/public/images/refinerycms-whatson/rss-feed.png +0 -0
- data/public/javascripts/refinery/refinerycms-whatson.js +50 -0
- data/public/javascripts/refinerycms-whatson.js +25 -0
- data/public/stylesheets/refinery/refinerycms-whatson.css +57 -0
- data/public/stylesheets/refinerycms-whatson.css +93 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/jquery-ui-1.8.13.custom.css +330 -0
- data/readme.md +41 -0
- data/refinerycms-whatson.gemspec +18 -0
- data/spec/models/whatson_category_spec.rb +41 -0
- data/spec/models/whatson_comment_spec.rb +21 -0
- data/spec/models/whatson_post_spec.rb +217 -0
- metadata +235 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
cs:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Upravit kategorii
|
|
10
|
+
delete: Smazat kategorii
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'Nejsou zde žádné kategorie. Klikni na "%{create}" pro přidání první.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'Komentář od "%{author}" byl schválen.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live_html: 'Zobrazit živý náhled <br/><em>(otevře nové okno)</em>'
|
|
17
|
+
read: Zobrazit komentář
|
|
18
|
+
reject: Zamítnout komentář
|
|
19
|
+
approve: Schválit
|
|
20
|
+
rejected: 'Komentář od "%{author}" byl zamítnut.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: 'Nejsou zde žádné %{type} komentáře.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Komentář
|
|
25
|
+
whatson_post: Whatson článek
|
|
26
|
+
from: Odeslal
|
|
27
|
+
date: Datum
|
|
28
|
+
message: Komentář
|
|
29
|
+
details: Detaily
|
|
30
|
+
age: Věk
|
|
31
|
+
actions: Akce
|
|
32
|
+
back: Zpět na seznam komentářů
|
|
33
|
+
reject: Zamítnout komentář
|
|
34
|
+
approve: Schváliť komentář
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Pokročilé nastavení
|
|
38
|
+
toggle_advanced_options: Klikni pro přístup k nastavením meta tagů a menu
|
|
39
|
+
save_as_draft: Uložit jako koncept
|
|
40
|
+
published_at: Datum publikování
|
|
41
|
+
index:
|
|
42
|
+
no_items_yet: 'Nejsou žádné články na whatsonu. Klikni na "%{create}" pro přidání prvního.'
|
|
43
|
+
uncategorized:
|
|
44
|
+
no_items_yet: 'Nejsou žádné nekategorizované články.'
|
|
45
|
+
post:
|
|
46
|
+
view_live_html: 'Zobrazit článek <br/><em>(otevře jej v novém okně)</em>'
|
|
47
|
+
edit: Upravit článek
|
|
48
|
+
delete: Smazat článek
|
|
49
|
+
settings:
|
|
50
|
+
notification_recipients:
|
|
51
|
+
value: Poslat notifikaci pro
|
|
52
|
+
explanation: 'Vždycky když někdo přidá komentář, Refinery zašle oznámení.'
|
|
53
|
+
hint: 'Vždycky když někdo přidá komentář, Refinery ti pošle oznámení.'
|
|
54
|
+
example: "Zadej tvou emailovou adresu(y) jako například: jack@work.com, jill@office.com"
|
|
55
|
+
updated: 'Seznam příjemců notifikací "%{recipients}"'
|
|
56
|
+
submenu:
|
|
57
|
+
categories:
|
|
58
|
+
title: Kategorie
|
|
59
|
+
manage: Spravovat
|
|
60
|
+
new: Nová kategórie
|
|
61
|
+
comments:
|
|
62
|
+
title: Komentáře
|
|
63
|
+
title_with_count: 'Komentáře (%{new_count} nových)'
|
|
64
|
+
new: Nový
|
|
65
|
+
unmoderated: Nový
|
|
66
|
+
approved: Schválený
|
|
67
|
+
rejected: Zamítnutý
|
|
68
|
+
posts:
|
|
69
|
+
title: Články
|
|
70
|
+
manage: Spravovat články
|
|
71
|
+
new: Vytvořit nový článek
|
|
72
|
+
uncategorized: Nekategorizované články
|
|
73
|
+
settings:
|
|
74
|
+
title: Nastavení
|
|
75
|
+
moderation: Moderování
|
|
76
|
+
update_notified: Upravit seznam notifikovaných
|
|
77
|
+
comments: Komentáře
|
|
78
|
+
whatson:
|
|
79
|
+
comment_mailer:
|
|
80
|
+
notification:
|
|
81
|
+
greeting: Ahoj
|
|
82
|
+
you_recieved_new_comment: Máš nový komentář na stránce
|
|
83
|
+
comment_starts: --- začátek komentáře ---
|
|
84
|
+
comment_ends: --- konec komentáře ---
|
|
85
|
+
from: Od
|
|
86
|
+
email: Email
|
|
87
|
+
message: Zpráva
|
|
88
|
+
closing_line: S pozdravem
|
|
89
|
+
ps: 'P.S. Všechny komentáře jsou uloženy v sekci "Whatson" pod záložkou "Komentáře" v případě pokud by je bylo třeba zobrazit později.'
|
|
90
|
+
shared:
|
|
91
|
+
categories:
|
|
92
|
+
title: Kategorie
|
|
93
|
+
rss_feed:
|
|
94
|
+
title: RSS zdroj článků
|
|
95
|
+
subscribe: Přihlásit k odběru
|
|
96
|
+
posts:
|
|
97
|
+
other: Další články
|
|
98
|
+
created_at: 'Publikován %{when}'
|
|
99
|
+
read_more: Celý článek
|
|
100
|
+
comments:
|
|
101
|
+
singular: komentář
|
|
102
|
+
none: žiadne komentáře
|
|
103
|
+
archives: Archiv
|
|
104
|
+
categories:
|
|
105
|
+
show:
|
|
106
|
+
no_posts: Nejsou zde žádné články.
|
|
107
|
+
posts:
|
|
108
|
+
post:
|
|
109
|
+
filed_in: Podaný
|
|
110
|
+
comment: komentář
|
|
111
|
+
comments:
|
|
112
|
+
by: 'Odeslal %{who}'
|
|
113
|
+
time_ago: '%{time} zpět'
|
|
114
|
+
thank_you: 'Díky za komentář.'
|
|
115
|
+
thank_you_moderated: 'Děkujeme za Váš komentář. Vaše zpráva čeká na schválení a objeví se v nejbližší době.'
|
|
116
|
+
index:
|
|
117
|
+
no_whatson_articles_yet: Právě nejsou žádné články na whatsonu. Zůstaňte naladěni.
|
|
118
|
+
show:
|
|
119
|
+
whatson_home: Hlavní stránka whatsonu
|
|
120
|
+
comments:
|
|
121
|
+
title: Komentáře
|
|
122
|
+
add: Přidat komentář
|
|
123
|
+
other: Další články
|
|
124
|
+
filed_in: Podaný
|
|
125
|
+
submit: Odeslat komentář
|
|
126
|
+
archive:
|
|
127
|
+
whatson_archive_for: 'Whatson archiv pro %{date}'
|
|
128
|
+
no_whatson_articles_posted: 'Nejsou žádné články publikované %{date}.'
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
de:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Diese Kategorie bearbeiten
|
|
10
|
+
delete: Diese Kategorie dauerhaft entfernen
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'Es sind noch keine Kategorien vorhanden. Klicken Sie auf "%{create}", um Ihre erste Kategorie hinzuzufügen.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'Der Kommentar von "%{author}" wurde genehmigt.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live: 'Diesen Kommentar live betrachten <br/><em>(öffnet sich in einem neuen Fenster)</em>'
|
|
17
|
+
read: Kommentar lesen
|
|
18
|
+
reject: Kommentar ablehnen
|
|
19
|
+
approve: Kommentar genehmigen
|
|
20
|
+
rejected: 'Der Kommentar von "%{author}" wurde abgelehnt.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: 'Es sind keine %{type}en Kommentare vorhanden.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Kommentar
|
|
25
|
+
whatson_post: Artikel
|
|
26
|
+
from: Verfasst von
|
|
27
|
+
date: Verfasst am
|
|
28
|
+
message: Kommentar
|
|
29
|
+
details: Details
|
|
30
|
+
age: Alter
|
|
31
|
+
actions: Aktionen
|
|
32
|
+
back: Zurück zu allen Kommentaren
|
|
33
|
+
reject: Kommentar ablehnen
|
|
34
|
+
approve: Kommentar genehmigen
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Erweiterte Optionen
|
|
38
|
+
toggle_advanced_options: 'Klicken, um auf Meta-Tag-Einstellungen und Menüoptionen zuzugreifen'
|
|
39
|
+
save_as_draft: Als Entwurf speichern
|
|
40
|
+
published_at: Veröffentlichungsdatum
|
|
41
|
+
index:
|
|
42
|
+
no_items_yet: 'Es sind noch keine Artikel vorhanden. Klicken Sie auf "%{create}", um Ihren ersten Artikel hinzuzufügen.'
|
|
43
|
+
uncategorized:
|
|
44
|
+
no_items_yet: 'Es sind keine unkategorisierten Artikel vorhanden.'
|
|
45
|
+
post:
|
|
46
|
+
view_live: 'Diesen Artikel live betrachten <br/><em>(öffnet sich in einem neuen Fenster)</em>'
|
|
47
|
+
edit: Diesen Artikel bearbeiten
|
|
48
|
+
delete: Diesen Artikel dauerhaft entfernen
|
|
49
|
+
settings:
|
|
50
|
+
notification_recipients:
|
|
51
|
+
value: Sende Benachrichtigungen an
|
|
52
|
+
explanation: 'Jedes Mal, wenn jemand einen Artikel kommentiert, sendet Refinery eine E-Mail Benachrichtigung aus, um über den neuen Kommentar zu informieren.'
|
|
53
|
+
hint: 'Refinery sendet eine E-Mail Benachrichtigung an Sie, wenn ein neuer Kommentar hinzugefügt wurde.'
|
|
54
|
+
example: 'Geben Sie Ihre E-Mail-Adresse(n) wie folgt ein: jack@work.com, jill@office.com'
|
|
55
|
+
updated: 'Empfänger für Benachrichtigungen wurden auf "%{recipients}" gesetzt'
|
|
56
|
+
submenu:
|
|
57
|
+
categories:
|
|
58
|
+
title: Kategorien
|
|
59
|
+
manage: Verwalten
|
|
60
|
+
new: Neue Kategorie anlegen
|
|
61
|
+
comments:
|
|
62
|
+
title: Kommentare
|
|
63
|
+
title_with_count: 'Kommentare (%{new_count} neu)'
|
|
64
|
+
new: Neu
|
|
65
|
+
unmoderated: Neu
|
|
66
|
+
approved: Genehmigt
|
|
67
|
+
rejected: Abgelehnt
|
|
68
|
+
posts:
|
|
69
|
+
title: Artikel
|
|
70
|
+
manage: Artikel verwalten
|
|
71
|
+
new: Neuen Artikel anlegen
|
|
72
|
+
uncategorized: Unkategorisierte Artikel
|
|
73
|
+
settings:
|
|
74
|
+
title: Einstellungen
|
|
75
|
+
moderation: Moderation
|
|
76
|
+
update_notified: Empfänger für Benachrichtigungen bearbeiten
|
|
77
|
+
comments: Kommentare
|
|
78
|
+
whatson:
|
|
79
|
+
comment_mailer:
|
|
80
|
+
notification:
|
|
81
|
+
greeting: Hallo
|
|
82
|
+
you_recieved_new_comment: Auf Ihrer Website wurde soeben ein neuer Kommentar hinzugefügt.
|
|
83
|
+
comment_starts: --- Kommentar beginnt ---
|
|
84
|
+
comment_ends: --- Kommentar endet ---
|
|
85
|
+
from: Von
|
|
86
|
+
email: E-Mail
|
|
87
|
+
message: Nachricht
|
|
88
|
+
closing_line: Mit besten Grüßen
|
|
89
|
+
ps: 'P.S. Alle Kommentare sind im "Whatson" Abschnitt von Refinery - im Untermenü "Kommentare" - gespeichert, falls Sie diese später dort lesen möchten.'
|
|
90
|
+
shared:
|
|
91
|
+
categories:
|
|
92
|
+
title: Kategorien
|
|
93
|
+
rss_feed:
|
|
94
|
+
title: RSS Feed
|
|
95
|
+
subscribe: Abonnieren
|
|
96
|
+
posts:
|
|
97
|
+
other: Andere Artikel
|
|
98
|
+
created_at: 'Verfasst am %{when}'
|
|
99
|
+
read_more: Mehr lesen
|
|
100
|
+
comments:
|
|
101
|
+
singular: Kommentar
|
|
102
|
+
none: Keine Kommentare
|
|
103
|
+
archives: Archiv
|
|
104
|
+
tags:
|
|
105
|
+
title: Kategorien
|
|
106
|
+
categories:
|
|
107
|
+
show:
|
|
108
|
+
no_posts: Es sind noch keine Artikel vorhanden.
|
|
109
|
+
posts:
|
|
110
|
+
post:
|
|
111
|
+
filed_in: Gespeichert unter
|
|
112
|
+
comment: Kommentar
|
|
113
|
+
comments:
|
|
114
|
+
by: 'Verfasst von %{who}'
|
|
115
|
+
time_ago: 'vor %{time}'
|
|
116
|
+
thank_you: 'Danke für den Kommentar.'
|
|
117
|
+
thank_you_moderated: 'Danke für den Kommentar. Die Nachricht wurde in die Warteschlange der Moderation gestellt und erscheint in Kürze.'
|
|
118
|
+
index:
|
|
119
|
+
no_whatson_articles_yet: Es wurden noch keine Artikel verfasst.
|
|
120
|
+
show:
|
|
121
|
+
whatson_home: Whatson Startseite
|
|
122
|
+
comments:
|
|
123
|
+
title: Kommentare
|
|
124
|
+
add: Neuen Kommentar hinzufügen
|
|
125
|
+
other: Andere Artikel
|
|
126
|
+
filed_in: Gespeichert unter
|
|
127
|
+
submit: Kommentar senden
|
|
128
|
+
archive:
|
|
129
|
+
whatson_archive_for: 'Whatson Archiv für %{date}'
|
|
130
|
+
no_whatson_articles_posted: 'Für %{date} wurden keine Artikel verfasst.'
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
en:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Edit this category
|
|
10
|
+
delete: Delete this category forever
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'There are no categories yet. Click "%{create}" to add your first category.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'The comment from "%{author}" has been approved.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live_html: 'View this comment live <br/><em>(opens in a new window)</em>'
|
|
17
|
+
read: Read this comment
|
|
18
|
+
reject: Reject this comment
|
|
19
|
+
approve: Approve this comment
|
|
20
|
+
rejected: 'The comment from "%{author}" has been rejected.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: 'There are no %{type} comments.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Comment
|
|
25
|
+
whatson_post: Whatson Post
|
|
26
|
+
from: Posted by
|
|
27
|
+
date: Posted at
|
|
28
|
+
message: Comment
|
|
29
|
+
details: Details
|
|
30
|
+
age: Age
|
|
31
|
+
actions: Actions
|
|
32
|
+
back: Back to all comments
|
|
33
|
+
reject: Reject this comment
|
|
34
|
+
approve: Approve this comment
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Advanced Options
|
|
38
|
+
toggle_advanced_options: Click to access meta tag settings and menu options
|
|
39
|
+
save_as_draft: Save as Draft
|
|
40
|
+
published_at: Publish Date
|
|
41
|
+
custom_url: Custom Url
|
|
42
|
+
custom_url_help: Generate the url for the whatson post from this text instead of the title.
|
|
43
|
+
copy_body: Copy Post Body to Teaser
|
|
44
|
+
copy_body_help: Copies the post body to the teaser. Leave teaser blank to let Refinery automatically make the teaser.
|
|
45
|
+
index:
|
|
46
|
+
no_items_yet: 'There are no Whatson Posts yet. Click "%{create}" to add your first whatson post.'
|
|
47
|
+
uncategorized:
|
|
48
|
+
no_items_yet: 'There are no Uncategorized Whatson Posts.'
|
|
49
|
+
post:
|
|
50
|
+
view_live_html: 'View this whatson post live <br/><em>(opens in a new window)</em>'
|
|
51
|
+
edit: Edit this whatson post
|
|
52
|
+
delete: Remove this whatson post forever
|
|
53
|
+
settings:
|
|
54
|
+
notification_recipients:
|
|
55
|
+
value: Send notifications to
|
|
56
|
+
explanation: 'Every time someone comments on a whatson post, Refinery sends out an email to say there is a new comment.'
|
|
57
|
+
hint: 'When a new comment is added, Refinery will send an email notification to you.'
|
|
58
|
+
example: "Enter your email address(es) like: jack@work.com, jill@office.com"
|
|
59
|
+
updated: 'Notification recipients have been set to "%{recipients}"'
|
|
60
|
+
submenu:
|
|
61
|
+
categories:
|
|
62
|
+
title: Categories
|
|
63
|
+
manage: Manage
|
|
64
|
+
new: Create new category
|
|
65
|
+
comments:
|
|
66
|
+
title: Comments
|
|
67
|
+
title_with_count: 'Comments (%{new_count} new)'
|
|
68
|
+
new: New
|
|
69
|
+
unmoderated: New
|
|
70
|
+
approved: Approved
|
|
71
|
+
rejected: Rejected
|
|
72
|
+
posts:
|
|
73
|
+
title: Posts
|
|
74
|
+
manage: Manage posts
|
|
75
|
+
new: Create new post
|
|
76
|
+
uncategorized: Uncategorized posts
|
|
77
|
+
settings:
|
|
78
|
+
title: Settings
|
|
79
|
+
moderation: Moderation
|
|
80
|
+
update_notified: Update who gets notified
|
|
81
|
+
comments: Comments
|
|
82
|
+
teasers: Teasers
|
|
83
|
+
whatson:
|
|
84
|
+
comment_mailer:
|
|
85
|
+
notification:
|
|
86
|
+
greeting: Hi there
|
|
87
|
+
you_recieved_new_comment: You just received a new comment on your website.
|
|
88
|
+
comment_starts: --- comment starts ---
|
|
89
|
+
comment_ends: --- comment ends ---
|
|
90
|
+
from: From
|
|
91
|
+
email: Email
|
|
92
|
+
message: Message
|
|
93
|
+
closing_line: Kind Regards
|
|
94
|
+
ps: 'P.S. All your comments are stored in the "Whatson" section of Refinery under the "Comments" submenu should you ever want to view it there later.'
|
|
95
|
+
shared:
|
|
96
|
+
categories:
|
|
97
|
+
title: Categories
|
|
98
|
+
rss_feed:
|
|
99
|
+
title: RSS Feed
|
|
100
|
+
subscribe: Subscribe
|
|
101
|
+
posts:
|
|
102
|
+
other: Other Posts
|
|
103
|
+
created_at: 'Posted on %{when}'
|
|
104
|
+
read_more: Read more
|
|
105
|
+
comments:
|
|
106
|
+
singular: comment
|
|
107
|
+
none: no comments
|
|
108
|
+
archives: Archives
|
|
109
|
+
tags:
|
|
110
|
+
title: "Tags"
|
|
111
|
+
categories:
|
|
112
|
+
show:
|
|
113
|
+
no_posts: There are no posts here yet.
|
|
114
|
+
posts:
|
|
115
|
+
post:
|
|
116
|
+
filed_in: Filed in
|
|
117
|
+
comment: comment
|
|
118
|
+
comments:
|
|
119
|
+
by: 'Posted by %{who}'
|
|
120
|
+
time_ago: '%{time} ago'
|
|
121
|
+
thank_you: 'Thank you for commenting.'
|
|
122
|
+
thank_you_moderated: 'Thank you for commenting. Your message has been placed in the moderation queue and will appear shortly.'
|
|
123
|
+
index:
|
|
124
|
+
no_whatson_articles_yet: There are no whatson articles posted yet. Stay tuned.
|
|
125
|
+
show:
|
|
126
|
+
whatson_home: Whatson Home
|
|
127
|
+
comments:
|
|
128
|
+
title: Comments
|
|
129
|
+
add: Make a Comment
|
|
130
|
+
other: Other Whatson Posts
|
|
131
|
+
filed_in: Filed in
|
|
132
|
+
tagged: Tagged
|
|
133
|
+
submit: Send comment
|
|
134
|
+
name: Name
|
|
135
|
+
email: Email
|
|
136
|
+
message: Message
|
|
137
|
+
by: by
|
|
138
|
+
tagged:
|
|
139
|
+
no_whatson_articles_yet: There are no whatson articles posted yet. Stay tuned.
|
|
140
|
+
posts_tagged: Posts tagged
|
|
141
|
+
archive:
|
|
142
|
+
whatson_archive_for: 'Whatson Archive for %{date}'
|
|
143
|
+
no_whatson_articles_posted: 'There are no whatson articles posted for %{date}. Stay tuned.'
|
|
144
|
+
activerecord:
|
|
145
|
+
models:
|
|
146
|
+
whatson_category: Category
|
|
147
|
+
whatson_comment: Comment
|
|
148
|
+
whatson_post: Whatson post
|
|
149
|
+
attributes:
|
|
150
|
+
whatson_category:
|
|
151
|
+
title: Title
|
|
152
|
+
whatson_comment:
|
|
153
|
+
name: Name
|
|
154
|
+
email: Email
|
|
155
|
+
message: Message
|
|
156
|
+
whatson_post:
|
|
157
|
+
title: Title
|
|
158
|
+
body: Body
|
|
159
|
+
teaser: Teaser
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
es:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Editar esta categoría
|
|
10
|
+
delete: Borrar esta categoría para siempre
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'Todavía no hay categorías. Haz click en "%{create}" para añadir la primera.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'El comentario de "%{author}" ha sido aprobado.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live_html: 'Ver este comentario<br/><em>(se abrirá en una ventana nueva)</em>'
|
|
17
|
+
read: Leer este comentario
|
|
18
|
+
reject: Rechazar este comentario
|
|
19
|
+
approve: Aprovar este comentario
|
|
20
|
+
rejected: 'El comentario de "%{author}" ha sido rechazado.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: 'No hay comentarios %{type}.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Comentario
|
|
25
|
+
whatson_post: Entrada en el Whatson
|
|
26
|
+
from: Enviado por
|
|
27
|
+
date: Enviado el
|
|
28
|
+
message: Mensaje
|
|
29
|
+
details: Detalles
|
|
30
|
+
age: Edad
|
|
31
|
+
actions: Acciones
|
|
32
|
+
back: Volver a todos los comentarios
|
|
33
|
+
reject: Rechazar este comentario
|
|
34
|
+
approve: Aprovar este comentario
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Opciones avanzadas
|
|
38
|
+
toggle_advanced_options: Click para acceder a las opciones de menú y etiquetas
|
|
39
|
+
save_as_draft: Guardar Borrador
|
|
40
|
+
published_at: Fecha de publicación
|
|
41
|
+
custom_url: Url personalizada
|
|
42
|
+
custom_url_help: Generar la url de la entrada en el whatson de este texto en lugar del título.
|
|
43
|
+
copy_body: Copia el cuerpo de la publicación a teaser.
|
|
44
|
+
copy_body_help: Copia el cuerpo de la publicación a teaser. Deja teaser en blanco para que Refinery automaticamente genere el teaser.
|
|
45
|
+
index:
|
|
46
|
+
no_items_yet: 'Aún no hay entradas en el Whatson. Haz click en "%{create}" para añadir el primero'
|
|
47
|
+
uncategorized:
|
|
48
|
+
no_items_yet: 'No hay entradas en el Whatson sin categoría.'
|
|
49
|
+
post:
|
|
50
|
+
view_live_html: 'Ver entrada <br/><em>(se abrirá en una ventana nueva)</em>'
|
|
51
|
+
edit: Editar esta entrada
|
|
52
|
+
delete: Eliminar esta entrada para siempre
|
|
53
|
+
settings:
|
|
54
|
+
notification_recipients:
|
|
55
|
+
value: Enviar notificaciones a
|
|
56
|
+
explanation: 'Cada vez que alguien comente en una entrada, Refinery envia un email para avisar de que hay un nuevo comentario.'
|
|
57
|
+
hint: 'Refinery te avisará con un email cada vez que haya un nuevo comentario en tu Whatson.'
|
|
58
|
+
example: 'Si deseas que las notificaciones lleguen a más de una cuenta, puedes usar comas para separarlas (pepe@direccionpersonal.com, jose@direccionlaboral.com, ...)'
|
|
59
|
+
updated: 'Las notifiaciones han sido enviadas a "%{recipients}"'
|
|
60
|
+
submenu:
|
|
61
|
+
categories:
|
|
62
|
+
title: Categorías
|
|
63
|
+
manage: Gestionar
|
|
64
|
+
new: Añadir categoría
|
|
65
|
+
comments:
|
|
66
|
+
title: Comentarios
|
|
67
|
+
title_with_count: 'Comentarios (%{new_count} nuevos)'
|
|
68
|
+
new: Nuevo
|
|
69
|
+
unmoderated: Nuevos
|
|
70
|
+
approved: Aprobados
|
|
71
|
+
rejected: Rechazados
|
|
72
|
+
posts:
|
|
73
|
+
title: Entradas
|
|
74
|
+
manage: Gestionar entradas
|
|
75
|
+
new: Crear nueva entrada
|
|
76
|
+
uncategorized: Entradas sin categoría
|
|
77
|
+
settings:
|
|
78
|
+
title: Configuración
|
|
79
|
+
moderation: Moderación
|
|
80
|
+
update_notified: '¿Quién recibe las notificaciones?'
|
|
81
|
+
comments: Comentarios
|
|
82
|
+
teasers: Teasers
|
|
83
|
+
whatson:
|
|
84
|
+
comment_mailer:
|
|
85
|
+
notification:
|
|
86
|
+
greeting: Hola
|
|
87
|
+
you_recieved_new_comment: Han hecho un nuevo comentario en una de las entradas de tu Whatson.
|
|
88
|
+
comment_starts: --- inicio comentario ---
|
|
89
|
+
comment_ends: --- fin comentario ---
|
|
90
|
+
from: De
|
|
91
|
+
email: Email
|
|
92
|
+
message: Mensaje
|
|
93
|
+
closing_line: Saludos
|
|
94
|
+
ps: 'P.D. Recuerda que puedes ver todos los comentarios en el apartado "Comentarios" dentro de la sección "Whatson".'
|
|
95
|
+
shared:
|
|
96
|
+
categories:
|
|
97
|
+
title: Categorías
|
|
98
|
+
rss_feed:
|
|
99
|
+
title: Feed RSS
|
|
100
|
+
subscribe: Suscribirse
|
|
101
|
+
posts:
|
|
102
|
+
other: Otras entradas
|
|
103
|
+
created_at: 'Enviado hace %{when}'
|
|
104
|
+
read_more: Leer más
|
|
105
|
+
comments:
|
|
106
|
+
singular: comentario
|
|
107
|
+
none: no hay comentarios
|
|
108
|
+
archives: Archivos
|
|
109
|
+
tags:
|
|
110
|
+
title: "Etiquetas"
|
|
111
|
+
categories:
|
|
112
|
+
show:
|
|
113
|
+
no_posts: Todavía no hay entradas.
|
|
114
|
+
posts:
|
|
115
|
+
post:
|
|
116
|
+
filed_in: Archivado en
|
|
117
|
+
comment: comentario
|
|
118
|
+
comments:
|
|
119
|
+
by: 'Enviado por %{who}'
|
|
120
|
+
time_ago: 'Hace %{time}'
|
|
121
|
+
thank_you: Gracias por tu comentario.
|
|
122
|
+
thank_you_moderated: 'Gracias por tu comentario. Ha sido enviado a la cola de moderación y, si lo aprobamos, aparecerá dentro de poco.'
|
|
123
|
+
index:
|
|
124
|
+
no_whatson_articles_yet: 'Todavía no hay artículos. ¡Pero vuelve pronto!'
|
|
125
|
+
show:
|
|
126
|
+
whatson_home: 'Página principal del Whatson'
|
|
127
|
+
comments:
|
|
128
|
+
title: Comentarios
|
|
129
|
+
add: 'Envía tu comentario'
|
|
130
|
+
other: Otros posts
|
|
131
|
+
filed_in: Archivado en
|
|
132
|
+
submit: Enviar comentario
|
|
133
|
+
tagged: Etiquetado en
|
|
134
|
+
name: Nombre
|
|
135
|
+
email: Email
|
|
136
|
+
message: Mensaje
|
|
137
|
+
by: por
|
|
138
|
+
tagged:
|
|
139
|
+
no_whatson_articles_yet: Todavía no hay artículos. ¡Pero vuelve pronto!.
|
|
140
|
+
posts_tagged: Publicaciones etiquetadas
|
|
141
|
+
archive:
|
|
142
|
+
whatson_archive_for: 'Archivo del whatson en %{date}'
|
|
143
|
+
no_whatson_articles_posted: 'No hay entradas publicadas en %{date}.'
|
|
144
|
+
activerecord:
|
|
145
|
+
models:
|
|
146
|
+
whatson_category: Categoría
|
|
147
|
+
whatson_comment: Comentario
|
|
148
|
+
whatson_post: Publicación
|
|
149
|
+
attributes:
|
|
150
|
+
whatson_category:
|
|
151
|
+
title: Título
|
|
152
|
+
whatson_comment:
|
|
153
|
+
name: Nombre
|
|
154
|
+
email: Email
|
|
155
|
+
message: Mensaje
|
|
156
|
+
whatson_post:
|
|
157
|
+
title: Título
|
|
158
|
+
body: Cuerpo
|
|
159
|
+
teaser: Teaser
|