2022-02-11 12:18:55 +03:00
|
|
|
/*!
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021, 2022 Hardcore Engineering Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-09-21 11:08:25 +03:00
|
|
|
import type { IntlString } from '@hcengineering/platform'
|
|
|
|
import { mergeIds } from '@hcengineering/platform'
|
2022-02-11 12:18:55 +03:00
|
|
|
|
2022-09-21 11:08:25 +03:00
|
|
|
import notification, { notificationId } from '@hcengineering/notification'
|
2022-02-11 12:18:55 +03:00
|
|
|
|
|
|
|
export default mergeIds(notificationId, notification, {
|
|
|
|
string: {
|
2022-02-25 12:04:57 +03:00
|
|
|
NoNotifications: '' as IntlString,
|
|
|
|
Track: '' as IntlString,
|
2022-09-16 05:57:32 +03:00
|
|
|
Remove: '' as IntlString,
|
|
|
|
RemoveAll: '' as IntlString,
|
|
|
|
MarkAsRead: '' as IntlString,
|
2023-04-25 11:34:38 +03:00
|
|
|
MarkAllAsRead: '' as IntlString,
|
|
|
|
Change: '' as IntlString,
|
2023-05-17 08:18:05 +03:00
|
|
|
AddedRemoved: '' as IntlString,
|
2023-08-23 14:23:58 +03:00
|
|
|
YouHaveJoinedTheConversation: '' as IntlString,
|
2023-05-24 09:35:48 +03:00
|
|
|
ChangeCollaborators: '' as IntlString,
|
|
|
|
Activity: '' as IntlString,
|
|
|
|
People: '' as IntlString,
|
|
|
|
Read: '' as IntlString,
|
2024-04-17 20:43:51 +03:00
|
|
|
Unread: '' as IntlString,
|
2024-04-18 20:11:24 +03:00
|
|
|
Unreads: '' as IntlString,
|
|
|
|
EnablePush: '' as IntlString,
|
|
|
|
NotificationBlockedInBrowser: '' as IntlString
|
2022-02-11 12:18:55 +03:00
|
|
|
}
|
|
|
|
})
|