🌐 Added translation and attribution to Pixabay importer

This commit is contained in:
Mawoka
2023-06-23 10:33:36 +02:00
parent 60b6ae3321
commit 622b74f145
2 changed files with 14 additions and 7 deletions
@@ -53,19 +53,24 @@
{:else} {:else}
<div class="flex w-screen p-8 h-full mt-8 mb-1"> <div class="flex w-screen p-8 h-full mt-8 mb-1">
<div <div
class="flex flex-col w-1/3 m-auto overflow-scroll h-full rounded p-4 gap-4 bg-white dark:bg-gray-700" class="flex flex-col w-1/3 m-auto overflow-scroll h-full rounded p-4 gap-2 bg-white dark:bg-gray-700"
>
<h1 class="text-2xl text-center">{$t('uploader.images_by_pixabay')}</h1>
<a href="https://pixabay.com" target="_blank" class="underline text-center"
>{$t('uploader.visit_pixabay')}</a
>
<form
class="w-full flex gap-2"
on:submit|preventDefault={() => (fetched_data = fetch_data())}
> >
<div class="w-full flex gap-2">
<input <input
class="w-full outline-none p-1 rounded bg-gray-500" class="w-full outline-none p-1 rounded bg-gray-500"
bind:value={search_term} bind:value={search_term}
/> />
<div class="w-fit"> <div class="w-fit">
<BrownButton on:click={() => (fetched_data = fetch_data())} <BrownButton type="submit">{$t('words.search')}</BrownButton>
>Search</BrownButton
>
</div>
</div> </div>
</form>
{#each data.hits as image} {#each data.hits as image}
<div class="rounded border-2 border-[#B07156] p-2 flex-col flex gap-2"> <div class="rounded border-2 border-[#B07156] p-2 flex-col flex gap-2">
<div> <div>
+3 -1
View File
@@ -299,7 +299,9 @@
"select_upload_type": "Select the Upload Type", "select_upload_type": "Select the Upload Type",
"upload_a_video": "Upload a Video", "upload_a_video": "Upload a Video",
"upload_video_popup_notice": "The popup is open; have a look at it for further information", "upload_video_popup_notice": "The popup is open; have a look at it for further information",
"upload_video": "Upload Video" "upload_video": "Upload Video",
"visit_pixabay": "Visit Pixabay",
"images_by_pixabay": "Images provided by Pixabay"
}, },
"avatar_settings": { "avatar_settings": {
"skin_color": "Skin color", "skin_color": "Skin color",