scan i18n

pull/2774/head
Mikael Finstad 1 month ago
parent 2605308baa
commit 260530b18d
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -457,6 +457,7 @@
"Manually input current segment's end time": "Manually input current segment's end time",
"Manually input current segment's start time": "Manually input current segment's start time",
"Markers": "Markers",
"Markers are segments without an end time and will not be exported. Convert markers to segments by setting their end time.": "Markers are segments without an end time and will not be exported. Convert markers to segments by setting their end time.",
"Markers:": "Markers:",
"Max length": "Max length",
"Maximize": "Maximize",
@ -517,6 +518,7 @@
"Open": "Open",
"Open file": "Open file",
"Open folder": "Open folder",
"Open link in browser": "Open link in browser",
"Open media from URL": "Open media from URL",
"Open next file": "Open next file",
"Open previous file": "Open previous file",
@ -742,6 +744,7 @@
"The audio track is not supported while previewing. You can convert to a supported format from the menu": "The audio track is not supported while previewing. You can convert to a supported format from the menu",
"The expression must return an object": "The expression must return an object",
"The file name template is missing {{ext}} and will result in a file without the suggested extension. This may result in an unplayable output file.": "The file name template is missing {{ext}} and will result in a file without the suggested extension. This may result in an unplayable output file.",
"The language tag (ISO 639-2 code). For example \"eng\" for English. This is used by some players to select the appropriate audio/subtitle track based on the user's language preferences.": "The language tag (ISO 639-2 code). For example \"eng\" for English. This is used by some players to select the appropriate audio/subtitle track based on the user's language preferences.",
"The last executed ffmpeg commands will show up here after you run operations. You can copy them to clipboard and modify them to your needs before running on your command line.": "The last executed ffmpeg commands will show up here after you run operations. You can copy them to clipboard and modify them to your needs before running on your command line.",
"The media file referenced by the project file you tried to open does not exist in the same directory as the project file: {{mediaFileName}}": "The media file referenced by the project file you tried to open does not exist in the same directory as the project file: {{mediaFileName}}",
"The media you tried to open does not exist": "The media you tried to open does not exist",
@ -821,6 +824,7 @@
"User interface": "User interface",
"Using built-in ffmpeg": "Using built-in ffmpeg",
"Using external ffmpeg": "Using external ffmpeg",
"Value must be shorter than total duration ({{totalDuration}})": "Value must be shorter than total duration ({{totalDuration}})",
"Variables": "Variables",
"video": "video",
"Video FPS": "Video FPS",

@ -173,7 +173,6 @@ function ExportConfirm({
if (neighbouringKeyFrames.length === 0) return false; // we don't know
return segmentsToExport.some(({ start, end }) => {
const nearestPreviousKeyframeTime = findNearestKeyFrameTime({ time: start, direction: -1 }) ?? 0;
console.log({start,end,nearestPreviousKeyframeTime})
const segmentDuration = end - start;
const estimatedExportedSegmentDuration = end - nearestPreviousKeyframeTime;
// if estimated actual output length of segment is more than 1.5 times the intended segment duration, then we consider it problematic and warn the user about it.

Loading…
Cancel
Save