Unverified Commit 9bf27132 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Translate footer components

parent 90c2c650
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
@@ -10,6 +10,27 @@ msgstr ""
msgid "button.logout"
msgstr "Abmelden"

msgid "footer.imprint"
msgstr "Impressum"

msgid "footer.privacy"
msgstr "Datenschutz"

msgid "footer.legend"
msgstr "Legende"

msgid "footer.colour-scheme"
msgstr "Farbschema"

msgid "footer.colour-scheme.light"
msgstr "hell"

msgid "footer.colour-scheme.dark"
msgstr "dunkel"

msgid "footer.colour-scheme.auto"
msgstr "automatisch"

# account.html.ep

msgid "account.account"
@@ -24,6 +45,9 @@ msgstr "E-Mail"
msgid "account.password"
msgstr "Passwort"

msgid "account.language"
msgstr "Sprache"

msgid "account.connections"
msgstr "Verbindungen"

@@ -56,3 +80,8 @@ msgstr "offene Anfragen"

msgid "account.interaction.disabled"
msgstr "Accounts können dir nicht folgen"

# _public_status_card.html.ep

msgid "status.is-not-checked-in"
msgstr "ist gerade nicht eingecheckt"
+29 −0
Original line number Diff line number Diff line
@@ -10,6 +10,27 @@ msgstr ""
msgid "button.logout"
msgstr "Logout"

msgid "footer.imprint"
msgstr "Imprint"

msgid "footer.privacy"
msgstr "Privacy"

msgid "footer.legend"
msgstr "Legend"

msgid "footer.colour-scheme"
msgstr "Display Mode"

msgid "footer.colour-scheme.light"
msgstr "light"

msgid "footer.colour-scheme.dark"
msgstr "dark"

msgid "footer.colour-scheme.auto"
msgstr "auto"

# account.html.ep

msgid "account.account"
@@ -24,6 +45,9 @@ msgstr "E-Mail"
msgid "account.password"
msgstr "Password"

msgid "account.language"
msgstr "Language"

msgid "account.connections"
msgstr "Connections"

@@ -56,3 +80,8 @@ msgstr "open requests"

msgid "account.interaction.disabled"
msgstr "Accounts cannot follow you"

# _public_status_card.html.ep

msgid "status.is-not-checked-in"
msgstr "ist not in transit right now"
+7 −7
Original line number Diff line number Diff line
@@ -131,21 +131,21 @@
		<div class="col s12 center-align grey-text">
			<a href="/about">travelynx</a> v<%= $version // '???' %>
			<span style="margin-left: 0.5em; margin-right: 0.5em;"></span>
			<a href="/impressum">Impressum</a>
			<a href="/impressum"><%= L('footer.imprint') %></a>
			<span style="margin-left: 0.5em; margin-right: 0.5em;"></span>
			<a href="/impressum">Datenschutz</a>
			<a href="/impressum"><%= L('footer.privacy') %></a>
			<span style="margin-left: 0.5em; margin-right: 0.5em;"></span>
			<a href="/legend">Legende</a>
			<a href="/legend"><%= L('footer.legend') %></a>
		</div>
	</div>
	<div class="row">
		<div class="col s12 center-align grey-text config">
			Farbschema:
			<a onClick="javascript:setTheme('light')">hell</a>
			<%= L('footer.colour-scheme') %>:
			<a onClick="javascript:setTheme('light')"><%= L('footer.colour-scheme.light') %></a>
			·
			<a onClick="javascript:setTheme('dark')">dunkel</a>
			<a onClick="javascript:setTheme('dark')"><%= L('footer.colour-scheme.dark') %></a>
			·
			<a onClick="javascript:setTheme('default')">automatisch</a>
			<a onClick="javascript:setTheme('default')"><%= L('footer.colour-scheme.auto') %></a>
		</div>
	</div>
</div>