platform/plugins/time-resources/src/plugin.ts
Denis Bykhov 287652f279
planning (#4814)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2024-02-29 01:53:09 +07:00

61 lines
1.9 KiB
TypeScript

//
// Copyright © 2023 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 { type Ref } from '@hcengineering/core'
import { type IntlString, mergeIds } from '@hcengineering/platform'
import { type TagCategory } from '@hcengineering/tags'
import time, { timeId } from '@hcengineering/time'
export default mergeIds(timeId, time, {
category: {
Other: '' as Ref<TagCategory>
},
string: {
Today: '' as IntlString,
TodayColon: '' as IntlString,
ToDoColon: '' as IntlString,
Tomorrow: '' as IntlString,
Yesterday: '' as IntlString,
Completed: '' as IntlString,
Now: '' as IntlString,
Scheduled: '' as IntlString,
Schedule: '' as IntlString,
WithoutProject: '' as IntlString,
TotalGroupTime: '' as IntlString,
Tasks: '' as IntlString,
WorkItem: '' as IntlString,
WorkSlot: '' as IntlString,
CreateToDo: '' as IntlString,
Inbox: '' as IntlString,
Days: '' as IntlString,
Hours: '' as IntlString,
Minutes: '' as IntlString,
All: '' as IntlString,
Done: '' as IntlString,
ToDos: '' as IntlString,
Unplanned: '' as IntlString,
Planned: '' as IntlString,
AddSlot: '' as IntlString,
HighPriority: '' as IntlString,
MediumPriority: '' as IntlString,
LowPriority: '' as IntlString,
NoPriority: '' as IntlString,
AddTo: '' as IntlString,
AddTitle: '' as IntlString,
MyWork: '' as IntlString,
WorkSchedule: '' as IntlString
}
})