diff options
Diffstat (limited to 'components/data-table/data-table-sort-list.tsx')
| -rw-r--r-- | components/data-table/data-table-sort-list.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/components/data-table/data-table-sort-list.tsx b/components/data-table/data-table-sort-list.tsx index c752f2f4..21926f34 100644 --- a/components/data-table/data-table-sort-list.tsx +++ b/components/data-table/data-table-sort-list.tsx @@ -47,6 +47,8 @@ import { SortableDragHandle, SortableItem, } from "@/components/ui/sortable" +import { useTranslation } from '@/i18n/client' +import { useParams, usePathname } from "next/navigation"; interface DataTableSortListProps<TData> { table: Table<TData> @@ -63,6 +65,10 @@ export function DataTableSortList<TData>({ }: DataTableSortListProps<TData>) { renderCount++; + const params = useParams(); + const lng = params?.lng as string; + const { t } = useTranslation(lng); + const id = React.useId() const initialSorting = (table.initialState.sorting ?? @@ -186,7 +192,7 @@ export function DataTableSortList<TData>({ <ArrowDownUp className="size-3" aria-hidden="true" /> <span className="hidden sm:inline"> - 정렬 + {t("tableToolBar.sort")} </span> {uniqueSorting.length > 0 && ( |
