| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * Specific translations for the /subscription page
- *
- * @param context
- * @param locale
- * @returns {{get_more_functionalities_with_version: string, only_for_cmf_members: string, contact_us_at: string, contact_us_for_show_and_demo: string, starting_from_x_eur_ttc_per_month: string, download_order_form: string, for_x_sms: string, for_only_x_eur_ttc_by_month: string, example: string, domain_name: string, and_benefit: string, public_price_x_ttc_a_year: string, product_sheet: string, get_your_own_domain_and_up_to_five_emails_for_only_x_eur_ttc_per_month: string, dummy_domain_name: string, website: string, version_x_up_to_x_students: string, download_cmf_order_form: string, send_sms_from_app_to_your_members: string, freely_try_our_software: string, starting_from_x_eur_ttc_per_ssm: string, yearly_paid_giving_x_eur_ttc_per_year: string, excluding_license_and_training_fees: string, a_suitable_solution_for_your_artistic_school: string, dummy_email_address: string, associated_mail_address: string, switch_to_version: string, or_by_mail_at: string, of_accounts_for_teachers_and_students: string, of_a_complete_website: string}}
- */
- export default (context, locale) => {
- return ({
- until: 'Jusqu\'au',
- get_more_functionalities_with_version: 'Bénéficiez de plus de fonctionnalités avec la version',
- for_only_x_eur_ttc_by_month: 'Pour seulement {price} TTC par mois',
- convert_price_to_sms: 'soit {nb_sms} SMS',
- yearly_paid_giving_x_eur_ttc_per_year: 'Payable annuellement, soit {price} TTC / an',
- only_for_cmf_members: 'Offre réservée aux adhérents CMF',
- public_price_x_ttc_a_year: 'Prix public: {price} TTC/an',
- product_sheet: 'Fiche produit',
- download_order_form: 'Télécharger le bon de commande',
- download_cmf_order_form: 'Télécharger le bon de commande CMF',
- a_suitable_solution_for_your_artistic_school: 'Une solution économique adaptée à votre établissement d\'enseignement artistique',
- starting_from_x_eur_ttc_per_month: 'A partir de {price} TTC par mois',
- version_x_up_to_x_students: 'Version {product} jusqu\'à {max_students} étudiants',
- excluding_license_and_training_fees: 'Hors frais de licence d\'utilisation et de formation',
- freely_try_our_software: 'Essayez notre logiciel en toute liberté',
- contact_us_for_show_and_demo: 'Contactez-nous sans plus tarder pour obtenir une présentation ainsi qu\'un accès de démonstration',
- contact_us_at: 'Contactez-nous au',
- or_by_mail_at: 'ou par mail à l\'adresse',
- switch_to_version: 'Passez à la version',
- and_benefit: 'et bénéficiez',
- of_accounts_for_teachers_and_students: 'de comptes pour vos professeurs et élèves',
- of_a_complete_website: 'd\'un site internet complet',
- send_sms: 'Envoyez des SMS',
- to_your_members_from_app: 'à vos membres / élèves depuis votre logiciel',
- starting_from_x_eur_ttc_per_sms: 'A partir de {price} TTC / sms',
- for_x_sms: 'pour {amount} SMS',
- get_your_own_domain_and_up_to_five_emails_for_only_x_eur_ttc_per_month: 'Bénéficiez de votre propre nom de domaine et 5 adresses email pour seulement {price} TTC / mois',
- example: 'Exemple',
- domain_name: 'Nom de domaine',
- dummy_domain_name: 'ma-structure.fr',
- associated_mail_address: 'Adresse email associée',
- dummy_email_address: 'contact@ma-structure.fr',
- sms: 'SMS'
- })
- }
|