Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: added missing translation
Browse files Browse the repository at this point in the history
vamsikrishnamathala committed Jan 9, 2025
1 parent add35b5 commit 2e47b71
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/i18n/src/locales/en/translations.json
Original file line number Diff line number Diff line change
@@ -283,6 +283,7 @@
"create_a_draft": "Create a draft",
"save_to_drafts": "Save to Drafts",
"save": "Save",
"update": "Update",
"updating": "Updating",
"create_new_issue": "Create new issue",
"editor_is_not_ready_to_discard_changes": "Editor is not ready to discard changes",
1 change: 1 addition & 0 deletions packages/i18n/src/locales/es/translations.json
Original file line number Diff line number Diff line change
@@ -282,6 +282,7 @@
"create_a_draft": "Crear un borrador",
"save_to_drafts": "Guardar en borradores",
"save": "Guardar",
"update": "Actualizar",
"updating": "Actualizando",
"create_new_issue": "Crear nuevo problema",
"editor_is_not_ready_to_discard_changes": "El editor no está listo para descartar los cambios",
1 change: 1 addition & 0 deletions packages/i18n/src/locales/fr/translations.json
Original file line number Diff line number Diff line change
@@ -282,6 +282,7 @@
"create_a_draft": "Créer un brouillon",
"save_to_drafts": "Enregistrer dans les brouillons",
"save": "Enregistrer",
"update": "Mettre à jour",
"updating": "Mise à jour",
"create_new_issue": "Créer un nouveau problème",
"editor_is_not_ready_to_discard_changes": "L'éditeur n'est pas prêt à annuler les modifications",
1 change: 1 addition & 0 deletions packages/i18n/src/locales/ja/translations.json
Original file line number Diff line number Diff line change
@@ -282,6 +282,7 @@
"create_a_draft": "下書きを作成",
"save_to_drafts": "下書きに保存",
"save": "保存",
"update": "更新",
"updating": "更新中",
"create_new_issue": "新しい問題を作成",
"editor_is_not_ready_to_discard_changes": "エディターは変更を破棄する準備ができていません",
2 changes: 1 addition & 1 deletion web/core/components/home/widgets/recents/index.tsx
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ import { Briefcase, FileText } from "lucide-react";
import { TActivityEntityData, THomeWidgetProps, TRecentActivityFilterKeys } from "@plane/types";
// components
import { LayersIcon } from "@plane/ui";
import { ContentOverflowWrapper } from "@/components/core/content-overflow-HOC";
import { useProject } from "@/hooks/store";
import { WorkspaceService } from "@/plane-web/services";
import { EmptyWorkspace } from "../empty-states";
@@ -17,7 +18,6 @@ import { FiltersDropdown } from "./filters";
import { RecentIssue } from "./issue";
import { RecentPage } from "./page";
import { RecentProject } from "./project";
import { ContentOverflowWrapper } from "@/components/core/content-overflow-HOC";

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

0 comments on commit 2e47b71

Please sign in to comment.