This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-12-21 12:10:31 -08:00
|
|
|
<template>
|
|
|
|
<section v-if="Object.keys(locales).length >= 3">
|
|
|
|
<h2 class="mb-3">
|
|
|
|
<Icon v="language"/>
|
|
|
|
<T>links.languageVersions</T>
|
|
|
|
</h2>
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
<li v-for="(options, locale) in locales" :key="locale" v-if="locale !== config.locale">
|
|
|
|
<a :href="options.url">
|
2020-12-22 02:10:52 -08:00
|
|
|
<Icon v="long-arrow-right"/>
|
2020-12-21 12:10:31 -08:00
|
|
|
{{options.name}}
|
|
|
|
</a>
|
|
|
|
</li>
|
2020-12-22 02:10:52 -08:00
|
|
|
<li>
|
|
|
|
<LocaleLink locale="en" link="/blog/creating-new-language-version" class="small">
|
|
|
|
<Icon v="plus"/>
|
|
|
|
<T>localise.shorter</T>
|
|
|
|
</LocaleLink>
|
|
|
|
</li>
|
2020-12-21 12:10:31 -08:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</template>
|