2021-12-17 12:14:34 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
2022-01-21 09:05:55 +00:00
|
|
|
//
|
2021-12-17 12:14:34 +00:00
|
|
|
// 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
|
2022-01-21 09:05:55 +00:00
|
|
|
//
|
2021-12-17 12:14:34 +00:00
|
|
|
// 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.
|
2022-01-21 09:05:55 +00:00
|
|
|
//
|
2021-12-17 12:14:34 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-09-21 08:08:25 +00:00
|
|
|
import { Class, Ref } from '@hcengineering/core'
|
|
|
|
import type { IntlString, Metadata, Plugin } from '@hcengineering/platform'
|
|
|
|
import { plugin } from '@hcengineering/platform'
|
2022-04-19 09:38:31 +00:00
|
|
|
import { ObjectSearchCategory } from './types'
|
2021-12-17 12:14:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export const presentationId = 'presentation' as Plugin
|
|
|
|
|
|
|
|
export default plugin(presentationId, {
|
2022-01-21 09:05:55 +00:00
|
|
|
class: {
|
|
|
|
ObjectSearchCategory: '' as Ref<Class<ObjectSearchCategory>>
|
|
|
|
},
|
2021-12-17 12:14:34 +00:00
|
|
|
string: {
|
|
|
|
Create: '' as IntlString,
|
|
|
|
Cancel: '' as IntlString,
|
|
|
|
Ok: '' as IntlString,
|
2022-01-20 09:18:24 +00:00
|
|
|
Save: '' as IntlString,
|
2021-12-17 12:14:34 +00:00
|
|
|
Download: '' as IntlString,
|
2022-03-16 09:03:22 +00:00
|
|
|
Close: '' as IntlString,
|
2021-12-17 12:14:34 +00:00
|
|
|
NotSelected: '' as IntlString,
|
2022-01-14 09:06:32 +00:00
|
|
|
Deselect: '' as IntlString,
|
2022-04-27 08:47:29 +00:00
|
|
|
Archived: '' as IntlString,
|
2022-03-28 15:25:39 +00:00
|
|
|
AddSocialLinks: '' as IntlString,
|
2022-04-26 05:42:18 +00:00
|
|
|
EditSocialLinks: '' as IntlString,
|
2022-03-28 15:25:39 +00:00
|
|
|
Change: '' as IntlString,
|
2022-04-09 03:46:40 +00:00
|
|
|
Remove: '' as IntlString,
|
2022-04-12 05:59:38 +00:00
|
|
|
Members: '' as IntlString,
|
2022-04-09 03:46:40 +00:00
|
|
|
Search: '' as IntlString,
|
2022-04-27 08:47:29 +00:00
|
|
|
Spaces: '' as IntlString,
|
2022-04-13 04:25:59 +00:00
|
|
|
Unassigned: '' as IntlString,
|
2022-04-14 11:04:24 +00:00
|
|
|
CreateMore: '' as IntlString,
|
2022-04-21 15:47:04 +00:00
|
|
|
NumberMembers: '' as IntlString,
|
2022-04-27 08:47:29 +00:00
|
|
|
NumberSpaces: '' as IntlString,
|
2022-04-21 15:47:04 +00:00
|
|
|
InThis: '' as IntlString,
|
|
|
|
NoMatchesInThis: '' as IntlString,
|
|
|
|
NoMatchesFound: '' as IntlString,
|
|
|
|
NotInThis: '' as IntlString,
|
2022-05-28 04:05:36 +00:00
|
|
|
Add: '' as IntlString,
|
2022-10-31 05:34:42 +00:00
|
|
|
Edit: '' as IntlString,
|
|
|
|
SelectAvatar: '' as IntlString,
|
2023-01-14 10:54:54 +00:00
|
|
|
GravatarsManaged: '' as IntlString,
|
|
|
|
InltPropsValue: '' as IntlString
|
2022-03-31 08:32:42 +00:00
|
|
|
},
|
|
|
|
metadata: {
|
2022-12-08 01:17:53 +00:00
|
|
|
RequiredVersion: '' as Metadata<string>,
|
|
|
|
Draft: '' as Metadata<Record<string, any>>
|
2021-12-17 12:14:34 +00:00
|
|
|
}
|
2022-01-21 09:05:55 +00:00
|
|
|
})
|