1
0
forked from PGL/Clyde

i18n added but not usable

This commit is contained in:
2024-03-08 20:22:00 +01:00
parent 0ca5640564
commit 481c96bec2
5 changed files with 48 additions and 18 deletions

View File

@ -1,4 +1,5 @@
<script setup>
import i18n from "./i18n.js"
const props = defineProps({
id: Number,
type: String,
@ -20,9 +21,9 @@
<div class="type"><a>{{type}}</a></div>
<div class="surname"><a>{{lastName}}</a></div>
<div class="firstname"><a>{{firstName}}</a></div>
<div class="infos"><button style="background-color:rgb(105,05,105);" > More infos </button></div>
<div class="accept"><button style="background-color:rgb(0,105,50);">Accept</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">Refuse</button></div>
<div class="infos"><button style="background-color:rgb(105,05,105);" >{{i18n("request.moreInfos")}} </button></div>
<div class="accept"><button style="background-color:rgb(0,105,50);">{{i18n("request.accept")}}</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">{{i18n("request.refuse")}}</button></div>
</div>
</div>
</template>