mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Update translation
This commit is contained in:
parent
55fca22ce6
commit
aa37c824af
@ -368,6 +368,7 @@ Read more info (web)?</WhisperNotFound>
|
||||
</BatchConvert>
|
||||
<BeautifyTimeCodes>
|
||||
<Title>Beautify time codes</Title>
|
||||
<TitleSelectedLines>Beautify time codes ({0} selected lines)</TitleSelectedLines>
|
||||
<GroupTimeCodes>Time codes</GroupTimeCodes>
|
||||
<AlignTimeCodes>Align time codes to frame time codes</AlignTimeCodes>
|
||||
<ExtractExactTimeCodes>Use ffprobe to extract exact frame time codes</ExtractExactTimeCodes>
|
||||
@ -1539,6 +1540,7 @@ To use an API key, go to "Options -> Settings -> Tools" to enter your Goog
|
||||
<KaraokeEffect>Karaoke effect...</KaraokeEffect>
|
||||
<ShowSelectedLinesEarlierLater>Show selected lines earlier/later...</ShowSelectedLinesEarlierLater>
|
||||
<VisualSyncSelectedLines>Visual sync selected lines...</VisualSyncSelectedLines>
|
||||
<BeautifyTimeCodesOfSelectedLines>Beautify time codes of selected lines...</BeautifyTimeCodesOfSelectedLines>
|
||||
<GoogleAndMicrosoftTranslateSelectedLine>Google/Microsoft translate original line</GoogleAndMicrosoftTranslateSelectedLine>
|
||||
<SelectedLines>Selected lines</SelectedLines>
|
||||
<TranslateSelectedLines>Translate selected lines...</TranslateSelectedLines>
|
||||
@ -1695,7 +1697,9 @@ Would you like to start from the top of the document and continue search and rep
|
||||
<BeforeRenumbering>Before renumbering</BeforeRenumbering>
|
||||
<RenumberedStartingFromX>Renumbered starting from: {0}</RenumberedStartingFromX>
|
||||
<BeforeBeautifyTimeCodes>Before beautifying time codes</BeforeBeautifyTimeCodes>
|
||||
<BeforeBeautifyTimeCodesSelectedLines>Before beautifying time codes of selected lines</BeforeBeautifyTimeCodesSelectedLines>
|
||||
<BeautifiedTimeCodes>Time codes beautified</BeautifiedTimeCodes>
|
||||
<BeautifiedTimeCodesSelectedLines>Time codes of selected lines beautified</BeautifiedTimeCodesSelectedLines>
|
||||
<BeforeRemovalOfTextingForHearingImpaired>Before removal of texting for hearing impaired</BeforeRemovalOfTextingForHearingImpaired>
|
||||
<TextingForHearingImpairedRemovedOneLine>Texting for hearing impaired removed: One line</TextingForHearingImpairedRemovedOneLine>
|
||||
<TextingForHearingImpairedRemovedXLines>Texting for hearing impaired removed: {0} lines</TextingForHearingImpairedRemovedXLines>
|
||||
|
@ -985,6 +985,9 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "BeautifyTimeCodes/Title":
|
||||
language.BeautifyTimeCodes.Title = reader.Value;
|
||||
break;
|
||||
case "BeautifyTimeCodes/TitleSelectedLines":
|
||||
language.BeautifyTimeCodes.TitleSelectedLines = reader.Value;
|
||||
break;
|
||||
case "BeautifyTimeCodes/GroupTimeCodes":
|
||||
language.BeautifyTimeCodes.GroupTimeCodes = reader.Value;
|
||||
break;
|
||||
@ -3562,9 +3565,15 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "Main/BeforeBeautifyTimeCodes":
|
||||
language.Main.BeforeBeautifyTimeCodes = reader.Value;
|
||||
break;
|
||||
case "Main/BeforeBeautifyTimeCodesSelectedLines":
|
||||
language.Main.BeforeBeautifyTimeCodesSelectedLines = reader.Value;
|
||||
break;
|
||||
case "Main/BeautifiedTimeCodes":
|
||||
language.Main.BeautifiedTimeCodes = reader.Value;
|
||||
break;
|
||||
case "Main/BeautifiedTimeCodesSelectedLines":
|
||||
language.Main.BeautifiedTimeCodesSelectedLines = reader.Value;
|
||||
break;
|
||||
case "Main/BeforeRemovalOfTextingForHearingImpaired":
|
||||
language.Main.BeforeRemovalOfTextingForHearingImpaired = reader.Value;
|
||||
break;
|
||||
@ -4942,6 +4951,9 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
case "Main/Menu/ContextMenu/VisualSyncSelectedLines":
|
||||
language.Main.Menu.ContextMenu.VisualSyncSelectedLines = reader.Value;
|
||||
break;
|
||||
case "Main/Menu/ContextMenu/BeautifyTimeCodesOfSelectedLines":
|
||||
language.Main.Menu.ContextMenu.BeautifyTimeCodesOfSelectedLines = reader.Value;
|
||||
break;
|
||||
case "Main/Menu/ContextMenu/GoogleAndMicrosoftTranslateSelectedLine":
|
||||
language.Main.Menu.ContextMenu.GoogleAndMicrosoftTranslateSelectedLine = reader.Value;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user