diff --git a/packages/i18n/src/locales/en/translations.json b/packages/i18n/src/locales/en/translations.json
index b3877581ddd..b1dccd243ab 100644
--- a/packages/i18n/src/locales/en/translations.json
+++ b/packages/i18n/src/locales/en/translations.json
@@ -753,6 +753,10 @@
},
"comments": {
"placeholder": "Add comment...",
+ "switch": {
+ "private": "Switch to private comment",
+ "public": "Switch to public comment"
+ },
"create": {
"success": "Comment created successfully",
"error": "Comment creation failed. Please try again later."
@@ -1494,7 +1498,7 @@
"remove_search_criteria_to_see_all_cycles": "Remove the search criteria to see all cycles",
"only_completed_cycles_can_be_archived": "Only completed cycles can be archived",
"active_cycle": {
- "label" :"Active cycle",
+ "label": "Active cycle",
"progress": "Progress",
"chart": "Burndown chart",
"priority_issue": "Priority issues",
diff --git a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/settings/states/page.tsx b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/settings/states/page.tsx
index 5284595726f..54fca1c0821 100644
--- a/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/settings/states/page.tsx
+++ b/web/app/[workspaceSlug]/(projects)/projects/(detail)/[projectId]/settings/states/page.tsx
@@ -35,7 +35,7 @@ const StatesSettingsPage = observer(() => {
<>
-
{t("states")}
+ {t("common.states")}
{workspaceSlug && projectId && (
diff --git a/web/core/components/issues/issue-detail-widgets/sub-issues/title.tsx b/web/core/components/issues/issue-detail-widgets/sub-issues/title.tsx
index cfe1d1fdef7..3eb60f5e4a8 100644
--- a/web/core/components/issues/issue-detail-widgets/sub-issues/title.tsx
+++ b/web/core/components/issues/issue-detail-widgets/sub-issues/title.tsx
@@ -40,7 +40,7 @@ export const SubIssuesCollapsibleTitle: FC = observer((props) => {
return (
diff --git a/web/core/components/issues/issue-detail/issue-activity/comments/comment-card.tsx b/web/core/components/issues/issue-detail/issue-activity/comments/comment-card.tsx
index ec84304cb18..c8f33b62649 100644
--- a/web/core/components/issues/issue-detail/issue-activity/comments/comment-card.tsx
+++ b/web/core/components/issues/issue-detail/issue-activity/comments/comment-card.tsx
@@ -8,6 +8,8 @@ import { Check, Globe2, Lock, Pencil, Trash2, X } from "lucide-react";
import { EIssueCommentAccessSpecifier } from "@plane/constants";
// plane editor
import { EditorReadOnlyRefApi, EditorRefApi } from "@plane/editor";
+// plane i18n
+import { useTranslation } from "@plane/i18n";
// plane types
import { TIssueComment } from "@plane/types";
// plane ui
@@ -47,6 +49,7 @@ export const IssueCommentCard: FC = observer((props) => {
showAccessSpecifier = false,
disabled = false,
} = props;
+ const { t } = useTranslation();
// states
const [isEditing, setIsEditing] = useState(false);
// refs
@@ -104,7 +107,7 @@ export const IssueCommentCard: FC = observer((props) => {
setIsEditing(true)} className="flex items-center gap-1">
- Edit
+ {t("common.actions.edit")}
{showAccessSpecifier && (
<>
@@ -116,7 +119,7 @@ export const IssueCommentCard: FC = observer((props) => {
className="flex items-center gap-1"
>
- Switch to public comment
+ {t("issue.comments.switch.public")}
) : (
= observer((props) => {
className="flex items-center gap-1"
>
- Switch to private comment
+ {t("issue.comments.switch.private")}
)}
>
@@ -136,7 +139,7 @@ export const IssueCommentCard: FC = observer((props) => {
className="flex items-center gap-1"
>
- Delete
+ {t("common.actions.delete")}
)}
diff --git a/web/core/components/modules/form.tsx b/web/core/components/modules/form.tsx
index 34f3d9755a7..21f37027c4f 100644
--- a/web/core/components/modules/form.tsx
+++ b/web/core/components/modules/form.tsx
@@ -234,7 +234,7 @@ export const ModuleForm: React.FC = (props) => {
: t("update_module")
: isSubmitting
? t("creating")
- : t("create_module")}
+ : t("project_module.create_module")}
diff --git a/web/core/components/project/search-projects.tsx b/web/core/components/project/search-projects.tsx
index 67e4a3ebb31..412e979e9a0 100644
--- a/web/core/components/project/search-projects.tsx
+++ b/web/core/components/project/search-projects.tsx
@@ -59,7 +59,7 @@ export const ProjectSearch: FC = observer(() => {
updateSearchQuery(e.target.value)}
onKeyDown={handleInputKeyDown}