mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 03:20:57 +00:00
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
//
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 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.
|
|
//
|
|
|
|
import { IntlString, mergeIds } from '@anticrm/platform'
|
|
import { AnyComponent } from '@anticrm/ui'
|
|
import view, { viewId } from '@anticrm/view'
|
|
|
|
export default mergeIds(viewId, view, {
|
|
component: {
|
|
ActionsPopup: '' as AnyComponent
|
|
},
|
|
string: {
|
|
MoveClass: '' as IntlString,
|
|
SelectToMove: '' as IntlString,
|
|
Move: '' as IntlString,
|
|
Cancel: '' as IntlString,
|
|
LabelYes: '' as IntlString,
|
|
LabelNo: '' as IntlString,
|
|
LabelNA: '' as IntlString,
|
|
ChooseAColor: '' as IntlString,
|
|
DeleteObject: '' as IntlString,
|
|
DeleteObjectConfirm: '' as IntlString,
|
|
Assignees: '' as IntlString,
|
|
Labels: '' as IntlString,
|
|
WithTime: '' as IntlString,
|
|
Type: '' as IntlString,
|
|
ActionPlaceholder: '' as IntlString,
|
|
CreatingAttribute: '' as IntlString,
|
|
RestoreDefaults: '' as IntlString,
|
|
CreatingAttributeConfirm: '' as IntlString,
|
|
Filter: '' as IntlString,
|
|
ClearFilters: '' as IntlString,
|
|
FilterIs: '' as IntlString,
|
|
FilterIsNot: '' as IntlString,
|
|
FilterIsEither: '' as IntlString,
|
|
FilterStatesCount: '' as IntlString,
|
|
Before: '' as IntlString,
|
|
After: '' as IntlString,
|
|
Apply: '' as IntlString
|
|
}
|
|
})
|