diff --git a/front/src/components/auth/Settings.vue b/front/src/components/auth/Settings.vue
index 64f7df714ff9c858ac320d0a707c885c1049a574..c847bde888efb2a0b3bca619dd5cc17e6c3b62d4 100644
--- a/front/src/components/auth/Settings.vue
+++ b/front/src/components/auth/Settings.vue
@@ -80,16 +80,16 @@ export default {
           'privacy_level': {
             type: 'dropdown',
             initial: this.$store.state.auth.profile.privacy_level,
-            label: this.$t('Activity visibility'),
-            help: this.$t('Determine the visibility level of your activity'),
+            label: 'Activity visibility',
+            help: 'Determine the visibility level of your activity',
             choices: [
               {
                 value: 'me',
-                label: this.$t('Nobody except me')
+                label: 'Nobody except me'
               },
               {
                 value: 'instance',
-                label: this.$t('Everyone on this instance')
+                label: 'Everyone on this instance'
               }
             ]
           }
diff --git a/front/src/components/favorites/List.vue b/front/src/components/favorites/List.vue
index 590d915921c8240867d9b179f1c83490fa631ea3..d189f2b85ed3a5df25a8726c725d3452cf64e327 100644
--- a/front/src/components/favorites/List.vue
+++ b/front/src/components/favorites/List.vue
@@ -85,9 +85,9 @@ export default {
       orderingDirection: defaultOrdering.direction,
       ordering: defaultOrdering.field,
       orderingOptions: [
-        ['title', this.$t('Track name')],
-        ['album__title', this.$t('Album name')],
-        ['artist__name', this.$t('Artist name')]
+        ['title', 'Track name'],
+        ['album__title', 'Album name'],
+        ['artist__name', 'Artist name']
       ]
     }
   },
diff --git a/front/src/components/library/import/ArtistImport.vue b/front/src/components/library/import/ArtistImport.vue
index 7486a65dafa4a3381a32b9ef465f2294b9247aec..b24be6dc831af6ad3b417aef6cce9a65907e0137 100644
--- a/front/src/components/library/import/ArtistImport.vue
+++ b/front/src/components/library/import/ArtistImport.vue
@@ -53,8 +53,14 @@ export default Vue.extend({
       releaseImportData: [],
       releaseGroupsData: {},
       releases: [],
-      releaseTypes: [this.$t('Album')],
-      availableReleaseTypes: [this.$t('Album'), this.$t('Live'), this.$t('Compilation'), this.$t('EP'), this.$t('Single'), this.$t('Other')]
+      releaseTypes: ['Album'],
+      availableReleaseTypes: [
+        'Album',
+        'Live',
+        'Compilation',
+        'EP',
+        'Single',
+        'Other']
     }
   },
   created () {
diff --git a/front/src/components/library/import/Main.vue b/front/src/components/library/import/Main.vue
index cf261fad8c3c8eb9b1d47002d9303c33996112ce..de17e2afadaf655377896a029f01e4ab9945eefb 100644
--- a/front/src/components/library/import/Main.vue
+++ b/front/src/components/library/import/Main.vue
@@ -38,13 +38,13 @@
       <div class="ui hidden divider"></div>
       <div class="ui attached segment">
         <template v-if="currentStep === 0">
-          <i18next tag="p" path="First, choose where you want to import the music from:"/>
+          <i18next tag="p" path="First, choose where you want to import the music from"/>
           <form class="ui form">
             <div class="field">
               <div class="ui radio checkbox">
                 <input type="radio" id="external" value="external" v-model="currentSource">
                 <label for="external">
-                  <i18next path="External source. Supported backends:"/>
+                  <i18next path="External source. Supported backends"/>
                   <div v-for="backend in backends" class="ui basic label">
                     <i v-if="backend.icon" :class="[backend.icon, 'icon']"></i>
                     {{ backend.label }}