Fix translation key casing for 'First name' label

Updated the translation key from 'firstName' to 'First name' in the details view template to ensure consistency with the expected translation format. This improves clarity and alignment with other labels.
This commit is contained in:
Julien Fastré 2025-04-14 15:51:23 +02:00 committed by Julie Lenaerts
parent e635572fe3
commit fdaba87264

View File

@ -3,7 +3,7 @@
<ul> <ul>
<li><b>{{ 'name'|trans }}</b>: <li><b>{{ 'name'|trans }}</b>:
{{ thirdparty.name }}</li> {{ thirdparty.name }}</li>
<li><b>{{ 'firstName'|trans }}</b>: <li><b>{{ 'First name'|trans }}</b>:
{% if thirdparty.firstname %}{{ thirdparty.firstname }}{% endif %}</li> {% if thirdparty.firstname %}{{ thirdparty.firstname }}{% endif %}</li>
<li><b>{{ 'thirdparty.Civility'|trans }}</b>: <li><b>{{ 'thirdparty.Civility'|trans }}</b>:
{% if thirdparty.getCivility %}{{ thirdparty.getCivility.name|localize_translatable_string }}{% endif %}</li> {% if thirdparty.getCivility %}{{ thirdparty.getCivility.name|localize_translatable_string }}{% endif %}</li>