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,30 @@
|
|
|
1
|
+
nb:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
posts:
|
|
8
|
+
form:
|
|
9
|
+
seo_override_title: Nettleser tittel
|
|
10
|
+
seo_override_title_help: Skriv inn en tittel på 5-10 ord som oppsummerer innholdet på siden.
|
|
11
|
+
meta_keywords_title: Meta stikkord
|
|
12
|
+
meta_keywords_help: Skriv inn 5-10 stikkord som relaterer til denne siden. Separer stikkordene med komma.
|
|
13
|
+
meta_description_title: Meta beskrivelse
|
|
14
|
+
meta_description_help: Skriv en kort beskrivelse på to eller tre setninger som forteller hva denne siden inneholder.
|
|
15
|
+
index:
|
|
16
|
+
no_items_yet: 'Det er ingen Whatson Posts enda. Klikk på "Lag en ny Whatson Posts" for å legge til din første whatson posts.'
|
|
17
|
+
post:
|
|
18
|
+
view_live: 'Vis hvordan denne whatson post ser ut offentlig <br/><em>(åpner i et nytt vindu)</em>'
|
|
19
|
+
edit: Rediger denne whatson post
|
|
20
|
+
delete: Fjern denne whatson post permanent
|
|
21
|
+
submenu:
|
|
22
|
+
comments:
|
|
23
|
+
new: ny
|
|
24
|
+
posts:
|
|
25
|
+
new: Lag en ny post
|
|
26
|
+
settings:
|
|
27
|
+
update_notified: Oppdater hvem som blir informert
|
|
28
|
+
whatson_posts:
|
|
29
|
+
show:
|
|
30
|
+
other: Andre Whatson Posts
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
nl:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Bewerk deze categorie
|
|
10
|
+
delete: Verwijder deze categorie definitief
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'Er zijn momenteel geen categorien. Klik op "%{create}" om uw eerste categorie toe te voegen.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'De reactie van "%{author}" is goedgekeurd.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live_html: 'Bekijk deze reactie op de website <br/><em>(opent in een nieuw venster)</em>'
|
|
17
|
+
read: Lees deze reactie
|
|
18
|
+
reject: Keur deze reactie af
|
|
19
|
+
approve: Keur deze reactie goed
|
|
20
|
+
rejected: 'De reactie van "%{author}" is afgekeurd.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: 'Er zijn geen %{type} reacties.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Reactie
|
|
25
|
+
whatson_post: Whatsonpost
|
|
26
|
+
from: Gepost door
|
|
27
|
+
date: Gepost op
|
|
28
|
+
message: Reactie
|
|
29
|
+
details: Details
|
|
30
|
+
age: Leeftijd
|
|
31
|
+
actions: Acties
|
|
32
|
+
back: Terug naar alle reacties
|
|
33
|
+
reject: Keur deze reactie af
|
|
34
|
+
approve: Keur deze reactie goed
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Geavanceerde eigenschappen
|
|
38
|
+
toggle_advanced_options: Klik voor toegang tot meta tag instellingen en menu opties
|
|
39
|
+
save_as_draft: Sla op als concept
|
|
40
|
+
published_at: Publicatiedatum
|
|
41
|
+
index:
|
|
42
|
+
no_items_yet: 'Er zijn momenteel geen whatsonposts. Klik op "%{create}" om uw eerste whatsonpost toe te voegen.'
|
|
43
|
+
uncategorized:
|
|
44
|
+
no_items_yet: 'Er zijn geen ongecategoriseerde whatsonposts.'
|
|
45
|
+
post:
|
|
46
|
+
view_live_html: 'Bekijk deze whatsonpost op de website <br/><em>(opent in een nieuw venster)</em>'
|
|
47
|
+
edit: Bewerk deze whatsonpost
|
|
48
|
+
delete: Verwijder deze whatsonpost definitief
|
|
49
|
+
settings:
|
|
50
|
+
notification_recipients:
|
|
51
|
+
value: Stuur notificaties naar
|
|
52
|
+
explanation: 'Bij elke nieuwe reactie op een whatsonpost stuurt Refinery u een e-mail om dit te melden.'
|
|
53
|
+
hint: 'Als er een reactie is toegevoegd stuurt Refinery een e-mail notificatie naar u.'
|
|
54
|
+
example: "Voer uw e-mailadres(sen) in, bijvoorbeeld: jack@work.com, jill@office.com"
|
|
55
|
+
updated: 'De ontvanger(s) van notificaties is/zijn gewijzigd naar "%{recipients}"'
|
|
56
|
+
submenu:
|
|
57
|
+
categories:
|
|
58
|
+
title: Categorien
|
|
59
|
+
manage: Beheren
|
|
60
|
+
new: Voeg een nieuwe categorie toe
|
|
61
|
+
comments:
|
|
62
|
+
title: Reacties
|
|
63
|
+
title_with_count: 'Reacties (%{new_count} nieuwe)'
|
|
64
|
+
new: Nieuw
|
|
65
|
+
unmoderated: Nieuw
|
|
66
|
+
approved: Goedgekeurd
|
|
67
|
+
rejected: Afgekeurd
|
|
68
|
+
posts:
|
|
69
|
+
title: Posts
|
|
70
|
+
manage: Beheer posts
|
|
71
|
+
new: Voeg een nieuwe post toe
|
|
72
|
+
uncategorized: Ongecategoriseerde posts
|
|
73
|
+
settings:
|
|
74
|
+
title: Instellingen
|
|
75
|
+
moderation: Stuur notificaties
|
|
76
|
+
update_notified: Wijzig wie notificaties ontvangt
|
|
77
|
+
comments: Reacties
|
|
78
|
+
teasers: Teasers
|
|
79
|
+
whatson:
|
|
80
|
+
comment_mailer:
|
|
81
|
+
notification:
|
|
82
|
+
greeting: Hallo
|
|
83
|
+
you_recieved_new_comment: Er is zojuist een reactie geplaatst op uw website.
|
|
84
|
+
comment_starts: --- begin reactie ---
|
|
85
|
+
comment_ends: --- einde reactie ---
|
|
86
|
+
from: Van
|
|
87
|
+
email: E-mail
|
|
88
|
+
message: Bericht
|
|
89
|
+
closing_line: Met vriendelijke groet
|
|
90
|
+
ps: 'P.S. Alle reacties worden opgeslagen in de "Whatson" sectie van Refinery onder het submenu "Comments", voor als u deze reacties later wilt bekijken.'
|
|
91
|
+
shared:
|
|
92
|
+
categories:
|
|
93
|
+
title: Categorien
|
|
94
|
+
rss_feed:
|
|
95
|
+
title: RSS Feed
|
|
96
|
+
subscribe: Aanmelden
|
|
97
|
+
posts:
|
|
98
|
+
other: Andere posts
|
|
99
|
+
created_at: 'Gepost op %{when}'
|
|
100
|
+
read_more: Lees verder
|
|
101
|
+
comments:
|
|
102
|
+
singular: Reactie
|
|
103
|
+
none: Geen reacties
|
|
104
|
+
archives: Archief
|
|
105
|
+
tags:
|
|
106
|
+
title: "Tags"
|
|
107
|
+
categories:
|
|
108
|
+
show:
|
|
109
|
+
no_posts: Er zijn momenteel geen posts.
|
|
110
|
+
posts:
|
|
111
|
+
post:
|
|
112
|
+
filed_in: Toegevoegd aan
|
|
113
|
+
comment: Reactie
|
|
114
|
+
comments:
|
|
115
|
+
by: 'Gepost door %{who}'
|
|
116
|
+
time_ago: '%{time} geleden'
|
|
117
|
+
thank_you: 'Bedankt voor uw reactie.'
|
|
118
|
+
thank_you_moderated: 'Bedankt voor uw reactie. Uw reactie is in de wachtrij geplaatst en zal binnenkort verschijnen.'
|
|
119
|
+
index:
|
|
120
|
+
no_whatson_articles_yet: Er zijn momenteel nog geen whatsonposts. Neem regelmatig een kijkje.
|
|
121
|
+
show:
|
|
122
|
+
whatson_home: Whatson Home
|
|
123
|
+
comments:
|
|
124
|
+
title: Reacties
|
|
125
|
+
add: Plaats een reactie
|
|
126
|
+
other: Andere whatsonposts
|
|
127
|
+
filed_in: Toegevoegd aan
|
|
128
|
+
tagged: Tagged
|
|
129
|
+
submit: Verstuur reactie
|
|
130
|
+
tagged:
|
|
131
|
+
no_whatson_articles_yet: Er zijn momenteel nog geen whatsonposts. Neem regelmatig een kijkje.
|
|
132
|
+
archive:
|
|
133
|
+
whatson_archive_for: 'Whatson archief voor %{date}'
|
|
134
|
+
no_whatson_articles_posted: 'Er zijn geen whatsonposts voor %{date}. Neem regelmatig een kijkje.'
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
pl:
|
|
2
|
+
activerecord:
|
|
3
|
+
attributes:
|
|
4
|
+
whatson_comment:
|
|
5
|
+
name: "Imię"
|
|
6
|
+
email: "Email"
|
|
7
|
+
message: "Treść"
|
|
8
|
+
plugins:
|
|
9
|
+
refinerycms_whatson:
|
|
10
|
+
title: Whatson
|
|
11
|
+
admin:
|
|
12
|
+
whatson:
|
|
13
|
+
categories:
|
|
14
|
+
category:
|
|
15
|
+
edit: Edytuj tą kategorię
|
|
16
|
+
delete: Usuń na zawsze
|
|
17
|
+
index:
|
|
18
|
+
no_items_yet: 'W tej chwili nie ma żadnych kategorii. Kliknij "%{create}" aby dodać pierwszą.'
|
|
19
|
+
comments:
|
|
20
|
+
approved: 'Komentarz "%{author}" został zaakceptowany.'
|
|
21
|
+
comment:
|
|
22
|
+
view_live: 'Zobacz ten komentarz na żywo<br/><em>(otwiera w nowym oknie)</em>'
|
|
23
|
+
read: Pokaż ten komentarz
|
|
24
|
+
reject: Odrzuć ten komentarz
|
|
25
|
+
approve: Zaakceptuj ten komentarz
|
|
26
|
+
rejected: 'Komentarz "%{author}" został odrzucony.'
|
|
27
|
+
index:
|
|
28
|
+
no_items_yet: 'Nie ma więcej komentarzy typu "%{type}".'
|
|
29
|
+
show:
|
|
30
|
+
comment: Komentarz
|
|
31
|
+
whatson_post: Post
|
|
32
|
+
from: Autor
|
|
33
|
+
date: Data
|
|
34
|
+
message: Komentarz
|
|
35
|
+
details: Szczegóły
|
|
36
|
+
age: Wiek
|
|
37
|
+
actions: Akcje
|
|
38
|
+
back: Powrót do listy komentarzy
|
|
39
|
+
reject: Odrzuć ten komentarz
|
|
40
|
+
approve: Zaakceptuj ten komentarz
|
|
41
|
+
posts:
|
|
42
|
+
form:
|
|
43
|
+
advanced_options: Opcje zaawansowane
|
|
44
|
+
toggle_advanced_options: 'Kliknij, aby zarządzać meta-ustawieniami'
|
|
45
|
+
save_as_draft: Zapisz jako szkic
|
|
46
|
+
published_at: Data publikacji
|
|
47
|
+
index:
|
|
48
|
+
no_items_yet: 'Na whatsonu nie ma jeszcze żadnych wpisów. Kliknij "%{create}" aby dodać pierwszy post.'
|
|
49
|
+
uncategorized:
|
|
50
|
+
no_items_yet: 'Brak nieskategoryzowanych wpisów na whatsonu.'
|
|
51
|
+
post:
|
|
52
|
+
view_live: 'Zobacz ten post na żywo<br/><em>(otwiera w nowym oknie)</em>'
|
|
53
|
+
edit: Edytuj ten post
|
|
54
|
+
delete: Usuń ten post na zawsze
|
|
55
|
+
settings:
|
|
56
|
+
notification_recipients:
|
|
57
|
+
value: Powiadomienia wysyłane do
|
|
58
|
+
explanation: 'Gdy zostanie dodany nowy komentarz, system wyśle powiadomienie przez e-mail.'
|
|
59
|
+
hint: 'Gdy zostanie dodany nowy komentarz, system wyśle powiadomienie przez e-mail.'
|
|
60
|
+
example: 'Podaj adresy e-mail oddzielone przecinkiem, np: jack@work.com, jill@office.com'
|
|
61
|
+
updated: 'Powiadomienia będą wysyłane do "%{recipients}"'
|
|
62
|
+
submenu:
|
|
63
|
+
categories:
|
|
64
|
+
title: Kategorie
|
|
65
|
+
manage: Zarządzaj kategoriami
|
|
66
|
+
new: Dodaj nową kategorię
|
|
67
|
+
comments:
|
|
68
|
+
title: Komentarze
|
|
69
|
+
title_with_count: 'Komentarze (%{new_count} nowych)'
|
|
70
|
+
new: Nowe
|
|
71
|
+
unmoderated: Nowe
|
|
72
|
+
approved: Zaakceptowane
|
|
73
|
+
rejected: Odrzucone
|
|
74
|
+
posts:
|
|
75
|
+
title: Posty
|
|
76
|
+
manage: Zarządzaj postami
|
|
77
|
+
new: Dodaj nowy post
|
|
78
|
+
uncategorized: Posty bez kategorii
|
|
79
|
+
settings:
|
|
80
|
+
title: Ustawienia
|
|
81
|
+
moderation: Wł./wył. moderację
|
|
82
|
+
update_notified: Powiadamianie przez e-mail
|
|
83
|
+
comments: Komentarze
|
|
84
|
+
whatson:
|
|
85
|
+
comment_mailer:
|
|
86
|
+
notification:
|
|
87
|
+
greeting: Witaj:)
|
|
88
|
+
you_recieved_new_comment: Właśnie otrzymałeś nowy komentarz na swojej stronie!
|
|
89
|
+
comment_starts: --- początek komentarza ---
|
|
90
|
+
comment_ends: --- koniec komentarza ---
|
|
91
|
+
from: Od
|
|
92
|
+
email: Email
|
|
93
|
+
message: Treść
|
|
94
|
+
closing_line: Pozdrawiamy
|
|
95
|
+
ps: 'P.S. Wszystkie komentarze przechowywane są w panelu zarządzania, w sekcji "Whatson" i podmenu "Komentarze". '
|
|
96
|
+
shared:
|
|
97
|
+
categories:
|
|
98
|
+
title: Kategorie
|
|
99
|
+
rss_feed:
|
|
100
|
+
title: RSS Feed
|
|
101
|
+
subscribe: Sukskrybuj
|
|
102
|
+
posts:
|
|
103
|
+
other: Pozostałe posty
|
|
104
|
+
created_at: 'Data: %{when}'
|
|
105
|
+
read_more: Więcej
|
|
106
|
+
comments:
|
|
107
|
+
singular: komentarz
|
|
108
|
+
none: brak komentarzy
|
|
109
|
+
archives: Archiwum
|
|
110
|
+
categories:
|
|
111
|
+
show:
|
|
112
|
+
no_posts: Nie ma jeszcze żadnych postów.
|
|
113
|
+
posts:
|
|
114
|
+
post:
|
|
115
|
+
filed_in: 'kategorie:'
|
|
116
|
+
comment: komentarz
|
|
117
|
+
comments:
|
|
118
|
+
by: 'Autor: %{who}'
|
|
119
|
+
time_ago: '%{time} temu'
|
|
120
|
+
thank_you: 'Dziękujemy za Twój komentarz.'
|
|
121
|
+
thank_you_moderated: 'Dziękujemy za Twój komentarz. Został on przekazany do moderacji i niedługo pojawi się na stronie.'
|
|
122
|
+
index:
|
|
123
|
+
no_whatson_articles_yet: W tej chwili nie ma jeszcze żadnych postów. Cierpliwości:)
|
|
124
|
+
show:
|
|
125
|
+
whatson_home: Whatson
|
|
126
|
+
comments:
|
|
127
|
+
title: Komentarze
|
|
128
|
+
add: Dodaj komentarz
|
|
129
|
+
other: Pozostałe wpisy
|
|
130
|
+
filed_in: 'kategorie:'
|
|
131
|
+
submit: Dodaj komentarz
|
|
132
|
+
archive:
|
|
133
|
+
whatson_archive_for: 'Archiwum dla %{date}'
|
|
134
|
+
no_whatson_articles_posted: 'Brak wpisów dla daty %{date}.'
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
pt-BR:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Whatson
|
|
5
|
+
activerecord:
|
|
6
|
+
attributes:
|
|
7
|
+
whatson_post:
|
|
8
|
+
title: Título
|
|
9
|
+
body: Corpo
|
|
10
|
+
whatson_comment:
|
|
11
|
+
name: Nome
|
|
12
|
+
message: Mensagem
|
|
13
|
+
admin:
|
|
14
|
+
whatson:
|
|
15
|
+
categories:
|
|
16
|
+
category:
|
|
17
|
+
edit: Editar esta categoria
|
|
18
|
+
delete: Apagar esta categoria para sempre
|
|
19
|
+
index:
|
|
20
|
+
no_items_yet: 'Não há categorias ainda. Clique em "%{create}" para adicionar a primeira categoria.'
|
|
21
|
+
comments:
|
|
22
|
+
approved: 'O comentário de "%{author}" foi aprovado.'
|
|
23
|
+
comment:
|
|
24
|
+
view_live_html: 'Ver este comentário <br/><em>(será aberto em outra janela)</em>'
|
|
25
|
+
read: Ler este comentário
|
|
26
|
+
reject: Rejeitar este comentário
|
|
27
|
+
approve: Aprovar este comentário
|
|
28
|
+
rejected: 'O comentário de "%{author}" foi rejeitado.'
|
|
29
|
+
index:
|
|
30
|
+
no_items_yet: 'Não há %{type} comentários.'
|
|
31
|
+
show:
|
|
32
|
+
comment: Comentário
|
|
33
|
+
whatson_post: Post
|
|
34
|
+
from: Postado por
|
|
35
|
+
date: Postado em
|
|
36
|
+
message: Comentário
|
|
37
|
+
details: Detalhes
|
|
38
|
+
age: Idade
|
|
39
|
+
actions: Ações
|
|
40
|
+
back: Voltar para todos os comentários
|
|
41
|
+
reject: Rejeitar este comentário
|
|
42
|
+
approve: Aprovar este comentário
|
|
43
|
+
posts:
|
|
44
|
+
form:
|
|
45
|
+
advanced_options: Opções avançadas
|
|
46
|
+
toggle_advanced_options: Clique aqui para acessar as configurações de meta tag e menu
|
|
47
|
+
save_as_draft: Salvar como rascunho
|
|
48
|
+
published_at: Data de publicação
|
|
49
|
+
custom_url: Url customizada
|
|
50
|
+
custom_url_help: Gere a url para o post do whatson a partir dessa ao invés de utilizar o título
|
|
51
|
+
copy_body: Copiar o Corpo do post para o Teaser
|
|
52
|
+
copy_body_helper: Copiar o corpo do post para o teaser. Deixe o teaser em branco para deixar o Refinery fazer o teaser automaticamente.
|
|
53
|
+
index:
|
|
54
|
+
no_items_yet: 'Ainda não há Posts no Whatson. Clique em "%{create}" para adicionar o primeiro post.'
|
|
55
|
+
uncategorized:
|
|
56
|
+
no_items_yet: 'Ainda não há posts sem categoria.'
|
|
57
|
+
post:
|
|
58
|
+
view_live_html: 'Ver este comentário <br/><em>(será aberto em outra janela)</em>'
|
|
59
|
+
edit: Editar este post
|
|
60
|
+
delete: Remover esse post para sempre
|
|
61
|
+
settings:
|
|
62
|
+
notification_recipients:
|
|
63
|
+
value: Enviar notificações para
|
|
64
|
+
explanation: 'Cada vez que alguém comenta em um post no whatson, é enviado um e-mail para informar que há um novo comentário.'
|
|
65
|
+
hint: 'Quando um novo comentário é adicionado, será enviado uma notificação por e-mail para você.'
|
|
66
|
+
example: 'Entre com o(s) seu(s) endereço(s) de email, como: jack@work.com, jill@office.com'
|
|
67
|
+
updated: 'As notificações foram enviadas para "%{recipients}"'
|
|
68
|
+
submenu:
|
|
69
|
+
categories:
|
|
70
|
+
title: Categorias
|
|
71
|
+
manage: Gerenciar
|
|
72
|
+
new: Criar nova categoria
|
|
73
|
+
comments:
|
|
74
|
+
title: Comentários
|
|
75
|
+
title_with_count: 'Comentários (%{new_count} novos)'
|
|
76
|
+
new: Novo
|
|
77
|
+
unmoderated: Novo
|
|
78
|
+
approved: Aprovado
|
|
79
|
+
rejected: Rejeitado
|
|
80
|
+
posts:
|
|
81
|
+
title: Posts
|
|
82
|
+
manage: Gerenciar posts
|
|
83
|
+
new: Criar novo post
|
|
84
|
+
uncategorized: Posts sem categoria
|
|
85
|
+
settings:
|
|
86
|
+
title: Configurações
|
|
87
|
+
moderation: Moderação
|
|
88
|
+
update_notified: Quem receberá a notificação?
|
|
89
|
+
comments: Comentários
|
|
90
|
+
teasers: Teasers
|
|
91
|
+
whatson:
|
|
92
|
+
comment_mailer:
|
|
93
|
+
notification:
|
|
94
|
+
greeting: Olá
|
|
95
|
+
you_recieved_new_comment: Você acaba de receber um novo comentário em seu site.
|
|
96
|
+
comment_starts: --- Início do comentário ---
|
|
97
|
+
comment_ends: --- Fim do comentário ---
|
|
98
|
+
from: De
|
|
99
|
+
email: Email
|
|
100
|
+
message: Mensagem
|
|
101
|
+
closing_line: Atenciosamente
|
|
102
|
+
ps: 'P.S. Lembre-se que você pode ver todos os comentários em "Comentários" dentro da seção "Whatson".'
|
|
103
|
+
shared:
|
|
104
|
+
categories:
|
|
105
|
+
title: Categorias
|
|
106
|
+
rss_feed:
|
|
107
|
+
title: Feed RSS
|
|
108
|
+
subscribe: Assinar
|
|
109
|
+
posts:
|
|
110
|
+
other: Últimos posts
|
|
111
|
+
created_at: 'Postado em %{when}'
|
|
112
|
+
read_more: Continue lendo...
|
|
113
|
+
comments:
|
|
114
|
+
singular: comentário
|
|
115
|
+
none: não há comentários
|
|
116
|
+
archives: Arquivos
|
|
117
|
+
tags:
|
|
118
|
+
title: Tags
|
|
119
|
+
categories:
|
|
120
|
+
show:
|
|
121
|
+
no_posts: Não há posts aqui ainda.
|
|
122
|
+
posts:
|
|
123
|
+
comment: commentário
|
|
124
|
+
comments:
|
|
125
|
+
by: 'Postado por %{who}'
|
|
126
|
+
time_ago: '%{time} atrás'
|
|
127
|
+
thank_you: 'Obrigado por comentar.'
|
|
128
|
+
thank_you_moderated: 'Obrigado por comentar. Sua mensagem foi colocada na fila de moderação e será exibida em breve.'
|
|
129
|
+
index:
|
|
130
|
+
no_whatson_articles_yet: Ainda não há artigos postados no whatson.
|
|
131
|
+
show:
|
|
132
|
+
whatson_home: Whatson Home
|
|
133
|
+
comments:
|
|
134
|
+
title: Comentários
|
|
135
|
+
add: Fazer um comentário
|
|
136
|
+
other: Outros posts
|
|
137
|
+
filed_in: Arquivado em
|
|
138
|
+
submit: Enviar comentário
|
|
139
|
+
archive:
|
|
140
|
+
whatson_archive_for: 'Arquivo do whatson em %{date}'
|
|
141
|
+
no_whatson_articles_posted: 'Não há arquivos do whatson em %{date}.'
|
|
142
|
+
post:
|
|
143
|
+
filed_in: Arquivado em
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
ru:
|
|
2
|
+
plugins:
|
|
3
|
+
refinerycms_whatson:
|
|
4
|
+
title: Блог
|
|
5
|
+
admin:
|
|
6
|
+
whatson:
|
|
7
|
+
categories:
|
|
8
|
+
category:
|
|
9
|
+
edit: Редактировать эту категорию
|
|
10
|
+
delete: Удалить эту категорию навсегда
|
|
11
|
+
index:
|
|
12
|
+
no_items_yet: 'Категории пока не созданы. Нажмите "%{create}", чтобы добавить вашу первую категорию.'
|
|
13
|
+
comments:
|
|
14
|
+
approved: 'Комментарий от "%{author}" был опубликован.'
|
|
15
|
+
comment:
|
|
16
|
+
view_live_html: Посмотреть комментарий на сайте <br/><em>(откроется в новом окне)</em>
|
|
17
|
+
read: Прочитать комментарий
|
|
18
|
+
reject: Отклонить комментарий
|
|
19
|
+
approve: Принять комментарий
|
|
20
|
+
rejected: 'Комментарий от "%{author}" был отклонен.'
|
|
21
|
+
index:
|
|
22
|
+
no_items_yet: '%{type} комментарии: отсутствуют.'
|
|
23
|
+
show:
|
|
24
|
+
comment: Комментарий
|
|
25
|
+
whatson_post: Запись в блоге
|
|
26
|
+
from: Опубликовал
|
|
27
|
+
date: Опубликовано
|
|
28
|
+
message: Комментарий
|
|
29
|
+
details: Детали
|
|
30
|
+
age: Возраст
|
|
31
|
+
actions: Действия
|
|
32
|
+
back: Вернуться к списку комментариев
|
|
33
|
+
reject: Отклонить этот комментарий
|
|
34
|
+
approve: Принять этот комментарий
|
|
35
|
+
posts:
|
|
36
|
+
form:
|
|
37
|
+
advanced_options: Дополнительные настройки
|
|
38
|
+
toggle_advanced_options: 'Нажмите, чтобы получить доступ к настройкам мета-тегов и меню'
|
|
39
|
+
save_as_draft: Сохранить как черновик
|
|
40
|
+
published_at: Дата публикации
|
|
41
|
+
index:
|
|
42
|
+
no_items_yet: 'Записи в блоге отстутствуют. Нажмите "%{create}", чтобы добавить первую запись.'
|
|
43
|
+
uncategorized:
|
|
44
|
+
no_items_yet: 'Записи без категорий отсутствуют.'
|
|
45
|
+
post:
|
|
46
|
+
view_live_html: Посмотреть запись на сайте <br/><em>(откроется в новом окне)</em>
|
|
47
|
+
edit: Редактировать запись
|
|
48
|
+
delete: Удалить запись
|
|
49
|
+
settings:
|
|
50
|
+
notification_recipients:
|
|
51
|
+
value: Отправлять уведомления
|
|
52
|
+
explanation: 'При появлении новых комментариев Refinery пришлет уведомление на email.'
|
|
53
|
+
hint: 'При появлении новых комментариев Refinery пришлет уведомление на email.'
|
|
54
|
+
example: "Введите адреса эл. почты, например: jack@work.com, jill@office.com"
|
|
55
|
+
updated: 'Получателем уведомлений является "%{recipients}"'
|
|
56
|
+
submenu:
|
|
57
|
+
categories:
|
|
58
|
+
title: Категории
|
|
59
|
+
manage: Редактировать категории
|
|
60
|
+
new: Создать новую категорию
|
|
61
|
+
comments:
|
|
62
|
+
title: Комментарии
|
|
63
|
+
title_with_count: 'Комментарии (%{new_count} новых)'
|
|
64
|
+
new: Новые
|
|
65
|
+
unmoderated: Новые
|
|
66
|
+
approved: Принятые
|
|
67
|
+
rejected: Отклоненные
|
|
68
|
+
posts:
|
|
69
|
+
title: Записи
|
|
70
|
+
manage: Редактировать записи
|
|
71
|
+
new: Создать новую запись
|
|
72
|
+
uncategorized: Записи без категорий
|
|
73
|
+
settings:
|
|
74
|
+
title: Настройки
|
|
75
|
+
moderation: Модерирование
|
|
76
|
+
update_notified: Настроить уведомления
|
|
77
|
+
comments: Комментарии
|
|
78
|
+
whatson:
|
|
79
|
+
comment_mailer:
|
|
80
|
+
notification:
|
|
81
|
+
greeting: Здравствуйте
|
|
82
|
+
you_recieved_new_comment: Новый комментарий опубликован на вашем сайте.
|
|
83
|
+
comment_starts: --- начало комментария ---
|
|
84
|
+
comment_ends: --- конец комментария ---
|
|
85
|
+
from: От
|
|
86
|
+
email: Эл. почта
|
|
87
|
+
message: Сообщение
|
|
88
|
+
closing_line: С уважением
|
|
89
|
+
ps: P.S. Все комментарии находятся в разделе "Блог" Refinery CMS в подменю "Комментарии".
|
|
90
|
+
shared:
|
|
91
|
+
categories:
|
|
92
|
+
title: Категории
|
|
93
|
+
rss_feed:
|
|
94
|
+
title: RSS-лента
|
|
95
|
+
subscribe: Подписаться
|
|
96
|
+
posts:
|
|
97
|
+
other: Другие записи
|
|
98
|
+
created_at: 'Опубликовано %{when}'
|
|
99
|
+
read_more: Читать дальше
|
|
100
|
+
comments:
|
|
101
|
+
singular: комментарий
|
|
102
|
+
none: нет комментариев
|
|
103
|
+
archives: Архивы
|
|
104
|
+
tags:
|
|
105
|
+
title: "Теги"
|
|
106
|
+
categories:
|
|
107
|
+
show:
|
|
108
|
+
no_posts: Записей пока нет.
|
|
109
|
+
posts:
|
|
110
|
+
post:
|
|
111
|
+
filed_in: Категория
|
|
112
|
+
comment: комментарий
|
|
113
|
+
comments:
|
|
114
|
+
by: 'Опубликовал %{who}'
|
|
115
|
+
time_ago: '%{time} назад'
|
|
116
|
+
thank_you: 'Спасибо за комментарий.'
|
|
117
|
+
thank_you_moderated: 'Спасибо за комментарий. Ваше сообщение модерируется и скоро появится на сайте.'
|
|
118
|
+
index:
|
|
119
|
+
no_whatson_articles_yet: Пока ни одной записи не опубликовано. Следите за новостями.
|
|
120
|
+
show:
|
|
121
|
+
whatson_home: Вернуться к списку записей
|
|
122
|
+
comments:
|
|
123
|
+
title: Комментарии
|
|
124
|
+
add: Написать комментарий
|
|
125
|
+
other: Другие записи
|
|
126
|
+
filed_in: Категория
|
|
127
|
+
tagged: Теги
|
|
128
|
+
submit: Отправить комментарий
|
|
129
|
+
name: Имя
|
|
130
|
+
email: Email
|
|
131
|
+
message: Сообщение
|
|
132
|
+
by: Автор
|
|
133
|
+
archive:
|
|
134
|
+
whatson_archive_for: 'Архив %{date}'
|
|
135
|
+
no_whatson_articles_posted: 'Ни одной записи за %{date} не опубликовано. Следите за новостями.'
|