feat: init new i18n format

This commit is contained in:
liyasthomas
2021-08-02 20:57:18 +05:30
parent 8a268ee6de
commit b615fe7529
66 changed files with 476 additions and 428 deletions

View File

@@ -98,7 +98,7 @@
<div class="flex">
<ButtonSecondary
v-tippy="{ theme: 'tooltip' }"
:title="$t('add_new')"
:title="$t('add.new')"
icon="add"
@click.native="addCommunicationInput"
/>
@@ -114,7 +114,7 @@
v-model="communication.inputs[index]"
class="input !rounded-r-none"
name="message"
:placeholder="$t('message_count', { count: index + 1 })"
:placeholder="$t('count.message', { count: index + 1 })"
type="text"
:disabled="!connectionState"
@keyup.enter="connectionState ? sendMessage() : null"