diff --git a/front/src/components/radios/Button.vue b/front/src/components/radios/Button.vue
index 0869313a875eb153812a5b9fce0cf1ea1a932d81..abdc660fcedf463ad4abfb4abbd9fff90317bb80 100644
--- a/front/src/components/radios/Button.vue
+++ b/front/src/components/radios/Button.vue
@@ -1,8 +1,8 @@
 <template>
   <button @click="toggleRadio" :class="['ui', 'blue', {'inverted': running}, 'button']">
     <i class="ui feed icon"></i>
-    <template v-if="running">Stop</template>
-    <template v-else>Start</template>
+    <template v-if="running">{{ $t('Stop') }}</template>
+    <template v-else>{{ $t('Start') }}</template>
     radio
   </button>
 </template>
diff --git a/front/src/components/radios/Card.vue b/front/src/components/radios/Card.vue
index 17de3c85fe3c67d5a124d046aa9e5fa233503396..62de6ec65dcd0c9c0a8aa2bd70f3a31392b21e15 100644
--- a/front/src/components/radios/Card.vue
+++ b/front/src/components/radios/Card.vue
@@ -15,7 +15,7 @@
           class="ui basic yellow button"
           v-if="$store.state.auth.authenticated && type === 'custom' && customRadio.user === $store.state.auth.profile.id"
           :to="{name: 'library.radios.edit', params: {id: customRadioId }}">
-          Edit...
+          {{ $t('Edit...') }}
         </router-link>
         <radio-button class="right floated button" :type="type" :custom-radio-id="customRadioId"></radio-button>
       </div>