Change wording of split by pages

This commit is contained in:
Connor Yoh 2025-09-12 17:08:39 +01:00
parent 18c71b259e
commit 80a54b8fa1
3 changed files with 5 additions and 5 deletions

View File

@ -692,7 +692,7 @@
"placeholder": "Select how to split the PDF" "placeholder": "Select how to split the PDF"
}, },
"methods": { "methods": {
"byPages": "Split by Pages", "byPages": "Split at Page Numbers",
"bySections": "Split by Sections", "bySections": "Split by Sections",
"bySize": "Split by File Size", "bySize": "Split by File Size",
"byPageCount": "Split by Page Count", "byPageCount": "Split by Page Count",
@ -718,7 +718,7 @@
"title": "Split Methods Overview" "title": "Split Methods Overview"
}, },
"byPages": { "byPages": {
"title": "Split by Pages", "title": "Split at Page Numbers",
"text": "Split your PDF at specific page numbers. Using 'n' splits after page n. Using 'n-m' splits before page n and after page m.", "text": "Split your PDF at specific page numbers. Using 'n' splits after page n. Using 'n-m' splits before page n and after page m.",
"bullet1": "Single split points: 3,7 (splits after pages 3 and 7)", "bullet1": "Single split points: 3,7 (splits after pages 3 and 7)",
"bullet2": "Range split points: 3-8 (splits before page 3 and after page 8)", "bullet2": "Range split points: 3-8 (splits before page 3 and after page 8)",

View File

@ -123,7 +123,7 @@ const SplitSettings = ({
onChange={(v) => isSplitMethod(v) && onParameterChange('method', v)} onChange={(v) => isSplitMethod(v) && onParameterChange('method', v)}
disabled={disabled} disabled={disabled}
data={[ data={[
{ value: SPLIT_METHODS.BY_PAGES, label: t("split.methods.byPages", "Split by Pages") }, { value: SPLIT_METHODS.BY_PAGES, label: t("split.methods.byPages", "Split at Pages Numbers") },
{ value: SPLIT_METHODS.BY_SECTIONS, label: t("split.methods.bySections", "Split by Sections") }, { value: SPLIT_METHODS.BY_SECTIONS, label: t("split.methods.bySections", "Split by Sections") },
{ value: SPLIT_METHODS.BY_SIZE, label: t("split.methods.bySize", "Split by Size") }, { value: SPLIT_METHODS.BY_SIZE, label: t("split.methods.bySize", "Split by Size") },
{ value: SPLIT_METHODS.BY_PAGE_COUNT, label: t("split.methods.byPageCount", "Split by Page Count") }, { value: SPLIT_METHODS.BY_PAGE_COUNT, label: t("split.methods.byPageCount", "Split by Page Count") },

View File

@ -10,7 +10,7 @@ export const useSplitTips = (): TooltipContent => {
}, },
tips: [ tips: [
{ {
title: t("split.tooltip.byPages.title", "Split by Pages"), title: t("split.tooltip.byPages.title", "Split at Page Numbers"),
description: t("split.tooltip.byPages.text", "Extract specific pages or ranges from your PDF. Use commas to separate individual pages and hyphens for ranges."), description: t("split.tooltip.byPages.text", "Extract specific pages or ranges from your PDF. Use commas to separate individual pages and hyphens for ranges."),
bullets: [ bullets: [
t("split.tooltip.byPages.bullet1", "Single pages: 1,3,5"), t("split.tooltip.byPages.bullet1", "Single pages: 1,3,5"),