refinerycms-inquiries 0.9.8
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/app/controllers/admin/inquiries_controller.rb +32 -0
- data/app/controllers/admin/inquiry_settings_controller.rb +22 -0
- data/app/controllers/inquiries_controller.rb +47 -0
- data/app/helpers/inquiries_helper.rb +2 -0
- data/app/mailers/inquiry_mailer.rb +20 -0
- data/app/models/inquiry.rb +25 -0
- data/app/models/inquiry_setting.rb +25 -0
- data/app/views/admin/inquiries/_inquiry.html.erb +24 -0
- data/app/views/admin/inquiries/_submenu.html.erb +27 -0
- data/app/views/admin/inquiries/index.html.erb +26 -0
- data/app/views/admin/inquiries/show.html.erb +74 -0
- data/app/views/admin/inquiries/spam.html.erb +26 -0
- data/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +57 -0
- data/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb +24 -0
- data/app/views/admin/inquiry_settings/edit.html.erb +5 -0
- data/app/views/inquiries/new.html.erb +34 -0
- data/app/views/inquiries/thank_you.html.erb +1 -0
- data/app/views/inquiry_mailer/confirmation.html.erb +1 -0
- data/app/views/inquiry_mailer/notification.html.erb +18 -0
- data/config/locales/da.yml +68 -0
- data/config/locales/de.yml +71 -0
- data/config/locales/en.yml +76 -0
- data/config/locales/es.yml +69 -0
- data/config/locales/fr.yml +66 -0
- data/config/locales/it.yml +67 -0
- data/config/locales/lv.yml +76 -0
- data/config/locales/nb.yml +77 -0
- data/config/locales/nl.yml +76 -0
- data/config/locales/pt-BR.yml +86 -0
- data/config/locales/ru.yml +79 -0
- data/config/locales/sl.yml +68 -0
- data/config/locales/zh-CN.yml +73 -0
- data/config/routes.rb +20 -0
- data/lib/inquiries.rb +24 -0
- data/license.md +21 -0
- data/readme.md +23 -0
- metadata +135 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
<% content_for :body_content_left do %>
|
2
|
+
<div class='inquiries'>
|
3
|
+
<%=raw @page[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 %>
|
13
|
+
<%= f.text_field :name %>
|
14
|
+
</div>
|
15
|
+
<div class='field'>
|
16
|
+
<%= f.required_label :email %>
|
17
|
+
<%= f.text_field :email %>
|
18
|
+
</div>
|
19
|
+
<div class='field'>
|
20
|
+
<%= f.label :phone %>
|
21
|
+
<%= f.text_field :phone %>
|
22
|
+
</div>
|
23
|
+
<div class='field message_field'>
|
24
|
+
<%= f.required_label :message %>
|
25
|
+
<%= f.text_area :message, :rows => 8 %>
|
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
|
+
<%= InquirySetting.confirmation_body.value.gsub("%name%", @inquiry.name) %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<%= t('.greeting') %>,
|
2
|
+
|
3
|
+
<%= t('.you_recieved_new_inquiry') %>
|
4
|
+
|
5
|
+
<%= t('.inquiry_starts') %>
|
6
|
+
|
7
|
+
<%= t('.from') %>: <%= @inquiry.name %>
|
8
|
+
<%= t('.email') %>: <%= @inquiry.email %>
|
9
|
+
<%= t('.phone') %>: <%= @inquiry.phone %>
|
10
|
+
<%= t('.message') %>:
|
11
|
+
<%= @inquiry.message %>
|
12
|
+
|
13
|
+
<%= t('.inquiry_ends') %>
|
14
|
+
|
15
|
+
<%= t('.closing_line') %>,
|
16
|
+
<%= RefinerySetting[:site_name] %>
|
17
|
+
|
18
|
+
<%= t('.ps') %>
|
@@ -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,71 @@
|
|
1
|
+
de:
|
2
|
+
plugins:
|
3
|
+
refinery_inquiries:
|
4
|
+
title: Kontaktanfragen
|
5
|
+
activerecord:
|
6
|
+
models:
|
7
|
+
inquiry: Kontaktanfrage
|
8
|
+
attributes:
|
9
|
+
inquiry:
|
10
|
+
to: An
|
11
|
+
from: Von
|
12
|
+
click_to_email: E-Mail an diese Adresse schreiben
|
13
|
+
phone: Telefon
|
14
|
+
date: Datum
|
15
|
+
message: Nachricht
|
16
|
+
inquiries:
|
17
|
+
new:
|
18
|
+
header_message: "Es gab ein kleines Problem"
|
19
|
+
message: "Die folgenden Probleme müssen behoben werden:"
|
20
|
+
send: Nachricht senden
|
21
|
+
privacy_policy: "Ihre Privatsphäre ist uns wichtig"
|
22
|
+
admin:
|
23
|
+
inquiries:
|
24
|
+
inquiry:
|
25
|
+
move_inquiry_to_closed: Diese Kontaktanfrage zu geschlossenen Anfragen verschieben
|
26
|
+
move_inquiry_to_open: Diese Kontaktanfrage zu offenen Anfragen verschieben
|
27
|
+
read_inquiry: Kontaktanfrage lesen
|
28
|
+
remove_inquiry: "Sind Sie sicher, dass Sie die Kontaktanfrage von '%{name}' wirklich löschen möchten?"
|
29
|
+
title: Diese Kontaktanfrage für immer löschen.
|
30
|
+
toggle_status:
|
31
|
+
closed: "Kontaktanfrage '%{inquiry}' ist geschlossen"
|
32
|
+
reopened: "Kontaktanfrage '%{inquiry}' ist neu geöffnet"
|
33
|
+
index:
|
34
|
+
search_results_for: Suchergebnisse für %{query}
|
35
|
+
open_inquiries: Offene Anfragen
|
36
|
+
no_inquiries: "Juhuu! Es gibt keine offenen Kontaktanfragen, da Sie bereits alle Anfragen abgearbeitet haben."
|
37
|
+
closed_inquiries: Geschlossene Kontaktanfragen
|
38
|
+
havent_closed_any_inquiries: "Sie haben noch keine Kontaktanfragen geschlossen."
|
39
|
+
show:
|
40
|
+
details: Details
|
41
|
+
click_to_email: E-Mail senden
|
42
|
+
status: Status
|
43
|
+
open: Offen
|
44
|
+
closed: Geschlossen
|
45
|
+
age: Alter
|
46
|
+
actions: Aktionen
|
47
|
+
back_to_all_inquiries: Zurück zu allen Kontaktanfragen
|
48
|
+
inquiry: Kontaktanfrage
|
49
|
+
submenu:
|
50
|
+
update_notified: Wer wird benachrichtigt aktualisieren
|
51
|
+
edit_confirmation_email: Bestätigungsmail bearbeiten
|
52
|
+
inquiry_settings:
|
53
|
+
update:
|
54
|
+
updated: "'%{setting}' wurde erfolgreich aktualisiert."
|
55
|
+
notification_recipients_form:
|
56
|
+
inquiry_settings_value_name: Benachrichtigungen senden an
|
57
|
+
explanation: "Jedesmal wenn jemand Sie auf Ihrer Webseite kontaktiert, wird eine E-Mail mit einem Hinweis zur neuen Kontaktanfrage versendet."
|
58
|
+
hint: "Geben Sie eine E-Mail-Adresse ein. Soll die Benachrichtigung an mehrere Personen versendet werden? Geben Sie mehrere E-Mail-Adresse Komma-Separiert ein."
|
59
|
+
example: "z.B. me@domain.com, friend@msn.com, workmate@work.com"
|
60
|
+
confirmation_email_form:
|
61
|
+
to: An
|
62
|
+
from: Von
|
63
|
+
subject: Betreff
|
64
|
+
click_to_edit_subject: Klicken Sie hier, um den Betreff zu bearbeiten
|
65
|
+
explanation: "Jedesmal wenn jemand Sie auf Ihrer Webseite kontaktiert, wird eine E-mail an die anfragende Person zur Bestätigung der Kontaktanfrage versendet."
|
66
|
+
below_edit_email_sent: Unten können Sie die E-Mail bearbeiten, die versendet wird.
|
67
|
+
the_customer_making_inquiry: Der Kunde, der die Kontaktanfrage gestellt hat.
|
68
|
+
message: Nachricht
|
69
|
+
note: "Hinweis: Verwenden Sie den Text %name% um den Namen des Kunden in der E-Mail einzufügen."
|
70
|
+
subject_form:
|
71
|
+
subject_value_name: Betreff
|
@@ -0,0 +1,76 @@
|
|
1
|
+
en:
|
2
|
+
plugins:
|
3
|
+
refinery_inquiries:
|
4
|
+
title: Inquiries
|
5
|
+
inquiries:
|
6
|
+
new:
|
7
|
+
send: Send message
|
8
|
+
privacy_policy: We value your privacy
|
9
|
+
admin:
|
10
|
+
inquiries:
|
11
|
+
delete: Remove this inquiry forever
|
12
|
+
inquiry:
|
13
|
+
read_inquiry: Read the inquiry
|
14
|
+
said: said
|
15
|
+
mark_as_spam: Mark as spam
|
16
|
+
mark_as_ham: Move to inbox
|
17
|
+
submenu:
|
18
|
+
inbox: Inbox
|
19
|
+
spam: Spam
|
20
|
+
update_notified: Update who gets notified
|
21
|
+
edit_confirmation_email: Edit confirmation email
|
22
|
+
index:
|
23
|
+
no_inquiries: You have not received any inquiries yet.
|
24
|
+
spam:
|
25
|
+
no_spam: Hooray! You don't have any spam.
|
26
|
+
show:
|
27
|
+
details: Details
|
28
|
+
age: Age
|
29
|
+
actions: Actions
|
30
|
+
back_to_all_inquiries: Back to all Inquiries
|
31
|
+
spam: Spam
|
32
|
+
spam_yes: 'yes'
|
33
|
+
inquiry: Inquiry
|
34
|
+
to: To
|
35
|
+
from: From
|
36
|
+
click_to_email: Click to email this address
|
37
|
+
phone: Phone
|
38
|
+
date: Date
|
39
|
+
message: Message
|
40
|
+
inquiry_settings:
|
41
|
+
notification_recipients_form:
|
42
|
+
inquiry_settings_value_name: Send notifications to
|
43
|
+
explanation: Every time someone contacts you on your website, Refinery sends out an email to say there is a new inquiry.
|
44
|
+
hint: When a new inquiry is submitted, Refinery will send an email notification to you.
|
45
|
+
example: "Enter your email address(es) like: jack@work.com, jill@office.com"
|
46
|
+
confirmation_email_form:
|
47
|
+
to: To
|
48
|
+
from: From
|
49
|
+
subject: Subject
|
50
|
+
click_to_edit_subject: Click here to edit the subject
|
51
|
+
explanation: Every time someone contacts you on your website, Refinery sends out an email to confirm the inquiry with the person who made it.
|
52
|
+
below_edit_email_sent: Below you can edit the email that is sent out.
|
53
|
+
the_customer_making_inquiry: The customer making the inquiry
|
54
|
+
message: Message
|
55
|
+
note: "Note: place the text %name% where you'd like the customer's name to appear in the email"
|
56
|
+
inquiry_mailer:
|
57
|
+
notification:
|
58
|
+
greeting: Hi there
|
59
|
+
you_recieved_new_inquiry: You just received a new inquiry on your website.
|
60
|
+
inquiry_starts: --- inquiry starts ---
|
61
|
+
inquiry_ends: --- inquiry ends ---
|
62
|
+
from: From
|
63
|
+
email: Email
|
64
|
+
phone: Phone
|
65
|
+
message: Message
|
66
|
+
closing_line: Kind Regards
|
67
|
+
ps: P.S. All your inquiries are stored in the "Inquiries" section of Refinery should you ever want to view it later there.
|
68
|
+
activerecord:
|
69
|
+
models:
|
70
|
+
inquiry: inquiry
|
71
|
+
attributes:
|
72
|
+
inquiry:
|
73
|
+
name: Name
|
74
|
+
email: Email
|
75
|
+
phone: Phone
|
76
|
+
message: Message
|
@@ -0,0 +1,69 @@
|
|
1
|
+
es:
|
2
|
+
plugins:
|
3
|
+
refinery_inquiries:
|
4
|
+
title: Consultas
|
5
|
+
activerecord:
|
6
|
+
models:
|
7
|
+
inquiry: Consulta
|
8
|
+
attributes:
|
9
|
+
inquiry:
|
10
|
+
to: Para
|
11
|
+
from: De
|
12
|
+
click_to_email: Dale Click a este email
|
13
|
+
phone: Telefono
|
14
|
+
date: Fecha
|
15
|
+
name: Nombre
|
16
|
+
message: Mensaje
|
17
|
+
inquiries:
|
18
|
+
new:
|
19
|
+
header_message: "Mil disculpas hay un pequeño problema."
|
20
|
+
message: "Los siguientes problemas necesitan ser corregidos:"
|
21
|
+
send: Enviar mensaje
|
22
|
+
privacy_policy: "Nosotros valoramos tu privacidad"
|
23
|
+
admin:
|
24
|
+
inquiries:
|
25
|
+
inquiry:
|
26
|
+
move_inquiry_to_closed: Cambiar esta consulta a cerrada
|
27
|
+
move_inquiry_to_open: Cambiar esta consulta a abierta
|
28
|
+
read_inquiry: Leer esta consulta
|
29
|
+
remove_inquiry: "Estas seguro que quieres borrar esta consulta de '%{name}'?"
|
30
|
+
title: Quitar esta consulta.
|
31
|
+
toggle_status:
|
32
|
+
closed: "La consulta '%{inquiry}' esta cerrada"
|
33
|
+
reopened: "La consulta '%{inquiry}' esta abierta"
|
34
|
+
index:
|
35
|
+
search_results_for: Resultados de la busqueda de %{query}
|
36
|
+
no_inquiries: No has recibido ninguna consulta aun.
|
37
|
+
show:
|
38
|
+
details: Detalles
|
39
|
+
click_to_email: Click al email
|
40
|
+
status: Estatus
|
41
|
+
open: Abierto
|
42
|
+
closed: Cerrado
|
43
|
+
age: Edad
|
44
|
+
actions: Acciones
|
45
|
+
back_to_all_inquiries: Regresar a todas las consultas
|
46
|
+
inquiry: Consulta
|
47
|
+
submenu:
|
48
|
+
update_notified: "Actualizar a quien será notificado"
|
49
|
+
edit_confirmation_email: "Editar email de confirmación"
|
50
|
+
inquiry_settings:
|
51
|
+
update:
|
52
|
+
updated: "'%{setting}' fue actualizado exitosamente."
|
53
|
+
notification_recipients_form:
|
54
|
+
inquiry_settings_value_name: Mandar notificaciones a
|
55
|
+
explanation: "Cada vez que alguien se comunique con usted en su sitio web, Refinery enviara un correo electrónico respecto a esta nueva consulta."
|
56
|
+
hint: "Ingrese una dirección de correo. Ingrese la dirección de correo de las persona que vaya a ser notificada, si quiere que varias personas sean notificadas ingrese las direcciones de correo separadas por comas."
|
57
|
+
example: "Ejemplo: me@domain.com, friend@msn.com, workmate@work.com"
|
58
|
+
confirmation_email_form:
|
59
|
+
to: Para
|
60
|
+
from: De
|
61
|
+
subject: Asunto
|
62
|
+
click_to_edit_subject: Click aqui para modificar el asunto
|
63
|
+
explanation: "Cada vez que alguien se comunique con usted en su sitio web, Refinery enviara un correo electrónico respecto a esta nueva consulta."
|
64
|
+
below_edit_email_sent: "Abajo usted puede editar el email a donde la consulta será enviado."
|
65
|
+
the_customer_making_inquiry: El cliente haciendo la consulta
|
66
|
+
message: Mensaje
|
67
|
+
note: "Nota: ingrese el texto %name% donde quiera que el nombre del cliente aparezca en el email"
|
68
|
+
subject_form:
|
69
|
+
subject_value_name: Asunto
|
@@ -0,0 +1,66 @@
|
|
1
|
+
fr:
|
2
|
+
plugins:
|
3
|
+
refinery_inquiries:
|
4
|
+
title: Requêtes
|
5
|
+
activerecord:
|
6
|
+
models:
|
7
|
+
inquiry: Demandes de renseignements
|
8
|
+
attributes:
|
9
|
+
inquiry:
|
10
|
+
to: "À"
|
11
|
+
from: "De"
|
12
|
+
click_to_email: Cliquer pour envoyez un couriel à cette adresse
|
13
|
+
phone: Téléphone
|
14
|
+
date: Date
|
15
|
+
message: Message
|
16
|
+
inquiries:
|
17
|
+
new:
|
18
|
+
header_message: "Oops, il y a eu une petit erreur"
|
19
|
+
message: "Le problème suivant doit être corrigé:"
|
20
|
+
send: Envoyez le message
|
21
|
+
privacy_policy: "Nous respectons votre vie privée"
|
22
|
+
admin:
|
23
|
+
inquiries:
|
24
|
+
inquiry:
|
25
|
+
move_inquiry_to_closed: Marqué cette requête comme 'fermé'
|
26
|
+
move_inquiry_to_open: Marqué cette requête comme 'ouverte'
|
27
|
+
read_inquiry: Lire la demande de renseignement
|
28
|
+
remove_inquiry: "Êtes-vous sûr de vouloir supprimer la demande de renseignement de '%{name}'?"
|
29
|
+
title: Supprimer cette demande de renseignement pour toujours.
|
30
|
+
toggle_status:
|
31
|
+
closed: "La demande de renseignement '%{inquiry}' est fermé"
|
32
|
+
reopened: "La demande de renseignement '%{inquiry}' est rouverte"
|
33
|
+
index:
|
34
|
+
search_results_for: "Résultat de recherche pour %{query}"
|
35
|
+
open_inquiries: Demande de renseignement ouverte
|
36
|
+
no_inquiries: "Hourra! Il n'y a pas de requête ouvertes, vous les avez toutes faites."
|
37
|
+
closed_inquiries: Demande de renseignement fermé
|
38
|
+
havent_closed_any_inquiries: "Vous n'avez pas de demande de renseignements fermé pour le moment."
|
39
|
+
show:
|
40
|
+
details: "Détails"
|
41
|
+
click_to_email: Cliquer pour envoyé un couriel
|
42
|
+
status: Statut
|
43
|
+
open: Ouvert
|
44
|
+
closed: Fermé
|
45
|
+
age: Age
|
46
|
+
actions: Actions
|
47
|
+
back_to_all_inquiries: Retourné à la liste de requêtes
|
48
|
+
inquiry: Requête
|
49
|
+
submenu:
|
50
|
+
update_notified: "Mettre à jour qui est notifié"
|
51
|
+
edit_confirmation_email: Modifier le couriel de confirmation
|
52
|
+
inquiry_settings:
|
53
|
+
update:
|
54
|
+
updated: "'%{setting}' a été mis à jour."
|
55
|
+
notification_recipients_form:
|
56
|
+
inquiry_settings_value_name: Envoyer des notifications à
|
57
|
+
explanation: "Chaque fois que quelqu'un vous contact sur votre site, Refinery envoie un couriel pour dire qu'il ya une nouvelle requête."
|
58
|
+
hint: "Entrez une adresse e-mail ci-dessus. Voulez-vous envoyez la notification à plus d'une personne? Entrez plusieurs adresses e-mail séparées par des virgules."
|
59
|
+
example: "Par exemple: me@domain.com, friend@msn.com, workmate@work.com"
|
60
|
+
confirmation_email_form:
|
61
|
+
click_to_edit_subject: Cliquez ici pour modifier le sujet du couriel
|
62
|
+
explanation: "Chaque fois que quelqu'un vous contacts sur votre site, Refinery envoie un couriel à la personne qui l'a fait pour confirmer la requête."
|
63
|
+
below_edit_email_sent: Ci-dessous vous pouvez modifier le message qui est envoyé.
|
64
|
+
the_customer_making_inquiry: Le client qui fait la demande
|
65
|
+
subject_form:
|
66
|
+
subject_value_name: Sujet
|
@@ -0,0 +1,67 @@
|
|
1
|
+
it:
|
2
|
+
plugins:
|
3
|
+
refinery_inquiries:
|
4
|
+
title: Richieste di informazioni
|
5
|
+
activerecord:
|
6
|
+
models:
|
7
|
+
inquiry: Inchiesta
|
8
|
+
attributes:
|
9
|
+
inquiry:
|
10
|
+
to: A
|
11
|
+
from: Da
|
12
|
+
click_to_email: Clicca per questo indirizzo e-mail
|
13
|
+
phone: Telefono
|
14
|
+
date: Data
|
15
|
+
message: Messaggio
|
16
|
+
inquiries:
|
17
|
+
new:
|
18
|
+
header_message: "Un problema si è verificato"
|
19
|
+
message: "I seguenti problemi devono essere corretti:"
|
20
|
+
send: Invia messaggio
|
21
|
+
privacy_policy: "Noi diamo valore alla tua privacy"
|
22
|
+
admin:
|
23
|
+
inquiries:
|
24
|
+
inquiry:
|
25
|
+
move_inquiry_to_closed: Spostare questa inchiesta chiusa
|
26
|
+
move_inquiry_to_open: Spostare questa indagine per aprire
|
27
|
+
read_inquiry: Leggi l'inchiesta
|
28
|
+
remove_inquiry: "Sei sicuro di voler cancellare la richiesta di '%{name}'?"
|
29
|
+
title: Rimuovere questa indagine per sempre.
|
30
|
+
toggle_status:
|
31
|
+
closed: "Inchiesta '%{inquiry}' è chiuso"
|
32
|
+
reopened: "Inchiesta '%{inquiry}' si riapre"
|
33
|
+
index:
|
34
|
+
no_inquiries: Non hai ancora ricevuto alcuna richiesta in.
|
35
|
+
show:
|
36
|
+
details: Dettagli
|
37
|
+
click_to_email: Clicca per e-mail
|
38
|
+
status: Stato
|
39
|
+
open: Aperto
|
40
|
+
closed: Chiuso
|
41
|
+
age: Età
|
42
|
+
actions: Azioni
|
43
|
+
back_to_all_inquiries: Torna a tutte le richieste
|
44
|
+
inquiry: Inchiesta
|
45
|
+
submenu:
|
46
|
+
update_notified: Aggiornamento chi viene notificata
|
47
|
+
edit_confirmation_email: Modifica email di conferma
|
48
|
+
inquiry_settings:
|
49
|
+
update:
|
50
|
+
updated: "'%{setting}' stato aggiornato con successo."
|
51
|
+
notification_recipients_form:
|
52
|
+
inquiry_settings_value_name: Invia a notifiche
|
53
|
+
explanation: "Ogni volta che qualcuno ti contatti sul suo sito web, Refinery invia una mail a dire che c'è una nuova indagine."
|
54
|
+
hint: "Inserisci un indirizzo email di cui sopra. Vuoi la notifica di andare a più di una persona? Inserisci più indirizzi email separati da virgole."
|
55
|
+
example: "E.g. me@domain.com, friend@msn.com, workmate@work.com"
|
56
|
+
confirmation_email_form:
|
57
|
+
to: A
|
58
|
+
from: Da
|
59
|
+
subject: Soggetto
|
60
|
+
click_to_edit_subject: Clicca qui per modificare l'oggetto
|
61
|
+
explanation: "Ogni volta che qualcuno ti contatti sul suo sito web, Refinery invia una e-mail per confermare la richiesta con la persona che ha reso."
|
62
|
+
below_edit_email_sent: Qui di seguito è possibile modificare l'e-mail che viene inviata.
|
63
|
+
the_customer_making_inquiry: Il cliente rendendo l'indagine
|
64
|
+
message: Messaggio
|
65
|
+
note: "Nota: inserire il testo %name% dove desideri che il nome del cliente a comparire nella e-mail"
|
66
|
+
subject_form:
|
67
|
+
subject_value_name: Soggetto
|