See #559: added a mixin to store common translations

merge-requests/466/head
Eliot Berriot 2018-10-05 19:30:46 +02:00
rodzic c4318b4ddd
commit 0a22504fb0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 28 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,28 @@
<script>
export default {
computed: {
sharedLabels () {
return {
filters: {
creation_date: this.$gettext('Creation date'),
accessed_date: this.$gettext('Accessed date'),
modification_date: this.$gettext('Modification date'),
imported_date: this.$gettext('Imported date'),
expiration_date: this.$gettext('Expiration date'),
track_title: this.$gettext('Track name'),
album_title: this.$gettext('Album name'),
artist_name: this.$gettext('Artist name'),
name: this.$gettext('Name'),
title: this.$gettext('Title'),
size: this.$gettext('Size'),
bitrate: this.$gettext('Bitrate'),
duration: this.$gettext('Duration'),
date_joined: this.$gettext('Sign-up date'),
last_activity: this.$gettext('Last activity'),
username: this.$gettext('Username'),
}
}
}
}
}
</script>