From: soufiane Date: Tue, 10 Sep 2024 16:08:23 +0000 (+0200) Subject: wait #7041 @5:00 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=f2ccc9e7b45aaa2fc3026dd92114b0250cefadd8;p=ccv-wordpress.git wait #7041 @5:00 --- diff --git a/wp-config.php b/wp-config.php index 6b6341c..3eac135 100644 --- a/wp-config.php +++ b/wp-config.php @@ -70,8 +70,12 @@ $table_prefix = 'wp_'; * * @link https://codex.wordpress.org/Debugging_in_WordPress */ + if (!defined('WP_DEBUG')) { + ini_set('display_errors','Off'); + ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); + define('WP_DEBUG_DISPLAY', false); } /* That's all, stop editing! Happy blogging. */ diff --git a/wp-content/mu-plugins/cube/src/Forms/Appointment.php b/wp-content/mu-plugins/cube/src/Forms/Appointment.php index 48cdc9b..e2fdc2e 100644 --- a/wp-content/mu-plugins/cube/src/Forms/Appointment.php +++ b/wp-content/mu-plugins/cube/src/Forms/Appointment.php @@ -12,7 +12,7 @@ class Appointment extends Consultation public function __construct() { $this->set_form_title(__('Rendez-vous', 'ccv')); $this->doctors = [ - __('Première disponiblité') => [ 'legend' => 'La première date disponible vous sera proposée.', 'url' => @asset('images/doctors/premiere_dispo.jpg')], + __('Première disponibilité', 'ccv') => [ 'legend' => __('La première date disponible vous sera proposée.','ccv'), 'url' => @asset('images/doctors/premiere_dispo.jpg')], __('Dr Martin GRAU ORTIZ') => [ 'legend' => 'Chirurgien orthopédiste spécialisé en chirurgie vertébrale.', 'url' => @asset('images/doctors/martin_grau_ortiz.jpg')], __('Dr Guilhaume GENESTE') => [ 'legend' => 'Chirurgien orthopédiste spécialisé en chirurgie vertébrale.', 'url' => @asset('images/doctors/guilhaume_geneste.jpg')], __('Dr Caroline HIRSCH') => [ 'legend' => 'Chirurgien orthopédiste spécialisé en chirurgie vertébrale.', 'url' => @asset('images/doctors/caroline_hirsch.jpg')], diff --git a/wp-content/mu-plugins/cube/src/Forms/Consultation.php b/wp-content/mu-plugins/cube/src/Forms/Consultation.php index 7e040a5..5c18ce6 100644 --- a/wp-content/mu-plugins/cube/src/Forms/Consultation.php +++ b/wp-content/mu-plugins/cube/src/Forms/Consultation.php @@ -36,7 +36,7 @@ class Consultation extends Base { $this->add_fields([ //=== PERSONAL INFORMATION - Text::field('last-name', __('Nom', 'Nom de famille', 'ccv')), + Text::field('last-name', __('Nom', 'ccv')), Text::field('first-name', __('Prénom', 'ccv')), Text::field('profession', __('Profession', 'ccv')), Text::field('postcode', __('Code postal', 'ccv')), @@ -50,7 +50,7 @@ class Consultation extends Base { _x('F', 'Sexe (F)', 'ccv'), ]), Text::field('age', __('Âge :', 'ccv')), - Date::field('birthdate', __('Date de naissance')), + Date::field('birthdate', __('Date de naissance', 'ccv')), Textarea::field('message', __('Avez vous un message (ou une demande) spécifique à nous formuler ?', 'ccv'))->required(false), Text::field('size', __('Taille :', 'ccv')), Text::field('weight', __('Poids :', 'ccv')), @@ -60,7 +60,7 @@ class Consultation extends Base { ->options([ __('Sécurité sociale', 'ccv'), __('Assurance privée', 'ccv'), - __('Régime de la CMU/ACS', 'ccv'), + __('Régime de la CMU/ASC/PUMa/CSS', 'ccv'), __('Accident du travail', 'ccv'), ]), @@ -81,7 +81,7 @@ class Consultation extends Base { 'Dr Caroline HIRSH' => 'dr.hirsch@ccv-montpellier.fr', ]), - Date::field('work-accident', __('Si accident de travail à quelle date ? '))->required(false), + Date::field('work-accident', __('Si accident du travail à quelle date ?', 'ccv'))->required(false), //=== IMAGERY // This is a special case and will be output manually so only using this for the e-mail label diff --git a/wp-content/themes/CCV/package.json b/wp-content/themes/CCV/package.json index 19bc0f4..dc65f34 100644 --- a/wp-content/themes/CCV/package.json +++ b/wp-content/themes/CCV/package.json @@ -1,9 +1,9 @@ { "private": true, "scripts": { - "build": "cross-env NODE_ENV=development run-s mix", - "build:production": "cross-env NODE_ENV=production run-s clean mix", - "start": "cross-env NODE_ENV=development run-s \"mix -- --watch\"", + "build": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development run-s mix", + "build:production": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production run-s clean mix", + "start": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development run-s \"mix -- --watch\"", "hot": "cross-env NODE_ENV=development run-s build mix:hot", "mix": "webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", "mix:hot": "webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", diff --git a/wp-content/themes/CCV/resources/assets/scripts/forms/parsley-setup.js b/wp-content/themes/CCV/resources/assets/scripts/forms/parsley-setup.js index e44cc8e..4829730 100644 --- a/wp-content/themes/CCV/resources/assets/scripts/forms/parsley-setup.js +++ b/wp-content/themes/CCV/resources/assets/scripts/forms/parsley-setup.js @@ -20,7 +20,7 @@ var isChecked = $(this).is(':checked'); if (isChecked) { let val = $(this).val() - if (val === 'Accident du travail') { + if (val === 'Accident du travail' || val === 'Occupational accident' || val === 'Wypadek przy pracy') { $('[name=work-accident]').attr('data-parsley-required', 'true').attr('required'); } else { $('[name=work-accident]').attr('data-parsley-required', 'false').removeAttr('required'); diff --git a/wp-content/themes/CCV/resources/assets/styles/components/sections.styl b/wp-content/themes/CCV/resources/assets/styles/components/sections.styl index c98f83a..34d56bc 100644 --- a/wp-content/themes/CCV/resources/assets/styles/components/sections.styl +++ b/wp-content/themes/CCV/resources/assets/styles/components/sections.styl @@ -1,6 +1,6 @@ .elementor-section background-color: #fff // Default background colour, can be overridden - + //--- Columns responsiveness - stack all standard columns below breakpoint +below($breakpoint-columns) .elementor-column @@ -30,3 +30,6 @@ .layout-reversed .elementor-row flex-direction: row-reverse + +[data-id='57d2252'] + overflow: hidden diff --git a/wp-content/themes/CCV/resources/assets/styles/pages/consultation.styl b/wp-content/themes/CCV/resources/assets/styles/pages/consultation.styl index 70f704c..e3fcb11 100644 --- a/wp-content/themes/CCV/resources/assets/styles/pages/consultation.styl +++ b/wp-content/themes/CCV/resources/assets/styles/pages/consultation.styl @@ -68,6 +68,7 @@ input[name="imagery-type"] gap: 1.5rem 0 label margin: 0 !important + white-space: normal .social-cover-block, .doctors-block diff --git a/wp-content/themes/CCV/resources/languages/ccv.pot b/wp-content/themes/CCV/resources/languages/ccv.pot index f121f6f..52ac944 100644 --- a/wp-content/themes/CCV/resources/languages/ccv.pot +++ b/wp-content/themes/CCV/resources/languages/ccv.pot @@ -682,3 +682,127 @@ msgid "" "Êtes-vous intéressé principalement par la chirurgie percutanée de la " "scoliose avec pré-implantation scanner ?" msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Taille :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Dites-nous en quelques mots ce qui vous invalide le plus dans vos symptômes :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Suivi rhumatologique ou médecine spécialisée" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "J'ai bien noté que mon dossier ne pourra être étudié si je ne fournis pas une IRM de moins de 6 mois." +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "En cas de pathologie de scoliose, envoyez-nous impérativement une radiographie du rachis en totalité, en place de l'IRM." +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Faites-nous parvenir également vos imageries les plus récentes (Scanner, Radiographies…) en utilisant l'une des méthodes suivantes :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Vous avez reçu des liens pour consulter vos images en ligne ?" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Collez vos liens ci-dessous ainsi que vos identifiants et mots de passe :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Lien internet" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Identifiant" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Mot de passe" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Poids :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Couverture sociale :" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Sécurité sociale" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Assurance privée" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Régime de la CMU/ASC/PUMa/CSS" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Accident du travail" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Si accident du travail à quelle date ?" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Êtes-vous à la recherche de solutions chirurgicales pour votre problème de dos ?" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Oui, s'il existe des solutions satisfaisantes" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Non, pas encore à ce stade" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Votre demande" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Choisissez un chirurgien" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Première disponibilité" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Chirurgien orthopédiste spécialisé en chirurgie vertébrale." +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Nom" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Code postal" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Ville" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Date de naissance" +msgstr "" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "" diff --git a/wp-content/themes/CCV/resources/languages/en_GB.po b/wp-content/themes/CCV/resources/languages/en_GB.po index 57f224b..cc1766a 100644 --- a/wp-content/themes/CCV/resources/languages/en_GB.po +++ b/wp-content/themes/CCV/resources/languages/en_GB.po @@ -706,3 +706,127 @@ msgid "" msgstr "" "Are you primarily interested in percutaneous scoliosis surgery with CT pre-" "implantation?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Taille :" +msgstr "Size" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Dites-nous en quelques mots ce qui vous invalide le plus dans vos symptômes :" +msgstr "Tell us in a few words in what ways your symptoms disable you most:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Suivi rhumatologique ou médecine spécialisée" +msgstr "Rheumatology or specialist medical check-up" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "J'ai bien noté que mon dossier ne pourra être étudié si je ne fournis pas une IRM de moins de 6 mois." +msgstr "I am aware that my case file cannot be reviewed if I don't provide a MRI scan that is less than 6 months old." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "En cas de pathologie de scoliose, envoyez-nous impérativement une radiographie du rachis en totalité, en place de l'IRM." +msgstr "For scoliosis, you must send us a full spinal X-ray instead of a MRI scan." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Faites-nous parvenir également vos imageries les plus récentes (Scanner, Radiographies…) en utilisant l'une des méthodes suivantes :" +msgstr "You may also send us your most recent images (Scans, X-rays, etc.) using one of the following methods:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Vous avez reçu des liens pour consulter vos images en ligne ?" +msgstr "Have you received links to view your images online?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Collez vos liens ci-dessous ainsi que vos identifiants et mots de passe :" +msgstr "Paste your links below with your login and password:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Lien internet" +msgstr "Web link" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Identifiant" +msgstr "Login" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Mot de passe" +msgstr "Password" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Poids :" +msgstr "Weight:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Couverture sociale :" +msgstr "Health coverage:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Sécurité sociale" +msgstr "Social security" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Assurance privée" +msgstr "Private insurance" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Régime de la CMU/ASC/PUMa/CSS" +msgstr "French Universal Health Coverage (CMU/PUMA)/Complementary Health Insurance (ACS/CSS)" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Accident du travail" +msgstr "Occupational accident" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Si accident du travail à quelle date ?" +msgstr "If occupational accident, date occurred?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Êtes-vous à la recherche de solutions chirurgicales pour votre problème de dos ?" +msgstr "Are you looking for surgical solutions for your back problem?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Oui, s'il existe des solutions satisfaisantes" +msgstr "Yes, if appropriate solutions exist" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Non, pas encore à ce stade" +msgstr "No, not at the present time" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Votre demande" +msgstr "Your request" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Choisissez un chirurgien" +msgstr "Select a surgeon" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Première disponibilité" +msgstr "First availability" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "You will be offered the first date available." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Chirurgien orthopédiste spécialisé en chirurgie vertébrale." +msgstr "Orthopaedic surgeon specializing in spinal surgery." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Nom" +msgstr "Last name" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Code postal" +msgstr "Zipcode" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Ville" +msgstr "City" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Date de naissance" +msgstr "Date of birth" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "The first available date will be offered to you." diff --git a/wp-content/themes/CCV/resources/languages/pl_PL.mo b/wp-content/themes/CCV/resources/languages/pl_PL.mo index cd34155..e09a335 100644 Binary files a/wp-content/themes/CCV/resources/languages/pl_PL.mo and b/wp-content/themes/CCV/resources/languages/pl_PL.mo differ diff --git a/wp-content/themes/CCV/resources/languages/pl_PL.po b/wp-content/themes/CCV/resources/languages/pl_PL.po index 337fe90..93b3f13 100644 --- a/wp-content/themes/CCV/resources/languages/pl_PL.po +++ b/wp-content/themes/CCV/resources/languages/pl_PL.po @@ -10,12 +10,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2021-08-10 15:41+0000\n" -"PO-Revision-Date: 2021-10-15 10:09+0000\n" +"PO-Revision-Date: 2024-09-09 09:04+0000\n" "X-Generator: Loco https://localise.biz/\n" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 " "&&(n%100<10||n%100 >= 20)? 1 : 2);\n" -"X-Loco-Version: 2.5.4; wp-5.8.1" +"X-Loco-Version: 2.6.11; wp-6.6.1" #: storage/framework/views/d6ada5b1af3d55c916d5ec9a6b203f57fbdb2929.php:162 msgid "" @@ -706,3 +706,131 @@ msgid "" "scoliose avec pré-implantation scanner ?" msgstr "" "Czy interesuje Cię głównie przeskórna operacja skoliozy z preimplantacją TK?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Taille :" +msgstr "Wzrost:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Dites-nous en quelques mots ce qui vous invalide le plus dans vos symptômes :" +msgstr "Powiedz nam w kilku słowach, które z objawów najbardziej zaburzają normalne funkcjonowanie:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Suivi rhumatologique ou médecine spécialisée" +msgstr "Nadzór reumatologiczny lub medycyna specjalistyczna" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Suivi rhumatologique ou médecine spécialisée" +msgstr "Nadzór reumatologiczny lub medycyna specjalistyczna" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "J'ai bien noté que mon dossier ne pourra être étudié si je ne fournis pas une IRM de moins de 6 mois." +msgstr "Rozumiem, że mój przypadek będzie poddany analizie dopiero po dostarczeniu wyników MRI sprzed mniej niż 6 miesięcy." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "En cas de pathologie de scoliose, envoyez-nous impérativement une radiographie du rachis en totalité, en place de l'IRM." +msgstr "W przypadku skoliozy prosimy koniecznie przesłać RTG całego kręgosłupa zamiast wyników MRI." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Faites-nous parvenir également vos imageries les plus récentes (Scanner, Radiographies…) en utilisant l'une des méthodes suivantes :" +msgstr "Prosimy o przesłanie także najnowszych wyników diagnostyki obrazowej (skany, zdjęcia RTG itp.) za pomocą jednej z poniższych metod:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php +msgid "Vous avez reçu des liens pour consulter vos images en ligne ?" +msgstr "Czy masz linki do przeglądania obrazów diagnostycznych online?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Collez vos liens ci-dessous ainsi que vos identifiants et mots de passe :" +msgstr "Należy wkleić poniżej linki wraz z loginami i hasłami:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Lien internet" +msgstr "Link" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Identifiant" +msgstr "Login" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Mot de passe" +msgstr "Haslo" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Poids :" +msgstr "Waga:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Couverture sociale :" +msgstr "Rodzaj ubezpieczenia:" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Sécurité sociale" +msgstr "Ubezpieczenie społeczne" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Assurance privée" +msgstr "Ubezpieczenie prywatne" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Régime de la CMU/ASC/PUMa/CSS" +msgstr "System CMU/ASC/PUMa/CSS" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Accident du travail" +msgstr "Wypadek przy pracy" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Si accident du travail à quelle date ?" +msgstr "Jeżeli wypadek przy pracy, to kiedy miał miejsce?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Êtes-vous à la recherche de solutions chirurgicales pour votre problème de dos ?" +msgstr "Czy chcesz rozwiązać swój problem z kręgosłupem za pomocą interwencji chirurgicznych?" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Oui, s'il existe des solutions satisfaisantes" +msgstr "Tak, jeżeli są dostępne zadowalające interwencje" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Non, pas encore à ce stade" +msgstr "Nie, jeszcze nie na tym etapie" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Votre demande" +msgstr "Twoje zapytanie" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Choisissez un chirurgien" +msgstr "Wybierz chirurga" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Première disponibilité" +msgstr "Pierwszy wolny termin" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "Zaproponowany zostanie pierwszy wolny termin." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Chirurgien orthopédiste spécialisé en chirurgie vertébrale." +msgstr "Chirurg-ortopeda specjalizujący się w chirurgii kręgosłupa." + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Nom" +msgstr "Nazwisko" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Code postal" +msgstr "Kod pocztowy" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Ville" +msgstr "Miasto" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "Date de naissance" +msgstr "Data urodzenia" + +#: ../../mu-plugins/cube/src/Forms/Consultation.php:76 +msgid "La première date disponible vous sera proposée." +msgstr "Zaproponowany zostanie Ci pierwszy dostępny termin." diff --git a/wp-content/themes/CCV/resources/views/forms/appointment.blade.php b/wp-content/themes/CCV/resources/views/forms/appointment.blade.php index 63b63a4..98bdb84 100644 --- a/wp-content/themes/CCV/resources/views/forms/appointment.blade.php +++ b/wp-content/themes/CCV/resources/views/forms/appointment.blade.php @@ -7,7 +7,7 @@
-
{{ __('Choisissez un chirurgien') }}
+
{{ __('Choisissez un chirurgien','ccv') }}
@foreach($form->doctors as $doctor => $infos) diff --git a/wp-content/themes/CCV/resources/views/partials/content-form.blade.php b/wp-content/themes/CCV/resources/views/partials/content-form.blade.php index ff4d6b2..553ce21 100644 --- a/wp-content/themes/CCV/resources/views/partials/content-form.blade.php +++ b/wp-content/themes/CCV/resources/views/partials/content-form.blade.php @@ -127,13 +127,13 @@

- {{ __("Faites-nous parvenir également vos imageries les plus récentes (Scanner, Radiographies...) en utilisant l'une des méthodes suivantes :", 'ccv') }} + {{ __("Faites-nous parvenir également vos imageries les plus récentes (Scanner, Radiographies…) en utilisant l'une des méthodes suivantes :", 'ccv') }}

@@ -236,9 +236,9 @@
@for($i = 1; $i < 5; $i++) @endfor
@@ -258,9 +258,9 @@
- {!! $form->field('last-name', ['show_title' => false]) !!} + {!! $form->field('last-name', ['show_title' => false, 'placeholder' => __('Nom', 'ccv')]) !!} {!! $form->field('first-name', ['show_title' => false]) !!} - {!! $form->field('birthdate', ['show_icon' => false,'show_title' => false, 'placeholder' => __('Date de naissance') . ' '. $date_placeholder ]) !!} + {!! $form->field('birthdate', ['show_icon' => false,'show_title' => false, 'placeholder' => __('Date de naissance', 'ccv') . ' '. $date_placeholder ]) !!} {!! $form->field('sex', ['class' => 'flex items-center spaced-horizontal', 'title_class' => 'font-light mb-0']) !!}
{!! $form->field('size', [ @@ -290,8 +290,8 @@ 'placeholder' => $date_placeholder, 'title_class' => 'font-light mb-0', ]) !!} - {!! $form->field('postcode', ['show_title' => false]) !!} - {!! $form->field('city', ['show_title' => false]) !!} + {!! $form->field('postcode', ['show_title' => false, 'placeholder' => __('Code postal', 'ccv')]) !!} + {!! $form->field('city', ['show_title' => false, 'placeholder' => __('Ville', 'ccv')]) !!} {!! $form->field('country', ['show_title' => false]) !!}