mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
* feat(tracker): add Gantt scheduling schema (startDate + IssueRelation)
Schema-only foundation for the upcoming Gantt-chart view in tracker.
No UI in this PR.
Changes:
- Issue.startDate: Timestamp | null (interface + IssueDraft + @Prop with @Index)
- Milestone.startDate: Timestamp | null (interface + @Prop, reusing the
existing tracker.string.StartDate IntlString)
- New DependencyKind type ('finish-to-start' | 'start-to-start' |
'finish-to-finish' | 'start-to-finish')
- New IssueRelation AttachedDoc class with kind: DependencyKind, signed
lag: number — registered in models/tracker via TIssueRelation
- 7 new IntlString keys: IssueStartDate, GanttDependency,
GanttDependency{FinishToStart,StartToStart,FinishToFinish,StartToFinish},
GanttLag — all 13 locales updated
- Cross-plugin literal updates in importer + github sync to satisfy the new
required Issue.startDate / Milestone.startDate fields:
- packages/importer/src/importer/importer.ts: AttachedData<Issue> literal
- services/github/pod-github/src/sync/issueBase.ts: 'startDate' added to
GithubIssueData Omit list (github sync does not own scheduling)
- services/github/pod-github/src/sync/issues.ts + pullrequests.ts:
AttachedData<Issue|GithubPullRequest> literals
Out of scope (deferred to follow-up PRs):
- UI for Gantt view, drag/resize, dependency editor, critical path
- blockedBy → IssueRelation migration (ships atomically with the writer
redirect in the dependency-UI PR)
- LinkIssues permission (tracker uses forbid-style permissions; needs
maintainer discussion)
- Activity-feed wiring for IssueRelation (needs a producer to test against)
- IssueTemplate.startDate (template propagation semantics undecided)
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* test(model-tracker): add migrateAddStartDate jest tests
3 tests covering migrateAddStartDate:
- writes startDate=null to Issues in DOMAIN_TASK with the right filter
- writes startDate=null to Milestones in DOMAIN_TRACKER with the right filter
- issues exactly two update calls (one per class)
Follows the MigrationClient mock pattern from
models/chat/src/__tests__/migration.test.ts.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* feat(model-tracker): add migrateAddStartDate + wire into trackerOperation
Backfills startDate=null on existing Issues (DOMAIN_TASK) and Milestones
(DOMAIN_TRACKER) so the new schema field has a defined value on every
pre-existing document. Idempotent via the standard tryMigrate state-key
mechanism (state: 'gantt-add-startdate').
Verified domain choices against existing migration helpers:
- migrateIdentifiers / passIdentifierToParentInfo use DOMAIN_TASK for
Issues (lines 145, 161 in this file).
- TMilestone @Model decorator confirms DOMAIN_TRACKER for Milestones
(models/tracker/src/types.ts:372).
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* feat(tracker): expose Issue.startDate / Milestone.startDate in UI; tighten typing
UI changes (so the new schema fields are actually editable, in chronological
order Start → Due/Target):
- New StartDateEditor.svelte (mirrors DueDateEditor.svelte for startDate)
- ControlPanel: render Start Date row above Due Date row in the issue
side panel; both always-visible (no `!== null` guard) so users can set
them on issues that don't have a date yet
- NewMilestone form: Start Date input above Target Date input
- Milestone list view: Start Date column before Target Date column
- TIssueRelation: tighten interface to `extends AttachedDoc<Issue, 'relations'>`
so attachedTo + collection are statically typed. The model class
re-declares `collection: 'relations'` to match the narrower base.
- Drop 4 unused Dependency-kind IntlString keys (FinishToFinish,
FinishToStart, StartToFinish, StartToStart) — they had no consumer
in PR 1; will be re-introduced in PR 4 (dependency editor).
- Simplify migration.ts comments — drop ageing line-references.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* fix(tracker): set explicit @Prop ranks for Milestone date fields
The DocAttributeBar side panel sorts attributes by attr.rank ?? toRank(_id)
(see plugins/view-resources/src/components/ClassAttributeBar.svelte:42-47),
so without explicit ranks the visible order on a Milestone was hash-based
(startDate before Status, breaking the chronological flow the user expects).
Set ranks so the side panel renders Status → Start date → Target date.
Comments and attachments stay where they are (they're collections, filtered
out of the attribute panel by categorizeFields).
Issues are unaffected — the Issue side panel is the custom ControlPanel.svelte
which renders Start date / Due date in explicit slots (see PR 1's UI commit).
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* fix(tracker-resources): EditMilestone renders Status/Start/Target in body in chronological order
The right-side DocAttributeBar sorts attributes by attr.rank ?? toRank(_id),
giving startDate before status (toRank('startDate') < toRank('status')
lexicographically). Setting an explicit rank via @Prop's third arg did not
propagate through the workspace upgrade for existing Attribute documents
in the model TX log — the rank made it into the bundled txes but the
existing Attribute creation TXes are not replaced on upgrade-workspace.
Pivot: render Status, Start date, Target date in the EditMilestone body
in explicit chronological order, and add 'status', 'startDate', 'targetDate'
to ignoreKeys so they don't appear duplicated in the side panel. This
mirrors how Issue's ControlPanel.svelte handles its date fields.
Reverts the no-op @Prop rank attempt.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* fix(fulltext): bump model version to 0.7.423 to match deployed workspaces
The fulltext-pod's compiled model version (baked into bundle/model.json via
common/scripts/version.txt at build time) lags whenever the workspaces have
been migrated to a newer patch but the pod was not rebuilt. In that state the
indexer rejects every incoming Tx with a `wrong version` warning, new issues
silently fail to land in Elasticsearch, and search returns empty results for
any document created after the migration.
Bumping `version.txt` aligns the compiled model with the workspaces. All
future builds (front, transactor, workspace, tool, fulltext) will emit
0.7.423, the indexer accepts the Tx stream again, and the deferred backlog
gets consumed automatically — no manual reindex needed.
This commit is the build-side companion to the schema migration in this
same PR. Without it the fulltext-pod cannot consume the migrated workspace's
Tx events.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* chore: apply rush format after develop merge
Resolves the failing formatting check requested by @ArtyomSavchenko in
review of #10851 after the develop branch merge.
Affects three files in our PR scope:
- models/tracker/src/migration.ts: collapse short multi-line client.update call
- plugins/tracker/src/index.ts: inline DependencyKind union + IssueRelation comment
- plugins/tracker-resources/src/components/milestones/EditMilestone.svelte:
reformat inline arrow handlers, move QueryIssuesList block ahead of <style>
No logic changes; deterministic prettier output.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* test(tracker): fix milestone page-object selectors after startDate field addition
The Gantt schema PR added Milestone.startDate, which:
1. Adds a second datetime-button to the NewMilestone form pool. The
existing 'div.antiCard-pool button.datetime-button' locator matched
both buttons and tripped Playwright's strict-mode check. Scope the
target-date locator to .last() and add a sibling .first() helper for
the start-date button.
2. Moves Status / Start date / Target date editors from the
auto-generated side panel into EditMilestone's body
(div.dates-row > div.date-cell > span.cell-label + <button>) in
chronological order. The label span no longer has a sibling <div>
wrapping the button — the button is a direct sibling. Switch the
buttonStatus/buttonTargetDate XPath to following-sibling::button[1]
and match the new class="cell-label" span. Add a buttonStartDate
helper for the new editor row.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* test(tracker): shift buttonEstimation index after startDate row addition
ControlPanel.svelte (issue side panel) now renders the Start date and
Due date rows unconditionally — pre-PR the Due date row was conditional
on issue.dueDate !== null and the Start date row didn't exist at all.
Both new rows emit a <div><button> pair via DueDatePresenter, which the
existing (//span[text()='Estimation']/../div/button)[3] XPath counts as
extra matches and pushes the Estimation button from the 3rd to the 5th
direct div/button under the popupPanel-body__aside-grid.
Direct div/button order under the grid (document order):
1. CreatedBy (EmployeeBox > UserBox div > Button)
2. Assignee (AssigneeEditor div > Button)
3. Start date (NEW — StartDateEditor > DueDatePresenter div > button.datetime-button)
4. Due date (NEW — DueDateEditor > DueDatePresenter div > button.datetime-button)
5. Estimation (AttributeBarEditor div > Button)
buttonAssignee at [2] is unchanged. textEstimation uses 'following-sibling::div[1]'
(first sibling), which is unaffected by additions earlier in the grid.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* chore: apply rush format (prettier compliance for CI)
CI's rush fast-format --branch develop step flagged
tests/sanity/tests/model/tracker/milestones-details-page.ts for a
missing blank line between the buttonTargetDate locator (introduced in
86b1c19ee8) and the next field. Apply the local 'rush format' result.
The two other files CI flagged
(plugins/process-resources/src/components/settings/BindingsEditor.svelte
and ImportSlotsPopup.svelte) were actually upstream changes from PR
#10921 (Fix add tag) that landed after our last develop merge — the
preceding merge of upstream/develop into this branch resolves those
diffs.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
* fix(tests/tracker): use contains() for cell-label class to survive Svelte CSS scoping
The Svelte 4 compiler appends a scoped `svelte-<hash>` class to every
element matched by a component-local CSS selector. EditMilestone.svelte
styles `.cell-label` locally, so each label span ends up as
`<span class="cell-label svelte-XXXXX">` at runtime, not the bare
`<span class="cell-label">` shipped in source. The previous XPath
locator used strict `@class="cell-label"` and never matched.
Switch buttonStatus / buttonStartDate / buttonTargetDate to the standard
`contains(concat(' ', normalize-space(@class), ' '), ' cell-label ')`
class-match idiom so the locators tolerate the added scoped class.
Verified against the playwright accessibility snapshot from the failed
run (artifact playwright-results, hash 07a8f36b...md): the Status row
renders as a generic with text 'Status' immediately followed by a
button 'In progress' as the next direct sibling, matching the rest of
the XPath.
Fixes 5 milestone.spec.ts failures observed in run 27816114236:
- Create a Milestone (locator timeout on checkIssue → buttonStatus)
- Edit a Milestone (locator timeout on editIssue → buttonStatus.click)
- Delete a Milestone (locator timeout on checkIssue → buttonStatus)
plus their two retries each.
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
---------
Signed-off-by: Michael Uray <michaeluray@users.noreply.github.com>
Co-authored-by: Michael Uray <michaeluray@users.noreply.github.com>
Co-authored-by: Artyom Savchenko <armisav@gmail.com>
283 lines
14 KiB
JSON
283 lines
14 KiB
JSON
{
|
|
"string": {
|
|
"TrackerApplication": "트래커",
|
|
"Projects": "내 프로젝트",
|
|
"More": "더 보기",
|
|
"Default": "기본값",
|
|
"MakeDefault": "기본값으로 설정",
|
|
"Delete": "삭제",
|
|
"Open": "열기",
|
|
"Members": "멤버",
|
|
"Inbox": "수신함",
|
|
"MyIssues": "내 이슈",
|
|
"ViewIssue": "이슈 보기",
|
|
"IssueCreated": "이슈가 생성되었습니다",
|
|
"Issues": "이슈",
|
|
"Views": "뷰",
|
|
"Active": "활성",
|
|
"AllIssues": "모든 이슈",
|
|
"ActiveIssues": "활성 이슈",
|
|
"BacklogIssues": "백로그",
|
|
"Backlog": "백로그",
|
|
"Board": "보드",
|
|
"Components": "컴포넌트",
|
|
"AllComponents": "전체",
|
|
"BacklogComponents": "백로그",
|
|
"ActiveComponents": "활성",
|
|
"ClosedComponents": "완료",
|
|
"NewComponent": "새 컴포넌트",
|
|
"CreateComponent": "컴포넌트 생성",
|
|
"ComponentNamePlaceholder": "컴포넌트 이름",
|
|
"ComponentDescriptionPlaceholder": "설명 (선택)",
|
|
"ComponentLead": "리더",
|
|
"ComponentMembers": "멤버",
|
|
"StartDate": "시작일",
|
|
"TargetDate": "목표일",
|
|
"Planned": "계획됨",
|
|
"InProgress": "진행 중",
|
|
"Paused": "일시 중지",
|
|
"Completed": "완료",
|
|
"Canceled": "취소됨",
|
|
"CreateProject": "프로젝트 생성",
|
|
"NewProject": "새 프로젝트",
|
|
"ProjectTitle": "프로젝트 제목",
|
|
"ProjectTitlePlaceholder": "새 프로젝트",
|
|
"UsedInIssueIDs": "이슈 ID에 사용됨",
|
|
"Identifier": "식별자",
|
|
"Import": "가져오기",
|
|
"ProjectIdentifier": "프로젝트 식별자",
|
|
"IdentifierExists": "이미 존재하는 프로젝트 식별자입니다",
|
|
"ProjectIdentifierPlaceholder": "PRJCT",
|
|
"ChooseIcon": "아이콘 선택",
|
|
"AddIssue": "이슈 추가",
|
|
"NewIssue": "새 이슈",
|
|
"NewIssuePlaceholder": "새로 만들기",
|
|
"ResumeDraft": "초안 이어서 작성",
|
|
"SaveIssue": "이슈 생성",
|
|
"SetPriority": "우선순위 설정…",
|
|
"SetStatus": "상태 설정…",
|
|
"SelectIssue": "이슈 선택",
|
|
"Priority": "우선순위",
|
|
"NoPriority": "우선순위 없음",
|
|
"Urgent": "긴급",
|
|
"High": "높음",
|
|
"Medium": "보통",
|
|
"Low": "낮음",
|
|
"Unassigned": "미할당",
|
|
"Back": "뒤로",
|
|
"List": "목록",
|
|
"NumberLabels": "{count, plural, =0 {라벨 없음} =1 {라벨 1개} other {라벨 #개}}",
|
|
"CategoryBacklog": "백로그",
|
|
"CategoryUnstarted": "미착수",
|
|
"CategoryStarted": "진행 중",
|
|
"CategoryCompleted": "완료",
|
|
"CategoryCanceled": "취소됨",
|
|
"Title": "제목",
|
|
"Name": "이름",
|
|
"Description": "설명",
|
|
"Status": "상태",
|
|
"Number": "번호",
|
|
"Assignee": "담당자",
|
|
"AssignTo": "담당자 지정...",
|
|
"AssignedTo": "{value}에게 할당됨",
|
|
"Parent": "상위 이슈",
|
|
"SetParent": "상위 이슈 설정…",
|
|
"ChangeParent": "상위 이슈 변경…",
|
|
"RemoveParent": "상위 이슈 제거",
|
|
"OpenParent": "상위 이슈 열기",
|
|
"SubIssues": "하위 이슈",
|
|
"SubIssuesList": "하위 이슈 ({subIssues})",
|
|
"OpenSubIssues": "하위 이슈 열기",
|
|
"AddSubIssues": "하위 이슈 추가",
|
|
"BlockedBy": "차단됨",
|
|
"RelatedTo": "관련",
|
|
"Comments": "댓글",
|
|
"Attachments": "첨부 파일",
|
|
"Labels": "라벨",
|
|
"Component": "컴포넌트",
|
|
"Space": "",
|
|
"SetDueDate": "마감일 설정…",
|
|
"ChangeDueDate": "마감일 변경…",
|
|
"ModificationDate": "{value} 업데이트",
|
|
"Project": "프로젝트",
|
|
"Issue": "이슈",
|
|
"SubIssue": "하위 이슈",
|
|
"Document": "",
|
|
"DocumentIcon": "",
|
|
"DocumentColor": "",
|
|
"Rank": "순위",
|
|
"TypeIssuePriority": "이슈 우선순위",
|
|
"IssueTitlePlaceholder": "이슈 제목",
|
|
"SubIssueTitlePlaceholder": "하위 이슈 제목",
|
|
"IssueDescriptionPlaceholder": "설명 추가…",
|
|
"SubIssueDescriptionPlaceholder": "하위 이슈 설명 추가",
|
|
"AddIssueTooltip": "이슈 추가...",
|
|
"NewIssueDialogClose": "이 대화 상자를 닫으시겠습니까?",
|
|
"NewIssueDialogCloseNote": "모든 변경 사항이 손실됩니다",
|
|
"RemoveComponentDialogClose": "컴포넌트를 삭제하시겠습니까?",
|
|
"RemoveComponentDialogCloseNote": "이 컴포넌트를 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다",
|
|
"Grouping": "그룹화",
|
|
"Ordering": "정렬",
|
|
"CompletedIssues": "완료된 이슈",
|
|
"NoGrouping": "그룹화 없음",
|
|
"NoAssignee": "담당자 없음",
|
|
"LastUpdated": "최근 업데이트",
|
|
"DueDate": "마감일",
|
|
"IssueStartDate": "시작일",
|
|
"GanttDependency": "Dependency",
|
|
"GanttLag": "Lag",
|
|
"Manual": "수동",
|
|
"All": "전체",
|
|
"PastWeek": "지난주",
|
|
"PastMonth": "지난달",
|
|
"CopyIssueUrl": "이슈 URL 복사",
|
|
"CopyIssueId": "이슈 ID 복사",
|
|
"CopyIssueBranch": "Git 브랜치 이름 복사",
|
|
"CopyIssueTitle": "이슈 제목 복사",
|
|
"AssetLabel": "자산",
|
|
"AddToComponent": "컴포넌트에 추가…",
|
|
"MoveToComponent": "컴포넌트로 이동…",
|
|
"NoComponent": "컴포넌트 없음",
|
|
"ComponentLeadTitle": "컴포넌트 리더",
|
|
"ComponentMembersTitle": "컴포넌트 멤버",
|
|
"ComponentLeadSearchPlaceholder": "컴포넌트 리더 설정…",
|
|
"ComponentMembersSearchPlaceholder": "컴포넌트 멤버 변경…",
|
|
"MoveToProject": "프로젝트로 이동",
|
|
"Duplicate": "복제",
|
|
"GotoIssues": "이슈로 이동",
|
|
"GotoActive": "활성 이슈로 이동",
|
|
"GotoBacklog": "백로그로 이동",
|
|
"GotoComponents": "컴포넌트로 이동",
|
|
"GotoMyIssues": "내 이슈로 이동",
|
|
"GotoTrackerApplication": "트래커로 전환",
|
|
"CreatedOne": "생성됨",
|
|
"MoveIssues": "이슈 이동",
|
|
"MoveIssuesDescription": "이슈를 이동할 프로젝트를 선택하세요",
|
|
"ManageAttributes": "속성 관리",
|
|
"KeepOriginalAttributes": "원래 속성 유지",
|
|
"KeepOriginalAttributesTooltip": "원래 이슈 상태와 컴포넌트가 새 프로젝트에 유지됨",
|
|
"SelectReplacement": "다음 항목은 새 프로젝트에서 사용할 수 없습니다. 대체 항목을 선택하세요.",
|
|
"MissingItem": "누락된 항목",
|
|
"Replacement": "대체",
|
|
"Original": "원본",
|
|
"OriginalDescription": "이 섹션의 항목은 새 프로젝트에 생성됩니다",
|
|
"Relations": "관계",
|
|
"RemoveRelation": "관계 제거...",
|
|
"AddBlockedBy": "차단됨으로 표시...",
|
|
"AddIsBlocking": "차단 중으로 표시...",
|
|
"AddRelatedIssue": "다른 이슈 참조...",
|
|
"RelatedIssue": "관련 이슈 {id} - {title}",
|
|
"BlockedIssue": "차단된 이슈 {id} - {title}",
|
|
"BlockingIssue": "차단 중인 이슈 {id} - {title}",
|
|
"BlockedBySearchPlaceholder": "차단 원인으로 표시할 이슈 검색...",
|
|
"IsBlockingSearchPlaceholder": "차단 중으로 표시할 이슈 검색...",
|
|
"RelatedIssueSearchPlaceholder": "참조할 이슈 검색...",
|
|
"Blocks": "차단 중",
|
|
"Related": "관련 이슈",
|
|
"RelatedIssues": "관련 이슈",
|
|
"EditIssue": "{title} 편집",
|
|
"EditWorkflowStatuses": "이슈 상태 편집",
|
|
"EditProject": "프로젝트 편집",
|
|
"DeleteProject": "프로젝트 삭제",
|
|
"ArchiveProjectName": "{name} 프로젝트를 보관하시겠습니까?",
|
|
"ArchiveProjectConfirm": "이 프로젝트를 보관하시겠습니까?",
|
|
"DeleteProjectConfirm": "이 프로젝트와 모든 이슈를 삭제하시겠습니까?",
|
|
"ProjectHasIssues": "이 프로젝트에는 기존 이슈가 있습니다. 보관하시겠습니까?",
|
|
"ManageWorkflowStatuses": "프로젝트 유형 관리",
|
|
"AddWorkflowStatus": "이슈 상태 추가",
|
|
"EditWorkflowStatus": "이슈 상태 편집",
|
|
"DeleteWorkflowStatus": "이슈 상태 삭제",
|
|
"DeleteWorkflowStatusConfirm": "\"{status}\" 상태를 삭제하시겠습니까?",
|
|
"DeleteWorkflowStatusErrorDescription": "\"{status}\" 상태에 {count, plural, =1 {이슈 1개} other {이슈 #개}}가 할당되어 있습니다. 이동할 상태를 선택하세요",
|
|
"Save": "저장",
|
|
"IncludeItemsThatMatch": "일치하는 항목 포함",
|
|
"AnyFilter": "필터 중 하나",
|
|
"AllFilters": "모든 필터",
|
|
"NoDescription": "설명 없음",
|
|
"SearchIssue": "작업 검색...",
|
|
"StatusHistory": "상태 이력",
|
|
"NewSubIssue": "하위 이슈 추가...",
|
|
"AddLabel": "라벨 추가",
|
|
"DeleteIssue": "{issueCount, plural, =1 {이슈} other {이슈 #개}} 삭제",
|
|
"DeleteIssueConfirm": "{issueCount, plural, =1 {이슈} other {이슈}}{subIssueCount, plural, =0 {} =1 {와 하위 이슈} other {와 하위 이슈}}를 삭제하시겠습니까?",
|
|
"Milestone": "마일스톤",
|
|
"NoMilestone": "마일스톤 없음",
|
|
"MoveToMilestone": "마일스톤 선택",
|
|
"Milestones": "마일스톤",
|
|
"AllMilestones": "전체",
|
|
"PlannedMilestones": "계획됨",
|
|
"ActiveMilestones": "활성",
|
|
"ClosedMilestones": "완료",
|
|
"AddToMilestone": "마일스톤에 추가",
|
|
"MilestoneNamePlaceholder": "마일스톤 이름",
|
|
"NewMilestone": "새 마일스톤",
|
|
"CreateMilestone": "생성",
|
|
"MoveAndDeleteMilestone": "이슈를 {newMilestone}(으)로 이동하고 {deleteMilestone} 삭제",
|
|
"MoveAndDeleteMilestoneConfirm": "마일스톤을 삭제하고 이슈를 다른 마일스톤으로 이동하시겠습니까?",
|
|
"Estimation": "예상 소요 시간",
|
|
"ReportedTime": "사용 시간",
|
|
"RemainingTime": "남은 시간",
|
|
"TimeSpendReports": "시간 사용 보고서",
|
|
"TimeSpendReport": "시간",
|
|
"TimeSpendReportAdd": "시간 보고서 추가",
|
|
"TimeSpendReportDate": "날짜",
|
|
"TimeSpendReportValue": "사용 시간",
|
|
"TimeSpendReportValueTooltip": "사용 시간(시간 단위)",
|
|
"TimeSpendReportDescription": "설명",
|
|
"TimeSpendDays": "{value}일",
|
|
"TimeSpendHours": "{value}시간",
|
|
"TimeSpendMinutes": "{value}분",
|
|
"ChildEstimation": "하위 이슈 예상치",
|
|
"ChildReportedTime": "하위 이슈 시간",
|
|
"CapacityValue": "{value}일 중",
|
|
"NewRelatedIssue": "새 관련 이슈",
|
|
"RelatedIssuesNotFound": "관련 이슈를 찾을 수 없습니다",
|
|
"AddedReference": "참조 추가됨",
|
|
"AddedAsBlocked": "차단됨으로 표시됨",
|
|
"AddedAsBlocking": "차단 중으로 표시됨",
|
|
"IssueTemplate": "템플릿",
|
|
"IssueTemplates": "템플릿",
|
|
"NewProcess": "새 템플릿",
|
|
"SaveProcess": "템플릿 저장",
|
|
"NoIssueTemplate": "템플릿 없음",
|
|
"TemplateReplace": "새 템플릿을 적용하시겠습니까?",
|
|
"TemplateReplaceConfirm": "모든 필드가 새 템플릿 값으로 덮어쓰여집니다",
|
|
"Apply": "적용",
|
|
"CurrentWorkDay": "현재 영업일",
|
|
"PreviousWorkDay": "이전 영업일",
|
|
"TimeReportDayTypeLabel": "시간 보고서 일자 유형 선택",
|
|
"DefaultAssignee": "이슈 기본 담당자",
|
|
"SevenHoursLength": "7시간",
|
|
"EightHoursLength": "8시간",
|
|
"HourLabel": "시간",
|
|
"MinuteLabel": "분",
|
|
"Saved": "저장됨...",
|
|
"CreatedIssue": "이슈 생성됨",
|
|
"CreatedSubIssue": "하위 이슈 생성됨",
|
|
"ChangeStatus": "상태 변경",
|
|
"ConfigLabel": "트래커",
|
|
"ConfigDescription": "작업 항목을 관리하고 모든 작업을 완료하기 위한 확장 기능입니다.",
|
|
"NoStatusFound": "일치하는 상태를 찾을 수 없습니다",
|
|
"CreateMissingStatus": "누락된 상태 생성",
|
|
"UnsetParent": "상위 이슈 설정이 해제됩니다",
|
|
"AllProjects": "모든 프로젝트",
|
|
"IssueNotificationTitle": "{issueTitle}",
|
|
"IssueNotificationBody": "{senderName}님이 업데이트했습니다",
|
|
"IssueNotificationChanged": "{senderName}님이 {property}을(를) 변경했습니다",
|
|
"IssueNotificationChangedProperty": "{senderName}님이 {property}을(를) \"{newValue}\"(으)로 변경했습니다",
|
|
"IssueNotificationMessage": "{senderName}: {message}",
|
|
"PreviousAssigned": "이전 담당자",
|
|
"IssueAssignedToYou": "나에게 할당됨",
|
|
"RelatedIssueTargetDescription": "클래스나 스페이스에 대한 관련 이슈의 기본 프로젝트",
|
|
"MapRelatedIssues": "관련 이슈의 기본 프로젝트 구성",
|
|
"DefaultIssueStatus": "기본 이슈 상태",
|
|
"IssueStatus": "상태",
|
|
"Extensions": "확장 기능",
|
|
"UnsetParentIssue": "상위 이슈 설정 해제",
|
|
"ForbidCreateProjectPermission": "프로젝트 생성 금지",
|
|
"ForbidCreateProjectPermissionDescription": "사용자의 새 프로젝트 생성을 금지",
|
|
"AllowCreatingIssues": "이슈 생성 허용"
|
|
},
|
|
"status": {}
|
|
}
|