mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* fix: small merge fixes * feat: initial setup wizard * fix: last few localization items * fix: lint * fix: bump version
26 lines
638 B
Vue
26 lines
638 B
Vue
<template>
|
|
<div>
|
|
<LanguageSelectorListbox />
|
|
<NuxtLink
|
|
class="mt-1 transition text-blue-500 hover:text-blue-600 text-sm"
|
|
to="https://translate.droposs.org/projects/drop/"
|
|
target="_blank"
|
|
>
|
|
<i18n-t
|
|
keypath="helpUsTranslate"
|
|
tag="span"
|
|
scope="global"
|
|
class="inline-flex items-center gap-x-1 hover:underline"
|
|
>
|
|
<template #arrow>
|
|
<ArrowTopRightOnSquareIcon class="size-4" />
|
|
</template>
|
|
</i18n-t>
|
|
</NuxtLink>
|
|
|
|
<DevOnly
|
|
><h1 class="mt-3 text-sm text-gray-500">{{ $t("welcome") }}</h1>
|
|
</DevOnly>
|
|
</div>
|
|
</template>
|