Skip to content
Snippets Groups Projects
Commit 5fc8b082 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Fix hardcoded labels

parent ad6ddaf2
No related branches found
No related tags found
No related merge requests found
...@@ -142,6 +142,10 @@ ...@@ -142,6 +142,10 @@
<source>File types: </source> <source>File types: </source>
<target>Datentypen: </target> <target>Datentypen: </target>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.applyAs" approved="yes">
<source>Apply as</source>
<target>Bewerbung als</target>
</trans-unit>
<trans-unit id="frontend.apply.birthDate" approved="yes"> <trans-unit id="frontend.apply.birthDate" approved="yes">
<source>Birth date</source> <source>Birth date</source>
<target>Geburtsdatum</target> <target>Geburtsdatum</target>
...@@ -230,6 +234,10 @@ ...@@ -230,6 +234,10 @@
<source>Job title *</source> <source>Job title *</source>
<target>Job-Titel *</target> <target>Job-Titel *</target>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.unsolicitedApplication" approved="yes">
<source>Unsolicited Application</source>
<target>Initiativbewerbung</target>
</trans-unit>
<trans-unit id="frontend.apply.zip" approved="yes"> <trans-unit id="frontend.apply.zip" approved="yes">
<source>Zip code</source> <source>Zip code</source>
<target>Postleitzahl</target> <target>Postleitzahl</target>
......
...@@ -108,6 +108,9 @@ ...@@ -108,6 +108,9 @@
<trans-unit id="frontend.apply.allowed_file_extensions"> <trans-unit id="frontend.apply.allowed_file_extensions">
<source>File types: </source> <source>File types: </source>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.applyAs">
<source>Apply as</source>
</trans-unit>
<trans-unit id="frontend.apply.birthDate"> <trans-unit id="frontend.apply.birthDate">
<source>Birth date</source> <source>Birth date</source>
</trans-unit> </trans-unit>
...@@ -174,6 +177,9 @@ ...@@ -174,6 +177,9 @@
<trans-unit id="frontend.apply.title"> <trans-unit id="frontend.apply.title">
<source>Job title *</source> <source>Job title *</source>
</trans-unit> </trans-unit>
<trans-unit id="frontend.apply.unsolicitedApplication">
<source>Unsolicited Application</source>
</trans-unit>
<trans-unit id="frontend.apply.zip"> <trans-unit id="frontend.apply.zip">
<source>Zip code</source> <source>Zip code</source>
</trans-unit> </trans-unit>
......
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
<div class="default-header-element"> <div class="default-header-element">
<f:if condition="{job}"> <f:if condition="{job}">
<f:then> <f:then>
<h1>Bewerbung für <span id="apply-title">{job.title}</span></h1> <h1><f:translate key="frontend.apply.applyAs" /> <span id="apply-title">{job.title}</span></h1>
</f:then> </f:then>
<f:else> <f:else>
<h1>Initiativbewerbung</h1> <h1><f:translate key="frontend.apply.unsolicitedApplication" /></h1>
</f:else> </f:else>
</f:if> </f:if>
</div> </div>
...@@ -46,7 +46,8 @@ ...@@ -46,7 +46,8 @@
<f:if condition="{internalError}"> <f:if condition="{internalError}">
<ul class="sg-jobs-validation-error parsley-errors-list filled"> <ul class="sg-jobs-validation-error parsley-errors-list filled">
<li class="parsley-required"><f:translate key="frontend.apply.error.general" />: {internalError}</li> <li class="parsley-required"><f:translate key="frontend.apply.error.general" />: {internalError}
</li>
</ul> </ul>
</f:if> </f:if>
......
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