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 @@
<source>File types: </source>
<target>Datentypen: </target>
</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">
<source>Birth date</source>
<target>Geburtsdatum</target>
......@@ -230,6 +234,10 @@
<source>Job title *</source>
<target>Job-Titel *</target>
</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">
<source>Zip code</source>
<target>Postleitzahl</target>
......
......@@ -108,6 +108,9 @@
<trans-unit id="frontend.apply.allowed_file_extensions">
<source>File types: </source>
</trans-unit>
<trans-unit id="frontend.apply.applyAs">
<source>Apply as</source>
</trans-unit>
<trans-unit id="frontend.apply.birthDate">
<source>Birth date</source>
</trans-unit>
......@@ -174,6 +177,9 @@
<trans-unit id="frontend.apply.title">
<source>Job title *</source>
</trans-unit>
<trans-unit id="frontend.apply.unsolicitedApplication">
<source>Unsolicited Application</source>
</trans-unit>
<trans-unit id="frontend.apply.zip">
<source>Zip code</source>
</trans-unit>
......
......@@ -6,10 +6,10 @@
<div class="default-header-element">
<f:if condition="{job}">
<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:else>
<h1>Initiativbewerbung</h1>
<h1><f:translate key="frontend.apply.unsolicitedApplication" /></h1>
</f:else>
</f:if>
</div>
......@@ -46,7 +46,8 @@
<f:if condition="{internalError}">
<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>
</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