cms-inquiries 1.0.1

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 (58) hide show
  1. data/app/controllers/admin/inquiries_controller.rb +41 -0
  2. data/app/controllers/admin/inquiry_settings_controller.rb +48 -0
  3. data/app/controllers/inquiries_controller.rb +43 -0
  4. data/app/helpers/inquiries_helper.rb +2 -0
  5. data/app/mailers/inquiry_mailer.rb +21 -0
  6. data/app/models/inquiry.rb +23 -0
  7. data/app/models/inquiry_setting.rb +47 -0
  8. data/app/views/admin/inquiries/_inquiry.html.erb +24 -0
  9. data/app/views/admin/inquiries/_submenu.html.erb +27 -0
  10. data/app/views/admin/inquiries/index.html.erb +30 -0
  11. data/app/views/admin/inquiries/show.html.erb +72 -0
  12. data/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +59 -0
  13. data/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb +25 -0
  14. data/app/views/admin/inquiry_settings/edit.html.erb +5 -0
  15. data/app/views/inquiries/new.html.erb +34 -0
  16. data/app/views/inquiries/thank_you.html.erb +1 -0
  17. data/app/views/inquiry_mailer/confirmation.html.erb +1 -0
  18. data/app/views/inquiry_mailer/notification.html.erb +18 -0
  19. data/cms-inquiries.gemspec +98 -0
  20. data/config/locales/bg.yml +75 -0
  21. data/config/locales/cs.yml +75 -0
  22. data/config/locales/da.yml +68 -0
  23. data/config/locales/de.yml +76 -0
  24. data/config/locales/en-GB.yml +75 -0
  25. data/config/locales/en.yml +75 -0
  26. data/config/locales/es.yml +79 -0
  27. data/config/locales/fr.yml +76 -0
  28. data/config/locales/it.yml +77 -0
  29. data/config/locales/lolcat.yml +76 -0
  30. data/config/locales/lt.yml +76 -0
  31. data/config/locales/lv.yml +76 -0
  32. data/config/locales/nb.yml +75 -0
  33. data/config/locales/nl.yml +75 -0
  34. data/config/locales/pl.yml +76 -0
  35. data/config/locales/pt-BR.yml +76 -0
  36. data/config/locales/ru.yml +75 -0
  37. data/config/locales/sk.yml +75 -0
  38. data/config/locales/sl.yml +75 -0
  39. data/config/locales/sv.yml +75 -0
  40. data/config/locales/zh-CN.yml +75 -0
  41. data/config/routes.rb +23 -0
  42. data/db/migrate/20101208082840_create_inquiries.rb +31 -0
  43. data/db/migrate/20101208082841_remove_position_and_open_from_inquiries.rb +11 -0
  44. data/db/migrate/20110719082646_drop_inquiry_settings_table.rb +11 -0
  45. data/db/seeds/pages_for_inquiries.rb +55 -0
  46. data/features/create_inquiries.feature +38 -0
  47. data/features/manage_inquiries.feature +57 -0
  48. data/features/step_definitions/inquiry_steps.rb +25 -0
  49. data/features/support/factories.rb +7 -0
  50. data/features/support/paths.rb +26 -0
  51. data/lib/gemspec.rb +29 -0
  52. data/lib/generators/refinerycms_inquiries_generator.rb +6 -0
  53. data/lib/inquiries.rb +2 -0
  54. data/lib/refinerycms-inquiries.rb +24 -0
  55. data/license.md +21 -0
  56. data/readme.md +49 -0
  57. data/spec/models/inquiry_spec.rb +59 -0
  58. metadata +135 -0
@@ -0,0 +1,25 @@
1
+ <%= form_for([:admin, @refinery_setting], :url => (@url_override || @url)) do |f| %>
2
+
3
+ <div class='field'>
4
+ <span class='label_with_help'>
5
+ <%= f.label :value, t('.inquiry_settings_value_name') %>
6
+ </span>
7
+ <%= f.text_field :value, :value => f.object.value, # required, we can't use :value
8
+ :class => "larger widest" %>
9
+ </div>
10
+
11
+ <p>
12
+ <%= t('.hint') %>
13
+ </p>
14
+ <p>
15
+ <%= t('.example') %>
16
+ </p>
17
+
18
+ <%= render :partial => "/shared/admin/form_actions",
19
+ :locals => {
20
+ :f => f,
21
+ :continue_editing => false,
22
+ :cancel_url => admin_inquiries_url,
23
+ :hide_delete => true
24
+ } %>
25
+ <% end %>
@@ -0,0 +1,5 @@
1
+ <% if @refinery_setting.name.to_s.titleize == "Inquiry Notification Recipients" %>
2
+ <%= render :partial => "notification_recipients_form", :locals => {:edit => true} -%>
3
+ <% else %>
4
+ <%= render :partial => "confirmation_email_form", :locals => {:edit => true} -%>
5
+ <% end %>
@@ -0,0 +1,34 @@
1
+ <% content_for :body_content_left do %>
2
+ <div class="inquiries">
3
+ <%=raw @page.content_for(Page.default_parts.first.to_sym) %>
4
+
5
+ <%= form_for @inquiry do |f| %>
6
+ <%= render :partial => '/shared/admin/error_messages',
7
+ :locals => {
8
+ :object => @inquiry,
9
+ :include_object_name => true
10
+ } %>
11
+ <div class="field">
12
+ <%= f.required_label :name, :class => 'placeholder-fallback' %>
13
+ <%= f.text_field :name, :class => 'text', :required => 'required', :placeholder => t('name', :scope => 'activerecord.attributes.inquiry') %>
14
+ </div>
15
+ <div class="field">
16
+ <%= f.required_label :email, :class => 'placeholder-fallback' %>
17
+ <%= f.email_field :email, :class => 'text email', :required => 'required', :placeholder => t('email', :scope => 'activerecord.attributes.inquiry') %>
18
+ </div>
19
+ <div class="field">
20
+ <%= f.label :phone, :class => 'placeholder-fallback' %>
21
+ <%= f.text_field :phone, :class => 'text phone', :placeholder => t('phone', :scope => 'activerecord.attributes.inquiry') %>
22
+ </div>
23
+ <div class='field message_field'>
24
+ <%= f.required_label :message, :class => 'placeholder-fallback' %>
25
+ <%= f.text_area :message, :rows => 8, :required => 'required', :placeholder => t('message', :scope => 'activerecord.attributes.inquiry') %>
26
+ </div>
27
+ <div class="actions">
28
+ <%= f.submit t('.send') %>
29
+ <%= link_to t('.privacy_policy'), '/pages/privacy-policy', :id => 'privacy_link' if RefinerySetting.find_or_set(:show_contact_privacy_link, false) %>
30
+ </div>
31
+ <% end %>
32
+ </div>
33
+ <% end %>
34
+ <%= render :partial => '/shared/content_page' %>
@@ -0,0 +1 @@
1
+ <%= render :partial => "/shared/content_page" %>
@@ -0,0 +1 @@
1
+ <%=raw InquirySetting.confirmation_message(Globalize.locale).gsub("%name%", @inquiry.name) %>
@@ -0,0 +1,18 @@
1
+ <%=raw t('.greeting') %>,
2
+
3
+ <%=raw t('.you_recieved_new_inquiry') %>
4
+
5
+ <%=raw t('.inquiry_starts') %>
6
+
7
+ <%=raw t('.from') %>: <%= @inquiry.name %>
8
+ <%=raw t('.email') %>: <%= @inquiry.email %>
9
+ <%=raw t('.phone') %>: <%= @inquiry.phone %>
10
+ <%=raw t('.message') %>:
11
+ <%=simple_format strip_tags(@inquiry.message) %>
12
+
13
+ <%=raw t('.inquiry_ends') %>
14
+
15
+ <%=raw t('.closing_line') %>,
16
+ <%=raw RefinerySetting[:site_name] %>
17
+
18
+ <%=raw t('.ps') %>
@@ -0,0 +1,98 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{cms-inquiries}
3
+ s.version = %q{1.0.1}
4
+ s.date = %q{2012-02-06}
5
+ s.summary = %q{Inquiry handling functionality for the CMS project.}
6
+ s.description = %q{Inquiry handling functionality that allow you to have a contact form and manage inquiries in the CMS backend.}
7
+ s.homepage = %q{http://www.mutalis.com}
8
+ s.email = %q{services_info@mutalis.com}
9
+ s.authors = ["Mutalis LLC"]
10
+ s.require_paths = %w(lib)
11
+
12
+ s.files = [
13
+ 'cms-inquiries.gemspec',
14
+ 'app',
15
+ 'app/controllers',
16
+ 'app/controllers/inquiries_controller.rb',
17
+ 'app/controllers/admin',
18
+ 'app/controllers/admin/inquiries_controller.rb',
19
+ 'app/controllers/admin/inquiry_settings_controller.rb',
20
+ 'app/views',
21
+ 'app/views/inquiries',
22
+ 'app/views/inquiries/thank_you.html.erb',
23
+ 'app/views/inquiries/new.html.erb',
24
+ 'app/views/inquiry_mailer',
25
+ 'app/views/inquiry_mailer/confirmation.html.erb',
26
+ 'app/views/inquiry_mailer/notification.html.erb',
27
+ 'app/views/admin',
28
+ 'app/views/admin/inquiries',
29
+ 'app/views/admin/inquiries/show.html.erb',
30
+ 'app/views/admin/inquiries/_submenu.html.erb',
31
+ 'app/views/admin/inquiries/index.html.erb',
32
+ 'app/views/admin/inquiries/_inquiry.html.erb',
33
+ 'app/views/admin/inquiry_settings',
34
+ 'app/views/admin/inquiry_settings/_notification_recipients_form.html.erb',
35
+ 'app/views/admin/inquiry_settings/_confirmation_email_form.html.erb',
36
+ 'app/views/admin/inquiry_settings/edit.html.erb',
37
+ 'app/helpers',
38
+ 'app/helpers/inquiries_helper.rb',
39
+ 'app/models',
40
+ 'app/models/inquiry_setting.rb',
41
+ 'app/models/inquiry.rb',
42
+ 'app/mailers',
43
+ 'app/mailers/inquiry_mailer.rb',
44
+ 'spec',
45
+ 'spec/models',
46
+ 'spec/models/inquiry_spec.rb',
47
+ 'features',
48
+ 'features/support',
49
+ 'features/support/paths.rb',
50
+ 'features/support/factories.rb',
51
+ 'features/manage_inquiries.feature',
52
+ 'features/create_inquiries.feature',
53
+ 'features/step_definitions',
54
+ 'features/step_definitions/inquiry_steps.rb',
55
+ 'lib',
56
+ 'lib/gemspec.rb',
57
+ 'lib/inquiries.rb',
58
+ 'lib/generators',
59
+ 'lib/generators/refinerycms_inquiries_generator.rb',
60
+ 'lib/refinerycms-inquiries.rb',
61
+ 'db',
62
+ 'db/migrate',
63
+ 'db/migrate/20101208082840_create_inquiries.rb',
64
+ 'db/migrate/20110719082646_drop_inquiry_settings_table.rb',
65
+ 'db/migrate/20101208082841_remove_position_and_open_from_inquiries.rb',
66
+ 'db/seeds',
67
+ 'db/seeds/pages_for_inquiries.rb',
68
+ 'readme.md',
69
+ 'license.md',
70
+ 'config',
71
+ 'config/locales',
72
+ 'config/locales/sk.yml',
73
+ 'config/locales/cs.yml',
74
+ 'config/locales/bg.yml',
75
+ 'config/locales/nl.yml',
76
+ 'config/locales/sl.yml',
77
+ 'config/locales/sv.yml',
78
+ 'config/locales/ru.yml',
79
+ 'config/locales/pt-BR.yml',
80
+ 'config/locales/zh-CN.yml',
81
+ 'config/locales/lt.yml',
82
+ 'config/locales/da.yml',
83
+ 'config/locales/en-GB.yml',
84
+ 'config/locales/it.yml',
85
+ 'config/locales/lolcat.yml',
86
+ 'config/locales/nb.yml',
87
+ 'config/locales/en.yml',
88
+ 'config/locales/lv.yml',
89
+ 'config/locales/fr.yml',
90
+ 'config/locales/de.yml',
91
+ 'config/locales/es.yml',
92
+ 'config/locales/pl.yml',
93
+ 'config/routes.rb'
94
+ ]
95
+ s.require_path = 'lib'
96
+
97
+ s.add_dependency('filters_spam', '~> 0.2')
98
+ end
@@ -0,0 +1,75 @@
1
+ bg:
2
+ plugins:
3
+ refinery_inquiries:
4
+ title: Запитвания
5
+ description: Осигурява форма за контакт и съхранение на запитвания
6
+ inquiries:
7
+ new:
8
+ send: Изпращане на съобщение
9
+ privacy_policy: Високо ценим Вашите лични данни
10
+ admin:
11
+ inquiries:
12
+ delete: Изтриване на това запитване завинаги
13
+ inquiry:
14
+ read_inquiry: Прочит на запитването
15
+ said: написа
16
+ mark_as_spam: Отбелязване като спам
17
+ mark_as_ham: 'Преместване във "Входящи"'
18
+ submenu:
19
+ inbox: Входящи
20
+ spam: Спам
21
+ update_notified: Получатели на уведомления
22
+ edit_confirmation_email: Е-поща за потвърждение
23
+ index:
24
+ no_inquiries: Все още не сте получи запитвания.
25
+ no_spam: Поздравления! Нямате никакъв спам.
26
+ show:
27
+ details: Подробности
28
+ age: Възраст
29
+ actions: Действия
30
+ back_to_all_inquiries: Обратно към всички запитвания
31
+ spam: Спам
32
+ spam_yes: 'да'
33
+ inquiry: Запитване
34
+ to: До
35
+ from: От
36
+ click_to_email: Изпращане на е-поща до този адрес
37
+ phone: Телефон
38
+ date: Дата
39
+ message: Съобщение
40
+ inquiry_settings:
41
+ notification_recipients_form:
42
+ inquiry_settings_value_name: Изпращане на уведомления до
43
+ hint: При получаване на ново запитване, Refinery, ще Ви уведоми по е-пощата.
44
+ example: "Въведете адреса(или няколко) на Вашата е-поща. Например: jack@work.com, jill@office.com"
45
+ confirmation_email_form:
46
+ to: От
47
+ from: До
48
+ subject: Тема
49
+ click_to_edit_subject: Цъкнете тук за редактиране на темата
50
+ explanation: Всеки път, когато някой се свържи с Вас през уебсайта Ви, Refinery, ще изпраща е-поща до него за потвърждение.
51
+ below_edit_email_sent: По-долу можете да редактирате писмото, което ще бъде изпратено.
52
+ the_customer_making_inquiry: Запитващ
53
+ message: Съобщение
54
+ note: 'Забележка: Поставете текста "%name%", където бихте желали да се появи името на запитващия в писмото'
55
+ inquiry_mailer:
56
+ notification:
57
+ greeting: Здравейте
58
+ you_recieved_new_inquiry: Току що получихте ново запитване през Вашия уебсайт.
59
+ inquiry_starts: --- Начало на запитването ---
60
+ inquiry_ends: --- Край на запитването ---
61
+ from: От
62
+ email: Е-поща
63
+ phone: Телефон
64
+ message: Съобщение
65
+ closing_line: Поздрави
66
+ ps: 'П.П. Всички запитвания към Вас се съхраняват от Refinery в секция "Запитвания" и могат да бъдат прегледани по-късно.'
67
+ activerecord:
68
+ models:
69
+ inquiry: запитване
70
+ attributes:
71
+ inquiry:
72
+ name: Име
73
+ email: Е-поща
74
+ phone: Телефон
75
+ message: Съобщение
@@ -0,0 +1,75 @@
1
+ cs:
2
+ plugins:
3
+ refinery_inquiries:
4
+ title: Dotazy
5
+ description: Zajišťuje kontaktní formulář a uchovává zaslané dotazy.
6
+ inquiries:
7
+ new:
8
+ send: Odeslat zprávu
9
+ privacy_policy: Vážíme si Vaše soukromí
10
+ admin:
11
+ inquiries:
12
+ delete: Odstranit dotaz
13
+ inquiry:
14
+ read_inquiry: Zobrazit dotaz
15
+ said: řekl
16
+ mark_as_spam: Označiť jako spam
17
+ mark_as_ham: Přesunout do inbox-u
18
+ submenu:
19
+ inbox: Inbox
20
+ spam: Spam
21
+ update_notified: Aktualizovat seznam notifikovaných
22
+ edit_confirmation_email: Upravit potvrzující email
23
+ index:
24
+ no_inquiries: Nemáte žádné dotazy.
25
+ no_spam: Hurá! Nemáte žádný spam.
26
+ show:
27
+ details: Detaily
28
+ age: Věk
29
+ actions: Akce
30
+ back_to_all_inquiries: Návrat na seznam dotazů
31
+ spam: Spam
32
+ spam_yes: 'ano'
33
+ inquiry: Dotaz
34
+ to: Pro
35
+ from: Od
36
+ click_to_email: Click to email this address
37
+ phone: Telefon
38
+ date: Datum
39
+ message: Zpráva
40
+ inquiry_settings:
41
+ notification_recipients_form:
42
+ inquiry_settings_value_name: Odeslat notifikaci pro
43
+ hint: Při posláni nového dotazu, Refinery zašle notifikační zprávu na zadané emaily.
44
+ example: "Zadej tvou emailovou adresu(y) jako například: jack@work.com, jill@office.com"
45
+ confirmation_email_form:
46
+ to: Pro
47
+ from: Od
48
+ subject: Subjekt
49
+ click_to_edit_subject: Klikni zde pro editaci subjektu
50
+ explanation: Vždy když tě někdo kontaktuje přes web, Refinery pošle potvrzující email o přijetí dotazu osobě, která jej zadala.
51
+ below_edit_email_sent: Níže si můžeš upravit email, který je odesílán.
52
+ the_customer_making_inquiry: Klient zaslal dotaz
53
+ message: Zpráva
54
+ note: "Poznámka: Vlož text %name% kde chceš aby se nacházelo klientove jméno ve zprávě."
55
+ inquiry_mailer:
56
+ notification:
57
+ greeting: Ahoj
58
+ you_recieved_new_inquiry: Právě jsi obdržel nový dotaz na webové stránce.
59
+ inquiry_starts: --- začátek dotazu ---
60
+ inquiry_ends: --- konec dotazu ---
61
+ from: Od
62
+ email: Email
63
+ phone: Telefon
64
+ message: Zpráva
65
+ closing_line: S pozdravem
66
+ ps: P.S. Všechny dotazy jsou uloženy pod sekcí "Dotazy" v administraci, pokud by je bylo třeba zobrazit později.
67
+ activerecord:
68
+ models:
69
+ inquiry: dotaz
70
+ attributes:
71
+ inquiry:
72
+ name: Jméno
73
+ email: Email
74
+ phone: Telefon
75
+ message: Zpráva
@@ -0,0 +1,68 @@
1
+ da:
2
+ plugins:
3
+ refinery_inquiries:
4
+ title: Henvendelser
5
+ activerecord:
6
+ models:
7
+ inquiry: Henvendelse
8
+ attributes:
9
+ inquiry:
10
+ to: Til
11
+ from: Fra
12
+ click_to_email: Send en e-mail til adressen
13
+ phone: Telefon
14
+ date: Dato
15
+ message: Besked
16
+ inquiries:
17
+ new:
18
+ header_message: "Der er et mindre problem"
19
+ message: "Følgende skal rettes:"
20
+ send: Send besked
21
+ privacy_policy: "Vi værner om dine personlige oplysninger"
22
+ admin:
23
+ inquiries:
24
+ inquiry:
25
+ move_inquiry_to_closed: Flyt til lukkede henvendelser
26
+ move_inquiry_to_open: Flyt til åbne henvendelser
27
+ read_inquiry: Læs henvendelse
28
+ remove_inquiry: "Er du sikker på du vil slette denne henvendelse fra '%{name}'?"
29
+ title: Slet henvendelse.
30
+ toggle_status:
31
+ closed: "Henvendelsen '%{inquiry}' er lukket"
32
+ reopened: "Henvendelsen '%{inquiry}' er genåbnet"
33
+ index:
34
+ search_results_for: "Søgeresultat for '%{query}'"
35
+ no_inquiries: Du har endnu ikke modtaget nogen henvendelser.
36
+ show:
37
+ details: Detaljer
38
+ click_to_email: Send en e-mail til adressen
39
+ status: Status
40
+ open: "Åben"
41
+ closed: Lukket
42
+ age: Tid siden modtagelse
43
+ actions: Handlinger
44
+ back_to_all_inquiries: Tilbage til alle henvendelser
45
+ inquiry: Henvendelse
46
+ submenu:
47
+ update_notified: Opdatér, hvem der får besked
48
+ edit_confirmation_email: Redigér e-mailbekræftelse
49
+ inquiry_settings:
50
+ update:
51
+ updated: "'%{setting}' er opdateret."
52
+ notification_recipients_form:
53
+ inquiry_settings_value_name: Send besked til
54
+ explanation: "Hver gang kontaktformularen benyttes, sender Refinery en e-mail med besked om, at der er modtaget en ny henvendelse"
55
+ hint: "Indtast en e-mail-adresse ovenfor. Skal beskeden sendes til mere end en person, så indtast flere adresser adskilt med kommaer."
56
+ example: "Fx mig@domæne.dk, ven@hotmail.com, kollega@arbejde.dk"
57
+ confirmation_email_form:
58
+ to: Til
59
+ from: Fra
60
+ subject: Emne
61
+ click_to_edit_subject: Klik her for at redigere emnet
62
+ explanation: "Hver gang kontaktformularen benyttes, sender Refinery en e-mail til den person, der udfyldte formularen, for at bekræfte henvendelsen."
63
+ below_edit_email_sent: Nedenfor kan du redigere e-mailen, der sendes ud.
64
+ the_customer_making_inquiry: Kunden, der har henvendt sig
65
+ message: Besked
66
+ note: "Bemærk: Anbring teksten %name%, der hvor du vil have kundens navn skal være i e-mailen"
67
+ subject_form:
68
+ subject_value_name: Emne
@@ -0,0 +1,76 @@
1
+ de:
2
+ plugins:
3
+ refinery_inquiries:
4
+ title: Kontaktanfragen
5
+ description: Stellt ein Kontaktformular zur Verfügung und speichert Kontaktanfragen
6
+ inquiries:
7
+ new:
8
+ send: Nachricht senden
9
+ privacy_policy: Ihre Privatsphäre ist uns wichtig
10
+ admin:
11
+ inquiries:
12
+ delete: Diese Kontaktanfrage für immer löschen
13
+ inquiry:
14
+ read_inquiry: Kontaktanfrage lesen
15
+ said: schrieb
16
+ mark_as_spam: Als Spam markieren
17
+ mark_as_ham: In den Posteingang verschieben
18
+ submenu:
19
+ inbox: Posteingang
20
+ spam: Spam
21
+ update_notified: Wer wird benachrichtigt aktualisieren
22
+ edit_confirmation_email: Bestätigungs-E-Mail bearbeiten
23
+ index:
24
+ no_inquiries: Sie haben noch keine Kontaktanfragen erhalten.
25
+ no_spam: Juhu! Sie haben keinen Spam.
26
+ show:
27
+ details: Details
28
+ age: Alter
29
+ actions: Aktionen
30
+ back_to_all_inquiries: Zurück zu allen Kontaktanfragen
31
+ spam: Spam
32
+ spam_yes: 'ja'
33
+ inquiry: Kontaktanfrage
34
+ to: An
35
+ from: Von
36
+ click_to_email: Klicken, um eine E-Mail an diese Adresse zu schicken
37
+ phone: Telefon
38
+ date: Datum
39
+ message: Nachricht
40
+ inquiry_settings:
41
+ notification_recipients_form:
42
+ inquiry_settings_value_name: Schicke Benachrichtigungen an
43
+ explanation: Jedesmal wenn jemand Sie auf Ihrer Webseite kontaktiert, wird eine E-Mail mit einem Hinweis zu einer neuen Kontaktanfrage versendet.
44
+ hint: Wenn eine neue Kontaktanfrage gestellt wurde, wird Refinery Ihnen eine E-Mail mit einem Hinweis schicken.
45
+ example: "Geben Sie Ihre E-Mail-Adresse(n) an, z. B.: jack@work.com, jill@office.com"
46
+ confirmation_email_form:
47
+ to: An
48
+ from: Von
49
+ subject: Betreff
50
+ click_to_edit_subject: Klicken Sie hier, um den Betreff zu bearbeiten
51
+ explanation: Jedesmal wenn jemand Sie auf Ihrer Webseite kontaktiert, wird eine E-Mail an die anfragende Person zur Bestätigung der Kontaktanfrage versendet.
52
+ below_edit_email_sent: Unten können Sie die E-Mail bearbeiten, die versendet wird.
53
+ the_customer_making_inquiry: Der Kunde, der die Kontaktanfrage gestellt hat
54
+ message: Nachricht
55
+ note: "Hinweis: Um den Namen des Kunden in der E-Mail einzufügen, verwenden Sie den Platzhalter %name%"
56
+ inquiry_mailer:
57
+ notification:
58
+ greeting: Hallo
59
+ you_recieved_new_inquiry: Sie haben eine neue Kontaktanfrage über Ihre Webseite erhalten.
60
+ inquiry_starts: --- Anfang der Kontaktanfrage ---
61
+ inquiry_ends: --- Ende der Kontaktanfrage ---
62
+ from: Von
63
+ email: E-Mail
64
+ phone: Telefon
65
+ message: Nachricht
66
+ closing_line: Mit freundlichen Grüßen
67
+ ps: P.S. All Ihre Kontaktanfragen werden im Bereich "Kontaktanfragen" von Refinery gespeichert, sollten Sie diese zu einem späteren Zeitpunkt wieder ansehen wollen.
68
+ activerecord:
69
+ models:
70
+ inquiry: Kontaktanfrage
71
+ attributes:
72
+ inquiry:
73
+ name: Name
74
+ email: E-Mail
75
+ phone: Telefon
76
+ message: Nachricht