i18n run: Added keys 🌍

ref #93
This commit is contained in:
2021-03-10 18:01:09 +01:00
parent 4b47e70b13
commit 50aa891709
8 changed files with 365 additions and 348 deletions

View File

@@ -19,7 +19,7 @@
)
.then((resp) => {
Toastify({
text: "Station deleted",
text: $_('station-deleted'),
duration: 500,
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
}).showToast();
@@ -66,7 +66,7 @@
'do-you-want-to-delete-this-donor-with-all-related-donations'
)}
<br />
All associated scans will get deleted as well
{$_('all-associated-scans-will-get-deleted-as-well')}
</p>
</div>
</div>
@@ -77,13 +77,13 @@
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
{$_('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
{$_('cancel-keep-station')}
</button>
</div>
</div>