diff --git a/plugins/activity-assets/lang/en.json b/plugins/activity-assets/lang/en.json
index 31b39ba492..25b0ad23b2 100644
--- a/plugins/activity-assets/lang/en.json
+++ b/plugins/activity-assets/lang/en.json
@@ -9,6 +9,6 @@
"Changed": "changed",
"To": "to",
"Unset": "unset",
- "NoEmployee": "No employee"
+ "System": "System"
}
}
\ No newline at end of file
diff --git a/plugins/activity-assets/lang/ru.json b/plugins/activity-assets/lang/ru.json
index de5135bc14..0b83745d5d 100644
--- a/plugins/activity-assets/lang/ru.json
+++ b/plugins/activity-assets/lang/ru.json
@@ -9,6 +9,6 @@
"Changed": "изменил(а)",
"To": "на",
"Unset": "сбросил",
- "NoEmployee": "Не сотрудник"
+ "System": "Система"
}
}
\ No newline at end of file
diff --git a/plugins/activity-resources/src/components/TxView.svelte b/plugins/activity-resources/src/components/TxView.svelte
index a8b9a7e171..03a6aa850f 100644
--- a/plugins/activity-resources/src/components/TxView.svelte
+++ b/plugins/activity-resources/src/components/TxView.svelte
@@ -124,7 +124,7 @@
{#if employee}
{formatName(employee.name)}
{:else}
-
+
{/if}
{#if viewlet && viewlet?.editable}
diff --git a/plugins/activity-resources/src/plugin.ts b/plugins/activity-resources/src/plugin.ts
index bf814c0d33..05d42ffcd5 100644
--- a/plugins/activity-resources/src/plugin.ts
+++ b/plugins/activity-resources/src/plugin.ts
@@ -24,6 +24,6 @@ export default mergeIds(activityId, activity, {
Changed: '' as IntlString,
To: '' as IntlString,
Unset: '' as IntlString,
- NoEmployee: '' as IntlString
+ System: '' as IntlString
}
})
diff --git a/plugins/contact-resources/src/components/ChannelsView.svelte b/plugins/contact-resources/src/components/ChannelsView.svelte
index 262612627e..179b02c37d 100644
--- a/plugins/contact-resources/src/components/ChannelsView.svelte
+++ b/plugins/contact-resources/src/components/ChannelsView.svelte
@@ -22,13 +22,13 @@
import { createEventDispatcher } from 'svelte'
import { getChannelProviders } from '../utils'
import ChannelsPopup from './ChannelsPopup.svelte'
- import { NotificationClient } from '@anticrm/notification-resources'
+ import { NotificationClientImpl } from '@anticrm/notification-resources'
export let value: AttachedData[] | Channel | null
export let size: 'small' | 'medium' | 'large' | 'x-large' = 'large'
export let reverse: boolean = false
export let integrations: Set[> = new Set][>()
- const notificationClient = NotificationClient.getClient()
+ const notificationClient = NotificationClientImpl.getClient()
const lastViews = notificationClient.getLastViews()
interface Item {
diff --git a/plugins/gmail-resources/src/components/Chats.svelte b/plugins/gmail-resources/src/components/Chats.svelte
index 8c046561ec..b07642fe28 100644
--- a/plugins/gmail-resources/src/components/Chats.svelte
+++ b/plugins/gmail-resources/src/components/Chats.svelte
@@ -24,7 +24,7 @@
import setting from '@anticrm/setting'
import Connect from './Connect.svelte'
import Messages from './Messages.svelte'
- import { NotificationClient } from '@anticrm/notification-resources'
+ import { NotificationClientImpl } from '@anticrm/notification-resources'
export let object: Contact
export let channel: Channel
@@ -43,7 +43,7 @@
const accauntsQuery = createQuery()
const settingsQuery = createQuery()
const accountId = getCurrentAccount()._id
- const notificationClient = NotificationClient.getClient()
+ const notificationClient = NotificationClientImpl.getClient()
function updateMessagesQuery (channelId: Ref): void {
messagesQuery.query(
diff --git a/plugins/gmail-resources/src/components/Main.svelte b/plugins/gmail-resources/src/components/Main.svelte
index 7080ca9a6e..cb01633e95 100644
--- a/plugins/gmail-resources/src/components/Main.svelte
+++ b/plugins/gmail-resources/src/components/Main.svelte
@@ -20,13 +20,13 @@
import FullMessage from './FullMessage.svelte'
import Chats from './Chats.svelte'
import { getClient } from '@anticrm/presentation'
- import { NotificationClient } from '@anticrm/notification-resources'
+ import { NotificationClientImpl } from '@anticrm/notification-resources'
export let object: Contact
let newMessage: boolean = false
let currentMessage: SharedMessage | undefined = undefined
let channel: Channel | undefined = undefined
- const notificationClient = NotificationClient.getClient()
+ const notificationClient = NotificationClientImpl.getClient()
const client = getClient()
diff --git a/plugins/gmail-resources/src/components/NewMessage.svelte b/plugins/gmail-resources/src/components/NewMessage.svelte
index 152e91dac1..292ec951e7 100644
--- a/plugins/gmail-resources/src/components/NewMessage.svelte
+++ b/plugins/gmail-resources/src/components/NewMessage.svelte
@@ -24,12 +24,12 @@
import { Channel, Contact, formatName } from '@anticrm/contact'
import { TextEditor } from '@anticrm/text-editor'
import plugin from '../plugin'
- import { NotificationClient } from '@anticrm/notification-resources'
+ import { NotificationClientImpl } from '@anticrm/notification-resources'
export let object: Contact
export let channel: Channel
export let currentMessage: SharedMessage | undefined
- const notificationClient = NotificationClient.getClient()
+ const notificationClient = NotificationClientImpl.getClient()
let editor: TextEditor
let copy: string = ''
diff --git a/plugins/notification-resources/src/components/LastViewEditor.svelte b/plugins/notification-resources/src/components/LastViewEditor.svelte
index 4301971ec7..34e42a8dae 100644
--- a/plugins/notification-resources/src/components/LastViewEditor.svelte
+++ b/plugins/notification-resources/src/components/LastViewEditor.svelte
@@ -16,11 +16,11 @@
import { Doc } from '@anticrm/core'
import { ActionIcon } from '@anticrm/ui'
import notification from '../plugin'
- import { NotificationClient } from '../utils'
+ import { NotificationClientImpl } from '../utils'
export let value: Doc
- const notificationClient = NotificationClient.getClient()
+ const notificationClient = NotificationClientImpl.getClient()
const lastViews = notificationClient.getLastViews()
$: subscribed = $lastViews.has(value._id)
diff --git a/plugins/notification-resources/src/components/NotificationPresenter.svelte b/plugins/notification-resources/src/components/NotificationPresenter.svelte
index 665ec81bdf..8e8ac9e9ee 100644
--- a/plugins/notification-resources/src/components/NotificationPresenter.svelte
+++ b/plugins/notification-resources/src/components/NotificationPresenter.svelte
@@ -15,11 +15,11 @@
]