2021-09-11 13:18:54 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
2022-01-19 09:05:40 +00:00
|
|
|
//
|
2021-09-11 13:18:54 +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-19 09:05:40 +00:00
|
|
|
//
|
2021-09-11 13:18:54 +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-19 09:05:40 +00:00
|
|
|
//
|
2021-09-11 13:18:54 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-03-09 09:40:20 +00:00
|
|
|
import type { IntlString, Metadata, Plugin } from '@anticrm/platform'
|
2021-09-11 13:18:54 +00:00
|
|
|
import { plugin } from '@anticrm/platform'
|
2022-03-09 09:40:20 +00:00
|
|
|
import { AnyComponent } from './types'
|
2021-09-11 13:18:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2021-12-21 09:12:20 +00:00
|
|
|
export const uiId = 'ui' as Plugin
|
2021-09-11 13:18:54 +00:00
|
|
|
|
2021-12-21 09:12:20 +00:00
|
|
|
export default plugin(uiId, {
|
|
|
|
string: {
|
2022-01-19 09:09:08 +00:00
|
|
|
EditBoxPlaceholder: '' as IntlString,
|
2022-03-18 04:58:10 +00:00
|
|
|
Ok: '' as IntlString,
|
2021-12-21 09:12:20 +00:00
|
|
|
Cancel: '' as IntlString,
|
|
|
|
Minutes: '' as IntlString,
|
|
|
|
Hours: '' as IntlString,
|
|
|
|
Days: '' as IntlString,
|
|
|
|
ShowMore: '' as IntlString,
|
2022-01-19 09:05:40 +00:00
|
|
|
ShowLess: '' as IntlString,
|
2022-01-20 09:18:24 +00:00
|
|
|
Search: '' as IntlString,
|
|
|
|
SearchDots: '' as IntlString,
|
2022-02-15 09:06:05 +00:00
|
|
|
Suggested: '' as IntlString,
|
2022-02-23 16:10:11 +00:00
|
|
|
TimeTooltip: '' as IntlString,
|
|
|
|
None: '' as IntlString,
|
2022-03-17 06:07:38 +00:00
|
|
|
NotSelected: '' as IntlString,
|
|
|
|
Today: '' as IntlString,
|
2022-04-07 10:02:01 +00:00
|
|
|
NoDate: '' as IntlString,
|
|
|
|
StartDate: '' as IntlString,
|
|
|
|
TargetDate: '' as IntlString,
|
|
|
|
Overdue: '' as IntlString,
|
2022-04-08 18:17:04 +00:00
|
|
|
DueDate: '' as IntlString,
|
|
|
|
AddDueDate: '' as IntlString,
|
|
|
|
EditDueDate: '' as IntlString,
|
|
|
|
SaveDueDate: '' as IntlString,
|
|
|
|
IssueNeedsToBeCompletedByThisDate: '' as IntlString,
|
2022-02-23 16:10:11 +00:00
|
|
|
English: '' as IntlString,
|
2022-03-26 17:34:06 +00:00
|
|
|
Russian: '' as IntlString,
|
|
|
|
MinutesBefore: '' as IntlString,
|
|
|
|
HoursBefore: '' as IntlString,
|
|
|
|
DaysBefore: '' as IntlString,
|
|
|
|
MinutesAfter: '' as IntlString,
|
|
|
|
HoursAfter: '' as IntlString,
|
|
|
|
DaysAfter: '' as IntlString
|
2022-03-09 09:40:20 +00:00
|
|
|
},
|
|
|
|
metadata: {
|
|
|
|
DefaultApplication: '' as Metadata<AnyComponent>
|
2021-12-21 09:12:20 +00:00
|
|
|
}
|
2022-01-19 09:05:40 +00:00
|
|
|
})
|