Update default split mode to “Split All”

This commit is contained in:
Ping Lin 2025-08-08 14:39:41 +01:00
parent b97a9c727a
commit cf3ef248ca
2 changed files with 6 additions and 6 deletions

View File

@ -1589,11 +1589,11 @@ split-by-sections.merge=Merge Into One PDF
split-by-sections.pageToSplit=Pages to split (Enter a comma-separated list of page numbers) :
split-by-sections.pageToSplit.placeholder=(e.g. 1,2,6)
split-by-sections.mode=Split Mode
split-by-sections.mode.1=Split all except first and last
split-by-sections.mode.2=Split all except first
split-by-sections.mode.3=Split all except last
split-by-sections.mode.4=Split all
split-by-sections.mode.5=Custom. Specify pages to split
split-by-sections.mode.1=Split All Except First & Last
split-by-sections.mode.2=Split All Except First
split-by-sections.mode.3=Split All Except Last
split-by-sections.mode.4=Split All Pages
split-by-sections.mode.5=Custom: Specify Pages

View File

@ -23,10 +23,10 @@
<div class="mb-3">
<label for="splitMode" th:text="#{split-by-sections.mode}">Split Mode</label>
<select class="form-control" id="splitMode" name="splitMode">
<option value="SPLIT_ALL" th:text="#{split-by-sections.mode.4}">Split all</option>
<option value="SPLIT_ALL_EXCEPT_FIRST_AND_LAST" th:text="#{split-by-sections.mode.1}">Split all except first and last</option>
<option value="SPLIT_ALL_EXCEPT_FIRST" th:text="#{split-by-sections.mode.2}">Split all except first</option>
<option value="SPLIT_ALL_EXCEPT_LAST" th:text="#{split-by-sections.mode.3}">Split all except last</option>
<option value="SPLIT_ALL" th:text="#{split-by-sections.mode.4}">Split all</option>
<option value="CUSTOM" th:text="#{split-by-sections.mode.5}">Specify pages to split</option>
</select>
</div>