Minor - translate msg

pull/4004/head
Julio 4 years ago
parent 6e042db4d4
commit c95f5514bb
  1. 5
      assets/vue/views/message/List.vue

@ -272,6 +272,8 @@ import {RESOURCE_LINK_PUBLISHED} from "../../components/resource_links/visibilit
import {MESSAGE_TYPE_INBOX} from "../../components/message/msgType";
import useNotification from "../../components/Notification";
import {useI18n} from "vue-i18n";
export default {
name: 'MessageList',
servicePrefix: 'Message',
@ -295,6 +297,7 @@ export default {
const index = ref('inbox');
const {showNotification} = useNotification();
const { t } = useI18n();
// Inbox
const inBoxFilter = {
@ -373,7 +376,7 @@ export default {
deleteItemDialog.value = false;
showNotification('Deleted');
showNotification(t('Deleted'));
goToInbox();
}

Loading…
Cancel
Save