mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 05:02:36 +01:00
Minor spelling tweaks.
This commit is contained in:
parent
c2f1b53738
commit
9ef43415ac
@ -985,7 +985,7 @@ Email: mailto:nikse.dk@gmail.com</AboutText1>
|
||||
<VisualSyncPerformedOnSelectedLines>Visual sync performed on selected lines</VisualSyncPerformedOnSelectedLines>
|
||||
<VisualSyncPerformed>Visual sync performed</VisualSyncPerformed>
|
||||
<ImportThisVobSubSubtitle>Import this VobSub subtitle?</ImportThisVobSubSubtitle>
|
||||
<FileXIsLargerThan10Mb>File is larger than 10 MB: {0}</FileXIsLargerThan10Mb>
|
||||
<FileXIsLargerThan10MB>File is larger than 10 MB: {0}</FileXIsLargerThan10MB>
|
||||
<ContinueAnyway>Continue anyway?</ContinueAnyway>
|
||||
<BeforeLoadOf>Before load of {0}</BeforeLoadOf>
|
||||
<LoadedSubtitleX>Loaded subtitle {0}</LoadedSubtitleX>
|
||||
@ -1528,9 +1528,9 @@ can edit in same subtitle file (collaboration)</Information>
|
||||
<SpectrogramAppearance>Spectrogram appearance</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>One color gradient</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Classic</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Use FFMPEG for wave extraction</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Path to FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Browse to FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Use FFmpeg for wave extraction</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Path to FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Browse to FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Browse to VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(Advanced) Sub Station Alpha style</SubStationAlphaStyle>
|
||||
<ChooseFont>Choose font</ChooseFont>
|
||||
|
@ -67,9 +67,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
exeFilePath = Nikse.SubtitleEdit.Logic.VideoPlayers.LibVlcDynamic.GetVlcPath("vlc.exe");
|
||||
if (!System.IO.File.Exists(exeFilePath))
|
||||
{
|
||||
if (Configuration.Settings.General.UseFFMPEGForWaveExtraction && File.Exists(Configuration.Settings.General.FFMPEGLocation))
|
||||
if (Configuration.Settings.General.UseFFmpegForWaveExtraction && File.Exists(Configuration.Settings.General.FFmpegLocation))
|
||||
{
|
||||
// We will run FFMPEG
|
||||
// We will run FFmpeg
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -88,9 +88,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
|
||||
labelInfo.Text = "VLC";
|
||||
if (Configuration.Settings.General.UseFFMPEGForWaveExtraction && File.Exists(Configuration.Settings.General.FFMPEGLocation))
|
||||
if (Configuration.Settings.General.UseFFmpegForWaveExtraction && File.Exists(Configuration.Settings.General.FFmpegLocation))
|
||||
{
|
||||
string FFMPEGWaveTranscodeSettings = "-i \"{0}\" -vn -ar 24000 -ac 2 -ab 128 -vol 448 -f wav \"{1}\"";
|
||||
string FFmpegWaveTranscodeSettings = "-i \"{0}\" -vn -ar 24000 -ac 2 -ab 128 -vol 448 -f wav \"{1}\"";
|
||||
//-i indicates the input
|
||||
//-vn means no video ouput
|
||||
//-ar 44100 indicates the sampling frequency.
|
||||
@ -98,9 +98,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
//-vol 448 will boot volume... 256 is normal
|
||||
//-ac 2 means 2 channels
|
||||
|
||||
exeFilePath = Configuration.Settings.General.FFMPEGLocation;
|
||||
parameters = string.Format(FFMPEGWaveTranscodeSettings, SourceVideoFileName, targetFile);
|
||||
labelInfo.Text = "FFMPEG";
|
||||
exeFilePath = Configuration.Settings.General.FFmpegLocation;
|
||||
parameters = string.Format(FFmpegWaveTranscodeSettings, SourceVideoFileName, targetFile);
|
||||
labelInfo.Text = "FFmpeg";
|
||||
}
|
||||
|
||||
labelPleaseWait.Visible = true;
|
||||
@ -191,7 +191,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
FileInfo fi = new FileInfo(targetFile);
|
||||
if (fi.Length <= 200)
|
||||
{
|
||||
MessageBox.Show("Sorry! VLC/FFMPEG was unable to extract audio to wave file via this command line:" + Environment.NewLine +
|
||||
MessageBox.Show("Sorry! VLC/FFmpeg was unable to extract audio to wave file via this command line:" + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
"Command line: " + exeFilePath + " " + parameters + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
@ -291,8 +291,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
}
|
||||
|
||||
if (Configuration.Settings.General.UseFFMPEGForWaveExtraction)
|
||||
{ // don't know how to extract audio number x via FFMPEG...
|
||||
if (Configuration.Settings.General.UseFFmpegForWaveExtraction)
|
||||
{ // don't know how to extract audio number x via FFmpeg...
|
||||
numberOfAudioTracks = 1;
|
||||
_audioTrackNumber = 0;
|
||||
}
|
||||
|
@ -2328,7 +2328,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
|
||||
|
||||
if (MessageBox.Show(this, string.Format(_language.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(this, string.Format(_language.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
_language.ContinueAnyway,
|
||||
fileName), Title, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
@ -12689,7 +12689,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
if (fi.Length > 1024 * 1024 * 10 && sub.Paragraphs.Count == 0) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(this, string.Format(_language.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(this, string.Format(_language.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
_language.ContinueAnyway,
|
||||
fileName), Title, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
@ -12847,7 +12847,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var fi = new FileInfo(fileName);
|
||||
if (fi.Length > 1024 * 1024 * 10) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
_language.ContinueAnyway,
|
||||
fileName), Title, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
@ -16832,7 +16832,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var fi = new FileInfo(openFileDialog1.FileName);
|
||||
if (fi.Length > 1024 * 1024 * 10) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
_language.ContinueAnyway,
|
||||
openFileDialog1.FileName), Title, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
@ -19087,7 +19087,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var fi = new FileInfo(openFileDialog1.FileName);
|
||||
if (fi.Length > 1024 * 1024 * 10) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(string.Format(_language.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
_language.ContinueAnyway,
|
||||
openFileDialog1.FileName), Title, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
|
@ -106,10 +106,10 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
startOk = (" <>-\"”“[]'‘`´¶()♪¿¡.…—!?,:;/" + Environment.NewLine).Contains(richTextBoxParagraph.Text.Substring(i - 1, 1));
|
||||
if (startOk)
|
||||
{
|
||||
bool endOK = (i + word.Length == richTextBoxParagraph.Text.Length);
|
||||
if (!endOK)
|
||||
endOK = (" <>-\"”“[]'‘`´¶()♪¿¡.…—!?,:;/" + Environment.NewLine).Contains(richTextBoxParagraph.Text.Substring(i + word.Length, 1));
|
||||
if (endOK)
|
||||
bool endOk = (i + word.Length == richTextBoxParagraph.Text.Length);
|
||||
if (!endOk)
|
||||
endOk = (" <>-\"”“[]'‘`´¶()♪¿¡.…—!?,:;/" + Environment.NewLine).Contains(richTextBoxParagraph.Text.Substring(i + word.Length, 1));
|
||||
if (endOk)
|
||||
{
|
||||
richTextBoxParagraph.SelectionStart = i+ 1;
|
||||
richTextBoxParagraph.SelectionLength = word.Length;
|
||||
|
90
src/Forms/Settings.Designer.cs
generated
90
src/Forms/Settings.Designer.cs
generated
@ -160,10 +160,10 @@
|
||||
this.radioButtonVideoPlayerManagedDirectX = new System.Windows.Forms.RadioButton();
|
||||
this.tabPageWaveForm = new System.Windows.Forms.TabPage();
|
||||
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
||||
this.buttonBrowseToFFMPEG = new System.Windows.Forms.Button();
|
||||
this.textBoxFFMPEGPath = new System.Windows.Forms.TextBox();
|
||||
this.labelFFMPEGPath = new System.Windows.Forms.Label();
|
||||
this.checkBoxUseFFMPEG = new System.Windows.Forms.CheckBox();
|
||||
this.buttonBrowseToFFmpeg = new System.Windows.Forms.Button();
|
||||
this.textBoxFFmpegPath = new System.Windows.Forms.TextBox();
|
||||
this.labelFFmpegPath = new System.Windows.Forms.Label();
|
||||
this.checkBoxUseFFmpeg = new System.Windows.Forms.CheckBox();
|
||||
this.groupBoxSpectrogram = new System.Windows.Forms.GroupBox();
|
||||
this.labelSpectrogramAppearance = new System.Windows.Forms.Label();
|
||||
this.comboBoxSpectrogramAppearance = new System.Windows.Forms.ComboBox();
|
||||
@ -281,7 +281,7 @@
|
||||
this.colorDialogSSAStyle = new System.Windows.Forms.ColorDialog();
|
||||
this.fontDialogSSAStyle = new System.Windows.Forms.FontDialog();
|
||||
this.labelStatus = new System.Windows.Forms.Label();
|
||||
this.openFileDialogFFMPEG = new System.Windows.Forms.OpenFileDialog();
|
||||
this.openFileDialogFFmpeg = new System.Windows.Forms.OpenFileDialog();
|
||||
this.checkBoxVideoPlayerPreviewFontBold = new System.Windows.Forms.CheckBox();
|
||||
this.tabControlSettings.SuspendLayout();
|
||||
this.tabPageGenerel.SuspendLayout();
|
||||
@ -1857,52 +1857,52 @@
|
||||
//
|
||||
// groupBox3
|
||||
//
|
||||
this.groupBox3.Controls.Add(this.buttonBrowseToFFMPEG);
|
||||
this.groupBox3.Controls.Add(this.textBoxFFMPEGPath);
|
||||
this.groupBox3.Controls.Add(this.labelFFMPEGPath);
|
||||
this.groupBox3.Controls.Add(this.checkBoxUseFFMPEG);
|
||||
this.groupBox3.Controls.Add(this.buttonBrowseToFFmpeg);
|
||||
this.groupBox3.Controls.Add(this.textBoxFFmpegPath);
|
||||
this.groupBox3.Controls.Add(this.labelFFmpegPath);
|
||||
this.groupBox3.Controls.Add(this.checkBoxUseFFmpeg);
|
||||
this.groupBox3.Location = new System.Drawing.Point(406, 325);
|
||||
this.groupBox3.Name = "groupBox3";
|
||||
this.groupBox3.Size = new System.Drawing.Size(416, 116);
|
||||
this.groupBox3.TabIndex = 3;
|
||||
this.groupBox3.TabStop = false;
|
||||
//
|
||||
// buttonBrowseToFFMPEG
|
||||
// buttonBrowseToFFmpeg
|
||||
//
|
||||
this.buttonBrowseToFFMPEG.Location = new System.Drawing.Point(381, 65);
|
||||
this.buttonBrowseToFFMPEG.Name = "buttonBrowseToFFMPEG";
|
||||
this.buttonBrowseToFFMPEG.Size = new System.Drawing.Size(29, 21);
|
||||
this.buttonBrowseToFFMPEG.TabIndex = 23;
|
||||
this.buttonBrowseToFFMPEG.Text = "...";
|
||||
this.buttonBrowseToFFMPEG.UseVisualStyleBackColor = true;
|
||||
this.buttonBrowseToFFMPEG.Click += new System.EventHandler(this.buttonBrowseToFFMPEG_Click);
|
||||
this.buttonBrowseToFFmpeg.Location = new System.Drawing.Point(381, 65);
|
||||
this.buttonBrowseToFFmpeg.Name = "buttonBrowseToFFmpeg";
|
||||
this.buttonBrowseToFFmpeg.Size = new System.Drawing.Size(29, 21);
|
||||
this.buttonBrowseToFFmpeg.TabIndex = 23;
|
||||
this.buttonBrowseToFFmpeg.Text = "...";
|
||||
this.buttonBrowseToFFmpeg.UseVisualStyleBackColor = true;
|
||||
this.buttonBrowseToFFmpeg.Click += new System.EventHandler(this.buttonBrowseToFFmpeg_Click);
|
||||
//
|
||||
// textBoxFFMPEGPath
|
||||
// textBoxFFmpegPath
|
||||
//
|
||||
this.textBoxFFMPEGPath.Location = new System.Drawing.Point(9, 65);
|
||||
this.textBoxFFMPEGPath.MaxLength = 1000;
|
||||
this.textBoxFFMPEGPath.Name = "textBoxFFMPEGPath";
|
||||
this.textBoxFFMPEGPath.Size = new System.Drawing.Size(366, 21);
|
||||
this.textBoxFFMPEGPath.TabIndex = 22;
|
||||
this.textBoxFFmpegPath.Location = new System.Drawing.Point(9, 65);
|
||||
this.textBoxFFmpegPath.MaxLength = 1000;
|
||||
this.textBoxFFmpegPath.Name = "textBoxFFmpegPath";
|
||||
this.textBoxFFmpegPath.Size = new System.Drawing.Size(366, 21);
|
||||
this.textBoxFFmpegPath.TabIndex = 22;
|
||||
//
|
||||
// labelFFMPEGPath
|
||||
// labelFFmpegPath
|
||||
//
|
||||
this.labelFFMPEGPath.AutoSize = true;
|
||||
this.labelFFMPEGPath.Location = new System.Drawing.Point(6, 49);
|
||||
this.labelFFMPEGPath.Name = "labelFFMPEGPath";
|
||||
this.labelFFMPEGPath.Size = new System.Drawing.Size(71, 13);
|
||||
this.labelFFMPEGPath.TabIndex = 2;
|
||||
this.labelFFMPEGPath.Text = "FFMPEG path";
|
||||
this.labelFFmpegPath.AutoSize = true;
|
||||
this.labelFFmpegPath.Location = new System.Drawing.Point(6, 49);
|
||||
this.labelFFmpegPath.Name = "labelFFmpegPath";
|
||||
this.labelFFmpegPath.Size = new System.Drawing.Size(71, 13);
|
||||
this.labelFFmpegPath.TabIndex = 2;
|
||||
this.labelFFmpegPath.Text = "FFmpeg path";
|
||||
//
|
||||
// checkBoxUseFFMPEG
|
||||
// checkBoxUseFFmpeg
|
||||
//
|
||||
this.checkBoxUseFFMPEG.AutoSize = true;
|
||||
this.checkBoxUseFFMPEG.Location = new System.Drawing.Point(6, 20);
|
||||
this.checkBoxUseFFMPEG.Name = "checkBoxUseFFMPEG";
|
||||
this.checkBoxUseFFMPEG.Size = new System.Drawing.Size(201, 17);
|
||||
this.checkBoxUseFFMPEG.TabIndex = 1;
|
||||
this.checkBoxUseFFMPEG.Text = "Use FFMPEG for wave file extraction";
|
||||
this.checkBoxUseFFMPEG.UseVisualStyleBackColor = true;
|
||||
this.checkBoxUseFFmpeg.AutoSize = true;
|
||||
this.checkBoxUseFFmpeg.Location = new System.Drawing.Point(6, 20);
|
||||
this.checkBoxUseFFmpeg.Name = "checkBoxUseFFmpeg";
|
||||
this.checkBoxUseFFmpeg.Size = new System.Drawing.Size(201, 17);
|
||||
this.checkBoxUseFFmpeg.TabIndex = 1;
|
||||
this.checkBoxUseFFmpeg.Text = "Use FFmpeg for wave file extraction";
|
||||
this.checkBoxUseFFmpeg.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// groupBoxSpectrogram
|
||||
//
|
||||
@ -3285,9 +3285,9 @@
|
||||
this.labelStatus.TabIndex = 3;
|
||||
this.labelStatus.Text = "labelStatus";
|
||||
//
|
||||
// openFileDialogFFMPEG
|
||||
// openFileDialogFFmpeg
|
||||
//
|
||||
this.openFileDialogFFMPEG.FileName = "openFileDialog1";
|
||||
this.openFileDialogFFmpeg.FileName = "openFileDialog1";
|
||||
//
|
||||
// checkBoxVideoPlayerPreviewFontBold
|
||||
//
|
||||
@ -3639,11 +3639,11 @@
|
||||
private System.Windows.Forms.CheckBox checkBoxSpellCheckOneLetterWords;
|
||||
private System.Windows.Forms.CheckBox checkBoxTreatINQuoteAsING;
|
||||
private System.Windows.Forms.GroupBox groupBox3;
|
||||
private System.Windows.Forms.Button buttonBrowseToFFMPEG;
|
||||
private System.Windows.Forms.TextBox textBoxFFMPEGPath;
|
||||
private System.Windows.Forms.Label labelFFMPEGPath;
|
||||
private System.Windows.Forms.CheckBox checkBoxUseFFMPEG;
|
||||
private System.Windows.Forms.OpenFileDialog openFileDialogFFMPEG;
|
||||
private System.Windows.Forms.Button buttonBrowseToFFmpeg;
|
||||
private System.Windows.Forms.TextBox textBoxFFmpegPath;
|
||||
private System.Windows.Forms.Label labelFFmpegPath;
|
||||
private System.Windows.Forms.CheckBox checkBoxUseFFmpeg;
|
||||
private System.Windows.Forms.OpenFileDialog openFileDialogFFmpeg;
|
||||
private System.Windows.Forms.CheckBox checkBoxWaveformHoverFocus;
|
||||
private System.Windows.Forms.CheckBox checkBoxListViewMouseEnterFocus;
|
||||
private System.Windows.Forms.NumericUpDown numericUpDownMinGapMs;
|
||||
|
@ -385,10 +385,10 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
buttonWaveFormsFolderEmpty.Text = language.WaveformAndSpectrogramsFolderEmpty;
|
||||
InitializeWaveformsAndSpectrogramsFolderEmpty(language);
|
||||
|
||||
if (!string.IsNullOrEmpty(language.WaveformFFMPEGPath)) //TODO: Remove in SE 3.4
|
||||
if (!string.IsNullOrEmpty(language.WaveformFFmpegPath)) //TODO: Remove in SE 3.4
|
||||
{
|
||||
checkBoxUseFFMPEG.Text = language.WaveformUseFFMPEG;
|
||||
labelFFMPEGPath.Text = language.WaveformFFMPEGPath;
|
||||
checkBoxUseFFmpeg.Text = language.WaveformUseFFmpeg;
|
||||
labelFFmpegPath.Text = language.WaveformFFmpegPath;
|
||||
}
|
||||
|
||||
groupBoxSsaStyle.Text = language.SubStationAlphaStyle;
|
||||
@ -620,8 +620,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
if (Configuration.Settings.VideoControls.WaveformBorderHitMs >= numericUpDownWaveformBorderHitMs.Minimum &&
|
||||
Configuration.Settings.VideoControls.WaveformBorderHitMs <= numericUpDownWaveformBorderHitMs.Maximum)
|
||||
numericUpDownWaveformBorderHitMs.Value = Configuration.Settings.VideoControls.WaveformBorderHitMs;
|
||||
checkBoxUseFFMPEG.Checked = Configuration.Settings.General.UseFFMPEGForWaveExtraction;
|
||||
textBoxFFMPEGPath.Text = Configuration.Settings.General.FFMPEGLocation;
|
||||
checkBoxUseFFmpeg.Checked = Configuration.Settings.General.UseFFmpegForWaveExtraction;
|
||||
textBoxFFmpegPath.Text = Configuration.Settings.General.FFmpegLocation;
|
||||
|
||||
var generalNode = new TreeNode(Configuration.Settings.Language.General.GeneralText);
|
||||
generalNode.Nodes.Add(language.MergeSelectedLines + GetShortcutText(Configuration.Settings.Shortcuts.GeneralMergeSelectedLines));
|
||||
@ -1210,8 +1210,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
Configuration.Settings.VideoControls.WaveFormFocusOnMouseEnter = checkBoxWaveformHoverFocus.Checked;
|
||||
Configuration.Settings.VideoControls.WaveFormListViewFocusOnMouseEnter = checkBoxListViewMouseEnterFocus.Checked;
|
||||
Configuration.Settings.VideoControls.WaveformBorderHitMs = Convert.ToInt32(numericUpDownWaveformBorderHitMs.Value);
|
||||
Configuration.Settings.General.UseFFMPEGForWaveExtraction = checkBoxUseFFMPEG.Checked;
|
||||
Configuration.Settings.General.FFMPEGLocation = textBoxFFMPEGPath.Text;
|
||||
Configuration.Settings.General.UseFFmpegForWaveExtraction = checkBoxUseFFmpeg.Checked;
|
||||
Configuration.Settings.General.FFmpegLocation = textBoxFFmpegPath.Text;
|
||||
|
||||
//Main General
|
||||
foreach (TreeNode node in treeViewShortcuts.Nodes[0].Nodes)
|
||||
@ -2655,16 +2655,16 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
UpdateSsaExample();
|
||||
}
|
||||
|
||||
private void buttonBrowseToFFMPEG_Click(object sender, EventArgs e)
|
||||
private void buttonBrowseToFFmpeg_Click(object sender, EventArgs e)
|
||||
{
|
||||
openFileDialogFFMPEG.FileName = string.Empty;
|
||||
openFileDialogFFMPEG.Title = Configuration.Settings.Language.Settings.WaveformBrowseToFFMPEG;
|
||||
openFileDialogFFmpeg.FileName = string.Empty;
|
||||
openFileDialogFFmpeg.Title = Configuration.Settings.Language.Settings.WaveformBrowseToFFmpeg;
|
||||
if (!Utilities.IsRunningOnLinux() && !Utilities.IsRunningOnMac())
|
||||
{
|
||||
openFileDialogFFMPEG.Filter = "FFMPEG.exe|FFMPEG.exe";
|
||||
openFileDialogFFmpeg.Filter = "FFmpeg.exe|FFmpeg.exe";
|
||||
}
|
||||
if (openFileDialogFFMPEG.ShowDialog(this) == DialogResult.OK)
|
||||
textBoxFFMPEGPath.Text = openFileDialogFFMPEG.FileName;
|
||||
if (openFileDialogFFmpeg.ShowDialog(this) == DialogResult.OK)
|
||||
textBoxFFmpegPath.Text = openFileDialogFFmpeg.FileName;
|
||||
}
|
||||
|
||||
private void checkBoxWaveformHoverFocus_CheckedChanged(object sender, EventArgs e)
|
||||
@ -2674,15 +2674,15 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
private void buttonVlcPathBrowse_Click(object sender, EventArgs e)
|
||||
{
|
||||
openFileDialogFFMPEG.FileName = string.Empty;
|
||||
openFileDialogFFMPEG.Title = Configuration.Settings.Language.Settings.WaveformBrowseToVLC;
|
||||
openFileDialogFFmpeg.FileName = string.Empty;
|
||||
openFileDialogFFmpeg.Title = Configuration.Settings.Language.Settings.WaveformBrowseToVLC;
|
||||
if (!Utilities.IsRunningOnLinux() && !Utilities.IsRunningOnMac())
|
||||
{
|
||||
openFileDialogFFMPEG.Filter = "vlc.exe|vlc.exe";
|
||||
openFileDialogFFmpeg.Filter = "vlc.exe|vlc.exe";
|
||||
}
|
||||
if (openFileDialogFFMPEG.ShowDialog(this) == DialogResult.OK)
|
||||
if (openFileDialogFFmpeg.ShowDialog(this) == DialogResult.OK)
|
||||
{
|
||||
textBoxVlcPath.Text = Path.GetDirectoryName(openFileDialogFFMPEG.FileName);
|
||||
textBoxVlcPath.Text = Path.GetDirectoryName(openFileDialogFFmpeg.FileName);
|
||||
Configuration.Settings.General.VlcLocation = textBoxVlcPath.Text;
|
||||
Configuration.Settings.General.VlcLocationRelative = GetRelativePath(textBoxVlcPath.Text);
|
||||
radioButtonVideoPlayerVLC.Enabled = LibVlcDynamic.IsInstalled;
|
||||
|
@ -7454,7 +7454,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var fi = new FileInfo(fileName);
|
||||
if (fi.Length > 1024 * 1024 * 10) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(string.Format(Configuration.Settings.Language.Main.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(string.Format(Configuration.Settings.Language.Main.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
Configuration.Settings.Language.Main.ContinueAnyway,
|
||||
fileName), Text, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
@ -8391,7 +8391,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var fi = new FileInfo(fileName);
|
||||
if (fi.Length > 1024 * 1024 * 10) // max 10 mb
|
||||
{
|
||||
if (MessageBox.Show(string.Format(Configuration.Settings.Language.Main.FileXIsLargerThan10Mb + Environment.NewLine +
|
||||
if (MessageBox.Show(string.Format(Configuration.Settings.Language.Main.FileXIsLargerThan10MB + Environment.NewLine +
|
||||
Environment.NewLine +
|
||||
Configuration.Settings.Language.Main.ContinueAnyway,
|
||||
fileName), Text, MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
|
||||
|
@ -1515,9 +1515,9 @@ Email: mailto:nikse.dk@gmail.com</AboutText1>
|
||||
<SpectrogramAppearance>Изглед на спектрограмата</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Преливане в един цвят</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Класически</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Използване на FFMPEG</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Път до FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Разлистване до FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Използване на FFmpeg</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Път до FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Разлистване до FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Прелистване за VLC портабъл</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Стил на Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Избор на шрифт</ChooseFont>
|
||||
|
@ -1511,9 +1511,9 @@ Email: mailto:nikse.dk@gmail.com</AboutText1>
|
||||
<SpectrogramAppearance>Aparença espectrograma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Color degradat</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clàsic</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Empra FFMPEG per extreure ona</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Ruta de FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Navega a FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Empra FFmpeg per extreure ona</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Ruta de FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Navega a FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Navega a VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Estil subtítol Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Escolliu font</ChooseFont>
|
||||
|
@ -1519,9 +1519,9 @@ upravovat stejný soubor titulků (spolupráce)</Information>
|
||||
<SpectrogramAppearance>Vzhled spektrogramu</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Jednobarevný přechod</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klasický</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Použít FFMPEG pro extrahování křivky</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Cesta k FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Najít FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Použít FFmpeg pro extrahování křivky</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Cesta k FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Najít FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Najít přenosné VLC</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Styl (Advanced) Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Vyberte písmo</ChooseFont>
|
||||
|
@ -1524,9 +1524,9 @@ Fortsæt?</SubtitleAppendPrompt>
|
||||
<SpectrogramAppearance>Spektrogram udseende</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Enkelt farve gradient</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klassisk</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Benyt FFMPEG til at udtrække lydfiler</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Sti til FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Vælg sti stil FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Benyt FFmpeg til at udtrække lydfiler</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Sti til FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Vælg sti stil FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Gå til VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha Style</SubStationAlphaStyle>
|
||||
<ChooseFont>Vælg skrifttype</ChooseFont>
|
||||
|
@ -1518,9 +1518,9 @@ gleiche Untertiteldatei bearbeiten können (Zusammenarbeit)</Information>
|
||||
<SpectrogramAppearance>Spektogramm Darstellung</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Einfarbiger Verlauf</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klassisch</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>FFMPEG für Wellenformdaten verwenden</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>FFMPEG Pfad</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>FFMPEG suchen</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>FFmpeg für Wellenformdaten verwenden</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>FFmpeg Pfad</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>FFmpeg suchen</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>VLC Portable suchen</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Substation Alpha Formatierung</SubStationAlphaStyle>
|
||||
<ChooseFont>Schriftart wählen</ChooseFont>
|
||||
|
@ -1522,9 +1522,9 @@ Email: mailto:nikse.dk@gmail.com</AboutText1>
|
||||
<SpectrogramAppearance>Όψη φασματογράμματος</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Διαβάθμιση ενός χρώματος</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Κλασσικό</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Χρησιμοποίησε το FFMPEG για εξαγωγή της κυματομορφής</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Διαδρομή για το FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Περιήγηση στο FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Χρησιμοποίησε το FFmpeg για εξαγωγή της κυματομορφής</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Διαδρομή για το FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Περιήγηση στο FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Περιηγηθείτε στον φορητό VLC</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Στυλ Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Επιλέξτε γραμματοσειρά</ChooseFont>
|
||||
|
@ -1463,9 +1463,9 @@ pueden editar el mismo archivo de subtítulo (colaboración)</Information>
|
||||
<SpectrogramAppearance>Apariencia del Espectrograma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Degradado de color</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clásico</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Usar FFMPEG para la extracción de onda</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Ruta hacia FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Buscar FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Usar FFmpeg para la extracción de onda</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Ruta hacia FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Buscar FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<SubStationAlphaStyle>Estilo Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Elegir fuente</ChooseFont>
|
||||
<ChooseColor>Elegir color</ChooseColor>
|
||||
|
@ -1508,9 +1508,9 @@ puedan editar el mismo archivo de subtítulo (colaboración)</Information>
|
||||
<SpectrogramAppearance>Apariencia del Espectrograma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Degradado de color</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clásico</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Usar FFMPEG para la extracción de onda</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Ruta del FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Buscar FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Usar FFmpeg para la extracción de onda</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Ruta del FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Buscar FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Buscar VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Estilo Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Elegir fuente</ChooseFont>
|
||||
|
@ -1514,9 +1514,9 @@ Jarraitu nahi duzu?</SubtitleAppendPrompt>
|
||||
<SpectrogramAppearance>Argilitzaeraren itxura:</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Margo gradiente bat</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klasikoa</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Erabili FFMPEG uhinera aterapenerako</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>FFMPEG helburua</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Bilatu FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Erabili FFmpeg uhinera aterapenerako</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>FFmpeg helburua</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Bilatu FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Bilatu VLC eramangarria</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha Estiloa</SubStationAlphaStyle>
|
||||
<ChooseFont>Hautatu hizkia</ChooseFont>
|
||||
|
@ -1523,12 +1523,12 @@ Näytä valinta ja siitä eteenpäin {0:0.0##} sekuntia aikaisemmin
|
||||
<SpectrogramAppearance>Spektrogrammin ulkoasu</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Yksivärinen liukuvärjäys</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klassinen</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>
|
||||
</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>
|
||||
</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>
|
||||
</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>
|
||||
</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>
|
||||
</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>
|
||||
</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>
|
||||
</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha -tyyli</SubStationAlphaStyle>
|
||||
|
@ -1487,9 +1487,9 @@ Poursuivre?</SubtitleAppendPrompt>
|
||||
<SpectrogramAppearance>Apparence :</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Gradient d'une seule couleur</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Classique</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Utiliser FFmpeg pour extraire l'audio</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Chemin de FFmpeg :</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Rechercher FFmpeg.exe...</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Utiliser FFmpeg pour extraire l'audio</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Chemin de FFmpeg :</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Rechercher FFmpeg.exe...</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Rechercher VLC portable...</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Style du SSA (SubStation Alpha)</SubStationAlphaStyle>
|
||||
<ChooseFont>Choisir fonte</ChooseFont>
|
||||
|
@ -1519,9 +1519,9 @@ szerkesztheti ugyanazt a feliratfájlt</Information>
|
||||
<SpectrogramAppearance>Spektrogram megjelenés</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Egy színátmenetes</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klasszikus</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>FFMPEG használata a wav kiemelésre</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>FFMPEG helye</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>FFMPEG keresése</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>FFmpeg használata a wav kiemelésre</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>FFmpeg helye</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>FFmpeg keresése</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>VLC hordozható keresése</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(Speciális) Sub Station Alpha stílus</SubStationAlphaStyle>
|
||||
<ChooseFont>Válasszon betűtípust</ChooseFont>
|
||||
|
@ -1521,9 +1521,9 @@ modificare lo stesso file di sottotitolo (collaborazione)</Information>
|
||||
<SpectrogramAppearance>Apparenza spettrogramma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Una sfumatura di colore</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Classico</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Usa FFMPEG per estrarre l'audio</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Percorso di FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Sfoglia per FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Usa FFmpeg per estrarre l'audio</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Percorso di FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Sfoglia per FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Sfoglia per VLC portatile</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Stile Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Scegli font</ChooseFont>
|
||||
|
@ -1521,9 +1521,9 @@ C# 코드는 https://github.com/SubtitleEdit/subtitleedit 에 있습니다.
|
||||
<SpectrogramAppearance>스펙트로그램의 모양</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>단색 그라데이션</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>클래식</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>파형 추출을 위해 FFMPEG 사용</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>- FFMPEG 경로</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>FFMPEG 찾기...</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>파형 추출을 위해 FFmpeg 사용</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>- FFmpeg 경로</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>FFmpeg 찾기...</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>VLC 포터블 찾기...</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha의 스타일</SubStationAlphaStyle>
|
||||
<ChooseFont>글꼴 선택</ChooseFont>
|
||||
|
@ -1511,9 +1511,9 @@ Suggesties zijn van harte welkom
|
||||
<SpectrogramAppearance>Spectrogram uitvoering</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Een kleurverloop</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klassiek</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Gebruik FFMPEG voor golfvorm extractie</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Pad naar FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Ga naar FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Gebruik FFmpeg voor golfvorm extractie</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Pad naar FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Ga naar FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Blader naar VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha stijl</SubStationAlphaStyle>
|
||||
<ChooseFont>Kies lettertype</ChooseFont>
|
||||
|
@ -1528,9 +1528,9 @@ Kontynuować?</SubtitleAppendPrompt>
|
||||
<SpectrogramAppearance>Wygląd spektrogramu</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Wypełnienie gradientem w jednym kolorze</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Klasyczny</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Użyj FFMPEG do ekstrakcji audio</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Ścieżka do FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Przejdź do FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Użyj FFmpeg do ekstrakcji audio</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Ścieżka do FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Przejdź do FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Przejdź do VLC Portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Styl (Advanced) Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Wybierz czcionkę</ChooseFont>
|
||||
|
@ -1527,9 +1527,9 @@ possam editar o mesmo arquivo de legenda (colaboração)</Information>
|
||||
<SpectrogramAppearance>Aparência do espectrograma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Degradê de cor</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clássico</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Usar FFmepg para extração Wave</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Caminho para FFmepg</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Procurar FFmpeg</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Usar FFmepg para extração Wave</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Caminho para FFmepg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Procurar FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Procurar VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Estilo Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Escolher fonte</ChooseFont>
|
||||
|
@ -1530,9 +1530,9 @@ editar o mesmo ficheiro de legenda (colaboração)</Information>
|
||||
<SpectrogramAppearance>Aparência do espectrograma</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Degradê de cor</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clássico</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Usar o FFMPEG para extrair o áudio no formato "wav"</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Directoria do FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Procurar por FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Usar o FFmpeg para extrair o áudio no formato "wav"</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Directoria do FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Procurar por FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Procurar por VLC portátil</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha estilo (Avançado)</SubStationAlphaStyle>
|
||||
<ChooseFont>Tipo de letra</ChooseFont>
|
||||
|
@ -1521,9 +1521,9 @@ pot edita în acelasi fișier de subtitrare (colaborare)</Information>
|
||||
<SpectrogramAppearance>Aspectul spectrogramei</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>În culoare degradé</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Clasic</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Folosește FFMPEG ptr. extragerea formei audio</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Calea spre FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Caută FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Folosește FFmpeg ptr. extragerea formei audio</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Calea spre FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Caută FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Caută VLC portabil</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(Avansat) stilul Sub Station Alpha</SubStationAlphaStyle>
|
||||
<ChooseFont>Alege fontul</ChooseFont>
|
||||
|
@ -1537,9 +1537,9 @@ https://github.com/SubtitleEdit/subtitleedit
|
||||
<SpectrogramAppearance>Внешний вид спектрограммы</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>Градиентная заливка одним цветом</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Классический</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Использовать FFMPEG для извлечения звука</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Путь к FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Обзор FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Использовать FFmpeg для извлечения звука</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Путь к FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Обзор FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Обзор VLC portable</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(Дополнительно) Sub Station Alpha стиль</SubStationAlphaStyle>
|
||||
<ChooseFont>Выбрать шрифт</ChooseFont>
|
||||
|
@ -1517,9 +1517,9 @@ kan redigera i samma textningsfil (samarbete)</Information>
|
||||
<SpectrogramAppearance>Spektrogram utseende</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>En färgövertoning</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>Classic</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>Använd FFMPEG för wave extraktion</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>Sökväg till FFMPEG</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>Bläddra till FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>Använd FFmpeg för wave extraktion</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>Sökväg till FFmpeg</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>Bläddra till FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>Bläddra till VLC bärbar</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>Sub Station Alpha style</SubStationAlphaStyle>
|
||||
<ChooseFont>Välj teckensnitt</ChooseFont>
|
||||
|
@ -1514,9 +1514,9 @@ C# 源代码可从 https://github.com/SubtitleEdit/subtitleedit 获得。
|
||||
<SpectrogramAppearance>频谱图外观</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>单色梯度</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>经典</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>使用 FFMPEG 进行音频波形提取</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>FFMPEG 文件路径</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>浏览至 FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>使用 FFmpeg 进行音频波形提取</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>FFmpeg 文件路径</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>浏览至 FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>浏览至VLC便携版安装路径</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(高级) Sub Station Alpha 样式</SubStationAlphaStyle>
|
||||
<ChooseFont>选择字体</ChooseFont>
|
||||
|
@ -1521,9 +1521,9 @@ C# 原始碼可從 https://github.com/SubtitleEdit/subtitleedit 取得。
|
||||
<SpectrogramAppearance>頻譜圖外觀</SpectrogramAppearance>
|
||||
<SpectrogramOneColorGradient>單色漸層</SpectrogramOneColorGradient>
|
||||
<SpectrogramClassic>經典</SpectrogramClassic>
|
||||
<WaveformUseFFMPEG>使用 FFMPEG 進行波形提取</WaveformUseFFMPEG>
|
||||
<WaveformFFMPEGPath>FFMPEG 路徑</WaveformFFMPEGPath>
|
||||
<WaveformBrowseToFFMPEG>瀏覽 FFMPEG</WaveformBrowseToFFMPEG>
|
||||
<WaveformUseFFmpeg>使用 FFmpeg 進行波形提取</WaveformUseFFmpeg>
|
||||
<WaveformFFmpegPath>FFmpeg 路徑</WaveformFFmpegPath>
|
||||
<WaveformBrowseToFFmpeg>瀏覽 FFmpeg</WaveformBrowseToFFmpeg>
|
||||
<WaveformBrowseToVLC>瀏覽 VLC 便攜式版本</WaveformBrowseToVLC>
|
||||
<SubStationAlphaStyle>(Advanced) Sub Station Alpha 樣式</SubStationAlphaStyle>
|
||||
<ChooseFont>選擇字型</ChooseFont>
|
||||
|
@ -896,7 +896,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
VisualSyncPerformedOnSelectedLines = "Visual sync performed on selected lines",
|
||||
VisualSyncPerformed = "Visual sync performed",
|
||||
ImportThisVobSubSubtitle = "Import this VobSub subtitle?",
|
||||
FileXIsLargerThan10Mb = "File is larger than 10 MB: {0}",
|
||||
FileXIsLargerThan10MB = "File is larger than 10 MB: {0}",
|
||||
ContinueAnyway = "Continue anyway?",
|
||||
BeforeLoadOf = "Before load of {0}",
|
||||
LoadedSubtitleX = "Loaded subtitle {0}",
|
||||
@ -1807,9 +1807,9 @@ can edit in same subtitle file (collaboration)",
|
||||
SpectrogramAppearance = "Spectrogram appearance",
|
||||
SpectrogramOneColorGradient = "One color gradient",
|
||||
SpectrogramClassic = "Classic",
|
||||
WaveformUseFFMPEG = "Use FFMPEG for wave extraction",
|
||||
WaveformFFMPEGPath = "Path to FFMPEG",
|
||||
WaveformBrowseToFFMPEG = "Browse to FFMPEG",
|
||||
WaveformUseFFmpeg = "Use FFmpeg for wave extraction",
|
||||
WaveformFFmpegPath = "Path to FFmpeg",
|
||||
WaveformBrowseToFFmpeg = "Browse to FFmpeg",
|
||||
WaveformBrowseToVLC = "Browse to VLC portable",
|
||||
SubStationAlphaStyle = "(Advanced) Sub Station Alpha style",
|
||||
ChooseFont = "Choose font",
|
||||
|
@ -1931,8 +1931,8 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "Main/ImportThisVobSubSubtitle":
|
||||
language.Main.ImportThisVobSubSubtitle = reader.Value;
|
||||
break;
|
||||
case "Main/FileXIsLargerThan10Mb":
|
||||
language.Main.FileXIsLargerThan10Mb = reader.Value;
|
||||
case "Main/FileXIsLargerThan10MB":
|
||||
language.Main.FileXIsLargerThan10MB = reader.Value;
|
||||
break;
|
||||
case "Main/ContinueAnyway":
|
||||
language.Main.ContinueAnyway = reader.Value;
|
||||
@ -4190,14 +4190,14 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "Settings/SpectrogramClassic":
|
||||
language.Settings.SpectrogramClassic = reader.Value;
|
||||
break;
|
||||
case "Settings/WaveformUseFFMPEG":
|
||||
language.Settings.WaveformUseFFMPEG = reader.Value;
|
||||
case "Settings/WaveformUseFFmpeg":
|
||||
language.Settings.WaveformUseFFmpeg = reader.Value;
|
||||
break;
|
||||
case "Settings/WaveformFFMPEGPath":
|
||||
language.Settings.WaveformFFMPEGPath = reader.Value;
|
||||
case "Settings/WaveformFFmpegPath":
|
||||
language.Settings.WaveformFFmpegPath = reader.Value;
|
||||
break;
|
||||
case "Settings/WaveformBrowseToFFMPEG":
|
||||
language.Settings.WaveformBrowseToFFMPEG = reader.Value;
|
||||
case "Settings/WaveformBrowseToFFmpeg":
|
||||
language.Settings.WaveformBrowseToFFmpeg = reader.Value;
|
||||
break;
|
||||
case "Settings/WaveformBrowseToVLC":
|
||||
language.Settings.WaveformBrowseToVLC = reader.Value;
|
||||
|
@ -787,7 +787,7 @@
|
||||
public string VisualSyncPerformedOnSelectedLines { get; set; }
|
||||
public string VisualSyncPerformed { get; set; }
|
||||
public string ImportThisVobSubSubtitle { get; set; }
|
||||
public string FileXIsLargerThan10Mb { get; set; }
|
||||
public string FileXIsLargerThan10MB { get; set; }
|
||||
public string ContinueAnyway { get; set; }
|
||||
public string BeforeLoadOf { get; set; }
|
||||
public string LoadedSubtitleX { get; set; }
|
||||
@ -1698,9 +1698,9 @@
|
||||
public string SpectrogramAppearance { get; set; }
|
||||
public string SpectrogramOneColorGradient { get; set; }
|
||||
public string SpectrogramClassic { get; set; }
|
||||
public string WaveformUseFFMPEG { get; set; }
|
||||
public string WaveformFFMPEGPath { get; set; }
|
||||
public string WaveformBrowseToFFMPEG { get; set; }
|
||||
public string WaveformUseFFmpeg { get; set; }
|
||||
public string WaveformFFmpegPath { get; set; }
|
||||
public string WaveformBrowseToFFmpeg { get; set; }
|
||||
public string WaveformBrowseToVLC { get; set; }
|
||||
public string SubStationAlphaStyle { get; set; }
|
||||
public string ChooseFont { get; set; }
|
||||
|
@ -10,7 +10,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
public int Height { get; private set; }
|
||||
|
||||
private Color[] _colors;
|
||||
public bool LoadedOK { get; private set; }
|
||||
public bool LoadedOk { get; private set; }
|
||||
|
||||
public ManagedBitmap(string fileName)
|
||||
{
|
||||
@ -42,7 +42,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
}
|
||||
catch
|
||||
{
|
||||
LoadedOK = false;
|
||||
LoadedOk = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1860,12 +1860,12 @@ namespace Nikse.SubtitleEdit.Logic.OCR
|
||||
startOk = true;
|
||||
if (startOk)
|
||||
{
|
||||
bool endOK = (i + word.Length == text.Length);
|
||||
if (!endOK)
|
||||
endOK = (" ¡¿<>-\"”“()[]'‘`´¶♪¿¡.…—!?,:;/" + Environment.NewLine).Contains(text.Substring(i + word.Length, 1));
|
||||
if (!endOK)
|
||||
endOK = newWord.EndsWith(" ");
|
||||
if (endOK)
|
||||
bool endOk = (i + word.Length == text.Length);
|
||||
if (!endOk)
|
||||
endOk = (" ¡¿<>-\"”“()[]'‘`´¶♪¿¡.…—!?,:;/" + Environment.NewLine).Contains(text.Substring(i + word.Length, 1));
|
||||
if (!endOk)
|
||||
endOk = newWord.EndsWith(" ");
|
||||
if (endOk)
|
||||
{
|
||||
sb.Append(newWord);
|
||||
appendFrom = i + word.Length;
|
||||
|
@ -502,8 +502,8 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
public string VlcWaveTranscodeSettings { get; set; }
|
||||
public string VlcLocation { get; set; }
|
||||
public string VlcLocationRelative { get; set; }
|
||||
public bool UseFFMPEGForWaveExtraction { get; set; }
|
||||
public string FFMPEGLocation { get; set; }
|
||||
public bool UseFFmpegForWaveExtraction { get; set; }
|
||||
public string FFmpegLocation { get; set; }
|
||||
public bool UseTimeFormatHHMMSSFF { get; set; }
|
||||
public int ClearStatusBarAfterSeconds { get; set; }
|
||||
public string Company { get; set; }
|
||||
@ -1434,12 +1434,12 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
subNode = node.SelectSingleNode("VlcLocationRelative");
|
||||
if (subNode != null)
|
||||
settings.General.VlcLocationRelative = subNode.InnerText.Trim();
|
||||
subNode = node.SelectSingleNode("UseFFMPEGForWaveExtraction");
|
||||
subNode = node.SelectSingleNode("UseFFmpegForWaveExtraction");
|
||||
if (subNode != null)
|
||||
settings.General.UseFFMPEGForWaveExtraction = Convert.ToBoolean(subNode.InnerText.Trim());
|
||||
subNode = node.SelectSingleNode("FFMPEGLocation");
|
||||
settings.General.UseFFmpegForWaveExtraction = Convert.ToBoolean(subNode.InnerText.Trim());
|
||||
subNode = node.SelectSingleNode("FFmpegLocation");
|
||||
if (subNode != null)
|
||||
settings.General.FFMPEGLocation = subNode.InnerText.Trim();
|
||||
settings.General.FFmpegLocation = subNode.InnerText.Trim();
|
||||
subNode = node.SelectSingleNode("UseTimeFormatHHMMSSFF");
|
||||
if (subNode != null)
|
||||
settings.General.UseTimeFormatHHMMSSFF = Convert.ToBoolean(subNode.InnerText.Trim());
|
||||
@ -2692,8 +2692,8 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
textWriter.WriteElementString("VlcWaveTranscodeSettings", settings.General.VlcWaveTranscodeSettings);
|
||||
textWriter.WriteElementString("VlcLocation", settings.General.VlcLocation);
|
||||
textWriter.WriteElementString("VlcLocationRelative", settings.General.VlcLocationRelative);
|
||||
textWriter.WriteElementString("UseFFMPEGForWaveExtraction", settings.General.UseFFMPEGForWaveExtraction.ToString(CultureInfo.InvariantCulture));
|
||||
textWriter.WriteElementString("FFMPEGLocation", settings.General.FFMPEGLocation);
|
||||
textWriter.WriteElementString("UseFFmpegForWaveExtraction", settings.General.UseFFmpegForWaveExtraction.ToString(CultureInfo.InvariantCulture));
|
||||
textWriter.WriteElementString("FFmpegLocation", settings.General.FFmpegLocation);
|
||||
textWriter.WriteElementString("UseTimeFormatHHMMSSFF", settings.General.UseTimeFormatHHMMSSFF.ToString(CultureInfo.InvariantCulture));
|
||||
textWriter.WriteElementString("ClearStatusBarAfterSeconds", settings.General.ClearStatusBarAfterSeconds.ToString(CultureInfo.InvariantCulture));
|
||||
textWriter.WriteElementString("Company", settings.General.Company);
|
||||
|
@ -28,7 +28,7 @@ namespace UpdateAssemblyInfo
|
||||
if (File.Exists(p))
|
||||
return p;
|
||||
|
||||
Console.WriteLine("Warning: Might not be able to find git command line tool!");
|
||||
Console.WriteLine("Warning: Might not be able to find Git command line tool!");
|
||||
return "git";
|
||||
}
|
||||
|
||||
@ -76,7 +76,7 @@ namespace UpdateAssemblyInfo
|
||||
{
|
||||
try
|
||||
{
|
||||
// allow for compile without git
|
||||
// allow to compile without git
|
||||
DoUpdateAssembly("[GITHASH]", string.Empty, template, target);
|
||||
DoUpdateAssembly("[REVNO]", "0", target, target);
|
||||
}
|
||||
@ -84,10 +84,10 @@ namespace UpdateAssemblyInfo
|
||||
{
|
||||
}
|
||||
|
||||
Console.WriteLine("Error running Git");
|
||||
Console.WriteLine(" - git folder: " + workingFolder);
|
||||
Console.WriteLine(" - template: " + template);
|
||||
Console.WriteLine(" - target: " + target);
|
||||
Console.WriteLine("Error running Git");
|
||||
Console.WriteLine(" - Git folder: " + workingFolder);
|
||||
Console.WriteLine(" - Template: " + template);
|
||||
Console.WriteLine(" - Target: " + target);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user