mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 11:42:36 +01:00
Fixed a few typos
This commit is contained in:
parent
ebe79b3150
commit
2094ff2586
@ -9475,7 +9475,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
if (noOfErrors > 0)
|
||||
{
|
||||
MessageBox.Show(string.Format("{0} errror(s) occured during extraction of bdsup\r\n\r\n{1}", noOfErrors, lastError));
|
||||
MessageBox.Show(string.Format("{0} error(s) occured during extraction of bdsup\r\n\r\n{1}", noOfErrors, lastError));
|
||||
}
|
||||
|
||||
var formSubOcr = new VobSubOcr();
|
||||
@ -17922,7 +17922,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
if (p.EndTime.TotalMilliseconds > ms && p.StartTime.TotalMilliseconds < ms)
|
||||
{
|
||||
// currrent sub
|
||||
// current sub
|
||||
}
|
||||
else if (p.Duration.TotalSeconds < 10 && p.StartTime.TotalMilliseconds > ms)
|
||||
{
|
||||
@ -17945,7 +17945,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
Paragraph p = _subtitle.Paragraphs[i];
|
||||
if (p.EndTime.TotalMilliseconds > ms && p.StartTime.TotalMilliseconds < ms)
|
||||
{
|
||||
// currrent sub
|
||||
// current sub
|
||||
}
|
||||
else if (p.Duration.TotalSeconds < 10 && p.StartTime.TotalMilliseconds < ms)
|
||||
{
|
||||
|
@ -1291,7 +1291,7 @@ Fortfahren?</SubtitleAppendPrompt>
|
||||
<Import>Importiere...</Import>
|
||||
<Export>Exportiere...</Export>
|
||||
<ImportRulesTitle>Importiere Korrekturregeln aus...</ImportRulesTitle>
|
||||
<ExportRulesTitle>Exportiere Korrekturrregeln nach...</ExportRulesTitle>
|
||||
<ExportRulesTitle>Exportiere Korrekturregeln nach...</ExportRulesTitle>
|
||||
<Rules>Exportregeln</Rules>
|
||||
</MultipleReplace>
|
||||
<NetworkChat>
|
||||
|
@ -156,9 +156,13 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
else
|
||||
{
|
||||
string installerPath = GetInstallerPath();
|
||||
string pf = System.Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles).TrimEnd(Path.DirectorySeparatorChar);
|
||||
bool hasUninstallFiles = Directory.GetFiles(BaseDirectory, "unins*.*").Length > 0;
|
||||
bool hasDictionaryFolder = Directory.Exists(Path.Combine(BaseDirectory, "Dictionaries"));
|
||||
string appDataRoamingPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Subtitle Edit");
|
||||
if (installerPath != null && BaseDirectory.ToLower().StartsWith(installerPath.ToLower().TrimEnd(Path.DirectorySeparatorChar)))
|
||||
|
||||
if ((installerPath != null && installerPath.ToLower().TrimEnd(Path.DirectorySeparatorChar) == BaseDirectory.ToLower().TrimEnd(Path.DirectorySeparatorChar)) ||
|
||||
hasUninstallFiles ||
|
||||
(!hasDictionaryFolder && Directory.Exists(Path.Combine(appDataRoamingPath, "Dictionaries"))))
|
||||
{
|
||||
if (Directory.Exists(appDataRoamingPath))
|
||||
{
|
||||
@ -180,21 +184,6 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (BaseDirectory.ToLower().StartsWith(pf.ToLower()) && Environment.OSVersion.Version.Major >= 6 ) // 6 == Vista/Win2008Server/Win7
|
||||
{ // windows vista and newer does not like programs writing to PF (nor does WinXp with non admin...)
|
||||
try
|
||||
{
|
||||
System.IO.Directory.CreateDirectory(appDataRoamingPath);
|
||||
System.IO.Directory.CreateDirectory(Path.Combine(appDataRoamingPath, "Dictionaries"));
|
||||
Instance._dataDir = appDataRoamingPath + Path.DirectorySeparatorChar;
|
||||
}
|
||||
catch
|
||||
{
|
||||
Instance._dataDir = BaseDirectory;
|
||||
System.Windows.Forms.MessageBox.Show("Please do not install portable version in 'Program Files' folder.");
|
||||
System.Windows.Forms.Application.ExitThread();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Instance._dataDir = BaseDirectory;
|
||||
|
Loading…
Reference in New Issue
Block a user