mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Fix missing translation - thx Jamakmake :)
This commit is contained in:
parent
e67532ec16
commit
b6431cbbc0
@ -2098,10 +2098,11 @@ can edit in same subtitle file (collaboration)</Information>
|
||||
<Normal>&Normal</Normal>
|
||||
<CaseSensitive>&Case sensitive</CaseSensitive>
|
||||
<RegularExpression>Regular e&xpression</RegularExpression>
|
||||
<ReplaceWith>Replace with</ReplaceWith>
|
||||
<ReplaceWith>Replace with:</ReplaceWith>
|
||||
<Find>&Find</Find>
|
||||
<Replace>&Replace</Replace>
|
||||
<ReplaceAll>Replace &all</ReplaceAll>
|
||||
<FindReplaceIn>Replace/search in:</FindReplaceIn>
|
||||
<TranslationAndOriginal>Translation and original</TranslationAndOriginal>
|
||||
<TranslationOnly>Translation only</TranslationOnly>
|
||||
<OriginalOnly>Original only</OriginalOnly>
|
||||
|
@ -35,6 +35,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
buttonFind.Text = LanguageSettings.Current.ReplaceDialog.Find;
|
||||
buttonReplace.Text = LanguageSettings.Current.ReplaceDialog.Replace;
|
||||
buttonReplaceAll.Text = LanguageSettings.Current.ReplaceDialog.ReplaceAll;
|
||||
labelFindReplaceIn.Text = LanguageSettings.Current.ReplaceDialog.FindReplaceIn;
|
||||
|
||||
if (Width < radioButtonRegEx.Right + 5)
|
||||
{
|
||||
|
@ -2423,10 +2423,11 @@ can edit in same subtitle file (collaboration)",
|
||||
Normal = "&Normal",
|
||||
CaseSensitive = "&Case sensitive",
|
||||
RegularExpression = "Regular e&xpression",
|
||||
ReplaceWith = "Replace with",
|
||||
ReplaceWith = "Replace with:",
|
||||
Find = "&Find",
|
||||
Replace = "&Replace",
|
||||
ReplaceAll = "Replace &all",
|
||||
FindReplaceIn = "Replace/search in:",
|
||||
TranslationAndOriginal = "Translation and original",
|
||||
TranslationOnly = "Translation only",
|
||||
OriginalOnly = "Original only",
|
||||
|
@ -5677,6 +5677,9 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "ReplaceDialog/ReplaceAll":
|
||||
language.ReplaceDialog.ReplaceAll = reader.Value;
|
||||
break;
|
||||
case "ReplaceDialog/FindReplaceIn":
|
||||
language.ReplaceDialog.FindReplaceIn = reader.Value;
|
||||
break;
|
||||
case "ReplaceDialog/TranslationAndOriginal":
|
||||
language.ReplaceDialog.TranslationAndOriginal = reader.Value;
|
||||
break;
|
||||
|
@ -2274,6 +2274,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
public string Find { get; set; }
|
||||
public string Replace { get; set; }
|
||||
public string ReplaceAll { get; set; }
|
||||
public string FindReplaceIn { get; set; }
|
||||
public string TranslationAndOriginal { get; set; }
|
||||
public string TranslationOnly { get; set; }
|
||||
public string OriginalOnly { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user