This commit is contained in:
Simon Cambier 2022-02-24 22:40:54 +01:00
parent 246b406e07
commit 9c151f8f74
4 changed files with 18 additions and 5 deletions

View File

@ -24,6 +24,15 @@
v-model="isLocaleFrench" />
</div>
<div class="mb-8 text-xs text-stone-500">
Features to come:
<ul class="ml-4 list-disc">
<li>Keyboard input</li>
<li>Random number</li>
<li>Less bugs</li>
</ul>
</div>
<div class="text-xs text-stone-500 dark:text-stone-600">
Build {{ buildDate }}
</div>

View File

@ -14,5 +14,6 @@
"finishDailyToPlayRandom": "Finish the daily challenge to unlock.",
"gameDescription": "Combine the numbers to reach the result.",
"randomDescription": "A challenge at random, just for fun.",
"copiedInClipboard": "Copied in clipboard"
"copiedInClipboard": "Copied in clipboard",
"soon": "Soon"
}

View File

@ -14,5 +14,6 @@
"randomDescription": "Une partie au hasard, pour le plaisir.",
"share": "Partager",
"finishDailyToPlayRandom": "Terminez le défi quotidien pour débloquer.",
"copiedInClipboard": "Copié dans le presse-papier"
"copiedInClipboard": "Copié dans le presse-papier",
"soon": "Bientôt"
}

View File

@ -23,12 +23,14 @@
:class="{ 'btn-disabled': !canPlayRandom }">
{{ t('randomGame') }}
</RouterLink>
{{ t('randomDescription') }}
<span
{{ t('soon') }}
<!-- {{ t('randomDescription') }} -->
<!-- <span
class="italic"
v-if="!canPlayRandom">{{
t('finishDailyToPlayRandom')
}}</span>
}}
</span> -->
</div>
</div>
</div>