{# locale based : editorial content #}
{% if is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_BELGIUM')) and getParameter('vpautopro.contact.phone_belgique') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_belgique')|replace({' ':''}) : getParameter('vpautopro.contact.phone_belgique') }}
{% elseif is_current_country(constant('App\\Twig\\Extension\\CountryExtension::COUNTRY_PORTUGAL')) and getParameter('vpautopro.contact.phone_portugal') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_portugal')|replace({' ':''}) : getParameter('vpautopro.contact.phone_portugal') }}
{% elseif app.request.locale == 'de' and getParameter('vpautopro.contact.phone_allemagne') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_allemagne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_allemagne') }}
{% elseif app.request.locale == 'en' and getParameter('vpautopro.contact.phone_angleterre') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_angleterre')|replace({' ':''}) : getParameter('vpautopro.contact.phone_angleterre') }}
{% elseif app.request.locale == 'es' and getParameter('vpautopro.contact.phone_espagne') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_espagne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_espagne') }}
{% elseif app.request.locale == 'it' and getParameter('vpautopro.contact.phone_italie') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_italie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_italie') }}
{% elseif app.request.locale == 'nl' and getParameter('vpautopro.contact.phone_pays_bas') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_pays_bas')|replace({' ':''}) : getParameter('vpautopro.contact.phone_pays_bas') }}
{% elseif app.request.locale == 'hu' and getParameter('vpautopro.contact.phone_hongrie') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_hongrie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_hongrie') }}
{% elseif app.request.locale == 'pl' and getParameter('vpautopro.contact.phone_pologne') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_pologne')|replace({' ':''}) : getParameter('vpautopro.contact.phone_pologne') }}
{% elseif app.request.locale == 'ro' and getParameter('vpautopro.contact.phone_roumanie') is not null %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone_roumanie')|replace({' ':''}) : getParameter('vpautopro.contact.phone_roumanie') }}
{% else %}
{{ (telMobile is defined and telMobile == true) ? getParameter('vpautopro.contact.phone')|trim|replace({' ':''}) : getParameter('vpautopro.contact.phone') }}
{% endif %}