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-pin-left.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'components/data-table/data-table-pin-left.tsx') diff --git a/components/data-table/data-table-pin-left.tsx b/components/data-table/data-table-pin-left.tsx index 27116774..aed86844 100644 --- a/components/data-table/data-table-pin-left.tsx +++ b/components/data-table/data-table-pin-left.tsx @@ -20,6 +20,8 @@ import { PopoverContent, PopoverTrigger, } from "@/components/ui/popover" +import { useTranslation } from '@/i18n/client' +import { useParams, usePathname } from "next/navigation"; /** * Helper function to check if a column is a parent column (has subcolumns) @@ -92,6 +94,9 @@ const AUTO_PIN_LEFT_COLUMNS = ['select'] export function PinLeftButton({ table }: { table: Table }) { const [open, setOpen] = React.useState(false) const triggerRef = React.useRef(null) + const params = useParams(); + const lng = params?.lng as string; + const { t } = useTranslation(lng); // Try to auto-pin select and action columns if they exist React.useEffect(() => { @@ -180,7 +185,7 @@ export function PinLeftButton({ table }: { table: Table }) { - 왼쪽 고정 + {t("tableToolBar.leftPin")} -- cgit v1.2.3