From c0df6dfcedfaeb5fc778412c7271fb1c4951f4a5 Mon Sep 17 00:00:00 2001 From: Antoine Ouvrard Date: Thu, 30 Apr 2020 18:36:30 +0200 Subject: [PATCH] =?UTF-8?q?am=C3=A9lioration=20de=20la=20recherche=20du=20?= =?UTF-8?q?remplacement=20des=20parametres?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- roles/jitsi-enable-fr-ln/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/jitsi-enable-fr-ln/tasks/main.yml b/roles/jitsi-enable-fr-ln/tasks/main.yml index 2a4d946..d872eaf 100644 --- a/roles/jitsi-enable-fr-ln/tasks/main.yml +++ b/roles/jitsi-enable-fr-ln/tasks/main.yml @@ -6,13 +6,13 @@ line: " defaultLanguage: 'fr'," - name: Conf Jitsi - UI en fr - replace: + lineinfile: path: /usr/share/jitsi-meet/interface_config.js - regexp: "DEFAULT_LOCAL_DISPLAY_NAME: 'me'," - replace: "DEFAULT_LOCAL_DISPLAY_NAME: 'moi'," + regexp: "DEFAULT_LOCAL_DISPLAY_NAME: " + line: "DEFAULT_LOCAL_DISPLAY_NAME: 'moi'," - name: Conf Jitsi - UI en fr - replace: + lineinfile: path: /usr/share/jitsi-meet/interface_config.js - regexp: "DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster'," - replace: "DEFAULT_REMOTE_DISPLAY_NAME: 'Autre participant·e'," + regexp: "DEFAULT_REMOTE_DISPLAY_NAME: " + line: "DEFAULT_REMOTE_DISPLAY_NAME: 'Autre participant·e',"