Updated mounted variables
This commit is contained in:
parent
f679330466
commit
674e6a90ec
@ -1,21 +1,21 @@
|
|||||||
<script>
|
<script>
|
||||||
import { _ } from "svelte-i18n";
|
import { _ } from "svelte-i18n";
|
||||||
import AddScanStationModal from "./AddStatsClientModal.svelte";
|
import AddStatsClientModal from "./AddStatsClientModal.svelte";
|
||||||
import CopyScanStationTokenModal from "./CopyScanStationTokenModal.svelte";
|
import CopyScanStationTokenModal from "./CopyScanStationTokenModal.svelte";
|
||||||
import scanstations_empty from "./scanstations_empty.svg";
|
import scanstations_empty from "./statsclients_empty.svg";
|
||||||
let modal_open = false;
|
let modal_open = false;
|
||||||
let copy_modal_open = false;
|
let copy_modal_open = false;
|
||||||
let new_station = {};
|
let new_client = {};
|
||||||
let current_stations = [];
|
let current_clients = [];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="text-center items-center justify-center">
|
<div class="text-center items-center justify-center">
|
||||||
<p class="mb-16 text-lg text-gray-500">
|
<p class="mb-16 text-lg text-gray-500">
|
||||||
<img class="w-full h-44" src={scanstations_empty} alt="" />
|
<img class="w-full h-44" src={scanstations_empty} alt="" />
|
||||||
<span class="font-bold">{$_('you-dont-have-any-scanstations-yet')}.</span><br />
|
<span class="font-bold">{$_('you-dont-have-any-scanclients-yet')}.</span><br />
|
||||||
<span>{$_('add-the-first-scanstation')}</span>
|
<span>{$_('add-the-first-statsclient')}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<AddScanStationModal bind:modal_open bind:current_stations bind:new_station bind:copy_modal_open/>
|
<AddStatsClientModal bind:modal_open bind:current_clients bind:new_client bind:copy_modal_open/>
|
||||||
<CopyScanStationTokenModal bind:copy_modal_open bind:new_station />
|
<CopyScanStationTokenModal bind:copy_modal_open bind:new_client />
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
@ -467,5 +467,7 @@
|
|||||||
"cancel-keep-statsclient": "Abbrechen und Statsclient behalten",
|
"cancel-keep-statsclient": "Abbrechen und Statsclient behalten",
|
||||||
"confirm-delete-statsclient": "Bestätigung, Statsclient löschen",
|
"confirm-delete-statsclient": "Bestätigung, Statsclient löschen",
|
||||||
"statsclient-is-being-added": "Statsclient wird angelegt...",
|
"statsclient-is-being-added": "Statsclient wird angelegt...",
|
||||||
"please-provide-the-required-information-to-create-a-new-statsclient": "Bitte gebe alle für einen Statsclient notwendigen Informationen an"
|
"please-provide-the-required-information-to-create-a-new-statsclient": "Bitte gebe alle für einen Statsclient notwendigen Informationen an",
|
||||||
|
"you-dont-have-any-scanclients-yet": "Es gibt noch keine Statsclients",
|
||||||
|
"add-the-first-statsclient": "Erstelle deinen ersten Statsclient."
|
||||||
}
|
}
|
||||||
|
@ -468,5 +468,7 @@
|
|||||||
"cancel-keep-statsclient": "Cancel and keep statsclient",
|
"cancel-keep-statsclient": "Cancel and keep statsclient",
|
||||||
"confirm-delete-statsclient": "Confirm, delete statsclient",
|
"confirm-delete-statsclient": "Confirm, delete statsclient",
|
||||||
"statsclient-is-being-added": "Statsclient is being added...",
|
"statsclient-is-being-added": "Statsclient is being added...",
|
||||||
"please-provide-the-required-information-to-create-a-new-statsclient": "Please provide the required information to create a new statsclient"
|
"please-provide-the-required-information-to-create-a-new-statsclient": "Please provide the required information to create a new statsclient",
|
||||||
|
"you-dont-have-any-scanclients-yet": "You don't have any statsclients yet",
|
||||||
|
"add-the-first-statsclient": "Add your first statsclient."
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user