From aec339f2f50bf9e1d5095654afb037d920a8d22d Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Sat, 14 Jul 2018 00:42:23 +0200
Subject: [PATCH] Fixed translation issue

---
 front/src/components/About.vue | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/front/src/components/About.vue b/front/src/components/About.vue
index c9e1e23c8..438fed67d 100644
--- a/front/src/components/About.vue
+++ b/front/src/components/About.vue
@@ -3,10 +3,10 @@
     <div class="ui vertical center aligned stripe segment">
       <div class="ui text container">
         <h1 class="ui huge header">
-            <template v-if="instance.name.value" :template-params="{instance: instance.name}">
+            <translate v-if="instance.name.value" :translate-params="{instance: instance.name.value}">
              About %{ instance }
-            </template>
-            <template v-else="instance.name.value"><translate>About this instance</translate></template>
+            </translate>
+            <translate v-else>About this instance</translate>
         </h1>
         <stats></stats>
       </div>
-- 
GitLab