mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 09:29:24 +00:00

integrated auto split, with flattened split tool --------- Co-authored-by: Connor Yoh <connor@stirlingpdf.com>
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
import { useTranslation } from 'react-i18next';
|
|
import { TooltipContent } from '../../types/tips';
|
|
|
|
export const useSplitMethodTips = (): TooltipContent => {
|
|
const { t } = useTranslation();
|
|
|
|
return {
|
|
header: {
|
|
title: t("split.methodSelection.tooltip.title", "Choose Your Split Method")
|
|
},
|
|
tips: [
|
|
{
|
|
title: t("split.methodSelection.tooltip.header.title", "Split Method Selection"),
|
|
description: t("split.methodSelection.tooltip.header.text", "Choose how you want to split your PDF document. Each method is optimized for different use cases and document types."),
|
|
bullets: [
|
|
t("split.methodSelection.tooltip.bullet1", "Click on a method card to select it"),
|
|
t("split.methodSelection.tooltip.bullet2", "Hover over each card to see a quick description"),
|
|
t("split.methodSelection.tooltip.bullet3", "The settings step will appear after you select a method"),
|
|
t("split.methodSelection.tooltip.bullet4", "You can change methods at any time before processing")
|
|
]
|
|
}
|
|
]
|
|
};
|
|
}; |