mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
copywriting optimization
This commit is contained in:
@@ -988,6 +988,12 @@ namespace BetterGenshinImpact.GameTask.AutoFishing
|
||||
if (!prevIsExclusive && IsExclusive)
|
||||
{
|
||||
_logger.LogInformation("→ {Text}", "自动钓鱼,启动!");
|
||||
var autoThrowRodEnabled = TaskContext.Instance().Config.AutoFishingConfig.AutoThrowRodEnabled;
|
||||
_logger.LogInformation("当前自动选饵抛竿状态[{Enabled}]", autoThrowRodEnabled.ToChinese());
|
||||
if (autoThrowRodEnabled)
|
||||
{
|
||||
_logger.LogInformation("枫丹、须弥地区暂不支持自动抛竿,如果在这两个地区钓鱼请关闭自动抛竿功能");
|
||||
}
|
||||
_switchBaitContinuouslyFrameNum = 0;
|
||||
_waitBiteContinuouslyFrameNum = 0;
|
||||
_noFishActionContinuouslyFrameNum = 0;
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace BetterGenshinImpact.Helpers.Extensions;
|
||||
|
||||
public static class BooleanExtension
|
||||
{
|
||||
public static string ToChinese(this bool enabled)
|
||||
{
|
||||
return enabled ? "开启" : "关闭";
|
||||
}
|
||||
}
|
||||
@@ -52,7 +52,7 @@
|
||||
<Hyperlink Command="{Binding GoToWikiUrlCommand}"
|
||||
Foreground="#B7FFFFFF"
|
||||
TextDecorations="None">
|
||||
<Run>点击查看教程</Run>
|
||||
<Run>点击查看文档与教程</Run>
|
||||
<Run FontFamily="{StaticResource FluentSystemIcons}" FontWeight="Light"></Run>
|
||||
</Hyperlink>
|
||||
|
||||
@@ -178,7 +178,7 @@
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Text="默认50ms,机器性能一般的情况下不建议调整这个值"
|
||||
Text="默认50ms,普通用户不建议调整这个值,具体调整方式见文档"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBox
|
||||
Grid.Row="0"
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
TextWrapping="Wrap"
|
||||
Text="轻松解除冻结" />
|
||||
Text="轻松解除冻结,由于在水下存在长按的空格的场景,所以不推荐启用" />
|
||||
</Grid>
|
||||
</ui:CardControl.Header>
|
||||
<ui:ToggleSwitch
|
||||
@@ -62,7 +62,7 @@
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
TextWrapping="Wrap"
|
||||
Text="快速拾取大量掉落物" />
|
||||
Text="快速拾取大量掉落物,有自动拾取的功能下,就显得比较鸡肋了" />
|
||||
</Grid>
|
||||
</ui:CardControl.Header>
|
||||
<ui:ToggleSwitch
|
||||
@@ -120,7 +120,7 @@
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
TextWrapping="Wrap"
|
||||
Text="快速跳过强化结果展示,需要配置快捷键进行触发" />
|
||||
Text="快速跳过强化结果展示,需要配置快捷键进行触发(请不要长按)" />
|
||||
<ui:Button
|
||||
Grid.Row="0"
|
||||
Grid.RowSpan="2"
|
||||
|
||||
@@ -6,6 +6,7 @@ using CommunityToolkit.Mvvm.ComponentModel;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using BetterGenshinImpact.Helpers.Extensions;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using HotKeySettingModel = BetterGenshinImpact.Model.HotKeySettingModel;
|
||||
using CommunityToolkit.Mvvm.Messaging.Messages;
|
||||
@@ -136,6 +137,6 @@ public partial class HotKeyPageViewModel : ObservableObject
|
||||
|
||||
private string ToChinese(bool enabled)
|
||||
{
|
||||
return enabled ? "开启" : "关闭";
|
||||
return enabled.ToChinese();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user