Merge pull request 'Scan station management feature/93-scan_stations' (#95) from feature/93-scan_stations into dev
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #95
This commit is contained in:
commit
d00446dc7b
@ -69,6 +69,9 @@
|
|||||||
import Donations from "./components/donations/Donations.svelte";
|
import Donations from "./components/donations/Donations.svelte";
|
||||||
import DonationDetail from "./components/donations/DonationDetail.svelte";
|
import DonationDetail from "./components/donations/DonationDetail.svelte";
|
||||||
import GroupDetail from "./components/groups/GroupDetail.svelte";
|
import GroupDetail from "./components/groups/GroupDetail.svelte";
|
||||||
|
import ScanStationsOverview from "./components/scanstations/ScanStationsOverview.svelte";
|
||||||
|
import ScanStations from "./components/scanstations/ScanStations.svelte";
|
||||||
|
import ScanStationDetail from "./components/scanstations/ScanStationDetail.svelte";
|
||||||
store.init();
|
store.init();
|
||||||
registerSW();
|
registerSW();
|
||||||
</script>
|
</script>
|
||||||
@ -180,6 +183,14 @@
|
|||||||
<DonationDetail {params} />
|
<DonationDetail {params} />
|
||||||
</Route>
|
</Route>
|
||||||
</Route>
|
</Route>
|
||||||
|
<Route path="/scanstations/*">
|
||||||
|
<Route path="/">
|
||||||
|
<ScanStations />
|
||||||
|
</Route>
|
||||||
|
<Route path="/:stationid" let:params>
|
||||||
|
<ScanStationDetail {params} />
|
||||||
|
</Route>
|
||||||
|
</Route>
|
||||||
<Route path="/about">
|
<Route path="/about">
|
||||||
<About />
|
<About />
|
||||||
</Route>
|
</Route>
|
||||||
|
@ -187,6 +187,21 @@
|
|||||||
d="M2 22a8 8 0 1 1 16 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm10 4h4v2h-4v-2zm-3-5h7v2h-7v-2zm2-5h5v2h-5V7z" /></svg>
|
d="M2 22a8 8 0 1 1 16 0H2zm8-9c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6zm10 4h4v2h-4v-2zm-3-5h7v2h-7v-2zm2-5h5v2h-5V7z" /></svg>
|
||||||
<span>{$_('contacts')}</span>
|
<span>{$_('contacts')}</span>
|
||||||
</a>
|
</a>
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:GET')}
|
||||||
|
<a
|
||||||
|
class:bg-gray-100={$router.path === '/scanstations/'}
|
||||||
|
class="flex items-center px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900"
|
||||||
|
href="/scanstations/">
|
||||||
|
<svg
|
||||||
|
class="flex-shrink-0 w-5 h-5 mr-2 text-gray-400 transition group-hover:text-gray-600"
|
||||||
|
fill="currentColor"
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0z"/><path fill="currentColor" d="M4 5v11h16V5H4zM2 4a1 1 0 011-1h18a1 1 0 011 1v14H2V4zM1 19h22v2H1v-2z"/></svg>
|
||||||
|
<span>{$_('scanstations')}</span>
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
<a
|
<a
|
||||||
class:bg-gray-100={$router.path === '/settings/'}
|
class:bg-gray-100={$router.path === '/settings/'}
|
||||||
class="flex items-center px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900"
|
class="flex items-center px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900"
|
||||||
|
195
src/components/scanstations/AddScanStationModal.svelte
Normal file
195
src/components/scanstations/AddScanStationModal.svelte
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import { clickOutside } from "../base/outsideclick";
|
||||||
|
import { focusTrap } from "svelte-focus-trap";
|
||||||
|
import { ScanStationService, TrackService } from "@odit/lfk-client-js";
|
||||||
|
import Toastify from "toastify-js";
|
||||||
|
export let modal_open;
|
||||||
|
export let new_station;
|
||||||
|
export let current_stations;
|
||||||
|
export let copy_modal_open;
|
||||||
|
let tracks = [];
|
||||||
|
TrackService.trackControllerGetAll().then((val) => {
|
||||||
|
tracks = val;
|
||||||
|
track = tracks[0].id;
|
||||||
|
});
|
||||||
|
function focus(el) {
|
||||||
|
el.focus();
|
||||||
|
}
|
||||||
|
$: description = "";
|
||||||
|
$: track = null;
|
||||||
|
$: enabled = true;
|
||||||
|
$: createbtnenabled = track != null;
|
||||||
|
$: processed_last_submit = true;
|
||||||
|
(() => {
|
||||||
|
document.onkeydown = (e) => {
|
||||||
|
e = e || window.event;
|
||||||
|
if (e.key === "Escape") {
|
||||||
|
modal_open = false;
|
||||||
|
}
|
||||||
|
if (e.keyCode === 13) {
|
||||||
|
if (createbtnenabled === true) {
|
||||||
|
createbtnenabled = false;
|
||||||
|
submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
function submit() {
|
||||||
|
if (processed_last_submit === true) {
|
||||||
|
processed_last_submit = false;
|
||||||
|
const toast = Toastify({
|
||||||
|
text: $_('scanstation-is-being-added'),
|
||||||
|
duration: -1,
|
||||||
|
}).showToast();
|
||||||
|
let postdata = {
|
||||||
|
description,
|
||||||
|
enabled,
|
||||||
|
track,
|
||||||
|
};
|
||||||
|
ScanStationService.scanStationControllerPost(postdata)
|
||||||
|
.then((result) => {
|
||||||
|
description = "";
|
||||||
|
track = tracks[0].id;
|
||||||
|
enabled = true;
|
||||||
|
modal_open = false;
|
||||||
|
//
|
||||||
|
Toastify({
|
||||||
|
text: $_('scanstation-added'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
||||||
|
}).showToast();
|
||||||
|
current_stations.push(result);
|
||||||
|
current_stations = current_stations;
|
||||||
|
new_station=result;
|
||||||
|
copy_modal_open=true;
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
//
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
processed_last_submit = true;
|
||||||
|
//
|
||||||
|
toast.hideToast();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if modal_open}
|
||||||
|
<div
|
||||||
|
class="fixed z-10 inset-0 overflow-y-auto"
|
||||||
|
use:focusTrap
|
||||||
|
use:clickOutside
|
||||||
|
on:click_outside={() => {
|
||||||
|
modal_open = false;
|
||||||
|
}}>
|
||||||
|
<div
|
||||||
|
class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
||||||
|
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
|
||||||
|
<div
|
||||||
|
class="absolute inset-0 bg-gray-500 opacity-75"
|
||||||
|
data-id="modal_backdrop" />
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
class="hidden sm:inline-block sm:align-middle sm:h-screen"
|
||||||
|
aria-hidden="true">​</span>
|
||||||
|
<div
|
||||||
|
class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"
|
||||||
|
role="dialog"
|
||||||
|
aria-modal="true"
|
||||||
|
aria-labelledby="modal-headline">
|
||||||
|
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
|
||||||
|
<div class="sm:flex sm:items-start">
|
||||||
|
<div
|
||||||
|
class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-blue-100 sm:mx-0 sm:h-10 sm:w-10">
|
||||||
|
<svg
|
||||||
|
class="h-6 w-6 text-blue-600"
|
||||||
|
fill="currentColor"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
width="24"
|
||||||
|
height="24"><path fill="none" d="M0 0h24v24H0z" />
|
||||||
|
<path
|
||||||
|
d="M4 5v11h16V5H4zM2 4a1 1 0 011-1h18a1 1 0 011 1v14H2V4zM1 19h22v2H1v-2z" /></svg>
|
||||||
|
</div>
|
||||||
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
||||||
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
||||||
|
{$_('create-a-new-scanstation')}
|
||||||
|
</h3>
|
||||||
|
<div class="mt-2 mb-6">
|
||||||
|
<p class="text-sm text-gray-500">
|
||||||
|
{$_('please-provide-the-required-information-to-create-a-new-scanstation')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="grid grid-cols-6 gap-6">
|
||||||
|
<div class="col-span-6">
|
||||||
|
<label
|
||||||
|
for="track"
|
||||||
|
class="block text-sm font-medium text-gray-700">Track</label>
|
||||||
|
<select
|
||||||
|
name="track"
|
||||||
|
bind:value={track}
|
||||||
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2">
|
||||||
|
{#each tracks as t}
|
||||||
|
<option value={t.id}>{t.name || t.distance}</option>
|
||||||
|
{/each}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="col-span-6">
|
||||||
|
<label
|
||||||
|
for="description"
|
||||||
|
class="block text-sm font-medium text-gray-700">{$_('description')}</label>
|
||||||
|
<input
|
||||||
|
use:focus
|
||||||
|
autocomplete="off"
|
||||||
|
placeholder="{$_('description')}"
|
||||||
|
bind:value={description}
|
||||||
|
type="text"
|
||||||
|
name="description"
|
||||||
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
||||||
|
</div>
|
||||||
|
<div class="col-span-6">
|
||||||
|
<label
|
||||||
|
for="enabled"
|
||||||
|
class="font-medium text-gray-700">{$_('enabled_large')}</label>
|
||||||
|
<br />
|
||||||
|
<p class="text-gray-500">
|
||||||
|
<input
|
||||||
|
id="enabled"
|
||||||
|
on:change={() => {
|
||||||
|
enabled = !enabled;
|
||||||
|
}}
|
||||||
|
name="enabled"
|
||||||
|
type="checkbox"
|
||||||
|
checked={enabled}
|
||||||
|
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" />
|
||||||
|
{$_('this-scanstation-is')} {#if enabled}{$_('enabled')}{:else}{$_('disabled')}{/if}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
|
||||||
|
<button
|
||||||
|
disabled={!createbtnenabled}
|
||||||
|
class:opacity-50={!createbtnenabled}
|
||||||
|
on:click={submit}
|
||||||
|
type="button"
|
||||||
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('create')}
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
modal_open = false;
|
||||||
|
}}
|
||||||
|
type="button"
|
||||||
|
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('cancel')}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
@ -0,0 +1,92 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import { clickOutside } from "../base/outsideclick";
|
||||||
|
import { focusTrap } from "svelte-focus-trap";
|
||||||
|
import { ScanStationService } from "@odit/lfk-client-js";
|
||||||
|
import Toastify from "toastify-js";
|
||||||
|
import { createEventDispatcher } from "svelte";
|
||||||
|
export let modal_open;
|
||||||
|
export let delete_station;
|
||||||
|
const dispatch = createEventDispatcher();
|
||||||
|
function cancelDelete() {
|
||||||
|
modal_open = false;
|
||||||
|
dispatch("cancelDelete", { id: delete_station.id });
|
||||||
|
}
|
||||||
|
function deleteStation() {
|
||||||
|
ScanStationService.donorControllerRemove(
|
||||||
|
delete_station.id,
|
||||||
|
true
|
||||||
|
)
|
||||||
|
.then((resp) => {
|
||||||
|
Toastify({
|
||||||
|
text: $_('station-deleted'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
||||||
|
}).showToast();
|
||||||
|
location.replace("./");
|
||||||
|
})
|
||||||
|
.catch((err) => {});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if modal_open}
|
||||||
|
<div
|
||||||
|
class="fixed z-10 inset-0 overflow-y-auto"
|
||||||
|
use:focusTrap
|
||||||
|
use:clickOutside
|
||||||
|
on:click_outside={cancelDelete}>
|
||||||
|
<div
|
||||||
|
class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
||||||
|
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
|
||||||
|
<div
|
||||||
|
class="absolute inset-0 bg-gray-500 opacity-75"
|
||||||
|
data-id="modal_backdrop" />
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
class="hidden sm:inline-block sm:align-middle sm:h-screen"
|
||||||
|
aria-hidden="true">​</span>
|
||||||
|
<div
|
||||||
|
class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"
|
||||||
|
role="dialog"
|
||||||
|
aria-modal="true"
|
||||||
|
aria-labelledby="modal-headline">
|
||||||
|
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
|
||||||
|
<div class="sm:flex sm:items-start">
|
||||||
|
<div
|
||||||
|
class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-blue-100 sm:mx-0 sm:h-10 sm:w-10">
|
||||||
|
<svg class="h-6 w-6 text-blue-600" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M4 5v11h16V5H4zM2 4a1 1 0 011-1h18a1 1 0 011 1v14H2V4zM1 19h22v2H1v-2z"/></svg>
|
||||||
|
</div>
|
||||||
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
||||||
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
||||||
|
{$_('attention')}
|
||||||
|
</h3>
|
||||||
|
<div class="mt-2 mb-6">
|
||||||
|
<p class="text-sm text-gray-500">
|
||||||
|
{$_(
|
||||||
|
'do-you-want-to-delete-this-donor-with-all-related-donations'
|
||||||
|
)}
|
||||||
|
<br />
|
||||||
|
{$_('all-associated-scans-will-get-deleted-as-well')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
|
||||||
|
<button
|
||||||
|
on:click={deleteStation}
|
||||||
|
type="button"
|
||||||
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('confirm-delete-station-with-all-scans')}
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
on:click={cancelDelete}
|
||||||
|
type="button"
|
||||||
|
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('cancel-keep-station')}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
125
src/components/scanstations/CopyScanStationTokenModal.svelte
Normal file
125
src/components/scanstations/CopyScanStationTokenModal.svelte
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import { focusTrap } from "svelte-focus-trap";
|
||||||
|
import Toastify from "toastify-js";
|
||||||
|
import { tick, createEventDispatcher } from "svelte";
|
||||||
|
export let copy_modal_open;
|
||||||
|
export let new_station;
|
||||||
|
const dispatch = createEventDispatcher();
|
||||||
|
let valueCopy = null;
|
||||||
|
let areaDom;
|
||||||
|
let copied = false;
|
||||||
|
function close() {
|
||||||
|
copy_modal_open = false;
|
||||||
|
}
|
||||||
|
async function copy() {
|
||||||
|
valueCopy = new_station.key;
|
||||||
|
await tick();
|
||||||
|
areaDom.focus();
|
||||||
|
areaDom.select();
|
||||||
|
try {
|
||||||
|
const successful = document.execCommand("copy");
|
||||||
|
if (!successful) {
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
Toastify({
|
||||||
|
text: $_('copied-token-to-clipboard'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
||||||
|
}).showToast();
|
||||||
|
copied = true;
|
||||||
|
} catch (err) {
|
||||||
|
Toastify({
|
||||||
|
text: $_('error-whyile-copying-to-clipboard'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor:
|
||||||
|
"linear-gradient(90deg, hsla(281, 37%, 45%, 1) 0%, hsla(1, 62%, 48%, 1) 100%)",
|
||||||
|
}).showToast();
|
||||||
|
}
|
||||||
|
|
||||||
|
// we can notifi by event or storage about copy status
|
||||||
|
valueCopy = null;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{#if copy_modal_open}
|
||||||
|
{#if valueCopy != null}
|
||||||
|
<textarea bind:this={areaDom}>{valueCopy}</textarea>
|
||||||
|
{/if}
|
||||||
|
<div class="fixed z-10 inset-0 overflow-y-auto" use:focusTrap>
|
||||||
|
<div
|
||||||
|
class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
||||||
|
<div class="fixed inset-0 transition-opacity" aria-hidden="true">
|
||||||
|
<div
|
||||||
|
class="absolute inset-0 bg-gray-500 opacity-75"
|
||||||
|
data-id="modal_backdrop" />
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
class="hidden sm:inline-block sm:align-middle sm:h-screen"
|
||||||
|
aria-hidden="true">​</span>
|
||||||
|
<div
|
||||||
|
class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"
|
||||||
|
role="dialog"
|
||||||
|
aria-modal="true"
|
||||||
|
aria-labelledby="modal-headline">
|
||||||
|
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4">
|
||||||
|
<div class="sm:flex sm:items-start">
|
||||||
|
<div
|
||||||
|
class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-blue-100 sm:mx-0 sm:h-10 sm:w-10">
|
||||||
|
<svg
|
||||||
|
class="h-6 w-6 text-blue-600"
|
||||||
|
fill="currentColor"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z" />
|
||||||
|
<path
|
||||||
|
d="M4 5v11h16V5H4zM2 4a1 1 0 011-1h18a1 1 0 011 1v14H2V4zM1 19h22v2H1v-2z" /></svg>
|
||||||
|
</div>
|
||||||
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
||||||
|
<h3 class="text-lg leading-6 font-medium text-gray-900">{$_('token')}</h3>
|
||||||
|
<div class="mt-2 mb-6">
|
||||||
|
<p class="text-sm text-gray-500">
|
||||||
|
{$_('the-scanstations-api-token-will-only-get-displayed-once-you-wont-be-able-to-change-or-view-it-again')}
|
||||||
|
<br />
|
||||||
|
{$_('please-copy-the-token-and-store-it-somewhere-save')}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="mt-2 mb-6">
|
||||||
|
<label
|
||||||
|
for="token"
|
||||||
|
class="block text-sm font-medium text-gray-700">Token</label>
|
||||||
|
<div on:click={copy} class="inline-flex">
|
||||||
|
<p
|
||||||
|
name="token"
|
||||||
|
class:bg-green-200={copied}
|
||||||
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 p-2">
|
||||||
|
{new_station.key}
|
||||||
|
</p>
|
||||||
|
<div
|
||||||
|
class="bg-gray-200 border-gray-300 border-t border-b border-r text-black rounded-r-md sm:text-sm p-2 mt-1 cursor-pointer">
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
width="24"
|
||||||
|
height="24"><path fill="none" d="M0 0h24v24H0z" />
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
d="M7 4V2h10v2h3l1 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V5l1-1h3zm0 2H5v14h14V6h-2v2H7V6zm2-2v2h6V4H9z" /></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p class="text-gray-500 text-xs">{$_('click-to-copy-token-to-clipboard')}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse">
|
||||||
|
<button
|
||||||
|
on:click={close}
|
||||||
|
type="button"
|
||||||
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-green-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('yes-i-copied-the-token')}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
193
src/components/scanstations/ScanStationDetail.svelte
Normal file
193
src/components/scanstations/ScanStationDetail.svelte
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import store from "../../store";
|
||||||
|
import { ScanStationService, TrackService } from "@odit/lfk-client-js";
|
||||||
|
import Toastify from "toastify-js";
|
||||||
|
import PromiseError from "../base/PromiseError.svelte";
|
||||||
|
import ConfirmScanStationDeletion from "./ConfirmScanStationDeletion.svelte";
|
||||||
|
let data_loaded = false;
|
||||||
|
let modal_open;
|
||||||
|
let delete_station;
|
||||||
|
export let params;
|
||||||
|
$: delete_triggered = false;
|
||||||
|
$: original_data = {};
|
||||||
|
$: editable = {};
|
||||||
|
$: tracks = [];
|
||||||
|
$: changes_performed = !(
|
||||||
|
JSON.stringify(original_data) === JSON.stringify(editable)
|
||||||
|
);
|
||||||
|
$: save_enabled = changes_performed;
|
||||||
|
const promise = ScanStationService.scanStationControllerGetOne(
|
||||||
|
params.stationid
|
||||||
|
).then((data) => {
|
||||||
|
data_loaded = true;
|
||||||
|
data.track = data.track.id;
|
||||||
|
original_data = Object.assign(original_data, data);
|
||||||
|
editable = Object.assign(editable, original_data);
|
||||||
|
});
|
||||||
|
TrackService.trackControllerGetAll().then((val) => {
|
||||||
|
tracks = val;
|
||||||
|
});
|
||||||
|
function submit() {
|
||||||
|
if (data_loaded === true && save_enabled) {
|
||||||
|
Toastify({
|
||||||
|
text: $_('station-is-being-updated'),
|
||||||
|
duration: 2500,
|
||||||
|
}).showToast();
|
||||||
|
ScanStationService.scanStationControllerPut(original_data.id, editable)
|
||||||
|
.then((resp) => {
|
||||||
|
Object.assign(original_data, editable);
|
||||||
|
original_data = original_data;
|
||||||
|
Toastify({
|
||||||
|
text: $_('updated-station'),
|
||||||
|
duration: 2500,
|
||||||
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
||||||
|
}).showToast();
|
||||||
|
})
|
||||||
|
.catch((err) => {});
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function deleteStation() {
|
||||||
|
ScanStationService.scanStationControllerRemove(original_data.id, false)
|
||||||
|
.then((resp) => {
|
||||||
|
Toastify({
|
||||||
|
text: $_('station-deleted'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
|
||||||
|
}).showToast();
|
||||||
|
location.replace("./");
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
modal_open = true;
|
||||||
|
delete_station = original_data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<ConfirmScanStationDeletion bind:modal_open bind:delete_station />
|
||||||
|
{#await promise}
|
||||||
|
{$_('loading-station-details')}
|
||||||
|
{:then}
|
||||||
|
<section class="container p-5 select-none">
|
||||||
|
<div class="flex flex-row mb-4">
|
||||||
|
<div class="w-full">
|
||||||
|
<nav class="w-full flex">
|
||||||
|
<ol class="list-none flex flex-row items-center justify-start">
|
||||||
|
<li class="flex items-center">
|
||||||
|
<svg
|
||||||
|
fill="currentColor"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
width="24"
|
||||||
|
height="24"><path fill="none" d="M0 0h24v24H0z" />
|
||||||
|
<path
|
||||||
|
d="M4 5v11h16V5H4zM2 4a1 1 0 011-1h18a1 1 0 011 1v14H2V4zM1 19h22v2H1v-2z" /></svg>
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center ml-2">
|
||||||
|
<a class="mr-2" href="./">{$_('scanstation')}</a><svg
|
||||||
|
stroke="currentColor"
|
||||||
|
fill="none"
|
||||||
|
stroke-width="2"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
class="h-3 w-3 mr-2 stroke-current"
|
||||||
|
height="1em"
|
||||||
|
width="1em"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"><line
|
||||||
|
x1="5"
|
||||||
|
y1="12"
|
||||||
|
x2="19"
|
||||||
|
y2="12" />
|
||||||
|
<polyline points="12 5 19 12 12 19" /></svg>
|
||||||
|
</li>
|
||||||
|
<li class="flex items-center">
|
||||||
|
<span class="mr-2">#{original_data.id}</span>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mb-8 text-3xl font-extrabold leading-tight">
|
||||||
|
#{original_data.id}
|
||||||
|
<span data-id="stations_actions_${editable.id}">
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:DELETE')}
|
||||||
|
{#if delete_triggered}
|
||||||
|
<button
|
||||||
|
on:click={deleteStation}
|
||||||
|
class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm">{$_('confirm-deletion')}</button>
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
delete_triggered = !delete_triggered;
|
||||||
|
}}
|
||||||
|
class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-400 text-base font-medium text-white sm:w-auto sm:text-sm">{$_('cancel')}</button>
|
||||||
|
{/if}
|
||||||
|
{#if !delete_triggered}
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
delete_triggered = true;
|
||||||
|
}}
|
||||||
|
type="button"
|
||||||
|
class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm">{$_('delete-station')}</button>
|
||||||
|
{/if}
|
||||||
|
{/if}
|
||||||
|
{#if !delete_triggered}
|
||||||
|
<button
|
||||||
|
disabled={!save_enabled}
|
||||||
|
class:opacity-50={!save_enabled}
|
||||||
|
type="button"
|
||||||
|
on:click={submit}
|
||||||
|
class="w-full justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">{$_('save-changes')}</button>
|
||||||
|
{/if}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<!-- -->
|
||||||
|
<div class="text-sm w-full">
|
||||||
|
<label
|
||||||
|
for="track"
|
||||||
|
class="block text-sm font-medium text-gray-700">Track</label>
|
||||||
|
<select
|
||||||
|
name="track"
|
||||||
|
bind:value={editable.track}
|
||||||
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2">
|
||||||
|
{#each tracks as t}
|
||||||
|
<option value={t.id}>{t.name || t.distance}</option>
|
||||||
|
{/each}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="text-sm w-full">
|
||||||
|
<label
|
||||||
|
for="description"
|
||||||
|
class="font-medium text-gray-700">{$_('description')}</label>
|
||||||
|
<input
|
||||||
|
autocomplete="off"
|
||||||
|
placeholder="{$_('description')}"
|
||||||
|
type="text"
|
||||||
|
bind:value={editable.description}
|
||||||
|
name="description"
|
||||||
|
class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm rounded-l-md sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" />
|
||||||
|
</div>
|
||||||
|
<div class="text-sm w-full">
|
||||||
|
<label
|
||||||
|
for="enabled"
|
||||||
|
class="ml-1 font-medium text-gray-700">{$_('enabled')}</label>
|
||||||
|
<br />
|
||||||
|
<p class="text-gray-500">
|
||||||
|
<input
|
||||||
|
id="enabled"
|
||||||
|
on:change={() => {
|
||||||
|
editable.enabled = !editable.enabled;
|
||||||
|
}}
|
||||||
|
name="enabled"
|
||||||
|
type="checkbox"
|
||||||
|
checked={editable.enabled}
|
||||||
|
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" />
|
||||||
|
{$_('this-scanstation-is')}
|
||||||
|
{#if editable.enabled}{$_('enabled')}{:else}{$_('disabled')}{/if}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{:catch error}
|
||||||
|
<PromiseError {error} />
|
||||||
|
{/await}
|
33
src/components/scanstations/ScanStations.svelte
Normal file
33
src/components/scanstations/ScanStations.svelte
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import store from "../../store";
|
||||||
|
import AddScanStationModal from "./AddScanStationModal.svelte";
|
||||||
|
import CopyScanStationTokenModal from "./CopyScanStationTokenModal.svelte";
|
||||||
|
import ScanStationsOverview from "./ScanStationsOverview.svelte";
|
||||||
|
export let modal_open = false;
|
||||||
|
export let copy_modal_open = false;
|
||||||
|
export let new_station = {};
|
||||||
|
let current_stations = [];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<section class="container p-5">
|
||||||
|
<span class="mb-1 text-3xl font-extrabold leading-tight">
|
||||||
|
{$_('scanstations')}
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:CREATE')}
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
modal_open = true;
|
||||||
|
}}
|
||||||
|
type="button"
|
||||||
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">
|
||||||
|
{$_('create-a-new-scanstation')}
|
||||||
|
</button>
|
||||||
|
{/if}
|
||||||
|
</span>
|
||||||
|
<ScanStationsOverview bind:current_stations bind:modal_open bind:new_station bind:copy_modal_open />
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:CREATE')}
|
||||||
|
<AddScanStationModal bind:modal_open bind:current_stations bind:new_station bind:copy_modal_open/>
|
||||||
|
<CopyScanStationTokenModal bind:copy_modal_open bind:new_station />
|
||||||
|
{/if}
|
21
src/components/scanstations/ScanStationsEmptyState.svelte
Normal file
21
src/components/scanstations/ScanStationsEmptyState.svelte
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import AddScanStationModal from "./AddScanStationModal.svelte";
|
||||||
|
import CopyScanStationTokenModal from "./CopyScanStationTokenModal.svelte";
|
||||||
|
import scanstations_empty from "./scanstations_empty.svg";
|
||||||
|
let modal_open = false;
|
||||||
|
let copy_modal_open = false;
|
||||||
|
let new_station = {};
|
||||||
|
let current_stations = [];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="text-center items-center justify-center">
|
||||||
|
<p class="mb-16 text-lg text-gray-500">
|
||||||
|
<img class="w-full h-44" src={scanstations_empty} alt="" />
|
||||||
|
<span class="font-bold">{$_('you-dont-have-any-scanstations-yet')}.</span><br />
|
||||||
|
<span>{$_('add-the-first-scanstation')}</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<AddScanStationModal bind:modal_open bind:current_stations bind:new_station bind:copy_modal_open/>
|
||||||
|
<CopyScanStationTokenModal bind:copy_modal_open bind:new_station />
|
169
src/components/scanstations/ScanStationsOverview.svelte
Normal file
169
src/components/scanstations/ScanStationsOverview.svelte
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "svelte-i18n";
|
||||||
|
import Toastify from "toastify-js";
|
||||||
|
import { ScanStationService } from "@odit/lfk-client-js";
|
||||||
|
const promise = ScanStationService.scanStationControllerGetAll().then(
|
||||||
|
(result) => {
|
||||||
|
current_stations = result;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
import store from "../../store";
|
||||||
|
import ScanStationsEmptyState from "./ScanStationsEmptyState.svelte";
|
||||||
|
import ConfirmScanStationDeletion from "./ConfirmScanStationDeletion.svelte";
|
||||||
|
$: searchvalue = "";
|
||||||
|
$: active_deletes = [];
|
||||||
|
let delete_station = {};
|
||||||
|
let modal_open = false;
|
||||||
|
export let current_stations = [];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<ConfirmScanStationDeletion
|
||||||
|
on:cancelDelete={(event) => {
|
||||||
|
modal_open = false;
|
||||||
|
active_deletes[event.detail.id] = false;
|
||||||
|
}}
|
||||||
|
bind:modal_open
|
||||||
|
bind:delete_station />
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:GET')}
|
||||||
|
{#await promise}
|
||||||
|
<div
|
||||||
|
class="bg-teal-lightest border-t-4 border-teal rounded-b text-teal-darkest px-4 py-3 shadow-md my-2"
|
||||||
|
role="alert">
|
||||||
|
<p class="font-bold">{$_('scanstations-are-being-loaded')}</p>
|
||||||
|
<p class="text-sm">{$_('this-might-take-a-moment')}</p>
|
||||||
|
</div>
|
||||||
|
{:then}
|
||||||
|
{#if current_stations.length === 0}
|
||||||
|
<ScanStationsEmptyState />
|
||||||
|
{:else}
|
||||||
|
<input
|
||||||
|
type="search"
|
||||||
|
bind:value={searchvalue}
|
||||||
|
placeholder={$_('datatable.search')}
|
||||||
|
aria-label={$_('datatable.search')}
|
||||||
|
class="gridjs-input gridjs-search-input mb-4" />
|
||||||
|
<div
|
||||||
|
class="shadow border-b border-gray-200 sm:rounded-lg overflow-x-scroll">
|
||||||
|
<table class="divide-y divide-gray-200 w-full">
|
||||||
|
<thead class="bg-gray-50">
|
||||||
|
<tr>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||||
|
{$_('track')}
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||||
|
{$_('description')}
|
||||||
|
</th>
|
||||||
|
<th
|
||||||
|
scope="col"
|
||||||
|
class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||||
|
{$_('status')}
|
||||||
|
</th>
|
||||||
|
<th scope="col" class="relative px-6 py-3">
|
||||||
|
<span class="sr-only">{$_('action')}</span>
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody class="divide-y divide-gray-200">
|
||||||
|
{#each current_stations as s}
|
||||||
|
{#if Object.values(s)
|
||||||
|
.toString()
|
||||||
|
.toLowerCase()
|
||||||
|
.includes(searchvalue)}
|
||||||
|
<tr data-rowid="station_{s.id}">
|
||||||
|
<td class="px-6 py-4 whitespace-nowrap">
|
||||||
|
<div class="flex items-center">
|
||||||
|
<div class="ml-4">
|
||||||
|
<div class="text-sm font-medium text-gray-900">
|
||||||
|
<a
|
||||||
|
href="../tracks"
|
||||||
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800">
|
||||||
|
{s.track.name || s.track.distance + 'm'}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td class="px-6 py-4 whitespace-nowrap">
|
||||||
|
<div class="flex items-center">
|
||||||
|
<div class="ml-4">
|
||||||
|
<div class="text-sm font-medium text-gray-900">
|
||||||
|
{s.description}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td class="px-6 py-4 whitespace-nowrap">
|
||||||
|
<div class="flex items-center">
|
||||||
|
{#if s.enabled}
|
||||||
|
<span
|
||||||
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">{$_('active')}</span>
|
||||||
|
{:else}
|
||||||
|
<span
|
||||||
|
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800">{$_('inactive')}</span>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
{#if active_deletes[s.id] === true}
|
||||||
|
<td
|
||||||
|
class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
active_deletes[s.id] = false;
|
||||||
|
}}
|
||||||
|
tabindex="0"
|
||||||
|
class="ml-4 text-indigo-600 hover:text-indigo-900 cursor-pointer">{$_('cancel-delete')}</button>
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
ScanStationService.scanStationControllerRemove(s.id, false)
|
||||||
|
.then((resp) => {
|
||||||
|
current_stations = current_stations.filter((obj) => obj.id !== s.id);
|
||||||
|
Toastify({
|
||||||
|
text: $_('station-deleted'),
|
||||||
|
duration: 500,
|
||||||
|
backgroundColor:
|
||||||
|
'linear-gradient(to right, #00b09b, #96c93d)',
|
||||||
|
}).showToast();
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
modal_open = true;
|
||||||
|
delete_station = s;
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
tabindex="0"
|
||||||
|
class="ml-4 text-red-600 hover:text-red-900 cursor-pointer">{$_('confirm-delete')}</button>
|
||||||
|
</td>
|
||||||
|
{:else}
|
||||||
|
<td
|
||||||
|
class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
|
||||||
|
<a
|
||||||
|
href="/scanstations/{s.id}"
|
||||||
|
class="text-indigo-600 hover:text-indigo-900">{$_('details')}</a>
|
||||||
|
{#if store.state.jwtinfo.userdetails.permissions.includes('STATION:DELETE')}
|
||||||
|
<button
|
||||||
|
on:click={() => {
|
||||||
|
active_deletes[s.id] = true;
|
||||||
|
}}
|
||||||
|
tabindex="0"
|
||||||
|
class="ml-4 text-red-600 hover:text-red-900 cursor-pointer">{$_('delete')}</button>
|
||||||
|
{/if}
|
||||||
|
</td>
|
||||||
|
{/if}
|
||||||
|
</tr>
|
||||||
|
{/if}
|
||||||
|
{/each}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
{:catch error}
|
||||||
|
<div class="text-white px-6 py-4 border-0 rounded relative mb-4 bg-red-500">
|
||||||
|
<span class="inline-block align-middle mr-8">
|
||||||
|
<b class="capitalize">{$_('general_promise_error')}</b>
|
||||||
|
{error}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{/await}
|
||||||
|
{/if}
|
1
src/components/scanstations/scanstations_empty.svg
Normal file
1
src/components/scanstations/scanstations_empty.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 5.0 KiB |
@ -1,311 +1,340 @@
|
|||||||
{
|
{
|
||||||
"404message": "Die gesuchte Seite wurde leider nicht gefunden.",
|
"404message": "Die gesuchte Seite wurde leider nicht gefunden.",
|
||||||
"404title": "Fehler 404",
|
"404title": "Fehler 404",
|
||||||
"about": "Über",
|
"about": "Über",
|
||||||
"action": "Aktionen",
|
"action": "Aktionen",
|
||||||
"active": "Aktiv",
|
"active": "Aktiv",
|
||||||
"add-donation": "Sponsoring erstellen",
|
"add-donation": "Sponsoring erstellen",
|
||||||
"add-donor": "Sponsor:in erstellen",
|
"add-donor": "Sponsor:in erstellen",
|
||||||
"add-user-group": "Neue Gruppe erstellen",
|
"add-the-first-scanstation": "Erstelle die erste Scannerstation",
|
||||||
"add-your-first-contact": "Erstelle den ersten Kontakt",
|
"add-user-group": "Neue Gruppe erstellen",
|
||||||
"add-your-first-donor": "Erstelle die erste Sponsor:in",
|
"add-your-first-contact": "Erstelle den ersten Kontakt",
|
||||||
"add-your-first-group": "Erstelle die erste Gruppe",
|
"add-your-first-donor": "Erstelle die erste Sponsor:in",
|
||||||
"add-your-first-organization": "Erstelle die erste Organisation",
|
"add-your-first-group": "Erstelle die erste Gruppe",
|
||||||
"add-your-first-runner": "Erstelle die erste Läufer:in",
|
"add-your-first-organization": "Erstelle die erste Organisation",
|
||||||
"add-your-first-team": "Erstelle das erste Team",
|
"add-your-first-runner": "Erstelle die erste Läufer:in",
|
||||||
"add-your-first-track": "Erstelle den ersten Track (Laufstrecke).",
|
"add-your-first-team": "Erstelle das erste Team",
|
||||||
"add-your-first-user": "Erstelle die erste Benutzer:in",
|
"add-your-first-track": "Erstelle den ersten Track (Laufstrecke).",
|
||||||
"address": "Adresse",
|
"add-your-first-user": "Erstelle die erste Benutzer:in",
|
||||||
"address-is-required": "Du musst eine Adresse angeben",
|
"address": "Adresse",
|
||||||
"all-associated-donations-will-get-deleted-as-well": "Alle Sponsorings dieser Sponsor:in werden ebenfalls gelöscht",
|
"address-is-required": "Du musst eine Adresse angeben",
|
||||||
"all-associated-runners-will-be-deleted-too": "Alle zugehörigen Läufer:innen werden auch gelöscht!",
|
"all-associated-donations-will-get-deleted-as-well": "Alle Sponsorings dieser Sponsor:in werden ebenfalls gelöscht",
|
||||||
"all-associated-teams-and-runners-will-be-deleted-too": "Alle assoziierten Teams und Läufer:innen werden auch gelöscht!",
|
"all-associated-runners-will-be-deleted-too": "Alle zugehörigen Läufer:innen werden auch gelöscht!",
|
||||||
"amount-per-kilometer": "Betrag pro Kilometer",
|
"all-associated-scans-will-get-deleted-as-well": "Alle assoziierten Scans werden ebenfalls gelöscht",
|
||||||
"apartment-suite-etc": "Apartment, Wohnung, etc.",
|
"all-associated-teams-and-runners-will-be-deleted-too": "Alle assoziierten Teams und Läufer:innen werden auch gelöscht!",
|
||||||
"application_name": "Lauf für Kaya! - Admin",
|
"amount-per-kilometer": "Betrag pro Kilometer",
|
||||||
"applying-changes": "Änderungen anwenden",
|
"apartment-suite-etc": "Apartment, Wohnung, etc.",
|
||||||
"attention": "Achtung!",
|
"application_name": "Lauf für Kaya! - Admin",
|
||||||
"author": "Autor:in",
|
"applying-changes": "Änderungen anwenden",
|
||||||
"bitte-bestaetige-diese-laeufer-fuer-den-import": "Bitte die Läufer:innen für den Import bestätigen.",
|
"attention": "Achtung!",
|
||||||
"by": "von",
|
"author": "Autor:in",
|
||||||
"cancel": "Abbrechen",
|
"bitte-bestaetige-diese-laeufer-fuer-den-import": "Bitte die Läufer:innen für den Import bestätigen.",
|
||||||
"cancel-delete": "Löschen abbrechen",
|
"by": "von",
|
||||||
"cancel-keep-donor": "Abbrechen, Sponsor:in behalten",
|
"cancel": "Abbrechen",
|
||||||
"cancel-keep-organization": "Abbrechen und Organisation bearbeiten",
|
"cancel-delete": "Löschen abbrechen",
|
||||||
"cancel-keep-team": "Abbrechen, Team behalten",
|
"cancel-keep-donor": "Abbrechen, Sponsor:in behalten",
|
||||||
"cannot-reset-your-password-directly": "Schade. \nWir können das Passwort leider nicht direkt zurücksetzen.\nBitte sende uns eine Mail in der du deine Identität bestätigst.",
|
"cancel-keep-organization": "Abbrechen und Organisation bearbeiten",
|
||||||
"city": "Stadt",
|
"cancel-keep-station": "Abbrechen, Scannerstation behalten",
|
||||||
"close": "Schließen",
|
"cancel-keep-team": "Abbrechen, Team behalten",
|
||||||
"configure-the-tracks-and-minimum-lap-times": "Bearbeite die Tracks und ihre minimale Rundenzeit",
|
"cannot-reset-your-password-directly": "Schade. \nWir können das Passwort leider nicht direkt zurücksetzen.\nBitte sende uns eine Mail in der du deine Identität bestätigst.",
|
||||||
"confirm": "Bestätigen",
|
"city": "Stadt",
|
||||||
"confirm-delete": "Löschung Bestätigen",
|
"click-to-copy-token-to-clipboard": "Klick auf den Token, um ihn in die Zwischenablage zu kopieren.",
|
||||||
"confirm-delete-donor-with-all-donations": "Bestätigen, Sponsor:in mit allen Sponsorings löschen",
|
"close": "Schließen",
|
||||||
"confirm-delete-organization-and-associated-teams-runners": "Bestätugung, lösche die Organisation und alle zugehörigen Teams und Läufer:innen.",
|
"configure-the-tracks-and-minimum-lap-times": "Bearbeite die Tracks und ihre minimale Rundenzeit",
|
||||||
"confirm-delete-team-and-associated-runners": "Bestätigung, lösche das Team mitsamt seinen Läufer:innen.",
|
"confirm": "Bestätigen",
|
||||||
"confirm-deletion": "Löschung Bestätigen",
|
"confirm-delete": "Löschung Bestätigen",
|
||||||
"contact": "Kontakt",
|
"confirm-delete-donor-with-all-donations": "Bestätigen, Sponsor:in mit allen Sponsorings löschen",
|
||||||
"contact-deleted": "Kontakt gelöscht",
|
"confirm-delete-organization-and-associated-teams-runners": "Bestätugung, lösche die Organisation und alle zugehörigen Teams und Läufer:innen.",
|
||||||
"contact-information": "Kontaktinformation",
|
"confirm-delete-station-with-all-scans": "Bestätigung, die Scannerstation mit allen Scans löschen",
|
||||||
"contact-is-being-updated": "Kontakt wird aktualisiert ...",
|
"confirm-delete-team-and-associated-runners": "Bestätigung, lösche das Team mitsamt seinen Läufer:innen.",
|
||||||
"contact-is-not-a-member-in-any-group": "Kontakt gehört zu keiner Gruppe",
|
"confirm-deletion": "Löschung Bestätigen",
|
||||||
"contacts": "Kontakte",
|
"contact": "Kontakt",
|
||||||
"contacts-are-being-loaded": "Kontakte werden geladen ...",
|
"contact-deleted": "Kontakt gelöscht",
|
||||||
"count_organizations": "Organisationen (Anzahl)",
|
"contact-information": "Kontaktinformation",
|
||||||
"count_teams": "Teams (Anzahl)",
|
"contact-is-being-updated": "Kontakt wird aktualisiert ...",
|
||||||
"create": "Erstellen",
|
"contact-is-not-a-member-in-any-group": "Kontakt gehört zu keiner Gruppe",
|
||||||
"create-a-new": "Erstelle eine neue",
|
"contacts": "Kontakte",
|
||||||
"create-a-new-contact": "Kontakt erstellen",
|
"contacts-are-being-loaded": "Kontakte werden geladen ...",
|
||||||
"create-a-new-distance-donation": "Erstelle ein neues Sponsoring",
|
"copied-token-to-clipboard": "Token wurde in die Zwischenablage kopiert.",
|
||||||
"create-a-new-donor": "Neue Sponsor:in erstellen",
|
"count_organizations": "Organisationen (Anzahl)",
|
||||||
"create-a-new-fixed-donation": "Erstelle eine neue Festbetragsspende",
|
"count_teams": "Teams (Anzahl)",
|
||||||
"create-a-new-organization": "Neue Organisation anlegen",
|
"create": "Erstellen",
|
||||||
"create-a-new-runner": "Neue Läufer:in erstellen",
|
"create-a-new": "Erstelle eine neue",
|
||||||
"create-a-new-team": "Erstelle ein neues Team",
|
"create-a-new-contact": "Kontakt erstellen",
|
||||||
"create-a-new-track": "Neuen Track erstellen",
|
"create-a-new-distance-donation": "Erstelle ein neues Sponsoring",
|
||||||
"create-a-new-user": "Neue Benutzer:in anlegen",
|
"create-a-new-donor": "Neue Sponsor:in erstellen",
|
||||||
"create-a-new-user-group": "Erstelle eine neue Gruppe",
|
"create-a-new-fixed-donation": "Erstelle eine neue Festbetragsspende",
|
||||||
"create-organization": "Organisation erstellen",
|
"create-a-new-organization": "Neue Organisation anlegen",
|
||||||
"create-team": "Team erstellen",
|
"create-a-new-runner": "Neue Läufer:in erstellen",
|
||||||
"create-track": "Track erstellen",
|
"create-a-new-scanstation": "Neue Scannerstation erstellen",
|
||||||
"create-user": "Benutzer anlegen",
|
"create-a-new-team": "Erstelle ein neues Team",
|
||||||
"credits": "Credits",
|
"create-a-new-track": "Neuen Track erstellen",
|
||||||
"csv_import__class": "Klasse",
|
"create-a-new-user": "Neue Benutzer:in anlegen",
|
||||||
"csv_import__firstname": "Vorname",
|
"create-a-new-user-group": "Erstelle eine neue Gruppe",
|
||||||
"csv_import__lastname": "Nachname",
|
"create-organization": "Organisation erstellen",
|
||||||
"csv_import__middlename": "Mittelname",
|
"create-team": "Team erstellen",
|
||||||
"csv_import__team": "Team",
|
"create-track": "Track erstellen",
|
||||||
"dashboard-greeting": "Moin",
|
"create-user": "Benutzer anlegen",
|
||||||
"dashboard-title": "Dashboard",
|
"credits": "Credits",
|
||||||
"datatable": {
|
"csv_import__class": "Klasse",
|
||||||
"search": "🔍 Suche ...",
|
"csv_import__firstname": "Vorname",
|
||||||
"an_error_happened_while_fetching_the_data": "Beim Abrufen der Daten ist ein Fehler aufgetreten",
|
"csv_import__lastname": "Nachname",
|
||||||
"loading": "Wird geladen...",
|
"csv_import__middlename": "Mittelname",
|
||||||
"next": "Nächste",
|
"csv_import__team": "Team",
|
||||||
"of": "von",
|
"dashboard-greeting": "Moin",
|
||||||
"previous": "Vorherige",
|
"dashboard-title": "Dashboard",
|
||||||
"to": "bis",
|
"datatable": {
|
||||||
"showing": "Zeige",
|
"search": "🔍 Suche ...",
|
||||||
"no_matching_records_found": "Keine passenden Einträge gefunden",
|
"an_error_happened_while_fetching_the_data": "Beim Abrufen der Daten ist ein Fehler aufgetreten",
|
||||||
"page": "Seite",
|
"loading": "Wird geladen...",
|
||||||
"records": "Einträge",
|
"next": "Nächste",
|
||||||
"sort_column_ascending": "Spalte aufsteigend sortieren",
|
"of": "von",
|
||||||
"sort_column_descending": "Spalte absteigend sortieren"
|
"previous": "Vorherige",
|
||||||
},
|
"to": "bis",
|
||||||
"delete": "Löschen",
|
"showing": "Zeige",
|
||||||
"delete-contact": "Kontakt löschen",
|
"no_matching_records_found": "Keine passenden Einträge gefunden",
|
||||||
"delete-donation": "Sponsporing löschen",
|
"page": "Seite",
|
||||||
"delete-donor": "Sponsor:in löschen",
|
"records": "Einträge",
|
||||||
"delete-group": "Gruppe löschen",
|
"sort_column_ascending": "Spalte aufsteigend sortieren",
|
||||||
"delete-organization": "Organisation löschen",
|
"sort_column_descending": "Spalte absteigend sortieren"
|
||||||
"delete-runner": "Läufer:in löschen",
|
},
|
||||||
"delete-team": "Team Löschen",
|
"delete": "Löschen",
|
||||||
"delete-user": "Benutzer:in löschen",
|
"delete-contact": "Kontakt löschen",
|
||||||
"dependency_name": "Name",
|
"delete-donation": "Sponsporing löschen",
|
||||||
"description": "Beschreibung",
|
"delete-donor": "Sponsor:in löschen",
|
||||||
"description-optional": "Beschreibung (optional)",
|
"delete-group": "Gruppe löschen",
|
||||||
"deselect-all": "Alle abwählen",
|
"delete-organization": "Organisation löschen",
|
||||||
"details": "Details",
|
"delete-runner": "Läufer:in löschen",
|
||||||
"distance": "Distanz",
|
"delete-station": "Scannerstation löschen",
|
||||||
"distance-donation": "Sponsoring",
|
"delete-team": "Team Löschen",
|
||||||
"distance-in-km": "Distanz (in KM)",
|
"delete-user": "Benutzer:in löschen",
|
||||||
"do-you-want-to-delete-the-organization-delete_org-name": "Möchtest du die Organisation {orgname} löschen?",
|
"dependency_name": "Name",
|
||||||
"do-you-want-to-delete-the-team-delete_team-name": "Möchtest du das Team {teamname} löschen?",
|
"description": "Beschreibung",
|
||||||
"do-you-want-to-delete-this-donor-with-all-related-donations": "Möchtest du diese Sponsor:in mit all ihren Sponsorings löschen?",
|
"description-optional": "Beschreibung (optional)",
|
||||||
"donation-amount": "Sponsoringbetrag",
|
"deselect-all": "Alle abwählen",
|
||||||
"donation-amount-must-be-greater-that-0-00eur": "Der Sponsoringbetrag muss größer als 0.00€ sein.",
|
"details": "Details",
|
||||||
"donations": "Sponsorings",
|
"disabled": "deaktiviert",
|
||||||
"donor": "Sponsor:in",
|
"distance": "Distanz",
|
||||||
"donor-added": "Sponsor:in hinzugefügt",
|
"distance-donation": "Sponsoring",
|
||||||
"donor-deleted": "Sponsor:in gelöscht",
|
"distance-in-km": "Distanz (in KM)",
|
||||||
"donor-has-no-associated-donations": "Zur Sponsor:in gibt es noch keine Sponsorings",
|
"do-you-want-to-delete-the-organization-delete_org-name": "Möchtest du die Organisation {orgname} löschen?",
|
||||||
"donor-is-being-added": "Sponsor:in wird hinzugefügt...",
|
"do-you-want-to-delete-the-team-delete_team-name": "Möchtest du das Team {teamname} löschen?",
|
||||||
"donor-is-being-updated": "Sponsor:in wird aktualisiert",
|
"do-you-want-to-delete-this-donor-with-all-related-donations": "Möchtest du diese Sponsor:in mit all ihren Sponsorings löschen?",
|
||||||
"donors": "Sponsor:innen",
|
"donation-amount": "Sponsoringbetrag",
|
||||||
"donors-are-being-loaded": "Sponsor:innen werden geladen",
|
"donation-amount-must-be-greater-that-0-00eur": "Der Sponsoringbetrag muss größer als 0.00€ sein.",
|
||||||
"dont-have-your-email-connected": "Deine E-Mail ist nicht verknüpft?",
|
"donations": "Sponsorings",
|
||||||
"dont-panic-were-resetting-it": "Keine Panik, wir setzen es zurück ✌",
|
"donor": "Sponsor:in",
|
||||||
"e-mail-adress": "E-Mail-Adresse",
|
"donor-added": "Sponsor:in hinzugefügt",
|
||||||
"edit": "Bearbeiten",
|
"donor-deleted": "Sponsor:in gelöscht",
|
||||||
"edit-permissions": "Berechtigungen bearbeiten",
|
"donor-has-no-associated-donations": "Zur Sponsor:in gibt es noch keine Sponsorings",
|
||||||
"email_address_or_username": "E-Mail-Adresse/ Benutzername",
|
"donor-is-being-added": "Sponsor:in wird hinzugefügt...",
|
||||||
"english": "Englisch",
|
"donor-is-being-updated": "Sponsor:in wird aktualisiert",
|
||||||
"error_on_login": "😢Fehler beim Login",
|
"donors": "Sponsor:innen",
|
||||||
"erteilte": "Direkt erteilte",
|
"donors-are-being-loaded": "Sponsor:innen werden geladen",
|
||||||
"everything-is-more-fun-together": "Im Team macht's mehr Spaß 🏃♂️🏃♀️🏃♂️",
|
"dont-have-your-email-connected": "Deine E-Mail ist nicht verknüpft?",
|
||||||
"faq": "FAQ",
|
"dont-panic-were-resetting-it": "Keine Panik, wir setzen es zurück ✌",
|
||||||
"filter-by-organization-team": "Filtern nach Organisation / Team",
|
"e-mail-adress": "E-Mail-Adresse",
|
||||||
"first-name": "Vorname",
|
"edit": "Bearbeiten",
|
||||||
"first-name-is-required": "Vorname muss angegeben werden",
|
"edit-permissions": "Berechtigungen bearbeiten",
|
||||||
"fixed-donation": "Festbetragsspende",
|
"email_address_or_username": "E-Mail-Adresse/ Benutzername",
|
||||||
"forgot_password": "Passwort vergessen?",
|
"enabled": "aktiviert",
|
||||||
"geerbte": "geerbte",
|
"english": "Englisch",
|
||||||
"general-stats": "Allgemeine Statistiken",
|
"error-whyile-copying-to-clipboard": "Beim kopieren des Token in die Zwischenablage ist ein Fehler aufgetreten",
|
||||||
"general_promise_error": "😢 Ein unbekannter Fehler ist aufgetreten",
|
"error_on_login": "😢Fehler beim Login",
|
||||||
"generate-sponsoring-contract": "Sponsoringvertrag generieren",
|
"erteilte": "Direkt erteilte",
|
||||||
"generate-sponsoring-contracts": "Sponsoringverträge generieren",
|
"everything-is-more-fun-together": "Im Team macht's mehr Spaß 🏃♂️🏃♀️🏃♂️",
|
||||||
"generating-pdf": "Pdf wird generiert...",
|
"faq": "FAQ",
|
||||||
"generating-pdfs": "PDFs werden generiert...",
|
"filter-by-organization-team": "Filtern nach Organisation / Team",
|
||||||
"generic-ui-logic-error": "Etwas ist in der Benutzeroberfläche schiefgelaufen.",
|
"first-name": "Vorname",
|
||||||
"german": "Deutsch",
|
"first-name-is-required": "Vorname muss angegeben werden",
|
||||||
"go-to-login": "Zum Login",
|
"fixed-donation": "Festbetragsspende",
|
||||||
"goback": "Zur Startseite",
|
"forgot_password": "Passwort vergessen?",
|
||||||
"granted": "Gewährt",
|
"geerbte": "geerbte",
|
||||||
"group": "Gruppe",
|
"general-stats": "Allgemeine Statistiken",
|
||||||
"group-added": "Gruppe hinzugefügt",
|
"general_promise_error": "😢 Ein unbekannter Fehler ist aufgetreten",
|
||||||
"group-is-being-added": "Gruppe wird erstellt",
|
"generate-sponsoring-contract": "Sponsoringvertrag generieren",
|
||||||
"group-name-is-required": "Der Gruppenname muss angegeben werden.",
|
"generate-sponsoring-contracts": "Sponsoringverträge generieren",
|
||||||
"group-updated": "Gruppe aktualisiert",
|
"generating-pdf": "Pdf wird generiert...",
|
||||||
"groups": "Gruppen",
|
"generating-pdfs": "PDFs werden generiert...",
|
||||||
"home": "Start",
|
"generic-ui-logic-error": "Etwas ist in der Benutzeroberfläche schiefgelaufen.",
|
||||||
"icon-image-credits": "Wir möchten uns außerdem für die verwendeten Icons und Bilder bedanken bei:",
|
"german": "Deutsch",
|
||||||
"import-finished": "Import abgeschlossen",
|
"go-to-login": "Zum Login",
|
||||||
"import-runners": "Läufer:innen importieren",
|
"goback": "Zur Startseite",
|
||||||
"import__target-organization": "Ziel Organisation",
|
"granted": "Gewährt",
|
||||||
"imprint": "Impressum ",
|
"group": "Gruppe",
|
||||||
"imprint-loading": "Impressum lädt...",
|
"group-added": "Gruppe hinzugefügt",
|
||||||
"inactive": "Inaktiv",
|
"group-is-being-added": "Gruppe wird erstellt",
|
||||||
"installed-version": "Installierte Version",
|
"group-name-is-required": "Der Gruppenname muss angegeben werden.",
|
||||||
"internal-error": "Interner Fehler",
|
"group-updated": "Gruppe aktualisiert",
|
||||||
"invalid-mail-reset": "Das ist keine gültige E-Mail",
|
"groups": "Gruppen",
|
||||||
"laeufer-hinzufuegen": "Läufer:in hinzufügen",
|
"home": "Start",
|
||||||
"laeufer-importieren": "Läufer:innen importieren",
|
"icon-image-credits": "Wir möchten uns außerdem für die verwendeten Icons und Bilder bedanken bei:",
|
||||||
"last-name": "Nachname",
|
"import-finished": "Import abgeschlossen",
|
||||||
"last-name-is-required": "Nachname muss angegeben werden",
|
"import-runners": "Läufer:innen importieren",
|
||||||
"lfk-is-os": "Das \"Lauf für Kaya!\" Frontend ist (wie alle anderen Projekte für den \"LfK!\" auch) ein OpenSource Projekt.",
|
"import__target-organization": "Ziel Organisation",
|
||||||
"license": "Lizenz",
|
"imprint": "Impressum ",
|
||||||
"licenses-are-being-loaded": "Lizenzen werden geladen...",
|
"imprint-loading": "Impressum lädt...",
|
||||||
"loading-contact-details": "Kontaktdaten werden geladen ...",
|
"inactive": "Inaktiv",
|
||||||
"loading-donation-details": "Lade Sponsoringdetails",
|
"installed-version": "Installierte Version",
|
||||||
"loading-donor-details": "Lade Details",
|
"internal-error": "Interner Fehler",
|
||||||
"loading-runners": "Läufer:innen werden geladen...",
|
"invalid-mail-reset": "Das ist keine gültige E-Mail",
|
||||||
"log_in": "Anmelden",
|
"laeufer-hinzufuegen": "Läufer:in hinzufügen",
|
||||||
"log_in_to_your_account": "Bitte melde dich an",
|
"laeufer-importieren": "Läufer:innen importieren",
|
||||||
"login_is_checked": "Login wird überprüft",
|
"last-name": "Nachname",
|
||||||
"logout": "Abmelden",
|
"last-name-is-required": "Nachname muss angegeben werden",
|
||||||
"mail-validation-in-progress": "E-Mail Verifizierung läuft... ",
|
"lfk-is-os": "Das \"Lauf für Kaya!\" Frontend ist (wie alle anderen Projekte für den \"LfK!\" auch) ein OpenSource Projekt.",
|
||||||
"manage-admin-users": "Nutzer verwalten",
|
"license": "Lizenz",
|
||||||
"middle-name": "Mittelname",
|
"licenses-are-being-loaded": "Lizenzen werden geladen...",
|
||||||
"minimum-lap-time-in-s": "Minimale Rundenzeit (in Sekunden)",
|
"loading-contact-details": "Kontaktdaten werden geladen ...",
|
||||||
"minimum-lap-time-must-be-a-positive-number-or-0": "Die minimale Rundenzeit muss eine positive Zahl oder 0 sein",
|
"loading-donation-details": "Lade Sponsoringdetails",
|
||||||
"name": "Name",
|
"loading-donor-details": "Lade Details",
|
||||||
"name-is-required": "Der Gruppenname muss angegeben werden",
|
"loading-runners": "Läufer:innen werden geladen...",
|
||||||
"new-password": "Neues Passwort",
|
"loading-station-details": "Lade die Scannerstation-Details",
|
||||||
"no-contact-specified": "Kein Kontakt angegeben",
|
"log_in": "Anmelden",
|
||||||
"no-license-text-could-be-found": "Kein Lizenz-Text gefunden 😢",
|
"log_in_to_your_account": "Bitte melde dich an",
|
||||||
"no-organization-specified": "Keine Organisation angegeben",
|
"login_is_checked": "Login wird überprüft",
|
||||||
"no-tracks-added-yet": "Es wurden noch keine Tracks erstellt.",
|
"logout": "Abmelden",
|
||||||
"organization": "Organisation",
|
"mail-validation-in-progress": "E-Mail Verifizierung läuft... ",
|
||||||
"organization-added": "Organisation hinzugefügt",
|
"manage-admin-users": "Nutzer verwalten",
|
||||||
"organization-deleted": "Organisation gelöscht",
|
"middle-name": "Mittelname",
|
||||||
"organization-detail-is-being-loaded": "Organisationsdetails werden geladen ...",
|
"minimum-lap-time-in-s": "Minimale Rundenzeit (in Sekunden)",
|
||||||
"organization-is-being-added": "Organisation wird hinzugefügt ...",
|
"minimum-lap-time-must-be-a-positive-number-or-0": "Die minimale Rundenzeit muss eine positive Zahl oder 0 sein",
|
||||||
"organization-name-is-required": "Der Name muss angegeben werden",
|
"name": "Name",
|
||||||
"organizations": "Organisationen",
|
"name-is-required": "Der Gruppenname muss angegeben werden",
|
||||||
"organizations-are-being-loaded": "Organisationen werden geladen ...",
|
"new-password": "Neues Passwort",
|
||||||
"orgs": "Organisationen",
|
"no-contact-specified": "Kein Kontakt angegeben",
|
||||||
"oss_credit_description": "Wir verwenden eine Menge Open Source-Software bei diesen Projekten und möchten uns bei den folgenden Projekten und Mitwirkenden bedanken, die dazu beitragen, Open Source großartig zu machen!",
|
"no-license-text-could-be-found": "Kein Lizenz-Text gefunden 😢",
|
||||||
"password": "Passwort",
|
"no-organization-specified": "Keine Organisation angegeben",
|
||||||
"password-is-required": "Passwort muss angegeben werden",
|
"no-tracks-added-yet": "Es wurden noch keine Tracks erstellt.",
|
||||||
"password-reset-failed": "Passwort zurücksetzen ist fehlgeschlagen!",
|
"organization": "Organisation",
|
||||||
"password-reset-in-progress": "Passwort wird zurückgesetzt...",
|
"organization-added": "Organisation hinzugefügt",
|
||||||
"password-reset-mail-sent": "Passwort-Reset Mail wurde an \"{usersEmail}\" geschickt.",
|
"organization-deleted": "Organisation gelöscht",
|
||||||
"password-reset-successful": "Passwort erfolgreich zurückgesetzt!",
|
"organization-detail-is-being-loaded": "Organisationsdetails werden geladen ...",
|
||||||
"pdf-generation-failed": "PDF Generierung fehlgeschlagen!",
|
"organization-is-being-added": "Organisation wird hinzugefügt ...",
|
||||||
"pdf-successfully-generated": "PDF wurde erfolgreich generiert!",
|
"organization-name-is-required": "Der Name muss angegeben werden",
|
||||||
"pdfs-successfully-generated": "Alle PDFs wurden generiert!",
|
"organizations": "Organisationen",
|
||||||
"per-kilometer": "pro Kilometer",
|
"organizations-are-being-loaded": "Organisationen werden geladen ...",
|
||||||
"permissions": "Berechtigungen",
|
"orgs": "Orgs",
|
||||||
"permissions-updated": "Berechtigungen aktualisiert!",
|
"oss_credit_description": "Wir verwenden eine Menge Open Source-Software bei diesen Projekten und möchten uns bei den folgenden Projekten und Mitwirkenden bedanken, die dazu beitragen, Open Source großartig zu machen!",
|
||||||
"phone": "Telefon",
|
"password": "Passwort",
|
||||||
"please-provide-a-password": "Bitte gebe ein Passwort an...",
|
"password-is-required": "Passwort muss angegeben werden",
|
||||||
"please-provide-the-nessecary-information-to-add-a-new-donor": "Bitte mach die Notwendigen Angaben, um eine neue Sponsor:in zu erstellen",
|
"password-reset-failed": "Passwort zurücksetzen ist fehlgeschlagen!",
|
||||||
"please-provide-the-nessecary-information-to-create-a-new-donation": "Bitte gebe alle für das Sponsoring notwendigen Daten an.",
|
"password-reset-in-progress": "Passwort wird zurückgesetzt...",
|
||||||
"please-provide-the-required-csv-xlsx-file": "Bitte eine CSV oder XLSX Datei hochladen.",
|
"password-reset-mail-sent": "Passwort-Reset Mail wurde an \"{usersEmail}\" geschickt.",
|
||||||
"please-provide-the-required-information-for-creating-a-new-user-group": "Bitte gebe alle für eine neue Gruppe notwendigen Informationen an.",
|
"password-reset-successful": "Passwort erfolgreich zurückgesetzt!",
|
||||||
"please-provide-the-required-information-to-add-a-new-contact": "Bitte gebe alle nötigen Informationen an, im den neuen Kontakt zu erstellen.",
|
"pdf-generation-failed": "PDF Generierung fehlgeschlagen!",
|
||||||
"please-provide-the-required-information-to-add-a-new-organization": "Bitte gebe alle nötigen Informationen an, im die neue Organisation zu erstellen.",
|
"pdf-successfully-generated": "PDF wurde erfolgreich generiert!",
|
||||||
"please-provide-the-required-information-to-add-a-new-runner": "Bitte die benötigten Informationen angeben.",
|
"pdfs-successfully-generated": "Alle PDFs wurden generiert!",
|
||||||
"please-provide-the-required-information-to-add-a-new-team": "Bitte gebe alle nötigen Informationen an, im das neue Team zu erstellen.",
|
"per-kilometer": "pro Kilometer",
|
||||||
"please-provide-the-required-information-to-add-a-new-track": "Bitte die benötigten Informationen angeben.",
|
"permissions": "Berechtigungen",
|
||||||
"please-provide-the-required-information-to-add-a-new-user": "Bitte gebe alle nötigen Informationen an, im die neue Benutzer:in zu erstellen.",
|
"permissions-updated": "Berechtigungen aktualisiert!",
|
||||||
"please-request-a-new-reset-mail": "Bitte eine neue Passwortreset-Mail anfordern...",
|
"phone": "Telefon",
|
||||||
"privacy": "Datenschutz",
|
"please-copy-the-token-and-store-it-somewhere-save": "Bitte kopiere den Token und bewahre ihn sicher auf!",
|
||||||
"privacy-loading": "Datenschutzerklärung lädt...",
|
"please-provide-a-password": "Bitte gebe ein Passwort an...",
|
||||||
"profile-picture": "Profilbild",
|
"please-provide-the-nessecary-information-to-add-a-new-donor": "Bitte mach die Notwendigen Angaben, um eine neue Sponsor:in zu erstellen",
|
||||||
"read-license": "Lizenz-Text lesen",
|
"please-provide-the-nessecary-information-to-create-a-new-donation": "Bitte gebe alle für das Sponsoring notwendigen Daten an.",
|
||||||
"receipt-needed": "Spendenquittung benötigt",
|
"please-provide-the-required-csv-xlsx-file": "Bitte eine CSV oder XLSX Datei hochladen.",
|
||||||
"repo_link": "Link",
|
"please-provide-the-required-information-for-creating-a-new-user-group": "Bitte gebe alle für eine neue Gruppe notwendigen Informationen an.",
|
||||||
"request-a-new-reset-mail": "Neue Reset-Mail anfordern",
|
"please-provide-the-required-information-to-add-a-new-contact": "Bitte gebe alle nötigen Informationen an, im den neuen Kontakt zu erstellen.",
|
||||||
"reset-my-password": "Passwort zurücksetzen",
|
"please-provide-the-required-information-to-add-a-new-organization": "Bitte gebe alle nötigen Informationen an, im die neue Organisation zu erstellen.",
|
||||||
"reset-password": "Passwort zurücksetzen",
|
"please-provide-the-required-information-to-add-a-new-runner": "Bitte die benötigten Informationen angeben.",
|
||||||
"runner": "Läufer:in",
|
"please-provide-the-required-information-to-add-a-new-team": "Bitte gebe alle nötigen Informationen an, im das neue Team zu erstellen.",
|
||||||
"runner-added": "Läufer:in hinzugefügt",
|
"please-provide-the-required-information-to-add-a-new-track": "Bitte die benötigten Informationen angeben.",
|
||||||
"runner-import": "Läufer:innen Import",
|
"please-provide-the-required-information-to-add-a-new-user": "Bitte gebe alle nötigen Informationen an, im die neue Benutzer:in zu erstellen.",
|
||||||
"runner-is-being-added": "Läufer:in wird hinzugefügt...",
|
"please-provide-the-required-information-to-create-a-new-scanstation": "Bitte gebe alle Informationen an, die für die neue Scannerstation benötigt werden",
|
||||||
"runner-updated": "Läufer:in aktualisiert!",
|
"please-request-a-new-reset-mail": "Bitte eine neue Passwortreset-Mail anfordern...",
|
||||||
"runnerimport_verify_runners_org": "Bitte die Läufer:innen für den Import in die Organisation \"{org_name}\" bestätigen",
|
"privacy": "Datenschutz",
|
||||||
"runners": "Läufer",
|
"privacy-loading": "Datenschutzerklärung lädt...",
|
||||||
"runners-are-being-imported": "Läufer:innen werden importiert ...",
|
"profile-picture": "Profilbild",
|
||||||
"runners-are-being-loaded": "Läufer:innen werden geladen ...",
|
"read-license": "Lizenz-Text lesen",
|
||||||
"save": "Speichern",
|
"receipt-needed": "Spendenquittung benötigt",
|
||||||
"save-changes": "Änderungen speichern",
|
"repo_link": "Link",
|
||||||
"search-for-permission": "Berechtigungen durchsuchen",
|
"request-a-new-reset-mail": "Neue Reset-Mail anfordern",
|
||||||
"select-all": "Alle auswählen",
|
"reset-my-password": "Passwort zurücksetzen",
|
||||||
"select-language": "Sprache auswählen",
|
"reset-password": "Passwort zurücksetzen",
|
||||||
"send-a-mail-to-lfk-odit-services": "Sende eine Mail an lfk@odit.services",
|
"runner": "Läufer:in",
|
||||||
"set-the-user-active-inactive": "Den Benutzer auf (in)aktiv setzen",
|
"runner-added": "Läufer:in hinzugefügt",
|
||||||
"settings": "Einstellungen",
|
"runner-import": "Läufer:innen Import",
|
||||||
"something-about-the-group": "Infos zur Gruppe",
|
"runner-is-being-added": "Läufer:in wird hinzugefügt...",
|
||||||
"stats-are-being-loaded": "Die Statistiken werden geladen...",
|
"runner-updated": "Läufer:in aktualisiert!",
|
||||||
"status": "Status",
|
"runnerimport_verify_runners_org": "Bitte die Läufer:innen für den Import in die Organisation \"{org_name}\" bestätigen",
|
||||||
"successful-password-reset": "Passwort erfolgreich zurückgesetzt!",
|
"runners": "Läufer",
|
||||||
"team": "Team",
|
"runners-are-being-imported": "Läufer:innen werden importiert ...",
|
||||||
"team-detail-is-being-loaded": "Team wird geladen...",
|
"runners-are-being-loaded": "Läufer:innen werden geladen ...",
|
||||||
"team-name": "Teamname",
|
"save": "Speichern",
|
||||||
"team-name-is-required": "Teamname ist erforderlich",
|
"save-changes": "Änderungen speichern",
|
||||||
"teams": "Teams",
|
"scanstation": "Scannerstation",
|
||||||
"teams-are-being-loaded": "Teams werden geladen ...",
|
"scanstation-added": "Scannerstation hinzugefügt",
|
||||||
"the-provided-phone-number-is-invalid-less-than-br-greater-than-please-enter-a-valid-international-number": "Die angegebene Telefonnummer ist nicht korrekt. <br /> Bitte gebe eine Telefonnummer im internationalen Format an...",
|
"scanstation-is-being-added": "Scannerstation wird angelegt...",
|
||||||
"there-are-no-contacts-added-yet": "Es wurden noch keine Kontakte hinzugefügt.",
|
"scanstations": "Scannerstationen",
|
||||||
"there-are-no-donors-yet": "Es gibt noch keine Sponsor:innen",
|
"scanstations-are-being-loaded": "Scannerstationen werden geladen",
|
||||||
"there-are-no-groups-yet": "Es gibt noch keine Gruppen",
|
"search-for-permission": "Berechtigungen durchsuchen",
|
||||||
"there-are-no-organizations-added-yet": "Es wurden noch keine Organisationen hinzugefügt.",
|
"select-all": "Alle auswählen",
|
||||||
"there-are-no-runners-added-yet": "Es wurden noch keine Läufer:innen hinzugefügt.",
|
"select-language": "Sprache auswählen",
|
||||||
"there-are-no-teams-added-yet": "Es wurden noch keine Teams hinzugefügt.",
|
"send-a-mail-to-lfk-odit-services": "Sende eine Mail an lfk@odit.services",
|
||||||
"there-are-no-users-added-yet": "Es wurden noch keine Benutzer hinzugefügt.",
|
"set-the-user-active-inactive": "Den Benutzer auf (in)aktiv setzen",
|
||||||
"this-might-take-a-moment": "Das könnte einen kleinen Moment dauern",
|
"settings": "Einstellungen",
|
||||||
"total-distance": "gelaufene Strecke",
|
"something-about-the-group": "Infos zur Gruppe",
|
||||||
"total-donation-amount": "Gesamtbetrag",
|
"station-deleted": "Scannerstation wurde gelöscht",
|
||||||
"total-donations": "Spendensumme",
|
"station-is-being-updated": "Scannerstation wird aktualisiert",
|
||||||
"total-scans": "gesamte Scans",
|
"stats-are-being-loaded": "Die Statistiken werden geladen...",
|
||||||
"track-added": "Track hinzugefügt",
|
"status": "Status",
|
||||||
"track-data-is-being-loaded": "Trackdaten werden geladen",
|
"successful-password-reset": "Passwort erfolgreich zurückgesetzt!",
|
||||||
"track-is-being-added": "Track wird hinzugefügt...",
|
"team": "Team",
|
||||||
"track-length-in-m": "Tracklänge (in Metern)",
|
"team-detail-is-being-loaded": "Team wird geladen...",
|
||||||
"track-length-must-be-greater-than-0": "Die Länge muss größer als 0 (Meter) sein",
|
"team-name": "Teamname",
|
||||||
"track-name": "Trackname",
|
"team-name-is-required": "Teamname ist erforderlich",
|
||||||
"track-name-must-not-be-empty": "Der Name muss angegeben werden",
|
"teams": "Teams",
|
||||||
"tracks": "Tracks",
|
"teams-are-being-loaded": "Teams werden geladen ...",
|
||||||
"updated-contact": "Kontakt aktualisiert!",
|
"the-provided-phone-number-is-invalid-less-than-br-greater-than-please-enter-a-valid-international-number": "Die angegebene Telefonnummer ist nicht korrekt. <br /> Bitte gebe eine Telefonnummer im internationalen Format an...",
|
||||||
"updated-donor": "Sponsor:in wurde aktualisiert",
|
"the-scanstations-api-token-will-only-get-displayed-once-you-wont-be-able-to-change-or-view-it-again": "Der Token der Scannerstation wird nur einmal angezeigt - du kannst den Token nicht erneut anzeigen oder ändern!",
|
||||||
"updated-organization": "Organisation wurde aktualisiert",
|
"there-are-no-contacts-added-yet": "Es wurden noch keine Kontakte hinzugefügt.",
|
||||||
"updateing-group": "Gruppe wird aktualisiert...",
|
"there-are-no-donors-yet": "Es gibt noch keine Sponsor:innen",
|
||||||
"updating-organization": "Organisation wird aktualisiert",
|
"there-are-no-groups-yet": "Es gibt noch keine Gruppen",
|
||||||
"updating-permissions": "Berechtigungen werden aktualisiert...",
|
"there-are-no-organizations-added-yet": "Es wurden noch keine Organisationen hinzugefügt.",
|
||||||
"updating-runner": "Läufer:in wird aktualisiert.",
|
"there-are-no-runners-added-yet": "Es wurden noch keine Läufer:innen hinzugefügt.",
|
||||||
"updating-user": "Benutzer:in wird aktualisiert...",
|
"there-are-no-teams-added-yet": "Es wurden noch keine Teams hinzugefügt.",
|
||||||
"user-added": "Benutzer hinzugefügt",
|
"there-are-no-users-added-yet": "Es wurden noch keine Benutzer hinzugefügt.",
|
||||||
"user-groups": "Benutzergruppen",
|
"this-might-take-a-moment": "Das könnte einen kleinen Moment dauern",
|
||||||
"user-is-being-added": "Benutzer wird hinzugefügt ...",
|
"this-scanstation-is": "Diese Scannerstation ist ",
|
||||||
"user-updated": "Benutzer:in wurde aktualisiert",
|
"token": "Token",
|
||||||
"username": "Benutzername",
|
"total-distance": "gelaufene Strecke",
|
||||||
"users": "Benutzer",
|
"total-donation-amount": "Gesamtbetrag",
|
||||||
"valid-city-is-required": "Du musst eine Stadt angeben",
|
"total-donations": "Spendensumme",
|
||||||
"valid-email-is-required": "Es wird eine valide E-Mail Adresse benötigt",
|
"total-scans": "gesamte Scans",
|
||||||
"valid-international-phone-number-is-required": "Du musst eine Telefonnummer im internationalen Format angeben...",
|
"track": "Track",
|
||||||
"valid-zipcode-postal-code-is-required": "Du musst eine valide Postleitzahl angeben",
|
"track-added": "Track hinzugefügt",
|
||||||
"verfuegbare": "Verfügbar",
|
"track-data-is-being-loaded": "Trackdaten werden geladen",
|
||||||
"welcome_wavinghand": "Willkommen 👋",
|
"track-is-being-added": "Track wird hinzugefügt...",
|
||||||
"you-can-now-use-your-new-password-to-log-in-to-your-account": "Du kannst dich jetzt mit deinem neuen Passwort anmelden! 🎉",
|
"track-length-in-m": "Tracklänge (in Metern)",
|
||||||
"zip-postal-code": "Postleitzahl"
|
"track-length-must-be-greater-than-0": "Die Länge muss größer als 0 (Meter) sein",
|
||||||
}
|
"track-name": "Trackname",
|
||||||
|
"track-name-must-not-be-empty": "Der Name muss angegeben werden",
|
||||||
|
"tracks": "Tracks",
|
||||||
|
"updated-contact": "Kontakt aktualisiert!",
|
||||||
|
"updated-donor": "Sponsor:in wurde aktualisiert",
|
||||||
|
"updated-organization": "Organisation wurde aktualisiert",
|
||||||
|
"updated-station": "Scannerstation wurde aktualisiert",
|
||||||
|
"updateing-group": "Gruppe wird aktualisiert...",
|
||||||
|
"updating-organization": "Organisation wird aktualisiert",
|
||||||
|
"updating-permissions": "Berechtigungen werden aktualisiert...",
|
||||||
|
"updating-runner": "Läufer:in wird aktualisiert.",
|
||||||
|
"updating-user": "Benutzer:in wird aktualisiert...",
|
||||||
|
"user-added": "Benutzer hinzugefügt",
|
||||||
|
"user-groups": "Benutzergruppen",
|
||||||
|
"user-is-being-added": "Benutzer wird hinzugefügt ...",
|
||||||
|
"user-updated": "Benutzer:in wurde aktualisiert",
|
||||||
|
"username": "Benutzername",
|
||||||
|
"users": "Benutzer",
|
||||||
|
"valid-city-is-required": "Du musst eine Stadt angeben",
|
||||||
|
"valid-email-is-required": "Es wird eine valide E-Mail Adresse benötigt",
|
||||||
|
"valid-international-phone-number-is-required": "Du musst eine Telefonnummer im internationalen Format angeben...",
|
||||||
|
"valid-zipcode-postal-code-is-required": "Du musst eine valide Postleitzahl angeben",
|
||||||
|
"verfuegbare": "Verfügbar",
|
||||||
|
"welcome_wavinghand": "Willkommen 👋",
|
||||||
|
"yes-i-copied-the-token": "Ja, ich habe den Token kopiert.",
|
||||||
|
"you-can-now-use-your-new-password-to-log-in-to-your-account": "Du kannst dich jetzt mit deinem neuen Passwort anmelden! 🎉",
|
||||||
|
"you-dont-have-any-scanstations-yet": "Es gibt noch keine Scannerstationen",
|
||||||
|
"zip-postal-code": "Postleitzahl",
|
||||||
|
"enabled_large": "Aktiviert"
|
||||||
|
}
|
||||||
|
@ -1,311 +1,340 @@
|
|||||||
{
|
{
|
||||||
"404message": "Sorry, the page you are looking for could not be found.",
|
"404message": "Sorry, the page you are looking for could not be found.",
|
||||||
"404title": "Error 404",
|
"404title": "Error 404",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"action": "Action",
|
"action": "Action",
|
||||||
"active": "Active",
|
"active": "Active",
|
||||||
"add-donation": "Add donation",
|
"add-donation": "Add donation",
|
||||||
"add-donor": "add donor",
|
"add-donor": "add donor",
|
||||||
"add-user-group": "Add User Group",
|
"add-the-first-scanstation": "Add the first scanstation",
|
||||||
"add-your-first-contact": "Add your first contact",
|
"add-user-group": "Add User Group",
|
||||||
"add-your-first-donor": "add your first donor",
|
"add-your-first-contact": "Add your first contact",
|
||||||
"add-your-first-group": "Add your first group",
|
"add-your-first-donor": "add your first donor",
|
||||||
"add-your-first-organization": "Add your first organization",
|
"add-your-first-group": "Add your first group",
|
||||||
"add-your-first-runner": "Add your first runner",
|
"add-your-first-organization": "Add your first organization",
|
||||||
"add-your-first-team": "Add your first team",
|
"add-your-first-runner": "Add your first runner",
|
||||||
"add-your-first-track": "Add your first track.",
|
"add-your-first-team": "Add your first team",
|
||||||
"add-your-first-user": "Add your first user",
|
"add-your-first-track": "Add your first track.",
|
||||||
"address": "Address",
|
"add-your-first-user": "Add your first user",
|
||||||
"address-is-required": "Address is required",
|
"address": "Address",
|
||||||
"all-associated-donations-will-get-deleted-as-well": "All associated donations will get deleted as well",
|
"address-is-required": "Address is required",
|
||||||
"all-associated-runners-will-be-deleted-too": "All associated runners will be deleted too!",
|
"all-associated-donations-will-get-deleted-as-well": "All associated donations will get deleted as well",
|
||||||
"all-associated-teams-and-runners-will-be-deleted-too": "All associated teams and runners will be deleted too!",
|
"all-associated-runners-will-be-deleted-too": "All associated runners will be deleted too!",
|
||||||
"amount-per-kilometer": "Amount per kilometer",
|
"all-associated-scans-will-get-deleted-as-well": "All associated scans will get deleted as well",
|
||||||
"apartment-suite-etc": "Apartment, suite, etc.",
|
"all-associated-teams-and-runners-will-be-deleted-too": "All associated teams and runners will be deleted too!",
|
||||||
"application_name": "Lauf für Kaya! - Admin",
|
"amount-per-kilometer": "Amount per kilometer",
|
||||||
"applying-changes": "Applying Changes",
|
"apartment-suite-etc": "Apartment, suite, etc.",
|
||||||
"attention": "Attention!",
|
"application_name": "Lauf für Kaya! - Admin",
|
||||||
"author": "Author",
|
"applying-changes": "Applying Changes",
|
||||||
"bitte-bestaetige-diese-laeufer-fuer-den-import": "Please confirm these runners for import.",
|
"attention": "Attention!",
|
||||||
"by": "by",
|
"author": "Author",
|
||||||
"cancel": "Cancel",
|
"bitte-bestaetige-diese-laeufer-fuer-den-import": "Please confirm these runners for import.",
|
||||||
"cancel-delete": "Cancel Delete",
|
"by": "by",
|
||||||
"cancel-keep-donor": "Cancel, keep donor",
|
"cancel": "Cancel",
|
||||||
"cancel-keep-organization": "Cancel, keep organization",
|
"cancel-delete": "Cancel Delete",
|
||||||
"cancel-keep-team": "Cancel, keep team",
|
"cancel-keep-donor": "Cancel, keep donor",
|
||||||
"cannot-reset-your-password-directly": "Bummer. We unfortunately cannot reset your password directly. Please send us a mail and confirm your identity",
|
"cancel-keep-organization": "Cancel, keep organization",
|
||||||
"city": "City",
|
"cancel-keep-station": "Cancel, keep station",
|
||||||
"close": "Close",
|
"cancel-keep-team": "Cancel, keep team",
|
||||||
"configure-the-tracks-and-minimum-lap-times": "configure the tracks & minimum lap times",
|
"cannot-reset-your-password-directly": "Bummer. We unfortunately cannot reset your password directly. Please send us a mail and confirm your identity",
|
||||||
"confirm": "Confirm",
|
"city": "City",
|
||||||
"confirm-delete": "Confirm Delete",
|
"click-to-copy-token-to-clipboard": "Click to copy token to clipboard.",
|
||||||
"confirm-delete-donor-with-all-donations": "Confirm, delete donor with all donations",
|
"close": "Close",
|
||||||
"confirm-delete-organization-and-associated-teams-runners": "Confirm, delete organization and associated teams+runners.",
|
"configure-the-tracks-and-minimum-lap-times": "configure the tracks & minimum lap times",
|
||||||
"confirm-delete-team-and-associated-runners": "Confirm, delete team and associated runners.",
|
"confirm": "Confirm",
|
||||||
"confirm-deletion": "Confirm Deletion",
|
"confirm-delete": "Confirm Delete",
|
||||||
"contact": "Contact",
|
"confirm-delete-donor-with-all-donations": "Confirm, delete donor with all donations",
|
||||||
"contact-deleted": "Contact deleted",
|
"confirm-delete-organization-and-associated-teams-runners": "Confirm, delete organization and associated teams+runners.",
|
||||||
"contact-information": "Contact Information",
|
"confirm-delete-station-with-all-scans": "Confirm, delete station with all scans",
|
||||||
"contact-is-being-updated": "Contact is being updated...",
|
"confirm-delete-team-and-associated-runners": "Confirm, delete team and associated runners.",
|
||||||
"contact-is-not-a-member-in-any-group": "Contact is not a member in any group",
|
"confirm-deletion": "Confirm Deletion",
|
||||||
"contacts": "Contacts",
|
"contact": "Contact",
|
||||||
"contacts-are-being-loaded": "contacts are being loaded...",
|
"contact-deleted": "Contact deleted",
|
||||||
"count_organizations": "# Organizations",
|
"contact-information": "Contact Information",
|
||||||
"count_teams": "# Teams",
|
"contact-is-being-updated": "Contact is being updated...",
|
||||||
"create": "Create",
|
"contact-is-not-a-member-in-any-group": "Contact is not a member in any group",
|
||||||
"create-a-new": "Create a new",
|
"contacts": "Contacts",
|
||||||
"create-a-new-contact": "Create a new contact",
|
"contacts-are-being-loaded": "contacts are being loaded...",
|
||||||
"create-a-new-distance-donation": "Create a new distance donation",
|
"copied-token-to-clipboard": "Copied token to clipboard",
|
||||||
"create-a-new-donor": "Create a new donor",
|
"count_organizations": "# Organizations",
|
||||||
"create-a-new-fixed-donation": "Create a new fixed donation",
|
"count_teams": "# Teams",
|
||||||
"create-a-new-organization": "Create a new Organization",
|
"create": "Create",
|
||||||
"create-a-new-runner": "Create a new Runner",
|
"create-a-new": "Create a new",
|
||||||
"create-a-new-team": "Create a new team",
|
"create-a-new-contact": "Create a new contact",
|
||||||
"create-a-new-track": "Create a new Track",
|
"create-a-new-distance-donation": "Create a new distance donation",
|
||||||
"create-a-new-user": "Create a new User",
|
"create-a-new-donor": "Create a new donor",
|
||||||
"create-a-new-user-group": "Create a new user group",
|
"create-a-new-fixed-donation": "Create a new fixed donation",
|
||||||
"create-organization": "Create Organization",
|
"create-a-new-organization": "Create a new Organization",
|
||||||
"create-team": "Create Team",
|
"create-a-new-runner": "Create a new Runner",
|
||||||
"create-track": "Create Track",
|
"create-a-new-scanstation": "Create a new scanstation",
|
||||||
"create-user": "Create User",
|
"create-a-new-team": "Create a new team",
|
||||||
"credits": "Credits",
|
"create-a-new-track": "Create a new Track",
|
||||||
"csv_import__class": "Class",
|
"create-a-new-user": "Create a new User",
|
||||||
"csv_import__firstname": "Firstname",
|
"create-a-new-user-group": "Create a new user group",
|
||||||
"csv_import__lastname": "Lastname",
|
"create-organization": "Create Organization",
|
||||||
"csv_import__middlename": "Middlename",
|
"create-team": "Create Team",
|
||||||
"csv_import__team": "Team",
|
"create-track": "Create Track",
|
||||||
"dashboard-greeting": "hello there",
|
"create-user": "Create User",
|
||||||
"dashboard-title": "Dashboard",
|
"credits": "Credits",
|
||||||
"datatable": {
|
"csv_import__class": "Class",
|
||||||
"search": "🔍 Search...",
|
"csv_import__firstname": "Firstname",
|
||||||
"sort_column_ascending": "Sort column ascending",
|
"csv_import__lastname": "Lastname",
|
||||||
"sort_column_descending": "Sort column descending",
|
"csv_import__middlename": "Middlename",
|
||||||
"previous": "Previous",
|
"csv_import__team": "Team",
|
||||||
"next": "Next",
|
"dashboard-greeting": "hello there",
|
||||||
"page": "Page",
|
"dashboard-title": "Dashboard",
|
||||||
"showing": "Showing",
|
"datatable": {
|
||||||
"records": "Records",
|
"search": "🔍 Search...",
|
||||||
"of": "of",
|
"sort_column_ascending": "Sort column ascending",
|
||||||
"to": "to",
|
"sort_column_descending": "Sort column descending",
|
||||||
"loading": "Loading...",
|
"previous": "Previous",
|
||||||
"no_matching_records_found": "No matching records found",
|
"next": "Next",
|
||||||
"an_error_happened_while_fetching_the_data": "An error happened while fetching the data"
|
"page": "Page",
|
||||||
},
|
"showing": "Showing",
|
||||||
"delete": "Delete",
|
"records": "Records",
|
||||||
"delete-contact": "Delete Contact",
|
"of": "of",
|
||||||
"delete-donation": "Delete Donation",
|
"to": "to",
|
||||||
"delete-donor": "Delete donor",
|
"loading": "Loading...",
|
||||||
"delete-group": "Delete Group",
|
"no_matching_records_found": "No matching records found",
|
||||||
"delete-organization": "Delete Organization",
|
"an_error_happened_while_fetching_the_data": "An error happened while fetching the data"
|
||||||
"delete-runner": "Delete Runner",
|
},
|
||||||
"delete-team": "Delete Team",
|
"delete": "Delete",
|
||||||
"delete-user": "Delete User",
|
"delete-contact": "Delete Contact",
|
||||||
"dependency_name": "Name",
|
"delete-donation": "Delete Donation",
|
||||||
"description": "description",
|
"delete-donor": "Delete donor",
|
||||||
"description-optional": "Description (optional)",
|
"delete-group": "Delete Group",
|
||||||
"deselect-all": "deselect all",
|
"delete-organization": "Delete Organization",
|
||||||
"details": "Details",
|
"delete-runner": "Delete Runner",
|
||||||
"distance": "Distance",
|
"delete-station": "Delete station",
|
||||||
"distance-donation": "distance donation",
|
"delete-team": "Delete Team",
|
||||||
"distance-in-km": "Distance in km",
|
"delete-user": "Delete User",
|
||||||
"do-you-want-to-delete-the-organization-delete_org-name": "Do you want to delete the organization {orgname}?",
|
"dependency_name": "Name",
|
||||||
"do-you-want-to-delete-the-team-delete_team-name": "Do you want to delete the team {teamname}?",
|
"description": "description",
|
||||||
"do-you-want-to-delete-this-donor-with-all-related-donations": "Do you want to delete this donor with all related donations",
|
"description-optional": "Description (optional)",
|
||||||
"donation-amount": "Donation amount",
|
"deselect-all": "deselect all",
|
||||||
"donation-amount-must-be-greater-that-0-00eur": "Donation amount must be greater that 0.00€",
|
"details": "Details",
|
||||||
"donations": "Donations",
|
"disabled": "disabled",
|
||||||
"donor": "Donor",
|
"distance": "Distance",
|
||||||
"donor-added": "Donor added",
|
"distance-donation": "distance donation",
|
||||||
"donor-deleted": "donor deleted",
|
"distance-in-km": "Distance in km",
|
||||||
"donor-has-no-associated-donations": "Donor has no associated donations.",
|
"do-you-want-to-delete-the-organization-delete_org-name": "Do you want to delete the organization {orgname}?",
|
||||||
"donor-is-being-added": "Donor is being added...",
|
"do-you-want-to-delete-the-team-delete_team-name": "Do you want to delete the team {teamname}?",
|
||||||
"donor-is-being-updated": "Donor is being updated",
|
"do-you-want-to-delete-this-donor-with-all-related-donations": "Do you want to delete this donor with all related donations",
|
||||||
"donors": "Donors",
|
"donation-amount": "Donation amount",
|
||||||
"donors-are-being-loaded": "donors are being loaded",
|
"donation-amount-must-be-greater-that-0-00eur": "Donation amount must be greater that 0.00€",
|
||||||
"dont-have-your-email-connected": "Don't have your email connected?",
|
"donations": "Donations",
|
||||||
"dont-panic-were-resetting-it": "Don't panic, we're resetting it ✌",
|
"donor": "Donor",
|
||||||
"e-mail-adress": "E-Mail Adress",
|
"donor-added": "Donor added",
|
||||||
"edit": "Edit",
|
"donor-deleted": "donor deleted",
|
||||||
"edit-permissions": "edit permissions",
|
"donor-has-no-associated-donations": "Donor has no associated donations.",
|
||||||
"email_address_or_username": "Email / username",
|
"donor-is-being-added": "Donor is being added...",
|
||||||
"english": "English",
|
"donor-is-being-updated": "Donor is being updated",
|
||||||
"error_on_login": "Error on login",
|
"donors": "Donors",
|
||||||
"erteilte": "Directly granted",
|
"donors-are-being-loaded": "donors are being loaded",
|
||||||
"everything-is-more-fun-together": "everything is more fun together 🏃♂️🏃♀️🏃♂️",
|
"dont-have-your-email-connected": "Don't have your email connected?",
|
||||||
"faq": "FAQ",
|
"dont-panic-were-resetting-it": "Don't panic, we're resetting it ✌",
|
||||||
"filter-by-organization-team": "Filter by Organization/ Team",
|
"e-mail-adress": "E-Mail Adress",
|
||||||
"first-name": "First name",
|
"edit": "Edit",
|
||||||
"first-name-is-required": "First Name is required",
|
"edit-permissions": "edit permissions",
|
||||||
"fixed-donation": "fixed donation",
|
"email_address_or_username": "Email / username",
|
||||||
"forgot_password": "Forgot your password?",
|
"enabled": "enabled",
|
||||||
"geerbte": "inherited",
|
"english": "English",
|
||||||
"general-stats": "General Stats",
|
"error-whyile-copying-to-clipboard": "Error whyile copying to clipboard",
|
||||||
"general_promise_error": "😢 Error",
|
"error_on_login": "Error on login",
|
||||||
"generate-sponsoring-contract": "generate sponsoring contract",
|
"erteilte": "Directly granted",
|
||||||
"generate-sponsoring-contracts": "generate sponsoring contracts",
|
"everything-is-more-fun-together": "everything is more fun together 🏃♂️🏃♀️🏃♂️",
|
||||||
"generating-pdf": "generating PDF...",
|
"faq": "FAQ",
|
||||||
"generating-pdfs": "generating PDFs...",
|
"filter-by-organization-team": "Filter by Organization/ Team",
|
||||||
"generic-ui-logic-error": "Something went wrong in the UI logic",
|
"first-name": "First name",
|
||||||
"german": "German",
|
"first-name-is-required": "First Name is required",
|
||||||
"go-to-login": "Go To Login",
|
"fixed-donation": "fixed donation",
|
||||||
"goback": "Go Home",
|
"forgot_password": "Forgot your password?",
|
||||||
"granted": "granted",
|
"geerbte": "inherited",
|
||||||
"group": "Group",
|
"general-stats": "General Stats",
|
||||||
"group-added": "Group added",
|
"general_promise_error": "😢 Error",
|
||||||
"group-is-being-added": "Group is being added...",
|
"generate-sponsoring-contract": "generate sponsoring contract",
|
||||||
"group-name-is-required": "Group name is required",
|
"generate-sponsoring-contracts": "generate sponsoring contracts",
|
||||||
"group-updated": "group updated",
|
"generating-pdf": "generating PDF...",
|
||||||
"groups": "Groups",
|
"generating-pdfs": "generating PDFs...",
|
||||||
"home": "Home",
|
"generic-ui-logic-error": "Something went wrong in the UI logic",
|
||||||
"icon-image-credits": "We also want to thank these projects for illustrations and icons:",
|
"german": "German",
|
||||||
"import-finished": "Import finished",
|
"go-to-login": "Go To Login",
|
||||||
"import-runners": "Import runners",
|
"goback": "Go Home",
|
||||||
"import__target-organization": "Target Organization",
|
"granted": "granted",
|
||||||
"imprint": "Imprint",
|
"group": "Group",
|
||||||
"imprint-loading": "Imprint loading...",
|
"group-added": "Group added",
|
||||||
"inactive": "Inactive",
|
"group-is-being-added": "Group is being added...",
|
||||||
"installed-version": "Installed version",
|
"group-name-is-required": "Group name is required",
|
||||||
"internal-error": "Internal Error",
|
"group-updated": "group updated",
|
||||||
"invalid-mail-reset": "the provided email is invalid",
|
"groups": "Groups",
|
||||||
"laeufer-hinzufuegen": "Add runner",
|
"home": "Home",
|
||||||
"laeufer-importieren": "Läufer importieren",
|
"icon-image-credits": "We also want to thank these projects for illustrations and icons:",
|
||||||
"last-name": "Last name",
|
"import-finished": "Import finished",
|
||||||
"last-name-is-required": "Last Name is required",
|
"import-runners": "Import runners",
|
||||||
"lfk-is-os": "The \"Lauf für Kaya!\" Frontend is (like all other projects for the \"LfK!\" Also) an open source project.",
|
"import__target-organization": "Target Organization",
|
||||||
"license": "License",
|
"imprint": "Imprint",
|
||||||
"licenses-are-being-loaded": "Licenses are being loaded...",
|
"imprint-loading": "Imprint loading...",
|
||||||
"loading-contact-details": "Loading contact details...",
|
"inactive": "Inactive",
|
||||||
"loading-donation-details": "Loading donation details",
|
"installed-version": "Installed version",
|
||||||
"loading-donor-details": "Loading donor details",
|
"internal-error": "Internal Error",
|
||||||
"loading-runners": "loading runners...",
|
"invalid-mail-reset": "the provided email is invalid",
|
||||||
"log_in": "Log in",
|
"laeufer-hinzufuegen": "Add runner",
|
||||||
"log_in_to_your_account": "Log in to your account",
|
"laeufer-importieren": "Läufer importieren",
|
||||||
"login_is_checked": "Login is being checked...",
|
"last-name": "Last name",
|
||||||
"logout": "Logout",
|
"last-name-is-required": "Last Name is required",
|
||||||
"mail-validation-in-progress": "mail validation in progress...",
|
"lfk-is-os": "The \"Lauf für Kaya!\" Frontend is (like all other projects for the \"LfK!\" Also) an open source project.",
|
||||||
"manage-admin-users": "manage admin users",
|
"license": "License",
|
||||||
"middle-name": "Middle name",
|
"licenses-are-being-loaded": "Licenses are being loaded...",
|
||||||
"minimum-lap-time-in-s": "minimum lap time in s",
|
"loading-contact-details": "Loading contact details...",
|
||||||
"minimum-lap-time-must-be-a-positive-number-or-0": "minimum lap time must be a positive number or 0",
|
"loading-donation-details": "Loading donation details",
|
||||||
"name": "Name",
|
"loading-donor-details": "Loading donor details",
|
||||||
"name-is-required": "Name is required",
|
"loading-runners": "loading runners...",
|
||||||
"new-password": "New password",
|
"loading-station-details": "Loading station details",
|
||||||
"no-contact-specified": "no contact specified",
|
"log_in": "Log in",
|
||||||
"no-license-text-could-be-found": "No license text could be found 😢",
|
"log_in_to_your_account": "Log in to your account",
|
||||||
"no-organization-specified": "no organization specified",
|
"login_is_checked": "Login is being checked...",
|
||||||
"no-tracks-added-yet": "there are no tracks added yet.",
|
"logout": "Logout",
|
||||||
"organization": "Organization",
|
"mail-validation-in-progress": "mail validation in progress...",
|
||||||
"organization-added": "Organization added",
|
"manage-admin-users": "manage admin users",
|
||||||
"organization-deleted": "Organization deleted",
|
"middle-name": "Middle name",
|
||||||
"organization-detail-is-being-loaded": "organization detail is being loaded...",
|
"minimum-lap-time-in-s": "minimum lap time in s",
|
||||||
"organization-is-being-added": "Organization is being added...",
|
"minimum-lap-time-must-be-a-positive-number-or-0": "minimum lap time must be a positive number or 0",
|
||||||
"organization-name-is-required": "Organization name is required",
|
"name": "Name",
|
||||||
"organizations": "Organizations",
|
"name-is-required": "Name is required",
|
||||||
"organizations-are-being-loaded": "organizations are being loaded...",
|
"new-password": "New password",
|
||||||
"orgs": "Orgs",
|
"no-contact-specified": "no contact specified",
|
||||||
"oss_credit_description": "We use a lot of open source software on these projects, and would like to thank the following projects and contributors who help make open source great!",
|
"no-license-text-could-be-found": "No license text could be found 😢",
|
||||||
"password": "Password",
|
"no-organization-specified": "no organization specified",
|
||||||
"password-is-required": "Password is required",
|
"no-tracks-added-yet": "there are no tracks added yet.",
|
||||||
"password-reset-failed": "Password reset failed!",
|
"organization": "Organization",
|
||||||
"password-reset-in-progress": "Password Reset in Progress...",
|
"organization-added": "Organization added",
|
||||||
"password-reset-mail-sent": "Password reset mail was sent to \"{usersEmail}\".",
|
"organization-deleted": "Organization deleted",
|
||||||
"password-reset-successful": "Password Reset successful!",
|
"organization-detail-is-being-loaded": "organization detail is being loaded...",
|
||||||
"pdf-generation-failed": "PDF generation failed!",
|
"organization-is-being-added": "Organization is being added...",
|
||||||
"pdf-successfully-generated": "PDF successfully generated!",
|
"organization-name-is-required": "Organization name is required",
|
||||||
"pdfs-successfully-generated": "PDFs successfully generated!",
|
"organizations": "Organizations",
|
||||||
"per-kilometer": "per Kilometer",
|
"organizations-are-being-loaded": "organizations are being loaded...",
|
||||||
"permissions": "Permissions",
|
"orgs": "Orgs",
|
||||||
"permissions-updated": "Permissions updated!",
|
"oss_credit_description": "We use a lot of open source software on these projects, and would like to thank the following projects and contributors who help make open source great!",
|
||||||
"phone": "Phone",
|
"password": "Password",
|
||||||
"please-provide-a-password": "Please provide a password...",
|
"password-is-required": "Password is required",
|
||||||
"please-provide-the-nessecary-information-to-add-a-new-donor": "Please provide the nessecary information to add a new donor",
|
"password-reset-failed": "Password reset failed!",
|
||||||
"please-provide-the-nessecary-information-to-create-a-new-donation": "Please provide the nessecary information to create a new donation",
|
"password-reset-in-progress": "Password Reset in Progress...",
|
||||||
"please-provide-the-required-csv-xlsx-file": "Please provide the required csv/ xlsx file",
|
"password-reset-mail-sent": "Password reset mail was sent to \"{usersEmail}\".",
|
||||||
"please-provide-the-required-information-for-creating-a-new-user-group": "Please provide the required information for creating a new user group.",
|
"password-reset-successful": "Password Reset successful!",
|
||||||
"please-provide-the-required-information-to-add-a-new-contact": "Please provide the required information to add a new contact.",
|
"pdf-generation-failed": "PDF generation failed!",
|
||||||
"please-provide-the-required-information-to-add-a-new-organization": "Please provide the required information to add a new organization.",
|
"pdf-successfully-generated": "PDF successfully generated!",
|
||||||
"please-provide-the-required-information-to-add-a-new-runner": "Please provide the required information to add a new runner.",
|
"pdfs-successfully-generated": "PDFs successfully generated!",
|
||||||
"please-provide-the-required-information-to-add-a-new-team": "Please provide the required information to add a new team.",
|
"per-kilometer": "per Kilometer",
|
||||||
"please-provide-the-required-information-to-add-a-new-track": "Please provide the required information to add a new track.",
|
"permissions": "Permissions",
|
||||||
"please-provide-the-required-information-to-add-a-new-user": "Please provide the required information to add a new user.",
|
"permissions-updated": "Permissions updated!",
|
||||||
"please-request-a-new-reset-mail": "Please request a new reset mail...",
|
"phone": "Phone",
|
||||||
"privacy": "Privacy",
|
"please-copy-the-token-and-store-it-somewhere-save": "Please copy the token and store it somewhere save!",
|
||||||
"privacy-loading": "Privacy loading...",
|
"please-provide-a-password": "Please provide a password...",
|
||||||
"profile-picture": "Profile Picture",
|
"please-provide-the-nessecary-information-to-add-a-new-donor": "Please provide the nessecary information to add a new donor",
|
||||||
"read-license": "Read License",
|
"please-provide-the-nessecary-information-to-create-a-new-donation": "Please provide the nessecary information to create a new donation",
|
||||||
"receipt-needed": "Receipt needed",
|
"please-provide-the-required-csv-xlsx-file": "Please provide the required csv/ xlsx file",
|
||||||
"repo_link": "Link",
|
"please-provide-the-required-information-for-creating-a-new-user-group": "Please provide the required information for creating a new user group.",
|
||||||
"request-a-new-reset-mail": "Request a new reset mail",
|
"please-provide-the-required-information-to-add-a-new-contact": "Please provide the required information to add a new contact.",
|
||||||
"reset-my-password": "Reset my password",
|
"please-provide-the-required-information-to-add-a-new-organization": "Please provide the required information to add a new organization.",
|
||||||
"reset-password": "Reset your password",
|
"please-provide-the-required-information-to-add-a-new-runner": "Please provide the required information to add a new runner.",
|
||||||
"runner": "Runner",
|
"please-provide-the-required-information-to-add-a-new-team": "Please provide the required information to add a new team.",
|
||||||
"runner-added": "Runner added",
|
"please-provide-the-required-information-to-add-a-new-track": "Please provide the required information to add a new track.",
|
||||||
"runner-import": "Runner Import",
|
"please-provide-the-required-information-to-add-a-new-user": "Please provide the required information to add a new user.",
|
||||||
"runner-is-being-added": "Runner is being added...",
|
"please-provide-the-required-information-to-create-a-new-scanstation": "Please provide the required information to create a new scanstation",
|
||||||
"runner-updated": "Runner updated!",
|
"please-request-a-new-reset-mail": "Please request a new reset mail...",
|
||||||
"runnerimport_verify_runners_org": "Please confirm these runners for import into the organization \"{org_name}\"",
|
"privacy": "Privacy",
|
||||||
"runners": "Runners",
|
"privacy-loading": "Privacy loading...",
|
||||||
"runners-are-being-imported": "Runners are being imported...",
|
"profile-picture": "Profile Picture",
|
||||||
"runners-are-being-loaded": "runners are being loaded...",
|
"read-license": "Read License",
|
||||||
"save": "Save",
|
"receipt-needed": "Receipt needed",
|
||||||
"save-changes": "Save Changes",
|
"repo_link": "Link",
|
||||||
"search-for-permission": "Search for permission",
|
"request-a-new-reset-mail": "Request a new reset mail",
|
||||||
"select-all": "select all",
|
"reset-my-password": "Reset my password",
|
||||||
"select-language": "Select language",
|
"reset-password": "Reset your password",
|
||||||
"send-a-mail-to-lfk-odit-services": "send a mail to lfk@odit.services",
|
"runner": "Runner",
|
||||||
"set-the-user-active-inactive": "set the user active/ inactive",
|
"runner-added": "Runner added",
|
||||||
"settings": "Settings",
|
"runner-import": "Runner Import",
|
||||||
"something-about-the-group": "Something about the group...",
|
"runner-is-being-added": "Runner is being added...",
|
||||||
"stats-are-being-loaded": "stats are being loaded...",
|
"runner-updated": "Runner updated!",
|
||||||
"status": "Status",
|
"runnerimport_verify_runners_org": "Please confirm these runners for import into the organization \"{org_name}\"",
|
||||||
"successful-password-reset": "Successful password reset!",
|
"runners": "Runners",
|
||||||
"team": "Team",
|
"runners-are-being-imported": "Runners are being imported...",
|
||||||
"team-detail-is-being-loaded": "team detail is being loaded...",
|
"runners-are-being-loaded": "runners are being loaded...",
|
||||||
"team-name": "Team name",
|
"save": "Save",
|
||||||
"team-name-is-required": "team name is required",
|
"save-changes": "Save Changes",
|
||||||
"teams": "Teams",
|
"scanstation": "Scanstation",
|
||||||
"teams-are-being-loaded": "teams are being loaded...",
|
"scanstation-added": "Scanstation added",
|
||||||
"the-provided-phone-number-is-invalid-less-than-br-greater-than-please-enter-a-valid-international-number": "the provided phone number is invalid.<br />please enter a valid international number...",
|
"scanstation-is-being-added": "Scanstation is being added...",
|
||||||
"there-are-no-contacts-added-yet": "There are no contacts added yet.",
|
"scanstations": "Scanstations",
|
||||||
"there-are-no-donors-yet": "There are no donors yet",
|
"scanstations-are-being-loaded": "Scanstations are being loaded",
|
||||||
"there-are-no-groups-yet": "There are no groups yet",
|
"search-for-permission": "Search for permission",
|
||||||
"there-are-no-organizations-added-yet": "There are no organizations added yet.",
|
"select-all": "select all",
|
||||||
"there-are-no-runners-added-yet": "There are no runners added yet.",
|
"select-language": "Select language",
|
||||||
"there-are-no-teams-added-yet": "There are no teams added yet.",
|
"send-a-mail-to-lfk-odit-services": "send a mail to lfk@odit.services",
|
||||||
"there-are-no-users-added-yet": "There are no users added yet.",
|
"set-the-user-active-inactive": "set the user active/ inactive",
|
||||||
"this-might-take-a-moment": "This might take a moment 👀",
|
"settings": "Settings",
|
||||||
"total-distance": "total distance",
|
"something-about-the-group": "Something about the group...",
|
||||||
"total-donation-amount": "total donation amount",
|
"station-deleted": "Station deleted",
|
||||||
"total-donations": "total donations",
|
"station-is-being-updated": "Station is being updated",
|
||||||
"total-scans": "total scans",
|
"stats-are-being-loaded": "stats are being loaded...",
|
||||||
"track-added": "Track added",
|
"status": "Status",
|
||||||
"track-data-is-being-loaded": "Track data is being loaded",
|
"successful-password-reset": "Successful password reset!",
|
||||||
"track-is-being-added": "Track is being added...",
|
"team": "Team",
|
||||||
"track-length-in-m": "Track Length in m",
|
"team-detail-is-being-loaded": "team detail is being loaded...",
|
||||||
"track-length-must-be-greater-than-0": "Track length must be greater than 0",
|
"team-name": "Team name",
|
||||||
"track-name": "Track name",
|
"team-name-is-required": "team name is required",
|
||||||
"track-name-must-not-be-empty": "Track name must not be empty",
|
"teams": "Teams",
|
||||||
"tracks": "Tracks",
|
"teams-are-being-loaded": "teams are being loaded...",
|
||||||
"updated-contact": "Updated contact!",
|
"the-provided-phone-number-is-invalid-less-than-br-greater-than-please-enter-a-valid-international-number": "the provided phone number is invalid.<br />please enter a valid international number...",
|
||||||
"updated-donor": "updated donor",
|
"the-scanstations-api-token-will-only-get-displayed-once-you-wont-be-able-to-change-or-view-it-again": "The scanstation's api token will only get displayed once - you won't be able to change or view it again!",
|
||||||
"updated-organization": "updated organization",
|
"there-are-no-contacts-added-yet": "There are no contacts added yet.",
|
||||||
"updateing-group": "updateing group...",
|
"there-are-no-donors-yet": "There are no donors yet",
|
||||||
"updating-organization": "updating organization",
|
"there-are-no-groups-yet": "There are no groups yet",
|
||||||
"updating-permissions": "updating permissions...",
|
"there-are-no-organizations-added-yet": "There are no organizations added yet.",
|
||||||
"updating-runner": "Updating runner...",
|
"there-are-no-runners-added-yet": "There are no runners added yet.",
|
||||||
"updating-user": "updating user...",
|
"there-are-no-teams-added-yet": "There are no teams added yet.",
|
||||||
"user-added": "User added",
|
"there-are-no-users-added-yet": "There are no users added yet.",
|
||||||
"user-groups": "User Groups",
|
"this-might-take-a-moment": "This might take a moment 👀",
|
||||||
"user-is-being-added": "User is being added...",
|
"this-scanstation-is": "This scanstation is",
|
||||||
"user-updated": "User updated",
|
"token": "Token",
|
||||||
"username": "Username",
|
"total-distance": "total distance",
|
||||||
"users": "Users",
|
"total-donation-amount": "total donation amount",
|
||||||
"valid-city-is-required": "Valid city is required",
|
"total-donations": "total donations",
|
||||||
"valid-email-is-required": "valid email is required",
|
"total-scans": "total scans",
|
||||||
"valid-international-phone-number-is-required": "valid international phone number is required...",
|
"track": "Track",
|
||||||
"valid-zipcode-postal-code-is-required": "Valid zipcode/ postal code is required",
|
"track-added": "Track added",
|
||||||
"verfuegbare": "availdable",
|
"track-data-is-being-loaded": "Track data is being loaded",
|
||||||
"welcome_wavinghand": "Welcome 👋",
|
"track-is-being-added": "Track is being added...",
|
||||||
"you-can-now-use-your-new-password-to-log-in-to-your-account": "You can now use your new password to log in to your account! 🎉",
|
"track-length-in-m": "Track Length in m",
|
||||||
"zip-postal-code": "ZIP/ postal code"
|
"track-length-must-be-greater-than-0": "Track length must be greater than 0",
|
||||||
}
|
"track-name": "Track name",
|
||||||
|
"track-name-must-not-be-empty": "Track name must not be empty",
|
||||||
|
"tracks": "Tracks",
|
||||||
|
"updated-contact": "Updated contact!",
|
||||||
|
"updated-donor": "updated donor",
|
||||||
|
"updated-organization": "updated organization",
|
||||||
|
"updated-station": "Updated station",
|
||||||
|
"updateing-group": "updateing group...",
|
||||||
|
"updating-organization": "updating organization",
|
||||||
|
"updating-permissions": "updating permissions...",
|
||||||
|
"updating-runner": "Updating runner...",
|
||||||
|
"updating-user": "updating user...",
|
||||||
|
"user-added": "User added",
|
||||||
|
"user-groups": "User Groups",
|
||||||
|
"user-is-being-added": "User is being added...",
|
||||||
|
"user-updated": "User updated",
|
||||||
|
"username": "Username",
|
||||||
|
"users": "Users",
|
||||||
|
"valid-city-is-required": "Valid city is required",
|
||||||
|
"valid-email-is-required": "valid email is required",
|
||||||
|
"valid-international-phone-number-is-required": "valid international phone number is required...",
|
||||||
|
"valid-zipcode-postal-code-is-required": "Valid zipcode/ postal code is required",
|
||||||
|
"verfuegbare": "availdable",
|
||||||
|
"welcome_wavinghand": "Welcome 👋",
|
||||||
|
"yes-i-copied-the-token": "Yes, i copied the token.",
|
||||||
|
"you-can-now-use-your-new-password-to-log-in-to-your-account": "You can now use your new password to log in to your account! 🎉",
|
||||||
|
"you-dont-have-any-scanstations-yet": "You don't have any scanstations yet",
|
||||||
|
"zip-postal-code": "ZIP/ postal code",
|
||||||
|
"enabled_large": "Enabled"
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user