Fix: mention license of panoramax

This commit is contained in:
Pieter Vander Vennet 2024-10-02 00:18:32 +02:00
parent af174f7695
commit 86af270aa0
2 changed files with 8 additions and 5 deletions

View file

@ -206,6 +206,7 @@
"openPanoramax": "Open Panoramax here", "openPanoramax": "Open Panoramax here",
"openThemeDocumentation": "Open the documentation for thematic map {name}", "openThemeDocumentation": "Open the documentation for thematic map {name}",
"panoramaxHelp": "<b>Panoramax</b> is an online service which gathers street-level pictures and offers them under a free license. Contributors are allowed to use these pictures to improve OpenStreetMap", "panoramaxHelp": "<b>Panoramax</b> is an online service which gathers street-level pictures and offers them under a free license. Contributors are allowed to use these pictures to improve OpenStreetMap",
"panoramaxLicenseCCBYSA": "Your pictures are published under CC-BY-SA - everyone can reuse your image if they mention your name",
"seeOnMapillary": "See this image on Mapillary", "seeOnMapillary": "See this image on Mapillary",
"themeBy": "Theme maintained by {author}", "themeBy": "Theme maintained by {author}",
"title": "Copyright and attribution", "title": "Copyright and attribution",
@ -895,4 +896,4 @@
"startsWithQ": "A wikidata identifier starts with Q and is followed by a number" "startsWithQ": "A wikidata identifier starts with Q and is followed by a number"
} }
} }
} }

View file

@ -83,11 +83,11 @@
{/each} {/each}
<FileSelector <FileSelector
accept="image/*" accept="image/*"
cls="button border-2 text-2xl" cls="button border-2 flex flex-col"
multiple={true} multiple={true}
on:submit={(e) => handleFiles(e.detail)} on:submit={(e) => handleFiles(e.detail)}
> >
<div class="flex items-center"> <div class="flex items-center text-2xl w-full justify-center">
{#if image !== undefined} {#if image !== undefined}
<img src={image} aria-hidden="true" /> <img src={image} aria-hidden="true" />
{:else} {:else}
@ -100,8 +100,10 @@
{/if} {/if}
</div> </div>
</FileSelector> </FileSelector>
<div class="text-sm"> <div class="text-xs subtle italic">
<Tr cls="subtle italic" t={t.respectPrivacy} /> <Tr t={Translations.t.general.attribution.panoramaxLicenseCCBYSA}/>
<span class="mx-1"></span>
<Tr t={t.respectPrivacy} />
</div> </div>
</div> </div>
</LoginToggle> </LoginToggle>