2022-03-31 08:32:42 +00:00
|
|
|
//
|
2022-04-23 16:59:57 +00:00
|
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
2022-03-31 08:32:42 +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
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2022-06-24 07:46:53 +00:00
|
|
|
import type { IntlString, Resource } from '@anticrm/platform'
|
2022-03-31 08:32:42 +00:00
|
|
|
import { mergeIds } from '@anticrm/platform'
|
|
|
|
import tracker, { trackerId } from '../../tracker/lib'
|
|
|
|
import { AnyComponent } from '@anticrm/ui'
|
2022-06-24 07:46:53 +00:00
|
|
|
import { Client, Doc, Ref } from '@anticrm/core'
|
2022-03-31 08:32:42 +00:00
|
|
|
|
|
|
|
export default mergeIds(trackerId, tracker, {
|
|
|
|
string: {
|
|
|
|
More: '' as IntlString,
|
|
|
|
Delete: '' as IntlString,
|
|
|
|
Open: '' as IntlString,
|
2022-07-01 15:24:58 +00:00
|
|
|
Default: '' as IntlString,
|
|
|
|
MakeDefault: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Members: '' as IntlString,
|
|
|
|
Inbox: '' as IntlString,
|
|
|
|
MyIssues: '' as IntlString,
|
|
|
|
Issues: '' as IntlString,
|
|
|
|
Views: '' as IntlString,
|
|
|
|
Active: '' as IntlString,
|
2022-04-08 18:05:49 +00:00
|
|
|
AllIssues: '' as IntlString,
|
|
|
|
ActiveIssues: '' as IntlString,
|
|
|
|
BacklogIssues: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Backlog: '' as IntlString,
|
|
|
|
Board: '' as IntlString,
|
2022-04-08 06:27:02 +00:00
|
|
|
Project: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Projects: '' as IntlString,
|
2022-05-18 05:35:34 +00:00
|
|
|
AllProjects: '' as IntlString,
|
|
|
|
BacklogProjects: '' as IntlString,
|
|
|
|
ActiveProjects: '' as IntlString,
|
|
|
|
ClosedProjects: '' as IntlString,
|
2022-04-27 08:18:59 +00:00
|
|
|
NewProject: '' as IntlString,
|
|
|
|
CreateProject: '' as IntlString,
|
|
|
|
ProjectNamePlaceholder: '' as IntlString,
|
|
|
|
ProjectDescriptionPlaceholder: '' as IntlString,
|
|
|
|
ProjectStatusPlaceholder: '' as IntlString,
|
|
|
|
ProjectLead: '' as IntlString,
|
|
|
|
ProjectMembers: '' as IntlString,
|
|
|
|
StartDate: '' as IntlString,
|
|
|
|
TargetDate: '' as IntlString,
|
|
|
|
Planned: '' as IntlString,
|
|
|
|
InProgress: '' as IntlString,
|
|
|
|
Paused: '' as IntlString,
|
|
|
|
Completed: '' as IntlString,
|
|
|
|
Canceled: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
CreateTeam: '' as IntlString,
|
2022-04-08 18:05:49 +00:00
|
|
|
AddIssue: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
NewIssue: '' as IntlString,
|
2022-06-24 12:36:08 +00:00
|
|
|
NewSubIssue: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Team: '' as IntlString,
|
2022-04-14 06:07:07 +00:00
|
|
|
SelectIssue: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
SelectTeam: '' as IntlString,
|
2022-04-02 04:06:48 +00:00
|
|
|
SaveIssue: '' as IntlString,
|
|
|
|
Todo: '' as IntlString,
|
|
|
|
Done: '' as IntlString,
|
2022-04-12 17:04:29 +00:00
|
|
|
SetPriority: '' as IntlString,
|
2022-04-02 04:06:48 +00:00
|
|
|
SetStatus: '' as IntlString,
|
2022-04-05 08:02:08 +00:00
|
|
|
Priority: '' as IntlString,
|
2022-04-02 04:06:48 +00:00
|
|
|
NoPriority: '' as IntlString,
|
|
|
|
Urgent: '' as IntlString,
|
|
|
|
High: '' as IntlString,
|
|
|
|
Medium: '' as IntlString,
|
|
|
|
Low: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Title: '' as IntlString,
|
|
|
|
Identifier: '' as IntlString,
|
|
|
|
Description: '' as IntlString,
|
|
|
|
Status: '' as IntlString,
|
2022-04-23 16:59:57 +00:00
|
|
|
DefaultIssueStatus: '' as IntlString,
|
|
|
|
IssueStatuses: '' as IntlString,
|
2022-07-01 15:24:58 +00:00
|
|
|
EditWorkflowStatuses: '' as IntlString,
|
|
|
|
ManageWorkflowStatuses: '' as IntlString,
|
|
|
|
AddWorkflowStatus: '' as IntlString,
|
|
|
|
EditWorkflowStatus: '' as IntlString,
|
|
|
|
DeleteWorkflowStatus: '' as IntlString,
|
|
|
|
DeleteWorkflowStatusConfirm: '' as IntlString,
|
|
|
|
DeleteWorkflowStatusError: '' as IntlString,
|
|
|
|
DeleteWorkflowStatusErrorDescription: '' as IntlString,
|
|
|
|
Name: '' as IntlString,
|
2022-04-23 16:59:57 +00:00
|
|
|
StatusCategory: '' as IntlString,
|
|
|
|
CategoryBacklog: '' as IntlString,
|
|
|
|
CategoryUnstarted: '' as IntlString,
|
|
|
|
CategoryStarted: '' as IntlString,
|
|
|
|
CategoryCompleted: '' as IntlString,
|
|
|
|
CategoryCanceled: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Number: '' as IntlString,
|
|
|
|
Assignee: '' as IntlString,
|
2022-04-08 18:05:49 +00:00
|
|
|
AssignTo: '' as IntlString,
|
|
|
|
AssignedTo: '' as IntlString,
|
2022-06-02 02:42:44 +00:00
|
|
|
SubIssues: '' as IntlString,
|
2022-06-03 14:49:17 +00:00
|
|
|
SubIssuesList: '' as IntlString,
|
2022-05-23 07:24:15 +00:00
|
|
|
SetParent: '' as IntlString,
|
|
|
|
ChangeParent: '' as IntlString,
|
|
|
|
RemoveParent: '' as IntlString,
|
2022-05-25 06:09:58 +00:00
|
|
|
OpenParent: '' as IntlString,
|
2022-06-02 16:57:07 +00:00
|
|
|
OpenSubIssues: '' as IntlString,
|
|
|
|
AddSubIssues: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
BlockedBy: '' as IntlString,
|
|
|
|
RelatedTo: '' as IntlString,
|
|
|
|
Comments: '' as IntlString,
|
|
|
|
Attachments: '' as IntlString,
|
|
|
|
Labels: '' as IntlString,
|
|
|
|
Space: '' as IntlString,
|
2022-04-20 06:06:05 +00:00
|
|
|
SetDueDate: '' as IntlString,
|
2022-05-19 10:37:14 +00:00
|
|
|
ChangeDueDate: '' as IntlString,
|
2022-04-08 18:05:49 +00:00
|
|
|
ModificationDate: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
Issue: '' as IntlString,
|
|
|
|
Document: '' as IntlString,
|
|
|
|
DocumentIcon: '' as IntlString,
|
|
|
|
DocumentColor: '' as IntlString,
|
|
|
|
Rank: '' as IntlString,
|
2022-04-14 06:07:07 +00:00
|
|
|
DueDatePopupTitle: '' as IntlString,
|
|
|
|
DueDatePopupOverdueTitle: '' as IntlString,
|
|
|
|
DueDatePopupDescription: '' as IntlString,
|
|
|
|
DueDatePopupOverdueDescription: '' as IntlString,
|
2022-04-20 06:06:05 +00:00
|
|
|
Grouping: '' as IntlString,
|
|
|
|
Ordering: '' as IntlString,
|
2022-04-22 06:13:57 +00:00
|
|
|
CompletedIssues: '' as IntlString,
|
|
|
|
ShowEmptyGroups: '' as IntlString,
|
2022-04-20 06:06:05 +00:00
|
|
|
NoGrouping: '' as IntlString,
|
|
|
|
NoAssignee: '' as IntlString,
|
|
|
|
LastUpdated: '' as IntlString,
|
|
|
|
DueDate: '' as IntlString,
|
2022-06-28 06:53:39 +00:00
|
|
|
Manual: '' as IntlString,
|
2022-04-22 06:13:57 +00:00
|
|
|
All: '' as IntlString,
|
|
|
|
PastWeek: '' as IntlString,
|
|
|
|
PastMonth: '' as IntlString,
|
2022-05-05 06:35:26 +00:00
|
|
|
Filter: '' as IntlString,
|
|
|
|
ClearFilters: '' as IntlString,
|
|
|
|
Back: '' as IntlString,
|
2022-05-16 10:38:51 +00:00
|
|
|
AssetLabel: '' as IntlString,
|
|
|
|
AddToProject: '' as IntlString,
|
|
|
|
MoveToProject: '' as IntlString,
|
|
|
|
NoProject: '' as IntlString,
|
2022-05-18 05:35:34 +00:00
|
|
|
ProjectLeadTitle: '' as IntlString,
|
|
|
|
ProjectMembersTitle: '' as IntlString,
|
|
|
|
ProjectLeadSearchPlaceholder: '' as IntlString,
|
|
|
|
ProjectMembersSearchPlaceholder: '' as IntlString,
|
2022-06-16 14:07:06 +00:00
|
|
|
List: '' as IntlString,
|
2022-06-19 16:27:47 +00:00
|
|
|
NumberLabels: '' as IntlString,
|
2022-06-24 06:05:05 +00:00
|
|
|
Roadmap: '' as IntlString,
|
2022-07-01 06:14:31 +00:00
|
|
|
MoveToTeam: '' as IntlString,
|
2022-03-31 08:32:42 +00:00
|
|
|
|
|
|
|
IssueTitlePlaceholder: '' as IntlString,
|
|
|
|
IssueDescriptionPlaceholder: '' as IntlString,
|
2022-04-09 03:46:40 +00:00
|
|
|
Unassigned: '' as IntlString,
|
2022-04-26 11:19:26 +00:00
|
|
|
AddIssueTooltip: '' as IntlString,
|
|
|
|
|
|
|
|
CopyIssueUrl: '' as IntlString,
|
2022-05-05 06:35:26 +00:00
|
|
|
CopyIssueId: '' as IntlString,
|
2022-05-18 04:04:54 +00:00
|
|
|
CopyIssueBranch: '' as IntlString,
|
2022-06-27 15:56:24 +00:00
|
|
|
CopyIssueTitle: '' as IntlString,
|
2022-05-05 06:35:26 +00:00
|
|
|
|
|
|
|
FilterIs: '' as IntlString,
|
|
|
|
FilterIsNot: '' as IntlString,
|
|
|
|
FilterIsEither: '' as IntlString,
|
2022-05-18 04:04:54 +00:00
|
|
|
FilterStatesCount: '' as IntlString,
|
|
|
|
|
2022-05-24 14:46:19 +00:00
|
|
|
EditIssue: '' as IntlString,
|
|
|
|
|
|
|
|
Save: '' as IntlString,
|
|
|
|
IncludeItemsThatMatch: '' as IntlString,
|
|
|
|
AnyFilter: '' as IntlString,
|
2022-06-09 14:49:10 +00:00
|
|
|
AllFilters: '' as IntlString,
|
2022-06-18 08:11:10 +00:00
|
|
|
NoDescription: '' as IntlString,
|
|
|
|
|
2022-06-23 11:09:18 +00:00
|
|
|
Assigned: '' as IntlString,
|
|
|
|
Created: '' as IntlString,
|
|
|
|
Subscribed: '' as IntlString,
|
|
|
|
|
2022-07-01 06:14:31 +00:00
|
|
|
Relations: '' as IntlString,
|
|
|
|
RemoveRelation: '' as IntlString,
|
|
|
|
AddBlockedBy: '' as IntlString,
|
|
|
|
AddIsBlocking: '' as IntlString,
|
|
|
|
AddRelatedIssue: '' as IntlString,
|
|
|
|
RelatedIssue: '' as IntlString,
|
|
|
|
BlockedIssue: '' as IntlString,
|
|
|
|
BlockingIssue: '' as IntlString,
|
|
|
|
BlockedBySearchPlaceholder: '' as IntlString,
|
|
|
|
IsBlockingSearchPlaceholder: '' as IntlString,
|
|
|
|
RelatedIssueSearchPlaceholder: '' as IntlString,
|
|
|
|
Blocks: '' as IntlString,
|
|
|
|
Related: '' as IntlString,
|
|
|
|
|
2022-06-18 08:11:10 +00:00
|
|
|
DurMinutes: '' as IntlString,
|
|
|
|
DurHours: '' as IntlString,
|
|
|
|
DurDays: '' as IntlString,
|
|
|
|
DurMonths: '' as IntlString,
|
|
|
|
DurYears: '' as IntlString,
|
2022-06-29 05:55:11 +00:00
|
|
|
StatusHistory: '' as IntlString,
|
|
|
|
AddLabel: '' as IntlString
|
2022-03-31 08:32:42 +00:00
|
|
|
},
|
|
|
|
component: {
|
|
|
|
NopeComponent: '' as AnyComponent,
|
|
|
|
Inbox: '' as AnyComponent,
|
|
|
|
MyIssues: '' as AnyComponent,
|
|
|
|
Views: '' as AnyComponent,
|
2022-06-28 06:53:39 +00:00
|
|
|
Issues: '' as AnyComponent,
|
2022-03-31 08:32:42 +00:00
|
|
|
Active: '' as AnyComponent,
|
|
|
|
Backlog: '' as AnyComponent,
|
|
|
|
Projects: '' as AnyComponent,
|
|
|
|
IssuePresenter: '' as AnyComponent,
|
2022-05-18 04:04:54 +00:00
|
|
|
ProjectTitlePresenter: '' as AnyComponent,
|
2022-04-27 08:18:59 +00:00
|
|
|
ProjectPresenter: '' as AnyComponent,
|
2022-04-08 18:05:49 +00:00
|
|
|
TitlePresenter: '' as AnyComponent,
|
|
|
|
ModificationDatePresenter: '' as AnyComponent,
|
2022-04-12 17:04:29 +00:00
|
|
|
PriorityPresenter: '' as AnyComponent,
|
2022-05-04 15:08:24 +00:00
|
|
|
PriorityEditor: '' as AnyComponent,
|
2022-05-16 10:38:51 +00:00
|
|
|
ProjectEditor: '' as AnyComponent,
|
2022-04-12 17:41:32 +00:00
|
|
|
StatusPresenter: '' as AnyComponent,
|
2022-05-04 13:46:34 +00:00
|
|
|
StatusEditor: '' as AnyComponent,
|
2022-04-12 18:12:59 +00:00
|
|
|
AssigneePresenter: '' as AnyComponent,
|
2022-04-14 06:07:07 +00:00
|
|
|
DueDatePresenter: '' as AnyComponent,
|
2022-03-31 08:32:42 +00:00
|
|
|
EditIssue: '' as AnyComponent,
|
|
|
|
CreateTeam: '' as AnyComponent,
|
2022-05-18 05:35:34 +00:00
|
|
|
NewIssueHeader: '' as AnyComponent,
|
|
|
|
IconPresenter: '' as AnyComponent,
|
|
|
|
LeadPresenter: '' as AnyComponent,
|
|
|
|
TargetDatePresenter: '' as AnyComponent,
|
|
|
|
ProjectMembersPresenter: '' as AnyComponent,
|
2022-05-19 10:37:14 +00:00
|
|
|
ProjectStatusPresenter: '' as AnyComponent,
|
2022-06-09 14:54:54 +00:00
|
|
|
ProjectStatusEditor: '' as AnyComponent,
|
2022-05-23 07:24:15 +00:00
|
|
|
SetDueDateActionPopup: '' as AnyComponent,
|
2022-06-06 13:44:21 +00:00
|
|
|
SetParentIssueActionPopup: '' as AnyComponent,
|
2022-06-08 14:03:26 +00:00
|
|
|
EditProject: '' as AnyComponent,
|
|
|
|
IssuesView: '' as AnyComponent,
|
2022-06-09 14:49:10 +00:00
|
|
|
ListView: '' as AnyComponent,
|
2022-06-15 04:59:43 +00:00
|
|
|
KanbanView: '' as AnyComponent,
|
2022-06-24 06:05:05 +00:00
|
|
|
Roadmap: '' as AnyComponent,
|
|
|
|
TeamProjects: '' as AnyComponent,
|
2022-06-24 12:36:08 +00:00
|
|
|
IssuePreview: '' as AnyComponent,
|
2022-07-01 06:14:31 +00:00
|
|
|
RelationsPopup: '' as AnyComponent,
|
2022-06-24 12:36:08 +00:00
|
|
|
CreateIssue: '' as AnyComponent
|
2022-06-24 07:46:53 +00:00
|
|
|
},
|
|
|
|
function: {
|
2022-06-25 17:32:31 +00:00
|
|
|
IssueTitleProvider: '' as Resource<(client: Client, ref: Ref<Doc>) => Promise<string>>
|
2022-03-31 08:32:42 +00:00
|
|
|
}
|
|
|
|
})
|