design and translations

This commit is contained in:
Mathieu Jaumotte 2021-05-21 11:41:36 +02:00
parent 098a2ea620
commit a88acd34fd
4 changed files with 23 additions and 11 deletions

View File

@ -54,10 +54,16 @@ export default {
position: relative; position: relative;
&:before { &:before {
position: absolute; position: absolute;
content: "\f192"; /*
content: "\f192"; //circle-dot
content: "\f1dd"; //paragraph
content: "\f292"; //hashtag
content: "\f069"; //asterisk
*/
content: "\f142"; //ellipsis-v
font-family: "ForkAwesome"; font-family: "ForkAwesome";
color: #718596ab; color: #718596ab;
left: -28px; left: -22px;
top: 4px; top: 4px;
} }
a[name^="section"] { a[name^="section"] {

View File

@ -13,12 +13,10 @@
<label for="content">{{ $t('comment.label') }}</label> <label for="content">{{ $t('comment.label') }}</label>
<div v-if="initialComment"> <div v-if="initialComment">
créé par {{ initialComment.creator.text }} {{ $t('comment.created_by', [
le {{ $d(initialComment.createdAt.datetime, 'long') }} initialComment.creator.text,
<div v-if="initialComment.updatedAt.datetime !== initialComment.createdAt.datetime"> $d(initialComment.createdAt.datetime, 'long')
modifié par {{ initialComment.updatedBy.text }} ]) }}
le {{ $d(initialComment.updatedAt.datetime, 'long') }}
</div>
</div> </div>
<textarea <textarea

View File

@ -53,7 +53,10 @@
</button> </button>
</li> </li>
</ul> </ul>
</div> </div>
<div v-else>
<label>{{ $t('requestor.counter') }}</label>
</div>
<div> <div>
<add-persons v-if="accompanyingCourse.requestor === null" <add-persons v-if="accompanyingCourse.requestor === null"

View File

@ -39,6 +39,7 @@ const appMessages = {
title: "Demandeur", title: "Demandeur",
add_requestor: "Ajouter un demandeur", add_requestor: "Ajouter un demandeur",
is_anonymous: "Le demandeur est anonyme", is_anonymous: "Le demandeur est anonyme",
counter: "Il n'y a pas encore de demandeur",
type: "Type", type: "Type",
person_id: "id", person_id: "id",
text: "Dénomination", text: "Dénomination",
@ -57,7 +58,10 @@ const appMessages = {
label: "Choisir les problématiques sociales", label: "Choisir les problématiques sociales",
}, },
referrer: { referrer: {
title: "Référent", title: "Référent du parcours",
label: "Vous pouvez choisir un TMS ou vous assigner directement comme référent",
assign_me: "M'assigner comme référent",
placeholder: "Choisir un TMS",
}, },
resources: { resources: {
title: "Interlocuteurs privilégiés", title: "Interlocuteurs privilégiés",
@ -69,7 +73,8 @@ const appMessages = {
comment: { comment: {
title: "Observations", title: "Observations",
label: "Ajout d'une note", label: "Ajout d'une note",
content: "Rédigez une première note..." content: "Rédigez une première note...",
created_by: "créé par {0}, le {1}"
}, },
confirm: { confirm: {
title: "Confirmation", title: "Confirmation",