Add en/fr content
This commit is contained in:
@@ -35,13 +35,13 @@
|
||||
</template>
|
||||
<v-list>
|
||||
<v-list-item @click="editMessage(message)">
|
||||
<v-list-item-title>Edit</v-list-item-title>
|
||||
<v-list-item-title>{{ $t('message.edit') }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item @click="deleteMessage(message)">
|
||||
<v-list-item-title>Delete</v-list-item-title>
|
||||
<v-list-item-title>{{ $t('message.delete') }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
<v-list-item @click="reportMessage(message)">
|
||||
<v-list-item-title>Report</v-list-item-title>
|
||||
<v-list-item-title>{{ $t('message.report') }}</v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-menu>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
v-model="value"
|
||||
density="compact"
|
||||
variant="underlined"
|
||||
placeholder="Votre commentaire..."
|
||||
:placeholder="$t('message.yourcomment')"
|
||||
hide-details
|
||||
auto-grow
|
||||
rows="1"
|
||||
@@ -72,6 +72,7 @@ const props = defineProps({
|
||||
|
||||
const emits = defineEmits(['message-posted'])
|
||||
|
||||
|
||||
const loginModal = ref(false);
|
||||
const client = useClient()
|
||||
const value = ref("")
|
||||
|
||||
Reference in New Issue
Block a user