Turning French 'Moi' into English 'Me'

This commit is contained in:
David Négrier 2021-01-21 10:16:08 +01:00
parent de7bf08de1
commit 3d84a9c8cd
1 changed files with 3 additions and 3 deletions

View File

@ -170,7 +170,7 @@ export class DiscussionManager {
const pMessage: HTMLParagraphElement = document.createElement('p'); const pMessage: HTMLParagraphElement = document.createElement('p');
const date = new Date(); const date = new Date();
if(isMe){ if(isMe){
name = 'Moi'; name = 'Me';
} }
pMessage.innerHTML = `<span style="font-weight: bold">${name}</span> pMessage.innerHTML = `<span style="font-weight: bold">${name}</span>
<span style="color:#bac2cc;display:inline-block;font-size:12px;"> <span style="color:#bac2cc;display:inline-block;font-size:12px;">
@ -221,7 +221,7 @@ export class DiscussionManager {
this.activeDiscussion = false; this.activeDiscussion = false;
this.divDiscuss?.classList.remove('active'); this.divDiscuss?.classList.remove('active');
} }
public setUserInputManager(userInputManager : UserInputManager){ public setUserInputManager(userInputManager : UserInputManager){
this.userInputManager = userInputManager; this.userInputManager = userInputManager;
} }
@ -231,4 +231,4 @@ export class DiscussionManager {
} }
} }
export const discussionManager = new DiscussionManager(); export const discussionManager = new DiscussionManager();