Skip to content
Snippets Groups Projects
Commit 9b484a3f authored by Sergiu-Lucian Petrica's avatar Sergiu-Lucian Petrica
Browse files

Translations for genders in the application form

parent b20f122c
No related branches found
No related tags found
No related merge requests found
...@@ -202,6 +202,14 @@ ...@@ -202,6 +202,14 @@
<source>Zip code</source> <source>Zip code</source>
<target>Postleitzahl</target> <target>Postleitzahl</target>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.gender.male" approved="yes">
<source>Male</source>
<target>Männlich</target>
</trans-unit>
<trans-unit id="frontend.apply.gender.female" approved="yes">
<source>Female</source>
<target>Weiblich</target>
</trans-unit>
<trans-unit id="frontend.applyNow" approved="yes"> <trans-unit id="frontend.applyNow" approved="yes">
<source>Apply online now</source> <source>Apply online now</source>
<target>Jetzt online bewerben</target> <target>Jetzt online bewerben</target>
......
...@@ -153,6 +153,12 @@ ...@@ -153,6 +153,12 @@
<trans-unit id="frontend.apply.zip"> <trans-unit id="frontend.apply.zip">
<source>Zip code</source> <source>Zip code</source>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.gender.male">
<source>Male</source>
</trans-unit>
<trans-unit id="frontend.apply.gender.female">
<source>Female</source>
</trans-unit>
<trans-unit id="frontend.applyNow"> <trans-unit id="frontend.applyNow">
<source>Apply online now</source> <source>Apply online now</source>
</trans-unit> </trans-unit>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<br /> <br />
</f:if> </f:if>
<label for="apply-gender"><f:translate key="frontend.apply.gender" /></label> <label for="apply-gender"><f:translate key="frontend.apply.gender" /></label>
<f:form.select property="gender" id="apply-gender" class="" options="{None: '', Male: 'Male', Female: 'Female'}" /> <f:form.select property="gender" id="apply-gender" class="" options="{Male: '{f:translate(key: \'frontend.apply.gender.male\')}', Female: '{f:translate(key: \'frontend.apply.gender.female\')}'}" />
<f:form.validationResults for="applyData.gender"> <f:form.validationResults for="applyData.gender">
<f:for each="{validationResults.errors}" as="error"> <f:for each="{validationResults.errors}" as="error">
<div class="sg-jobs-validation-error"> <div class="sg-jobs-validation-error">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment