From 92eda21e45d902663052575aaa4c4f80bfa2faea Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 4 Aug 2025 09:36:14 +0000 Subject: (대표님) 벤더 문서 변경사항, data-table 변경, sync 변경 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/data-table/data-table-view-options.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'components/data-table/data-table-view-options.tsx') diff --git a/components/data-table/data-table-view-options.tsx b/components/data-table/data-table-view-options.tsx index c4167b47..422e3065 100644 --- a/components/data-table/data-table-view-options.tsx +++ b/components/data-table/data-table-view-options.tsx @@ -37,6 +37,8 @@ import { SortableItem, SortableDragHandle, } from "@/components/ui/sortable" +import { useTranslation } from '@/i18n/client' +import { useParams, usePathname } from "next/navigation"; /** @@ -68,6 +70,10 @@ export function DataTableViewOptions({ }: DataTableViewOptionsProps) { const triggerRef = React.useRef(null) + const params = useParams(); + const lng = params?.lng as string; + const { t } = useTranslation(lng); + // 1) Identify columns that can be hidden const hideableCols = React.useMemo(() => { return table @@ -128,7 +134,7 @@ export function DataTableViewOptions({ className="gap-2" > - 보기 + {t("tableToolBar.view")} -- cgit v1.2.3