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-01-21 09:05:55 +00:00
|
|
|
import { Class, Ref } from '@anticrm/core'
|
2022-03-31 08:32:42 +00:00
|
|
|
import type { IntlString, Metadata, Plugin } from '@anticrm/platform'
|
2021-12-17 12:14:34 +00:00
|
|
|
import { plugin } from '@anticrm/platform'
|
2022-01-21 09:05:55 +00:00
|
|
|
import { ObjectSearchCategory } from '.'
|
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-03-28 15:25:39 +00:00
|
|
|
AddSocialLinks: '' as IntlString,
|
|
|
|
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-13 04:25:59 +00:00
|
|
|
Unassigned: '' as IntlString,
|
2022-04-14 11:04:24 +00:00
|
|
|
CreateMore: '' as IntlString,
|
|
|
|
NumberMembers: '' as IntlString
|
2022-03-31 08:32:42 +00:00
|
|
|
},
|
|
|
|
metadata: {
|
|
|
|
RequiredVersion: '' as Metadata<string>
|
2021-12-17 12:14:34 +00:00
|
|
|
}
|
2022-01-21 09:05:55 +00:00
|
|
|
})
|