Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/i18n/src/locales/en/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@
"workspace_views": {
"add_view": "Add view",
"empty_state": {
"all-work items": {
"all-issues": {
"title": "No work items in the project",
"description": "First project done! Now, slice your work into trackable pieces with work items. Let's go!",
"primary_button": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export const CyclesListHeader: FC = observer(() => {
toggleCreateCycleModal(true);
}}
>
<div className="hidden sm:block">{t("add")}</div>
<div className="sm:hidden block">{t("add_cycle")}</div>
<div className="sm:hidden block">{t("add")}</div>
<div className="hidden sm:block">{t("project_cycles.add_cycle")}</div>
</Button>
</Header.RightItem>
) : (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const CreateIssueToastActionItems: FC<TCreateIssueToastActionItems> = obs
rel="noopener noreferrer"
className="text-custom-primary px-2 py-1 hover:bg-custom-background-90 font-medium rounded"
>
{`View ${isEpic ? "epic" : "issue"}`}
{`View ${isEpic ? "epic" : "work item"}`}
</a>

{copied ? (
Expand Down
2 changes: 1 addition & 1 deletion web/core/components/modules/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export const ModuleForm: React.FC<Props> = (props) => {
{status
? isSubmitting
? t("updating")
: t("update_module")
: t("project_module.update_module")
: isSubmitting
? t("creating")
: t("project_module.create_module")}
Expand Down
2 changes: 1 addition & 1 deletion web/core/components/modules/quick-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const ModuleQuickActions: React.FC<Props> = observer((props) => {
key: "archive",
action: handleArchiveModule,
title: t("archive"),
description: isInArchivableGroup ? undefined : "project_module.quick_actions.archive_module_description",
description: isInArchivableGroup ? undefined : t("project_module.quick_actions.archive_module_description"),
icon: ArchiveIcon,
className: "items-start",
iconClassName: "mt-1",
Expand Down
Loading