refinerycms-inquiries 1.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. data/.gitignore +3 -0
  2. data/.travis.yml +16 -0
  3. data/Gemfile +68 -0
  4. data/Guardfile +20 -0
  5. data/Rakefile +19 -0
  6. data/app/assets/stylesheets/refinery/inquiries/inquiries.css.scss +21 -0
  7. data/app/controllers/refinery/inquiries/admin/inquiries_controller.rb +50 -0
  8. data/app/controllers/refinery/inquiries/admin/settings_controller.rb +56 -0
  9. data/app/controllers/refinery/inquiries/inquiries_controller.rb +47 -0
  10. data/app/helpers/refinery/inquiries/inquiries_helper.rb +6 -0
  11. data/app/mailers/refinery/inquiries/inquiry_mailer.rb +22 -0
  12. data/app/models/refinery/inquiries/inquiry.rb +27 -0
  13. data/app/models/refinery/inquiries/setting.rb +63 -0
  14. data/app/views/refinery/inquiries/admin/inquiries/_inquiry.html.erb +27 -0
  15. data/app/views/refinery/inquiries/admin/inquiries/_submenu.html.erb +27 -0
  16. data/app/views/{admin → refinery/inquiries/admin}/inquiries/index.html.erb +2 -2
  17. data/app/views/{admin → refinery/inquiries/admin}/inquiries/show.html.erb +9 -7
  18. data/app/views/refinery/inquiries/admin/settings/_confirmation_email_form.html.erb +59 -0
  19. data/app/views/{admin/inquiry_settings → refinery/inquiries/admin/settings}/_notification_recipients_form.html.erb +3 -3
  20. data/app/views/{admin/inquiry_settings → refinery/inquiries/admin/settings}/edit.html.erb +1 -1
  21. data/app/views/refinery/inquiries/inquiries/new.html.erb +32 -0
  22. data/app/views/refinery/inquiries/inquiries/thank_you.html.erb +1 -0
  23. data/app/views/refinery/inquiries/inquiry_mailer/confirmation.text.erb +1 -0
  24. data/app/views/refinery/inquiries/inquiry_mailer/notification.text.erb +18 -0
  25. data/config/locales/bg.yml +77 -0
  26. data/config/locales/cs.yml +68 -66
  27. data/config/locales/da.yml +60 -58
  28. data/config/locales/de.yml +69 -67
  29. data/config/locales/en-GB.yml +68 -66
  30. data/config/locales/en.yml +68 -66
  31. data/config/locales/es.yml +71 -69
  32. data/config/locales/fr.yml +69 -67
  33. data/config/locales/it.yml +70 -68
  34. data/config/locales/lolcat.yml +69 -67
  35. data/config/locales/lt.yml +69 -67
  36. data/config/locales/lv.yml +69 -67
  37. data/config/locales/nb.yml +70 -68
  38. data/config/locales/nl.yml +69 -67
  39. data/config/locales/pl.yml +69 -67
  40. data/config/locales/pt-BR.yml +69 -67
  41. data/config/locales/ru.yml +69 -67
  42. data/config/locales/sk.yml +69 -67
  43. data/config/locales/sl.yml +69 -67
  44. data/config/locales/sv.yml +69 -67
  45. data/config/locales/zh-CN.yml +69 -67
  46. data/config/routes.rb +16 -16
  47. data/db/migrate/20101208082840_create_inquiries.rb +16 -34
  48. data/db/seeds.rb +50 -0
  49. data/lib/generators/refinery/inquiries/inquiries_generator.rb +19 -0
  50. data/lib/refinery/inquiries/configuration.rb +9 -0
  51. data/lib/refinery/inquiries/engine.rb +28 -0
  52. data/lib/refinery/inquiries.rb +26 -0
  53. data/lib/refinerycms-inquiries.rb +1 -23
  54. data/readme.md +12 -4
  55. data/refinerycms-inquiries.gemspec +11 -86
  56. data/spec/factories/inquiry.rb +7 -0
  57. data/spec/models/refinery/inquiries/inquiry_spec.rb +52 -0
  58. data/spec/requests/refinery/inquiries/admin/inquiries_spec.rb +138 -0
  59. data/spec/requests/refinery/inquiries/inquiries_spec.rb +81 -0
  60. data/spec/spec_helper.rb +56 -0
  61. data/tasks/rspec.rake +4 -0
  62. metadata +114 -39
  63. data/app/controllers/admin/inquiries_controller.rb +0 -41
  64. data/app/controllers/admin/inquiry_settings_controller.rb +0 -43
  65. data/app/controllers/inquiries_controller.rb +0 -43
  66. data/app/helpers/inquiries_helper.rb +0 -2
  67. data/app/mailers/inquiry_mailer.rb +0 -20
  68. data/app/models/inquiry.rb +0 -21
  69. data/app/models/inquiry_setting.rb +0 -33
  70. data/app/views/admin/inquiries/_inquiry.html.erb +0 -24
  71. data/app/views/admin/inquiries/_submenu.html.erb +0 -27
  72. data/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +0 -57
  73. data/app/views/inquiries/new.html.erb +0 -34
  74. data/app/views/inquiries/thank_you.html.erb +0 -1
  75. data/app/views/inquiry_mailer/confirmation.html.erb +0 -1
  76. data/app/views/inquiry_mailer/notification.html.erb +0 -18
  77. data/db/migrate/20101208082841_remove_position_and_open_from_inquiries.rb +0 -11
  78. data/db/seeds/pages_for_inquiries.rb +0 -55
  79. data/features/create_inquiries.feature +0 -38
  80. data/features/manage_inquiries.feature +0 -57
  81. data/features/step_definitions/inquiry_steps.rb +0 -25
  82. data/features/support/factories.rb +0 -7
  83. data/features/support/paths.rb +0 -26
  84. data/lib/gemspec.rb +0 -29
  85. data/lib/generators/refinerycms_inquiries_generator.rb +0 -6
  86. data/lib/inquiries.rb +0 -2
  87. data/spec/models/inquiry_spec.rb +0 -59
@@ -1,74 +1,76 @@
1
1
  en-GB:
2
- plugins:
3
- refinery_inquiries:
4
- title: Enquiries
5
- description: Provides a contact form and stores enquiries
6
- inquiries:
7
- new:
8
- send: Send message
9
- privacy_policy: We value your privacy
10
- admin:
2
+ refinery:
3
+ plugins:
4
+ refinerycms_inquiries:
5
+ title: Enquiries
6
+ description: Provides a contact form and stores enquiries
11
7
  inquiries:
12
- delete: Remove this enquiry forever
13
- inquiry:
14
- read_inquiry: Read the enquiry
15
- said: said
16
- mark_as_spam: Mark as spam
17
- mark_as_ham: Move to inbox
18
- submenu:
19
- inbox: Inbox
20
- spam: Spam
21
- update_notified: Update who gets notified
22
- edit_confirmation_email: Edit confirmation email
23
- index:
24
- no_inquiries: You have not received any enquiries yet.
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 Enquiries
31
- spam: Spam
32
- spam_yes: 'yes'
33
- inquiry: Enquiry
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
- hint: When a new enquiry is submitted, Refinery will send an email notification to you.
44
- example: "Enter your email address(es) like: jack@work.com, jill@office.com"
45
- confirmation_email_form:
46
- to: To
47
- from: From
48
- subject: Subject
49
- click_to_edit_subject: Click here to edit the subject
50
- explanation: Every time someone contacts you on your website, Refinery sends out an email to confirm the enquiry with the person who made it.
51
- below_edit_email_sent: Below you can edit the email that is sent out.
52
- the_customer_making_inquiry: The customer making the enquiry
53
- message: Message
54
- note: "Note: place the text %name% where you'd like the customer's name to appear in the email"
55
- inquiry_mailer:
56
- notification:
57
- greeting: Hi there
58
- you_recieved_new_inquiry: You just received a new enquiry on your website.
59
- inquiry_starts: --- enquiry starts ---
60
- inquiry_ends: --- enquiry ends ---
61
- from: From
62
- email: Email
63
- phone: Phone
64
- message: Message
65
- closing_line: Kind Regards
66
- ps: P.S. All your enquiries are stored in the "Enquiries" section of Refinery should you ever want to view it later there.
8
+ inquiries:
9
+ new:
10
+ send: Send message
11
+ privacy_policy: We value your privacy
12
+ admin:
13
+ inquiries:
14
+ delete: Remove this enquiry forever
15
+ inquiry:
16
+ read_inquiry: Read the enquiry
17
+ said: said
18
+ mark_as_spam: Mark as spam
19
+ mark_as_ham: Move to inbox
20
+ submenu:
21
+ inbox: Inbox
22
+ spam: Spam
23
+ update_notified: Update who gets notified
24
+ edit_confirmation_email: Edit confirmation email
25
+ index:
26
+ no_inquiries: You have not received any enquiries yet.
27
+ no_spam: Hooray! You don't have any spam.
28
+ show:
29
+ details: Details
30
+ age: Age
31
+ actions: Actions
32
+ back_to_all_inquiries: Back to all Enquiries
33
+ spam: Spam
34
+ spam_yes: 'yes'
35
+ inquiry: Enquiry
36
+ to: To
37
+ from: From
38
+ click_to_email: Click to email this address
39
+ phone: Phone
40
+ date: Date
41
+ message: Message
42
+ settings:
43
+ notification_recipients_form:
44
+ inquiry_settings_value_name: Send notifications to
45
+ hint: When a new enquiry is submitted, Refinery will send an email notification to you.
46
+ example: "Enter your email address(es) like: jack@work.com, jill@office.com"
47
+ confirmation_email_form:
48
+ to: To
49
+ from: From
50
+ subject: Subject
51
+ click_to_edit_subject: Click here to edit the subject
52
+ explanation: Every time someone contacts you on your website, Refinery sends out an email to confirm the enquiry with the person who made it.
53
+ below_edit_email_sent: Below you can edit the email that is sent out.
54
+ the_customer_making_inquiry: The customer making the enquiry
55
+ message: Message
56
+ note: "Note: place the text %name% where you'd like the customer's name to appear in the email"
57
+ inquiry_mailer:
58
+ notification:
59
+ greeting: Hi there
60
+ you_recieved_new_inquiry: You just received a new enquiry on your website.
61
+ inquiry_starts: --- enquiry starts ---
62
+ inquiry_ends: --- enquiry ends ---
63
+ from: From
64
+ email: Email
65
+ phone: Phone
66
+ message: Message
67
+ closing_line: Kind Regards
68
+ ps: P.S. All your enquiries are stored in the "Enquiries" section of Refinery should you ever want to view it later there.
67
69
  activerecord:
68
70
  models:
69
- inquiry: inquiry
71
+ refinery/inquiry: inquiry
70
72
  attributes:
71
- inquiry:
73
+ refinery/inquiry:
72
74
  name: Name
73
75
  email: Email
74
76
  phone: Phone
@@ -1,74 +1,76 @@
1
1
  en:
2
- plugins:
3
- refinery_inquiries:
4
- title: Inquiries
5
- description: Provides a contact form and stores inquiries
6
- inquiries:
7
- new:
8
- send: Send message
9
- privacy_policy: We value your privacy
10
- admin:
2
+ refinery:
3
+ plugins:
4
+ refinerycms_inquiries:
5
+ title: Inquiries
6
+ description: Provides a contact form and stores inquiries
11
7
  inquiries:
12
- delete: Remove this inquiry forever
13
- inquiry:
14
- read_inquiry: Read the inquiry
15
- said: said
16
- mark_as_spam: Mark as spam
17
- mark_as_ham: Move to inbox
18
- submenu:
19
- inbox: Inbox
20
- spam: Spam
21
- update_notified: Update who gets notified
22
- edit_confirmation_email: Edit confirmation email
23
- index:
24
- no_inquiries: You have not received any inquiries yet.
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
- hint: When a new inquiry is submitted, Refinery will send an email notification to you.
44
- example: "Enter your email address(es) like: jack@work.com, jill@office.com"
45
- confirmation_email_form:
46
- to: To
47
- from: From
48
- subject: Subject
49
- click_to_edit_subject: Click here to edit the subject
50
- explanation: Every time someone contacts you on your website, Refinery sends out an email to confirm the inquiry with the person who made it.
51
- below_edit_email_sent: Below you can edit the email that is sent out.
52
- the_customer_making_inquiry: The customer making the inquiry
53
- message: Message
54
- note: "Note: place the text %name% where you'd like the customer's name to appear in the email"
55
- inquiry_mailer:
56
- notification:
57
- greeting: Hi there
58
- you_recieved_new_inquiry: You just received a new inquiry on your website.
59
- inquiry_starts: --- inquiry starts ---
60
- inquiry_ends: --- inquiry ends ---
61
- from: From
62
- email: Email
63
- phone: Phone
64
- message: Message
65
- closing_line: Kind Regards
66
- ps: P.S. All your inquiries are stored in the "Inquiries" section of Refinery should you ever want to view it later there.
8
+ inquiries:
9
+ new:
10
+ send: Send message
11
+ privacy_policy: We value your privacy
12
+ admin:
13
+ inquiries:
14
+ delete: Remove this inquiry forever
15
+ inquiry:
16
+ read_inquiry: Read the inquiry
17
+ said: said
18
+ mark_as_spam: Mark as spam
19
+ mark_as_ham: Move to inbox
20
+ submenu:
21
+ inbox: Inbox
22
+ spam: Spam
23
+ update_notified: Update who gets notified
24
+ edit_confirmation_email: Edit confirmation email
25
+ index:
26
+ no_inquiries: You have not received any inquiries yet.
27
+ no_spam: Hooray! You don't have any spam.
28
+ show:
29
+ details: Details
30
+ age: Age
31
+ actions: Actions
32
+ back_to_all_inquiries: Back to all Inquiries
33
+ spam: Spam
34
+ spam_yes: 'yes'
35
+ inquiry: Inquiry
36
+ to: To
37
+ from: From
38
+ click_to_email: Click to email this address
39
+ phone: Phone
40
+ date: Date
41
+ message: Message
42
+ settings:
43
+ notification_recipients_form:
44
+ inquiry_settings_value_name: Send notifications to
45
+ hint: When a new inquiry is submitted, Refinery will send an email notification to you.
46
+ example: "Enter your email address(es) like: jack@work.com, jill@office.com"
47
+ confirmation_email_form:
48
+ to: To
49
+ from: From
50
+ subject: Subject
51
+ click_to_edit_subject: Click here to edit the subject
52
+ explanation: Every time someone contacts you on your website, Refinery sends out an email to confirm the inquiry with the person who made it.
53
+ below_edit_email_sent: Below you can edit the email that is sent out.
54
+ the_customer_making_inquiry: The customer making the inquiry
55
+ message: Message
56
+ note: "Note: place the text %name% where you'd like the customer's name to appear in the email"
57
+ inquiry_mailer:
58
+ notification:
59
+ greeting: Hi there
60
+ you_recieved_new_inquiry: You just received a new inquiry on your website.
61
+ inquiry_starts: --- inquiry starts ---
62
+ inquiry_ends: --- inquiry ends ---
63
+ from: From
64
+ email: Email
65
+ phone: Phone
66
+ message: Message
67
+ closing_line: Kind Regards
68
+ ps: P.S. All your inquiries are stored in the "Inquiries" section of Refinery should you ever want to view it later there.
67
69
  activerecord:
68
70
  models:
69
- inquiry: inquiry
71
+ refinery/inquiry: inquiry
70
72
  attributes:
71
- inquiry:
73
+ refinery/inquiry:
72
74
  name: Name
73
75
  email: Email
74
76
  phone: Phone
@@ -1,79 +1,81 @@
1
1
  es:
2
- plugins:
3
- refinery_inquiries:
4
- title: Consultas
2
+ refinery:
3
+ plugins:
4
+ refinerycms_inquiries:
5
+ title: Consultas
6
+ inquiries:
7
+ inquiries:
8
+ new:
9
+ send: Enviar mensaje
10
+ privacy_policy: "Nosotros valoramos tu privacidad"
11
+ admin:
12
+ inquiries:
13
+ delete: Borrar esta consulta para siempre
14
+ inquiry:
15
+ read_inquiry: Leer esta consulta
16
+ said: dijo
17
+ mark_as_spam: Marcar como spam
18
+ mark_as_ham: Mover a la bandeja de entrada
19
+ submenu:
20
+ inbox: Bandeja de entrada
21
+ spam: Spam
22
+ update_notified: Actualizar a quien se notifica
23
+ edit_confirmation_email: Editar correo de confirmación
24
+ toggle_status:
25
+ closed: "La consulta '%{inquiry}' esta cerrada"
26
+ reopened: "La consulta '%{inquiry}' esta abierta"
27
+ index:
28
+ no_inquiries: No has recibido ninguna consulta aun.
29
+ no_spam: No tienes nada de spam.
30
+ show:
31
+ details: Detalles
32
+ click_to_email: Pulsa para responder
33
+ age: Edad
34
+ actions: Acciones
35
+ back_to_all_inquiries: Regresar a todas las consultas
36
+ inquiry: Consulta
37
+ spam: spam
38
+ spam_yes: 'sí'
39
+ to: Para
40
+ from: De
41
+ phone: Teléfono
42
+ date: Fecha
43
+ message: Mensaje
44
+ settings:
45
+ notification_recipients_form:
46
+ inquiry_settings_value_name: Mandar notificaciones a
47
+ hint: "Cada vez que alguien envíe una consulta, Refinery enviara un correo electrónico notificándolo. 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."
48
+ example: "Introduzca una dirección de correo como: me@domain.com, friend@msn.com, workmate@work.com"
49
+ confirmation_email_form:
50
+ to: Para
51
+ from: De
52
+ subject: Asunto
53
+ click_to_edit_subject: Pulse aquí para modificar el asunto
54
+ explanation: "Cada vez que alguien se comunique con usted en su sitio web, Refinery enviara un correo electrónico para confirmar la consulta con la persona que la hizo."
55
+ below_edit_email_sent: "Abajo usted puede editar el correo que se enviará."
56
+ the_customer_making_inquiry: El cliente haciendo la consulta
57
+ message: Mensaje
58
+ note: "Nota: ingrese el texto %name% donde quiera que el nombre del cliente aparezca en el email"
59
+ inquiry_mailer:
60
+ notification:
61
+ greeting: Hola
62
+ you_recieved_new_inquiry: Has recibido una nueva consulta en tu web.
63
+ inquiry_starts: --- comienzo de la consulta ---
64
+ inquiry_ends: --- fin de la consulta ---
65
+ from: De
66
+ email: Correo
67
+ phone: Teléfono
68
+ message: Mensaje
69
+ closing_line: Saludos
70
+ ps: P.D. Todas tus consultas se almacenan en la sección "Consultas" de Refinery por si alguna vez quieres verlas más tarde allí.
5
71
  activerecord:
6
72
  models:
7
- inquiry: Consulta
73
+ refinery/inquiry: Consulta
8
74
  attributes:
9
- inquiry:
75
+ refinery/inquiry:
10
76
  to: Para
11
77
  from: De
12
78
  phone: Telefono
13
79
  date: Fecha
14
80
  name: Nombre
15
81
  message: Mensaje
16
- inquiries:
17
- new:
18
- send: Enviar mensaje
19
- privacy_policy: "Nosotros valoramos tu privacidad"
20
- admin:
21
- inquiries:
22
- delete: Borrar esta consulta para siempre
23
- inquiry:
24
- read_inquiry: Leer esta consulta
25
- said: dijo
26
- mark_as_spam: Marcar como spam
27
- mark_as_ham: Mover a la bandeja de entrada
28
- submenu:
29
- inbox: Bandeja de entrada
30
- spam: Spam
31
- update_notified: Actualizar a quien se notifica
32
- edit_confirmation_email: Editar correo de confirmación
33
- toggle_status:
34
- closed: "La consulta '%{inquiry}' esta cerrada"
35
- reopened: "La consulta '%{inquiry}' esta abierta"
36
- index:
37
- no_inquiries: No has recibido ninguna consulta aun.
38
- no_spam: No tienes nada de spam.
39
- show:
40
- details: Detalles
41
- click_to_email: Pulsa para responder
42
- age: Edad
43
- actions: Acciones
44
- back_to_all_inquiries: Regresar a todas las consultas
45
- inquiry: Consulta
46
- spam: spam
47
- spam_yes: 'sí'
48
- to: Para
49
- from: De
50
- phone: Teléfono
51
- date: Fecha
52
- message: Mensaje
53
- inquiry_settings:
54
- notification_recipients_form:
55
- inquiry_settings_value_name: Mandar notificaciones a
56
- hint: "Cada vez que alguien envíe una consulta, Refinery enviara un correo electrónico notificándolo. 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: "Introduzca una dirección de correo como: 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: Pulse aquí para modificar el asunto
63
- explanation: "Cada vez que alguien se comunique con usted en su sitio web, Refinery enviara un correo electrónico para confirmar la consulta con la persona que la hizo."
64
- below_edit_email_sent: "Abajo usted puede editar el correo que se enviará."
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
- inquiry_mailer:
69
- notification:
70
- greeting: Hola
71
- you_recieved_new_inquiry: Has recibido una nueva consulta en tu web.
72
- inquiry_starts: --- comienzo de la consulta ---
73
- inquiry_ends: --- fin de la consulta ---
74
- from: De
75
- email: Correo
76
- phone: Teléfono
77
- message: Mensaje
78
- closing_line: Saludos
79
- ps: P.D. Todas tus consultas se almacenan en la sección "Consultas" de Refinery por si alguna vez quieres verlas más tarde allí.
@@ -1,75 +1,77 @@
1
1
  fr:
2
- plugins:
3
- refinery_inquiries:
4
- title: Requêtes
5
- description: Fournit un formulaire de contact et gère les demandes de contacts.
6
- inquiries:
7
- new:
8
- send: Envoyer un message
9
- privacy_policy: Nous respectons votre vie privée
10
- admin:
2
+ refinery:
3
+ plugins:
4
+ refinerycms_inquiries:
5
+ title: Requêtes
6
+ description: Fournit un formulaire de contact et gère les demandes de contacts.
11
7
  inquiries:
12
- delete: Supprimer définitivement cette requête
13
- inquiry:
14
- read_inquiry: Lire la requête
15
- said: a dit
16
- mark_as_spam: Marquer comme spam
17
- mark_as_ham: Déplacer dans la boîte de réception
18
- submenu:
19
- inbox: Boîte de réception
20
- spam: Spam
21
- update_notified: Choisir qui reçoit les notifications
22
- edit_confirmation_email: Modifier l'e-mail de confirmation
23
- index:
24
- no_inquiries: Vous n'avez reçu aucune requête.
25
- no_spam: Vous n'avez aucun spam.
26
- show:
27
- details: Détails
28
- age: Age
29
- actions: Actions
30
- back_to_all_inquiries: Retourner à la liste des requêtes
31
- spam: Spam
32
- spam_yes: 'oui'
33
- inquiry: Requête
34
- to: À
35
- from: De
36
- click_to_email: Cliquer ici pour enyoyer un e-mail à cette adresse
37
- phone: Téléphone
38
- date: Date
39
- message: Message
40
- inquiry_settings:
41
- notification_recipients_form:
42
- inquiry_settings_value_name: Envoyer une notification à
43
- explanation: Chaque fois qu'une demande de contact est rédigée sur votre site, Refinery envoie un e-mail pour le signaler.
44
- hint: Quand une nouvelle requête est soumise, Refinery vous envoie un e-mail d'avertissement.
45
- example: "Entrez votre/vos addresse(s) e-mail comme il suit: jack@work.com, jill@office.com"
46
- confirmation_email_form:
47
- to: À
48
- from: De
49
- subject: Sujet
50
- click_to_edit_subject: Cliquez ici pour modifier le sujet
51
- explanation: Chaque fois qu'une demande de contact est rédigée sur votre site, Refinery envoie un e-mail pour le signaler.
52
- below_edit_email_sent: Ci-dessous vous pouvez modifier l'e-mail qui sera envoyé.
53
- the_customer_making_inquiry: Le client à l'origine de la requête
54
- message: Message
55
- note: "Note: Utilisez %name% à l'endroit où vous souhaitez voir apparaître le nom du client dans l'e-mail"
56
- inquiry_mailer:
57
- notification:
58
- greeting: Bonjour
59
- you_recieved_new_inquiry: Vous avez reçu une nouvelle requête sur votre site.
60
- inquiry_starts: --- Début des requêtes ---
61
- inquiry_ends: --- Fin des requêtes ---
62
- from: De
63
- email: E-mail
64
- phone: Téléphone
65
- message: Message
66
- closing_line: Cordialement
67
- ps: P.S. Toutes les requêtes sont stockées dans la section 'Requêtes' afin que vous puissiez les consulter ultérieurement.
8
+ inquiries:
9
+ new:
10
+ send: Envoyer un message
11
+ privacy_policy: Nous respectons votre vie privée
12
+ admin:
13
+ inquiries:
14
+ delete: Supprimer définitivement cette requête
15
+ inquiry:
16
+ read_inquiry: Lire la requête
17
+ said: a dit
18
+ mark_as_spam: Marquer comme spam
19
+ mark_as_ham: Déplacer dans la boîte de réception
20
+ submenu:
21
+ inbox: Boîte de réception
22
+ spam: Spam
23
+ update_notified: Choisir qui reçoit les notifications
24
+ edit_confirmation_email: Modifier l'e-mail de confirmation
25
+ index:
26
+ no_inquiries: Vous n'avez reçu aucune requête.
27
+ no_spam: Vous n'avez aucun spam.
28
+ show:
29
+ details: Détails
30
+ age: Age
31
+ actions: Actions
32
+ back_to_all_inquiries: Retourner à la liste des requêtes
33
+ spam: Spam
34
+ spam_yes: 'oui'
35
+ inquiry: Requête
36
+ to: À
37
+ from: De
38
+ click_to_email: Cliquer ici pour enyoyer un e-mail à cette adresse
39
+ phone: Téléphone
40
+ date: Date
41
+ message: Message
42
+ settings:
43
+ notification_recipients_form:
44
+ inquiry_settings_value_name: Envoyer une notification à
45
+ explanation: Chaque fois qu'une demande de contact est rédigée sur votre site, Refinery envoie un e-mail pour le signaler.
46
+ hint: Quand une nouvelle requête est soumise, Refinery vous envoie un e-mail d'avertissement.
47
+ example: "Entrez votre/vos addresse(s) e-mail comme il suit: jack@work.com, jill@office.com"
48
+ confirmation_email_form:
49
+ to: À
50
+ from: De
51
+ subject: Sujet
52
+ click_to_edit_subject: Cliquez ici pour modifier le sujet
53
+ explanation: Chaque fois qu'une demande de contact est rédigée sur votre site, Refinery envoie un e-mail pour le signaler.
54
+ below_edit_email_sent: Ci-dessous vous pouvez modifier l'e-mail qui sera envoyé.
55
+ the_customer_making_inquiry: Le client à l'origine de la requête
56
+ message: Message
57
+ note: "Note: Utilisez %name% à l'endroit où vous souhaitez voir apparaître le nom du client dans l'e-mail"
58
+ inquiry_mailer:
59
+ notification:
60
+ greeting: Bonjour
61
+ you_recieved_new_inquiry: Vous avez reçu une nouvelle requête sur votre site.
62
+ inquiry_starts: --- Début des requêtes ---
63
+ inquiry_ends: --- Fin des requêtes ---
64
+ from: De
65
+ email: E-mail
66
+ phone: Téléphone
67
+ message: Message
68
+ closing_line: Cordialement
69
+ ps: P.S. Toutes les requêtes sont stockées dans la section 'Requêtes' afin que vous puissiez les consulter ultérieurement.
68
70
  activerecord:
69
71
  models:
70
- inquiry: requête
72
+ refinery/inquiry: requête
71
73
  attributes:
72
- inquiry:
74
+ refinery/inquiry:
73
75
  name: Nom
74
76
  email: E-mail
75
77
  phone: Téléphone