mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 12:44:46 +01:00
Merge branch 'master' of https://github.com/SubtitleEdit/subtitleedit
This commit is contained in:
commit
e69d958464
@ -1,4 +1,4 @@
|
||||
using Nikse.SubtitleEdit.Core;
|
||||
using Nikse.SubtitleEdit.Core.Common;
|
||||
using Nikse.SubtitleEdit.Logic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@ -9,7 +9,6 @@ using System.Net;
|
||||
using System.Net.Cache;
|
||||
using System.Windows.Forms;
|
||||
using System.Xml;
|
||||
using Nikse.SubtitleEdit.Core.Common;
|
||||
|
||||
namespace Nikse.SubtitleEdit.Forms
|
||||
{
|
||||
@ -150,7 +149,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
if (_updateAllListUrls.Count > 0)
|
||||
{
|
||||
buttonUpdateAll.BackColor = Color.LightGreen;
|
||||
buttonUpdateAll.BackColor = Configuration.Settings.General.UseDarkTheme ? Color.Green : Color.LightGreen;
|
||||
if (LanguageSettings.Current.PluginsGet.UpdateAllX != null)
|
||||
{
|
||||
buttonUpdateAll.Text = string.Format(LanguageSettings.Current.PluginsGet.UpdateAllX, _updateAllListUrls.Count);
|
||||
@ -185,7 +184,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
if (string.Compare(installed.Text, node.SelectSingleNode("Name").InnerText.Trim('.'), StringComparison.OrdinalIgnoreCase) == 0 && installedVer < currentVer)
|
||||
{
|
||||
installed.BackColor = Color.LightPink;
|
||||
installed.BackColor = Configuration.Settings.General.UseDarkTheme ? Color.IndianRed : Color.LightPink;
|
||||
installed.SubItems[1].Text = $"{_language.UpdateAvailable} {installed.SubItems[1].Text}";
|
||||
buttonUpdateAll.Visible = true;
|
||||
_updateAllListUrls.Add(item.Url);
|
||||
|
@ -247,9 +247,11 @@ Command line: {1} {2}
|
||||
<QuickOcr>快速OCR文本(仅用于参考)</QuickOcr>
|
||||
<ResizeBitmaps>调整图片尺寸…</ResizeBitmaps>
|
||||
<ChangeBrightness>调整亮度…</ChangeBrightness>
|
||||
<ChangeAlpha>调整透明度…</ChangeAlpha>
|
||||
<ResizeBitmapsForSelectedLines>为所选行调整图片尺寸…</ResizeBitmapsForSelectedLines>
|
||||
<ChangeColorForSelectedLines>修改所选行颜色…</ChangeColorForSelectedLines>
|
||||
<ChangeBrightnessForSelectedLines>调整所选行亮度…</ChangeBrightnessForSelectedLines>
|
||||
<ChangeAlphaForSelectedLines>调整所选行透明度…</ChangeAlphaForSelectedLines>
|
||||
<AlignSelectedLines>对齐所选行</AlignSelectedLines>
|
||||
<CenterSelectedLines>居中所选行(水平,保持垂直位置)</CenterSelectedLines>
|
||||
<TopAlignSelectedLines>顶部对齐所选行(保持水平位置)</TopAlignSelectedLines>
|
||||
@ -260,6 +262,8 @@ Command line: {1} {2}
|
||||
<BrightnessX>亮度:{}%</BrightnessX>
|
||||
<ResizeTitle>调整图片尺寸</ResizeTitle>
|
||||
<ResizeX>调整尺寸:{}%</ResizeX>
|
||||
<ChangeAlphaTitle>调整透明度</ChangeAlphaTitle>
|
||||
<AlphaX>透明度:{}%</AlphaX>
|
||||
</BinEdit>
|
||||
<Bookmarks>
|
||||
<EditBookmark>编辑书签</EditBookmark>
|
||||
@ -658,6 +662,7 @@ Command line: {1} {2}
|
||||
<FixHyphensInDialogs>用以修复对话连字符的样式: {0}</FixHyphensInDialogs>
|
||||
<AddMissingQuotesExample>"How are you? -> "How are you?"</AddMissingQuotesExample>
|
||||
<XMissingQuotesAdded>已添加丢失的引号: {0}</XMissingQuotesAdded>
|
||||
<Fix3PlusLine>修复超过两行的字幕</Fix3PlusLine>
|
||||
<Fix3PlusLines>修复超过两行的字幕</Fix3PlusLines>
|
||||
<Analysing>正在分析...</Analysing>
|
||||
<NothingToFix>没有什么要修复 :)</NothingToFix>
|
||||
|
Loading…
Reference in New Issue
Block a user