Hi,
I was currently having trouble translating a custom field label in the Business details (Reg-kood and Pank)
My code in the custom theme is:
{% for field in business.custom_fields %}
<div>
{% if field.label == "Reg-kood" %}
{{ field.label | replace: "Reg-kood", "Company Code" }}
{% elsif field.label == "Pank" %}
{{ field.label | replace: "Pank", "Bank" }}
{% else field.label %}
{{ field.label }}
{% endif %}
{{ field.text }}
</div>
However, these field labels are not translated in the output
Can anyone help in this regard?
Best regards