diff --git a/front/src/components/audio/SearchBar.vue b/front/src/components/audio/SearchBar.vue
index 534ac0ac4f3862170a9b2a649a1746bba783cb0e..c1190f474d653107ce0d73066200011a7c7ff450 100644
--- a/front/src/components/audio/SearchBar.vue
+++ b/front/src/components/audio/SearchBar.vue
@@ -17,14 +17,14 @@ export default {
   computed: {
     labels () {
       return {
-        placeholder: this.$gettext('Search for artists, albums, tracks…')
+        placeholder: this.$pgettext('Sidebar/Search/Input.Placeholder', 'Search for artists, albums, tracks…')
       }
     }
   },
   mounted () {
-    let artistLabel = this.$gettext('Artist')
-    let albumLabel = this.$gettext('Album')
-    let trackLabel = this.$gettext('Track')
+    let artistLabel = this.$pgettext('Sidebar/Search/Title', 'Artist')
+    let albumLabel = this.$pgettext('Sidebar/Search/Title', 'Album')
+    let trackLabel = this.$pgettext('Sidebar/Search/Title', 'Track')
     let self = this
     jQuery(this.$el).search({
       type: 'category',