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": "優先度を設定\u2026",
|
|
"SetStatus": "ステータスを設定\u2026",
|
|
"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": "親イシューを設定\u2026",
|
|
"ChangeParent": "親イシューを変更\u2026",
|
|
"RemoveParent": "親イシューを削除",
|
|
"OpenParent": "親イシューを開く",
|
|
"SubIssues": "子イシュー",
|
|
"SubIssuesList": "子イシュー ({subIssues})",
|
|
"OpenSubIssues": "子イシューを開く",
|
|
"AddSubIssues": "子イシューを追加",
|
|
"BlockedBy": "ブロックされている",
|
|
"RelatedTo": "関連する",
|
|
"Comments": "コメント",
|
|
"Attachments": "添付ファイル",
|
|
"Labels": "ラベル",
|
|
"Component": "コンポーネント",
|
|
"Space": "",
|
|
"SetDueDate": "期日を設定\u2026",
|
|
"ChangeDueDate": "期日を変更\u2026",
|
|
"ModificationDate": "更新日 {value}",
|
|
"Project": "プロジェクト",
|
|
"Issue": "イシュー",
|
|
"SubIssue": "子イシュー",
|
|
"Document": "",
|
|
"DocumentIcon": "",
|
|
"DocumentColor": "",
|
|
"Rank": "ランク",
|
|
"TypeIssuePriority": "イシューの優先度",
|
|
"IssueTitlePlaceholder": "イシューのタイトル",
|
|
"SubIssueTitlePlaceholder": "子イシューのタイトル",
|
|
"IssueDescriptionPlaceholder": "説明を追加\u2026",
|
|
"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": "コンポーネントに追加\u2026",
|
|
"MoveToComponent": "コンポーネントに移動\u2026",
|
|
"NoComponent": "コンポーネントなし",
|
|
"ComponentLeadTitle": "コンポーネントリーダー",
|
|
"ComponentMembersTitle": "コンポーネントメンバー",
|
|
"ComponentLeadSearchPlaceholder": "コンポーネントリーダーを設定\u2026",
|
|
"ComponentMembersSearchPlaceholder": "コンポーネントメンバーを変更\u2026",
|
|
"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": {}
|
|
}
|