Skip to content

Commit

Permalink
THE-1364 ajout et mise a jour des fichiers de traduction avec les cle…
Browse files Browse the repository at this point in the history
…s manquantes + ajouts de variables internationalisées
  • Loading branch information
clementdelafontaine committed Oct 10, 2024
1 parent 8e51a9e commit ef5c7c4
Show file tree
Hide file tree
Showing 4 changed files with 428 additions and 301 deletions.
8 changes: 4 additions & 4 deletions components/theses/ThesisTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<strong>{{ $t('theseView.partenariat') }}&nbsp;:{{ '\xa0' }}</strong>
</td>
<td role="list">
<strong>{{ firstPartenaireKeyName + " : " }}</strong>
<strong>{{ $t('theseView.' + firstPartenaireKeyName) }} : </strong>
<template v-for="(partenaire, index) in partenairesGroupedByType[firstPartenaireKeyName]">
<nuxt-link v-if="partenaire.ppn" :key="partenaire.ppn"
class="clickable lightblue" :to="'/' + partenaire.ppn" role="listitem">
Expand All @@ -130,7 +130,7 @@
<tr v-if="indexType !== firstPartenaireKeyName" class="table-rows">
<td class="empty-first-cell-mandatory"></td>
<td>
<strong>{{ indexType + " : " }}</strong>
<strong>{{ $t(indexType) + " : " }}</strong>
<template v-for="(partenaire, index) in type">
<nuxt-link v-if="partenaire.ppn"
class="clickable lightblue" :to="'/' + partenaire.ppn" role="listitem">
Expand All @@ -150,7 +150,7 @@
<strong>{{ $t('theseView.jury') }}&nbsp;:{{ '\xa0' }}</strong>
</td>
<td role="list">
<strong>{{ firstJuryMemberKeyName + " : " }}</strong>
<strong>{{ $t(firstJuryMemberKeyName) + " : " }}</strong>
<template v-for="(member, index) in juryMembersGroupedByType[firstJuryMemberKeyName]">
<nuxt-link v-if="member.ppn" :key="member.ppn"
class="clickable lightblue" :to="'/' + member.ppn" role="listitem">
Expand All @@ -166,7 +166,7 @@
<tr v-if="indexType !== firstJuryMemberKeyName" class="table-rows">
<td class="empty-first-cell-mandatory"></td>
<td>
<strong>{{ indexType + " : " }}</strong>
<strong>{{ $t(indexType) + " : " }}</strong>
<template v-for="(member, index) in type">
<nuxt-link v-if="member.ppn" class="clickable lightblue"
:to="'/' + member.ppn" role="listitem">
Expand Down
Loading

0 comments on commit ef5c7c4

Please sign in to comment.