Skip to content

Commit 2018114

Browse files
fix: added missing translation (#6367)
1 parent ff8c5ee commit 2018114

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

packages/i18n/src/locales/en/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@
283283
"create_a_draft": "Create a draft",
284284
"save_to_drafts": "Save to Drafts",
285285
"save": "Save",
286+
"update": "Update",
286287
"updating": "Updating",
287288
"create_new_issue": "Create new issue",
288289
"editor_is_not_ready_to_discard_changes": "Editor is not ready to discard changes",

packages/i18n/src/locales/es/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@
282282
"create_a_draft": "Crear un borrador",
283283
"save_to_drafts": "Guardar en borradores",
284284
"save": "Guardar",
285+
"update": "Actualizar",
285286
"updating": "Actualizando",
286287
"create_new_issue": "Crear nuevo problema",
287288
"editor_is_not_ready_to_discard_changes": "El editor no está listo para descartar los cambios",

packages/i18n/src/locales/fr/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@
282282
"create_a_draft": "Créer un brouillon",
283283
"save_to_drafts": "Enregistrer dans les brouillons",
284284
"save": "Enregistrer",
285+
"update": "Mettre à jour",
285286
"updating": "Mise à jour",
286287
"create_new_issue": "Créer un nouveau problème",
287288
"editor_is_not_ready_to_discard_changes": "L'éditeur n'est pas prêt à annuler les modifications",

packages/i18n/src/locales/ja/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@
282282
"create_a_draft": "下書きを作成",
283283
"save_to_drafts": "下書きに保存",
284284
"save": "保存",
285+
"update": "更新",
285286
"updating": "更新中",
286287
"create_new_issue": "新しい問題を作成",
287288
"editor_is_not_ready_to_discard_changes": "エディターは変更を破棄する準備ができていません",

web/core/components/home/widgets/recents/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { Briefcase, FileText } from "lucide-react";
88
import { TActivityEntityData, THomeWidgetProps, TRecentActivityFilterKeys } from "@plane/types";
99
// components
1010
import { LayersIcon } from "@plane/ui";
11+
import { ContentOverflowWrapper } from "@/components/core/content-overflow-HOC";
1112
import { useProject } from "@/hooks/store";
1213
import { WorkspaceService } from "@/plane-web/services";
1314
import { EmptyWorkspace } from "../empty-states";
@@ -17,7 +18,6 @@ import { FiltersDropdown } from "./filters";
1718
import { RecentIssue } from "./issue";
1819
import { RecentPage } from "./page";
1920
import { RecentProject } from "./project";
20-
import { ContentOverflowWrapper } from "@/components/core/content-overflow-HOC";
2121

2222
const WIDGET_KEY = EWidgetKeys.RECENT_ACTIVITY;
2323
const workspaceService = new WorkspaceService();

0 commit comments

Comments
 (0)