Added translations
This commit is contained in:
parent
e054ae5496
commit
946a6c48b1
@ -6,8 +6,10 @@
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="553038dc-ba96-4d5d-be6c-80b0d07ef67b" name="Changes" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/src/routes/+layout.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/routes/+layout.svelte" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/src/routes/+page.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/routes/+page.svelte" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/svelte.config.js" beforeDir="false" afterPath="$PROJECT_DIR$/svelte.config.js" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
@ -67,7 +69,9 @@
|
||||
<updated>1672913979211</updated>
|
||||
<workItem from="1672913980315" duration="6985000" />
|
||||
<workItem from="1672923169638" duration="3621000" />
|
||||
<workItem from="1672930154456" duration="929000" />
|
||||
<workItem from="1672930154456" duration="3892000" />
|
||||
<workItem from="1672990549735" duration="1011000" />
|
||||
<workItem from="1672992271546" duration="2567000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
|
@ -2,13 +2,22 @@
|
||||
<div class="h-full flex flex-row justify-center items-center">
|
||||
<div class="content">
|
||||
<img src="{bird}" alt="bird">
|
||||
<p class="text-center text-3xl">We are building something great!</p>
|
||||
{#if $page.url.hostname.endsWith ('.ru')}
|
||||
<p class="text-center text-3xl">Мы строим нечто великое</p>
|
||||
{:else if $page.url.hostname.endsWith ('.be')}
|
||||
<p class="text-center text-3xl">We bouwen aan iets groots</p>
|
||||
<p class="text-center text-3xl">Nous construisons quelque chose de grand</p>
|
||||
<p class="text-center text-3xl">Wir bauen etwas Großes auf</p>
|
||||
{:else}
|
||||
<p class="text-center text-3xl">We are building something great</p>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
import bird from '$lib/images/bird.png';
|
||||
import { page } from '$app/stores';
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
Loading…
Reference in New Issue
Block a user