From 4c0d86fd1326c3a3f133a1f5ec1065783f88e7f1 Mon Sep 17 00:00:00 2001
From: DismissedLight <1686188646@qq.com>
Date: Wed, 12 Jul 2023 16:20:17 +0800
Subject: [PATCH] Add InventoryItems localization support
---
.gitignore | 1 +
.../Snap.Hutao/Control/ScopedPage.cs | 5 +-
.../Snap.Hutao/Core/Caching/ImageCache.cs | 7 +-
.../HttpClient/HttpClientAttribute.cs | 8 +-
.../DependencyInjection/IocConfiguration.cs | 1 -
.../Core/Diagnostics/MeasureExecutionToken.cs | 2 +-
.../ExceptionService/ExceptionRecorder.cs | 6 +-
.../Snap.Hutao/Core/IO/Hashing/MD5.cs | 2 +-
.../Snap.Hutao/Core/IO/Hashing/XXH64.cs | 2 +-
.../Snap.Hutao/Core/IO/Ini/IniComment.cs | 2 +-
.../Snap.Hutao/Core/IO/Ini/IniParameter.cs | 4 +-
.../Snap.Hutao/Core/IO/Ini/IniSection.cs | 2 +-
.../Snap.Hutao/Core/IO/Ini/IniSerializer.cs | 2 +-
src/Snap.Hutao/Snap.Hutao/Core/IO/TempFile.cs | 2 +-
.../Snap.Hutao/Core/IO/ValueFile.cs | 17 +-
.../Core/Json/Annotation/JsonEnumAttribute.cs | 23 +-
.../Snap.Hutao/Core/Setting/FeatureOptions.cs | 1 +
.../DispatherQueueSwitchOperation.cs | 4 +-
.../Core/Threading/TaskExtension.cs | 14 +-
.../Core/Windowing/ExtendedWindow.cs | 2 +-
.../Snap.Hutao/Core/Windowing/Persistence.cs | 8 +-
.../Core/Windowing/WindowSubclass.cs | 13 +-
.../Extension/EnumerableExtension.List.cs | 2 +-
.../Snap.Hutao/Message/ValueChangedMessage.cs | 1 +
.../Model/Calculable/CalculableSkill.cs | 6 +-
.../Model/Calculable/ICalculableSkill.cs | 2 +-
.../Model/Entity/Database/AppDbContext.cs | 4 +-
.../Model/Intrinsic/AchievementStatus.cs | 2 +-
.../Model/Intrinsic/AssociationType.cs | 18 +-
.../Snap.Hutao/Model/Intrinsic/BodyType.cs | 10 +-
.../Model/Intrinsic/FightProperty.cs | 66 +-
.../Intrinsic/Immutable/IntrinsicImmutable.cs | 11 +
.../Snap.Hutao/Model/Intrinsic/QualityType.cs | 12 +-
.../Snap.Hutao/Model/Intrinsic/WeaponType.cs | 10 +-
.../Converter/WeaponTypeIconConverter.cs | 4 +-
.../Model/Metadata/Item/Material.cs | 25 +-
.../Resource/Localization/SH.Designer.cs | 1385 +++++++++--------
.../Resource/Localization/SH.en.resx | 2 +-
.../Resource/Localization/SH.ja.resx | 2 +-
.../Resource/Localization/SH.ko.resx | 2 +-
.../Snap.Hutao/Resource/Localization/SH.resx | 26 +-
.../Resource/Localization/SH.zh-Hant.resx | 2 +-
.../Factory/TypedWishSummaryBuilder.cs | 4 +-
.../CultivatePromotionDeltaDialog.xaml.cs | 2 +-
.../Hk4e/Event/GachaInfo/GachaConfigType.cs | 10 +-
.../Snap.Hutao/Win32/StructMarshal.cs | 14 +-
46 files changed, 930 insertions(+), 820 deletions(-)
diff --git a/.gitignore b/.gitignore
index 20067823..d14c3ba4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@ desktop.ini
*.csproj.user
*.pubxml
+*.DotSettings.user
.vs/
.idea/
diff --git a/src/Snap.Hutao/Snap.Hutao/Control/ScopedPage.cs b/src/Snap.Hutao/Snap.Hutao/Control/ScopedPage.cs
index 38a0f984..6ac47c07 100644
--- a/src/Snap.Hutao/Snap.Hutao/Control/ScopedPage.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Control/ScopedPage.cs
@@ -1,6 +1,7 @@
// Copyright (c) DGP Studio. All rights reserved.
// Licensed under the MIT license.
+using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Navigation;
using Snap.Hutao.Service.Navigation;
@@ -25,7 +26,7 @@ internal class ScopedPage : Page
///
/// 构造一个新的页面
///
- public ScopedPage()
+ protected ScopedPage()
{
Unloaded += OnScopedPageUnloaded;
currentScope = Ioc.Default.CreateScope();
@@ -51,7 +52,7 @@ internal class ScopedPage : Page
/// 应当在 InitializeComponent() 前调用
///
/// 视图模型类型
- public void InitializeWith()
+ protected void InitializeWith()
where TViewModel : class, IViewModel
{
IViewModel viewModel = currentScope.ServiceProvider.GetRequiredService();
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Caching/ImageCache.cs b/src/Snap.Hutao/Snap.Hutao/Core/Caching/ImageCache.cs
index 94c9a54b..7c58cf85 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Caching/ImageCache.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Caching/ImageCache.cs
@@ -23,6 +23,7 @@ internal sealed class ImageCache : IImageCache, IImageCacheFilePathOperation
{
private const string CacheFolderName = nameof(ImageCache);
+ // TODO: use FrozenDictionary
private static readonly Dictionary RetryCountToDelay = new()
{
[0] = TimeSpan.FromSeconds(4),
@@ -173,14 +174,14 @@ internal sealed class ImageCache : IImageCache, IImageCacheFilePathOperation
}
catch (Exception ex)
{
- logger.LogWarning(ex, "Remove Cache Image Failed:{file}", filePath);
+ logger.LogWarning(ex, "Remove Cache Image Failed:{File}", filePath);
}
}
}
private async Task DownloadFileAsync(Uri uri, string baseFile)
{
- logger.LogInformation("Begin downloading for {uri}", uri);
+ logger.LogInformation("Begin downloading for {Uri}", uri);
int retryCount = 0;
while (retryCount < 6)
@@ -209,7 +210,7 @@ internal sealed class ImageCache : IImageCache, IImageCacheFilePathOperation
{
retryCount++;
TimeSpan delay = message.Headers.RetryAfter?.Delta ?? RetryCountToDelay[retryCount];
- logger.LogInformation("Retry {uri} after {delay}.", uri, delay);
+ logger.LogInformation("Retry {Uri} after {Delay}.", uri, delay);
await Task.Delay(delay).ConfigureAwait(false);
break;
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/Annotation/HttpClient/HttpClientAttribute.cs b/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/Annotation/HttpClient/HttpClientAttribute.cs
index 7c6176c8..03df6c9d 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/Annotation/HttpClient/HttpClientAttribute.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/Annotation/HttpClient/HttpClientAttribute.cs
@@ -14,17 +14,17 @@ internal sealed class HttpClientAttribute : Attribute
///
/// 构造一个新的特性
///
- /// 配置
- public HttpClientAttribute(HttpClientConfiguration configration)
+ /// 配置
+ public HttpClientAttribute(HttpClientConfiguration configuration)
{
}
///
/// 构造一个新的特性
///
- /// 配置
+ /// 配置
/// 实现的接口类型
- public HttpClientAttribute(HttpClientConfiguration configration, Type interfaceType)
+ public HttpClientAttribute(HttpClientConfiguration configuration, Type interfaceType)
{
}
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/IocConfiguration.cs b/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/IocConfiguration.cs
index ff493fe4..508a882d 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/IocConfiguration.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/DependencyInjection/IocConfiguration.cs
@@ -4,7 +4,6 @@
using Microsoft.EntityFrameworkCore;
using Snap.Hutao.Core.Json;
using Snap.Hutao.Model.Entity.Database;
-using System.Diagnostics;
namespace Snap.Hutao.Core.DependencyInjection;
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Diagnostics/MeasureExecutionToken.cs b/src/Snap.Hutao/Snap.Hutao/Core/Diagnostics/MeasureExecutionToken.cs
index 64bb22aa..0ea5a163 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Diagnostics/MeasureExecutionToken.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Diagnostics/MeasureExecutionToken.cs
@@ -17,6 +17,6 @@ internal readonly struct MeasureExecutionToken : IDisposable
public void Dispose()
{
- logger.LogInformation("{caller} toke {time} ms.", callerName, stopwatch.GetElapsedTime().TotalMilliseconds);
+ logger.LogInformation("{Caller} toke {Time} ms", callerName, stopwatch.GetElapsedTime().TotalMilliseconds);
}
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ExceptionRecorder.cs b/src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ExceptionRecorder.cs
index 49258dfe..db38e8d7 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ExceptionRecorder.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ExceptionRecorder.cs
@@ -41,16 +41,16 @@ internal sealed partial class ExceptionRecorder
#pragma warning restore VSTHRD002
#endif
- logger.LogError("未经处理的全局异常:\r\n{detail}", ExceptionFormat.Format(e.Exception));
+ logger.LogError("未经处理的全局异常:\r\n{Detail}", ExceptionFormat.Format(e.Exception));
}
private void OnXamlBindingFailed(object? sender, BindingFailedEventArgs e)
{
- logger.LogCritical("XAML 绑定失败:{message}", e.Message);
+ logger.LogCritical("XAML 绑定失败:{Message}", e.Message);
}
private void OnXamlResourceReferenceFailed(DebugSettings sender, XamlResourceReferenceFailedEventArgs e)
{
- logger.LogCritical("XAML 资源引用失败:{message}", e.Message);
+ logger.LogCritical("XAML 资源引用失败:{Message}", e.Message);
}
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/MD5.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/MD5.cs
index 2d05ee09..688308e3 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/MD5.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/MD5.cs
@@ -19,7 +19,7 @@ internal static class MD5
/// 文件 Md5 摘要
public static async Task HashFileAsync(string filePath, CancellationToken token = default)
{
- using (FileStream stream = File.OpenRead(filePath))
+ await using (FileStream stream = File.OpenRead(filePath))
{
return await HashAsync(stream, token).ConfigureAwait(false);
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/XXH64.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/XXH64.cs
index 3a980e26..292599d0 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/XXH64.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Hashing/XXH64.cs
@@ -33,7 +33,7 @@ internal static class XXH64
/// 摘要
public static async Task HashFileAsync(string path, CancellationToken token = default)
{
- using (FileStream stream = File.OpenRead(path))
+ await using (FileStream stream = File.OpenRead(path))
{
return await HashAsync(stream, token).ConfigureAwait(false);
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniComment.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniComment.cs
index 379c2c0e..b6e1343b 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniComment.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniComment.cs
@@ -21,7 +21,7 @@ internal sealed class IniComment : IniElement
///
/// 注释
///
- public string Comment { get; set; }
+ public string Comment { get; }
///
public override string ToString()
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniParameter.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniParameter.cs
index d1612535..06671cb4 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniParameter.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniParameter.cs
@@ -23,12 +23,12 @@ internal sealed class IniParameter : IniElement
///
/// 键
///
- public string Key { get; set; }
+ public string Key { get; }
///
/// 值
///
- public string Value { get; set; }
+ public string Value { get; private set; }
///
/// 设置值
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSection.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSection.cs
index fd2574be..f5b98f3c 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSection.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSection.cs
@@ -21,7 +21,7 @@ internal sealed class IniSection : IniElement
///
/// 名称
///
- public string Name { get; set; }
+ public string Name { get; }
///
public override string ToString()
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSerializer.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSerializer.cs
index 63a5c2fd..9a9b659c 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSerializer.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/Ini/IniSerializer.cs
@@ -39,7 +39,7 @@ internal static class IniSerializer
if (line.IndexOf('=') > 0)
{
- string[] parameters = line.Split('=', 2);
+ string[] parameters = line.Split('=', 2, StringSplitOptions.TrimEntries);
yield return new IniParameter(parameters[0], parameters[1]);
}
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/TempFile.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/TempFile.cs
index 8e94f082..f0a60af5 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/TempFile.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/TempFile.cs
@@ -16,7 +16,7 @@ internal sealed class TempFile : IDisposable
/// 构造一个新的临时文件
///
/// 是否在创建时删除文件
- public TempFile(bool delete = false)
+ private TempFile(bool delete = false)
{
try
{
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/IO/ValueFile.cs b/src/Snap.Hutao/Snap.Hutao/Core/IO/ValueFile.cs
index 30a616b8..f4646315 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/IO/ValueFile.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/IO/ValueFile.cs
@@ -10,23 +10,20 @@ namespace Snap.Hutao.Core.IO;
///
internal readonly struct ValueFile
{
- ///
- /// 值
- ///
- public readonly string Value;
+ private readonly string value;
///
/// Initializes a new instance of the struct.
///
/// value
- public ValueFile(string value)
+ private ValueFile(string value)
{
- Value = value;
+ this.value = value;
}
public static implicit operator string(ValueFile value)
{
- return value.Value;
+ return value.value;
}
public static implicit operator ValueFile(string value)
@@ -45,7 +42,7 @@ internal readonly struct ValueFile
{
try
{
- using (FileStream stream = File.OpenRead(Value))
+ using (FileStream stream = File.OpenRead(value))
{
T? t = await JsonSerializer.DeserializeAsync(stream, options).ConfigureAwait(false);
return new(true, t);
@@ -69,7 +66,7 @@ internal readonly struct ValueFile
{
try
{
- using (FileStream stream = File.Create(Value))
+ using (FileStream stream = File.Create(value))
{
await JsonSerializer.SerializeAsync(stream, obj, options).ConfigureAwait(false);
}
@@ -85,6 +82,6 @@ internal readonly struct ValueFile
///
public override int GetHashCode()
{
- return Value.GetHashCode();
+ return value.GetHashCode();
}
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Json/Annotation/JsonEnumAttribute.cs b/src/Snap.Hutao/Snap.Hutao/Core/Json/Annotation/JsonEnumAttribute.cs
index 35fd7b69..cdf8def1 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Json/Annotation/JsonEnumAttribute.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Json/Annotation/JsonEnumAttribute.cs
@@ -14,14 +14,17 @@ internal class JsonEnumAttribute : Attribute
{
private static readonly Type UnsafeEnumConverterType = typeof(UnsafeEnumConverter<>);
+ private readonly JsonSerializeType readAs;
+ private readonly JsonSerializeType writeAs;
+
///
/// 构造一个新的Json枚举声明
///
/// 读取与写入
public JsonEnumAttribute(JsonSerializeType readAndWriteAs)
{
- ReadAs = readAndWriteAs;
- WriteAs = readAndWriteAs;
+ readAs = readAndWriteAs;
+ writeAs = readAndWriteAs;
}
///
@@ -31,20 +34,10 @@ internal class JsonEnumAttribute : Attribute
/// 写入
public JsonEnumAttribute(JsonSerializeType readAs, JsonSerializeType writeAs)
{
- ReadAs = readAs;
- WriteAs = writeAs;
+ this.readAs = readAs;
+ this.writeAs = writeAs;
}
- ///
- /// 读取形式
- ///
- public JsonSerializeType ReadAs { get; init; }
-
- ///
- /// 写入形式
- ///
- public JsonSerializeType WriteAs { get; init; }
-
///
/// 创建一个新的转换器
///
@@ -53,6 +46,6 @@ internal class JsonEnumAttribute : Attribute
internal JsonConverter CreateConverter(JsonPropertyInfo info)
{
Type converterType = UnsafeEnumConverterType.MakeGenericType(info.PropertyType);
- return (JsonConverter)Activator.CreateInstance(converterType, ReadAs, WriteAs)!;
+ return (JsonConverter)Activator.CreateInstance(converterType, readAs, writeAs)!;
}
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Setting/FeatureOptions.cs b/src/Snap.Hutao/Snap.Hutao/Core/Setting/FeatureOptions.cs
index 5f592398..41e2c438 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Setting/FeatureOptions.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Setting/FeatureOptions.cs
@@ -28,6 +28,7 @@ internal sealed class FeatureOptions : IReadOnlyCollection
{
// TODO: Use source generator
yield return IsDailyNoteSilentVerificationEnabled;
+ yield return IsMetadataUpdateCheckSuppressed;
}
///
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Threading/DispatherQueueSwitchOperation.cs b/src/Snap.Hutao/Snap.Hutao/Core/Threading/DispatherQueueSwitchOperation.cs
index 5893768c..f600a20d 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Threading/DispatherQueueSwitchOperation.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Threading/DispatherQueueSwitchOperation.cs
@@ -44,7 +44,7 @@ internal readonly struct DispatherQueueSwitchOperation : IAwaitable
public void OnCompleted(Action continuation)
{
- dispatherQueue.TryEnqueue(continuation.Invoke);
+ dispatherQueue.TryEnqueue(new DispatcherQueueHandler(continuation));
}
///
@@ -52,7 +52,7 @@ internal readonly struct DispatherQueueSwitchOperation : IAwaitable
/// 任务
/// 日志器
- public static async void SafeForget(this Task task, ILogger? logger = null)
+ public static async void SafeForget(this Task task, ILogger logger)
{
try
{
@@ -58,7 +58,7 @@ internal static class TaskExtension
}
catch (Exception e)
{
- logger?.LogError(e, "{caller}:\r\n{exception}", nameof(SafeForget), e.GetBaseException());
+ logger?.LogError(e, "{Caller}:\r\n{Exception}", nameof(SafeForget), e.GetBaseException());
}
}
@@ -68,7 +68,7 @@ internal static class TaskExtension
/// 任务
/// 日志器
/// 发生异常时调用
- public static async void SafeForget(this Task task, ILogger? logger = null, Action? onException = null)
+ public static async void SafeForget(this Task task, ILogger logger, Action onException)
{
try
{
@@ -80,7 +80,7 @@ internal static class TaskExtension
}
catch (Exception e)
{
- logger?.LogError(e, "{caller}:\r\n{exception}", nameof(SafeForget), e.GetBaseException());
+ logger?.LogError(e, "{Caller}:\r\n{Exception}", nameof(SafeForget), e.GetBaseException());
onException?.Invoke(e);
}
}
@@ -92,7 +92,7 @@ internal static class TaskExtension
/// 日志器
/// 任务取消时调用
/// 发生异常时调用
- public static async void SafeForget(this Task task, ILogger? logger = null, Action? onCanceled = null, Action? onException = null)
+ public static async void SafeForget(this Task task, ILogger logger, Action onCanceled, Action? onException = null)
{
try
{
@@ -104,7 +104,7 @@ internal static class TaskExtension
}
catch (Exception e)
{
- logger?.LogError(e, "{caller}:\r\n{exception}", nameof(SafeForget), e.GetBaseException());
+ logger?.LogError(e, "{Caller}:\r\n{Exception}", nameof(SafeForget), e.GetBaseException());
onException?.Invoke(e);
}
}
diff --git a/src/Snap.Hutao/Snap.Hutao/Core/Windowing/ExtendedWindow.cs b/src/Snap.Hutao/Snap.Hutao/Core/Windowing/ExtendedWindow.cs
index 78f831e2..7e047e29 100644
--- a/src/Snap.Hutao/Snap.Hutao/Core/Windowing/ExtendedWindow.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Core/Windowing/ExtendedWindow.cs
@@ -185,7 +185,7 @@ internal sealed class ExtendedWindow : IRecipient : IDisposable
// We have to explicitly hold a reference to SUBCLASSPROC
private SUBCLASSPROC? windowProc;
- private SUBCLASSPROC? dragBarProc;
+ private SUBCLASSPROC? legacyDragBarProc;
///
/// 构造一个新的窗体子类管理器
@@ -62,8 +63,8 @@ internal sealed class WindowSubclass : IDisposable
return windowHooked && titleBarHooked;
}
- dragBarProc = OnDragBarProcedure;
- titleBarHooked = SetWindowSubclass(hwndDragBar, dragBarProc, DragBarSubclassId, 0);
+ legacyDragBarProc = OnLegacyDragBarProcedure;
+ titleBarHooked = SetWindowSubclass(hwndDragBar, legacyDragBarProc, DragBarSubclassId, 0);
return windowHooked && titleBarHooked;
}
@@ -81,8 +82,8 @@ internal sealed class WindowSubclass : IDisposable
return;
}
- RemoveWindowSubclass(options.Hwnd, dragBarProc, DragBarSubclassId);
- dragBarProc = null;
+ RemoveWindowSubclass(options.Hwnd, legacyDragBarProc, DragBarSubclassId);
+ legacyDragBarProc = null;
}
[SuppressMessage("", "SH002")]
@@ -108,7 +109,7 @@ internal sealed class WindowSubclass : IDisposable
}
[SuppressMessage("", "SH002")]
- private LRESULT OnDragBarProcedure(HWND hwnd, uint uMsg, WPARAM wParam, LPARAM lParam, nuint uIdSubclass, nuint dwRefData)
+ private LRESULT OnLegacyDragBarProcedure(HWND hwnd, uint uMsg, WPARAM wParam, LPARAM lParam, nuint uIdSubclass, nuint dwRefData)
{
switch (uMsg)
{
diff --git a/src/Snap.Hutao/Snap.Hutao/Extension/EnumerableExtension.List.cs b/src/Snap.Hutao/Snap.Hutao/Extension/EnumerableExtension.List.cs
index 1cd88fc9..fa1cb394 100644
--- a/src/Snap.Hutao/Snap.Hutao/Extension/EnumerableExtension.List.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Extension/EnumerableExtension.List.cs
@@ -12,7 +12,7 @@ namespace Snap.Hutao.Extension;
internal static partial class EnumerableExtension
{
///
- public static unsafe double UnsafeAverage(this List source)
+ public static double SpanAverage(this List source)
{
Span span = CollectionsMarshal.AsSpan(source);
if (span.IsEmpty)
diff --git a/src/Snap.Hutao/Snap.Hutao/Message/ValueChangedMessage.cs b/src/Snap.Hutao/Snap.Hutao/Message/ValueChangedMessage.cs
index fd9e3e3b..4b786ddc 100644
--- a/src/Snap.Hutao/Snap.Hutao/Message/ValueChangedMessage.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Message/ValueChangedMessage.cs
@@ -8,6 +8,7 @@ namespace Snap.Hutao.Message;
///
/// 值的类型
[HighQuality]
+[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]
internal abstract class ValueChangedMessage
where TValue : class
{
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Calculable/CalculableSkill.cs b/src/Snap.Hutao/Snap.Hutao/Model/Calculable/CalculableSkill.cs
index 0093ce25..d3d253ad 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Calculable/CalculableSkill.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Calculable/CalculableSkill.cs
@@ -25,7 +25,7 @@ internal sealed class CalculableSkill : ObservableObject, ICalculableSkill
/// 技能
public CalculableSkill(ProudableSkill skill)
{
- GruopId = skill.GroupId;
+ GroupId = skill.GroupId;
LevelMin = 1;
LevelMax = 10; // hard coded 10 here
Name = skill.Name;
@@ -42,7 +42,7 @@ internal sealed class CalculableSkill : ObservableObject, ICalculableSkill
/// 技能
public CalculableSkill(SkillView skill)
{
- GruopId = skill.GroupId;
+ GroupId = skill.GroupId;
LevelMin = skill.LevelNumber;
LevelMax = 10; // hard coded 10 here
Name = skill.Name;
@@ -54,7 +54,7 @@ internal sealed class CalculableSkill : ObservableObject, ICalculableSkill
}
///
- public SkillGroupId GruopId { get; }
+ public SkillGroupId GroupId { get; }
///
public uint LevelMin { get; }
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Calculable/ICalculableSkill.cs b/src/Snap.Hutao/Snap.Hutao/Model/Calculable/ICalculableSkill.cs
index 839a7a0e..124ccf99 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Calculable/ICalculableSkill.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Calculable/ICalculableSkill.cs
@@ -14,7 +14,7 @@ internal interface ICalculableSkill : ICalculable
///
/// 技能组Id
///
- SkillGroupId GruopId { get; }
+ SkillGroupId GroupId { get; }
///
/// 最小等级
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Entity/Database/AppDbContext.cs b/src/Snap.Hutao/Snap.Hutao/Model/Entity/Database/AppDbContext.cs
index c9f63aa9..8d3b18e3 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Entity/Database/AppDbContext.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Entity/Database/AppDbContext.cs
@@ -34,7 +34,7 @@ internal sealed class AppDbContext : DbContext
: this(options)
{
this.logger = logger;
- logger.LogInformation("{name}[{id}] created.", nameof(AppDbContext), ContextId);
+ logger.LogInformation("{Name}[{Id}] created", nameof(AppDbContext), ContextId);
}
///
@@ -136,7 +136,7 @@ internal sealed class AppDbContext : DbContext
public override void Dispose()
{
base.Dispose();
- logger?.LogInformation("AppDbContext[{id}] disposed.", ContextId);
+ logger?.LogInformation("{Name}[{Id}] disposed", nameof(AppDbContext), ContextId);
}
///
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AchievementStatus.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AchievementStatus.cs
index 3b5c4de0..b54b6fda 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AchievementStatus.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AchievementStatus.cs
@@ -7,7 +7,7 @@ namespace Snap.Hutao.Model.Intrinsic;
/// 成就信息状态
///
[HighQuality]
-internal enum AchievementStatus
+internal enum AchievementStatus /*: int*/
{
///
/// 未识别
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AssociationType.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AssociationType.cs
index 81a54d5b..5f0f646a 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AssociationType.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/AssociationType.cs
@@ -18,13 +18,13 @@ internal enum AssociationType
///
/// 蒙德
///
- [LocalizationKey("ModelIntrinsicAssociationTypeMondstadt")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeMondstadt))]
ASSOC_TYPE_MONDSTADT,
///
/// 璃月
///
- [LocalizationKey("ModelIntrinsicAssociationTypeLiyue")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeLiyue))]
ASSOC_TYPE_LIYUE,
///
@@ -35,42 +35,42 @@ internal enum AssociationType
///
/// 愚人众
///
- [LocalizationKey("ModelIntrinsicAssociationTypeFatui")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeFatui))]
ASSOC_TYPE_FATUI,
///
/// 稻妻
///
- [LocalizationKey("ModelIntrinsicAssociationTypeInazuma")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeInazuma))]
ASSOC_TYPE_INAZUMA,
///
/// 游侠
///
- [LocalizationKey("ModelIntrinsicAssociationTypeRanger")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeRanger))]
ASSOC_TYPE_RANGER,
///
/// 须弥
///
- [LocalizationKey("ModelIntrinsicAssociationTypeSumeru")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeSumeru))]
ASSOC_TYPE_SUMERU,
///
/// 枫丹
///
- [LocalizationKey("ModelIntrinsicAssociationTypeFontaine")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeFontaine))]
ASSOC_TYPE_FONTAINE,
///
/// 纳塔
///
- [LocalizationKey("ModelIntrinsicAssociationTypeNatlan")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeNatlan))]
ASSOC_TYPE_NATLAN,
///
/// 至冬
///
- [LocalizationKey("ModelIntrinsicAssociationTypeSnezhnaya")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicAssociationTypeSnezhnaya))]
ASSOC_TYPE_SNEZHNAYA,
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/BodyType.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/BodyType.cs
index 503801e4..fe584f71 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/BodyType.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/BodyType.cs
@@ -18,30 +18,30 @@ internal enum BodyType
///
/// 男孩
///
- [LocalizationKey("ModelIntrinsicBodyTypeBoy")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicBodyTypeBoy))]
BODY_BOY,
///
/// 女孩
///
- [LocalizationKey("ModelIntrinsicBodyTypeGirl")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicBodyTypeGirl))]
BODY_GIRL,
///
/// 成女
///
- [LocalizationKey("ModelIntrinsicBodyTypeLady")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicBodyTypeLady))]
BODY_LADY,
///
/// 成男
///
- [LocalizationKey("ModelIntrinsicBodyTypeMale")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicBodyTypeMale))]
BODY_MALE,
///
/// 萝莉
///
- [LocalizationKey("ModelIntrinsicBodyTypeLoli")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicBodyTypeLoli))]
BODY_LOLI,
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/FightProperty.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/FightProperty.cs
index 980c78fa..2b2850af 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/FightProperty.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/FightProperty.cs
@@ -18,55 +18,55 @@ internal enum FightProperty
///
/// 基础生命值
///
- [LocalizationKey("ServiceAvatarInfoPropertyBaseHp")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyBaseHp))]
FIGHT_PROP_BASE_HP = 1,
///
/// 小生命值加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyHp")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyHp))]
FIGHT_PROP_HP = 2,
///
/// 生命值加成百分比
///
- [LocalizationKey("ServiceAvatarInfoPropertyHp")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyHp))]
FIGHT_PROP_HP_PERCENT = 3,
///
/// 基础攻击力
///
- [LocalizationKey("ServiceAvatarInfoPropertyBaseAtk")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyBaseAtk))]
FIGHT_PROP_BASE_ATTACK = 4,
///
/// 攻击力加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyAtk")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyAtk))]
FIGHT_PROP_ATTACK = 5,
///
/// 攻击力百分比
///
- [LocalizationKey("ServiceAvatarInfoPropertyAtk")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyAtk))]
FIGHT_PROP_ATTACK_PERCENT = 6,
///
/// 基础防御力
///
- [LocalizationKey("ServiceAvatarInfoPropertyBaseDef")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyBaseDef))]
FIGHT_PROP_BASE_DEFENSE = 7,
///
/// 防御力加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDef")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDef))]
FIGHT_PROP_DEFENSE = 8,
///
/// 防御力百分比
///
- [LocalizationKey("ServiceAvatarInfoPropertyDef")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDef))]
FIGHT_PROP_DEFENSE_PERCENT = 9,
///
@@ -92,7 +92,7 @@ internal enum FightProperty
///
/// 暴击率
///
- [LocalizationKey("ServiceAvatarInfoPropertyCR")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyCR))]
FIGHT_PROP_CRITICAL = 20,
///
@@ -103,13 +103,13 @@ internal enum FightProperty
///
/// 暴击伤害
///
- [LocalizationKey("ServiceAvatarInfoPropertyCDmg")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyCDmg))]
FIGHT_PROP_CRITICAL_HURT = 22,
///
/// 元素充能效率
///
- [LocalizationKey("ServiceAvatarInfoPropertyCE")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyCE))]
FIGHT_PROP_CHARGE_EFFICIENCY = 23,
///
@@ -125,7 +125,7 @@ internal enum FightProperty
///
/// 治疗提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyHB")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyHB))]
FIGHT_PROP_HEAL_ADD = 26,
///
@@ -136,19 +136,19 @@ internal enum FightProperty
///
/// 元素精通
///
- [LocalizationKey("ServiceAvatarInfoPropertyEM")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyEM))]
FIGHT_PROP_ELEMENT_MASTERY = 28,
///
/// 物理抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESPhysical")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESPhysical))]
FIGHT_PROP_PHYSICAL_SUB_HURT = 29,
///
/// 物理伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBPhyiscal")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBPhyiscal))]
FIGHT_PROP_PHYSICAL_ADD_HURT = 30,
///
@@ -164,43 +164,43 @@ internal enum FightProperty
///
/// 火元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBFire")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBFire))]
FIGHT_PROP_FIRE_ADD_HURT = 40,
///
/// 雷元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBElec")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBElec))]
FIGHT_PROP_ELEC_ADD_HURT = 41,
///
/// 水元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBWater")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBWater))]
FIGHT_PROP_WATER_ADD_HURT = 42,
///
/// 草元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBGrass")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBGrass))]
FIGHT_PROP_GRASS_ADD_HURT = 43,
///
/// 风元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBWind")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBWind))]
FIGHT_PROP_WIND_ADD_HURT = 44,
///
/// 岩元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBRock")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBRock))]
FIGHT_PROP_ROCK_ADD_HURT = 45,
///
/// 冰元素伤害加成
///
- [LocalizationKey("ServiceAvatarInfoPropertyDBIce")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDBIce))]
FIGHT_PROP_ICE_ADD_HURT = 46,
///
@@ -211,43 +211,43 @@ internal enum FightProperty
///
/// 火元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESFire")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESFire))]
FIGHT_PROP_FIRE_SUB_HURT = 50,
///
/// 雷元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESElec")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESElec))]
FIGHT_PROP_ELEC_SUB_HURT = 51,
///
/// 雷元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESWater")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESWater))]
FIGHT_PROP_WATER_SUB_HURT = 52,
///
/// 草元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESGrass")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESGrass))]
FIGHT_PROP_GRASS_SUB_HURT = 53,
///
/// 风元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESWind")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESWind))]
FIGHT_PROP_WIND_SUB_HURT = 54,
///
/// 岩元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESRock")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESRock))]
FIGHT_PROP_ROCK_SUB_HURT = 55,
///
/// 冰元素抗性提升
///
- [LocalizationKey("ServiceAvatarInfoPropertyRESIce")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyRESIce))]
FIGHT_PROP_ICE_SUB_HURT = 56,
///
@@ -378,19 +378,19 @@ internal enum FightProperty
///
/// 最大生命值
///
- [LocalizationKey("ServiceAvatarInfoPropertyHp")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyHp))]
FIGHT_PROP_MAX_HP = 2000,
///
/// 当前攻击力
///
- [LocalizationKey("ServiceAvatarInfoPropertyAtk")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyAtk))]
FIGHT_PROP_CUR_ATTACK = 2001,
///
/// 当前防御力
///
- [LocalizationKey("ServiceAvatarInfoPropertyDef")]
+ [LocalizationKey(nameof(SH.ServiceAvatarInfoPropertyDef))]
FIGHT_PROP_CUR_DEFENSE = 2002,
///
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/Immutable/IntrinsicImmutable.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/Immutable/IntrinsicImmutable.cs
index b47c84fc..b0e37c03 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/Immutable/IntrinsicImmutable.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/Immutable/IntrinsicImmutable.cs
@@ -49,4 +49,15 @@ internal static class IntrinsicImmutable
SH.ModelIntrinsicElementNameIce,
SH.ModelIntrinsicElementNameRock,
}.ToImmutableHashSet();
+
+ public static readonly ImmutableHashSet MaterialTypeDescriptions = new HashSet(7)
+ {
+ SH.ModelMetadataMaterialCharacterAndWeaponEnhancementMaterial,
+ SH.ModelMetadataMaterialCharacterEXPMaterial,
+ SH.ModelMetadataMaterialCharacterAscensionMaterial,
+ SH.ModelMetadataMaterialCharacterTalentMaterial,
+ SH.ModelMetadataMaterialCharacterLevelUpMaterial,
+ SH.ModelMetadataMaterialWeaponEnhancementMaterial,
+ SH.ModelMetadataMaterialWeaponAscensionMaterial,
+ }.ToImmutableHashSet();
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/QualityType.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/QualityType.cs
index 4e37baaa..a35d77c2 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/QualityType.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/QualityType.cs
@@ -18,36 +18,36 @@ internal enum QualityType
///
/// 一星
///
- [LocalizationKey("ModelIntrinsicItemQualityWhite")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityWhite))]
QUALITY_WHITE = 1,
///
/// 二星
///
- [LocalizationKey("ModelIntrinsicItemQualityGreen")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityGreen))]
QUALITY_GREEN = 2,
///
/// 三星
///
- [LocalizationKey("ModelIntrinsicItemQualityBlue")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityBlue))]
QUALITY_BLUE = 3,
///
/// 四星
///
- [LocalizationKey("ModelIntrinsicItemQualityPurple")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityPurple))]
QUALITY_PURPLE = 4,
///
/// 五星
///
- [LocalizationKey("ModelIntrinsicItemQualityOrange")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityOrange))]
QUALITY_ORANGE = 5,
///
/// 限定五星
///
- [LocalizationKey("ModelIntrinsicItemQualityRed")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicItemQualityRed))]
QUALITY_ORANGE_SP = 105,
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/WeaponType.cs b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/WeaponType.cs
index 107fd262..0371231c 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/WeaponType.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Intrinsic/WeaponType.cs
@@ -19,7 +19,7 @@ internal enum WeaponType
///
/// 单手剑
///
- [LocalizationKey("ModelIntrinsicWeaponTypeSwordOneHand")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicWeaponTypeSwordOneHand))]
WEAPON_SWORD_ONE_HAND = 1,
#region Not Used
@@ -76,24 +76,24 @@ internal enum WeaponType
///
/// 法器
///
- [LocalizationKey("ModelIntrinsicWeaponTypeCatalyst")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicWeaponTypeCatalyst))]
WEAPON_CATALYST = 10,
///
/// 双手剑
///
- [LocalizationKey("ModelIntrinsicWeaponTypeClaymore")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicWeaponTypeClaymore))]
WEAPON_CLAYMORE = 11,
///
/// 弓
///
- [LocalizationKey("ModelIntrinsicWeaponTypeBow")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicWeaponTypeBow))]
WEAPON_BOW = 12,
///
/// 长柄武器
///
- [LocalizationKey("ModelIntrinsicWeaponTypePole")]
+ [LocalizationKey(nameof(SH.ModelIntrinsicWeaponTypePole))]
WEAPON_POLE = 13,
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Converter/WeaponTypeIconConverter.cs b/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Converter/WeaponTypeIconConverter.cs
index 9f812352..3a1c40ac 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Converter/WeaponTypeIconConverter.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Converter/WeaponTypeIconConverter.cs
@@ -19,7 +19,7 @@ internal sealed class WeaponTypeIconConverter : ValueConverter
/// 图标链接
public static Uri WeaponTypeToIconUri(WeaponType type)
{
- string element = type switch
+ string weapon = type switch
{
WeaponType.WEAPON_SWORD_ONE_HAND => "01",
WeaponType.WEAPON_BOW => "02",
@@ -29,7 +29,7 @@ internal sealed class WeaponTypeIconConverter : ValueConverter
_ => throw Must.NeverHappen(),
};
- return Web.HutaoEndpoints.StaticFile("Skill", $"Skill_A_{element}.png").ToUri();
+ return Web.HutaoEndpoints.StaticFile("Skill", $"Skill_A_{weapon}.png").ToUri();
}
///
diff --git a/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Item/Material.cs b/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Item/Material.cs
index 00395b81..45c6f69a 100644
--- a/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Item/Material.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Model/Metadata/Item/Material.cs
@@ -5,6 +5,8 @@ using Snap.Hutao.Model.Intrinsic;
using Snap.Hutao.Model.Primitive;
using Snap.Hutao.ViewModel.Cultivation;
using System.Collections.Immutable;
+using System.Text.RegularExpressions;
+using Snap.Hutao.Model.Intrinsic.Immutable;
namespace Snap.Hutao.Model.Metadata.Item;
@@ -46,24 +48,19 @@ internal sealed class Material : DisplayItem
return true;
}
- // TODO: support non-CHS
- if (TypeDescription.EndsWith("区域特产"))
+ if (Regex.IsMatch(TypeDescription, SH.ModelMetadataMaterialLocalSpecialtyRegex))
{
return true;
}
- // TODO: support non-CHS
- return TypeDescription switch
- {
- "角色与武器培养素材" => true, // 怪物掉落
- "角色经验素材" => true, // 经验书
- "角色突破素材" => true, // 元素晶石
- "角色天赋素材" => true, // 天赋本
- "角色培养素材" => true, // 40体BOSS/周本掉落
- "武器强化素材" => true, // 魔矿
- "武器突破素材" => true, // 武器本
- _ => false,
- };
+ // Character and Weapon Enhancement Material // 怪物掉落
+ // Character EXP Material // 经验书
+ // Character Ascension Material // 元素晶石
+ // Character Talent Material // 天赋本
+ // Character Level-Up Material // 40体BOSS/周本掉落
+ // Weapon Enhancement Material // 魔矿
+ // Weapon Ascension Material // 武器本
+ return IntrinsicImmutable.MaterialTypeDescriptions.Contains(TypeDescription);
}
///
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.Designer.cs b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.Designer.cs
index 95fa8ad3..51e533a3 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.Designer.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.Designer.cs
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
//
-// 此代码由工具生成。
-// 运行时版本:4.0.30319.42000
+// This code was generated by a tool.
//
-// 对此文件的更改可能会导致不正确的行为,并且如果
-// 重新生成代码,这些更改将会丢失。
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
//
//------------------------------------------------------------------------------
@@ -13,12 +12,12 @@ namespace Snap.Hutao.Resource.Localization {
///
- /// 一个强类型的资源类,用于查找本地化的字符串等。
+ /// A strongly-typed resource class, for looking up localized strings, etc.
///
- // 此类是由 StronglyTypedResourceBuilder
- // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
- // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
- // (以 /str 作为命令选项),或重新生成 VS 项目。
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -33,7 +32,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 返回此类使用的缓存的 ResourceManager 实例。
+ /// Returns the cached ResourceManager instance used by this class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
@@ -47,8 +46,8 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 重写当前线程的 CurrentUICulture 属性,对
- /// 使用此强类型资源类的所有资源查找执行重写。
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
@@ -61,7 +60,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃 Dev {0} 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃 Dev {0}.
///
internal static string AppDevNameAndVersion {
get {
@@ -70,7 +69,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃.
///
internal static string AppName {
get {
@@ -79,7 +78,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃 {0} 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃 {0}.
///
internal static string AppNameAndVersion {
get {
@@ -88,7 +87,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 取消 的本地化字符串。
+ /// Looks up a localized string similar to 取消.
///
internal static string ContentDialogCancelCloseButtonText {
get {
@@ -97,7 +96,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 完成 的本地化字符串。
+ /// Looks up a localized string similar to 完成.
///
internal static string ContentDialogCompletePrimaryButtonText {
get {
@@ -106,7 +105,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 确认 的本地化字符串。
+ /// Looks up a localized string similar to 确认.
///
internal static string ContentDialogConfirmPrimaryButtonText {
get {
@@ -115,7 +114,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 保存 的本地化字符串。
+ /// Looks up a localized string similar to 保存.
///
internal static string ContentDialogSavePrimaryButtonText {
get {
@@ -124,7 +123,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无效的 Uri 的本地化字符串。
+ /// Looks up a localized string similar to 无效的 Uri.
///
internal static string ControlImageCachedImageInvalidResourceUri {
get {
@@ -133,7 +132,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 HTTP GET {0} 的本地化字符串。
+ /// Looks up a localized string similar to HTTP GET {0}.
///
internal static string ControlImageCompositionImageHttpRequest {
get {
@@ -142,7 +141,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 应用 CompositionImage 的源时发生异常 的本地化字符串。
+ /// Looks up a localized string similar to 应用 CompositionImage 的源时发生异常.
///
internal static string ControlImageCompositionImageSystemException {
get {
@@ -151,7 +150,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 网格 的本地化字符串。
+ /// Looks up a localized string similar to 网格.
///
internal static string ControlPanelPanelSelectorDropdownGridName {
get {
@@ -160,7 +159,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 列表 的本地化字符串。
+ /// Looks up a localized string similar to 列表.
///
internal static string ControlPanelPanelSelectorDropdownListName {
get {
@@ -169,7 +168,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户数据已损坏:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 用户数据已损坏:{0}.
///
internal static string CoreExceptionServiceUserdataCorruptedMessage {
get {
@@ -178,7 +177,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请勿在管理员模式下使用此功能 {0} 的本地化字符串。
+ /// Looks up a localized string similar to 请勿在管理员模式下使用此功能 {0}.
///
internal static string CoreIOPickerExtensionPickerExceptionInfoBarMessage {
get {
@@ -187,7 +186,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法打开文件选择器 的本地化字符串。
+ /// Looks up a localized string similar to 无法打开文件选择器.
///
internal static string CoreIOPickerExtensionPickerExceptionInfoBarTitle {
get {
@@ -196,7 +195,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 权限不足,创建临时文件失败 的本地化字符串。
+ /// Looks up a localized string similar to 权限不足,创建临时文件失败.
///
internal static string CoreIOTempFileCreateFail {
get {
@@ -205,7 +204,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启动游戏 的本地化字符串。
+ /// Looks up a localized string similar to 启动游戏.
///
internal static string CoreJumpListHelperLaunchGameItemDisplayName {
get {
@@ -214,7 +213,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 快捷操作 的本地化字符串。
+ /// Looks up a localized string similar to 快捷操作.
///
internal static string CoreJumpListHelperLaunchGameItemGroupName {
get {
@@ -223,7 +222,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃实时便笺刷新任务 | 请勿编辑或删除。 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃实时便笺刷新任务 | 请勿编辑或删除。.
///
internal static string CoreScheduleTaskHelperDailyNoteRefreshTaskDescription {
get {
@@ -232,7 +231,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 信号量已经被释放,操作取消 的本地化字符串。
+ /// Looks up a localized string similar to 信号量已经被释放,操作取消.
///
internal static string CoreThreadingSemaphoreSlimDisposed {
get {
@@ -241,7 +240,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 未检测到 WebView2 运行时 的本地化字符串。
+ /// Looks up a localized string similar to 未检测到 WebView2 运行时.
///
internal static string CoreWebView2HelperVersionUndetected {
get {
@@ -250,7 +249,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出 的本地化字符串。
+ /// Looks up a localized string similar to 导出.
///
internal static string FilePickerExportCommit {
get {
@@ -259,7 +258,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入 的本地化字符串。
+ /// Looks up a localized string similar to 导入.
///
internal static string FilePickerImportCommit {
get {
@@ -268,7 +267,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 选择账号并启动 的本地化字符串。
+ /// Looks up a localized string similar to 选择账号并启动.
///
internal static string LaunchGameTitle {
get {
@@ -277,7 +276,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 精炼 {0} 的本地化字符串。
+ /// Looks up a localized string similar to 精炼 {0}.
///
internal static string ModelBindingAvatarPropertyWeaponAffixFormat {
get {
@@ -286,7 +285,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 周一/周四/周日 的本地化字符串。
+ /// Looks up a localized string similar to 周一/周四/周日.
///
internal static string ModelBindingCultivationDaysOfWeek14 {
get {
@@ -295,7 +294,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 周二/周五/周日 的本地化字符串。
+ /// Looks up a localized string similar to 周二/周五/周日.
///
internal static string ModelBindingCultivationDaysOfWeek25 {
get {
@@ -304,7 +303,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 周三/周六/周日 的本地化字符串。
+ /// Looks up a localized string similar to 周三/周六/周日.
///
internal static string ModelBindingCultivationDaysOfWeek36 {
get {
@@ -313,7 +312,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0:f2} 抽 的本地化字符串。
+ /// Looks up a localized string similar to {0:f2} 抽.
///
internal static string ModelBindingGachaTypedWishSummaryAveragePullFormat {
get {
@@ -322,7 +321,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已垫 {0} 抽 的本地化字符串。
+ /// Looks up a localized string similar to 已垫 {0} 抽.
///
internal static string ModelBindingGachaTypedWishSummaryLastPullFormat {
get {
@@ -331,7 +330,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最非 {0} 抽 的本地化字符串。
+ /// Looks up a localized string similar to 最非 {0} 抽.
///
internal static string ModelBindingGachaTypedWishSummaryMaxOrangePullFormat {
get {
@@ -340,7 +339,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最欧 {0} 抽 的本地化字符串。
+ /// Looks up a localized string similar to 最欧 {0} 抽.
///
internal static string ModelBindingGachaTypedWishSummaryMinOrangePullFormat {
get {
@@ -349,7 +348,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 抽 的本地化字符串。
+ /// Looks up a localized string similar to {0} 抽.
///
internal static string ModelBindingGachaWishBaseTotalCountFormat {
get {
@@ -358,7 +357,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 第 {0} 层 的本地化字符串。
+ /// Looks up a localized string similar to 第 {0} 层.
///
internal static string ModelBindingHutaoComplexRankFloor {
get {
@@ -367,7 +366,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 第 {0} 间 的本地化字符串。
+ /// Looks up a localized string similar to 第 {0} 间.
///
internal static string ModelBindingHutaoComplexRankLevel {
get {
@@ -376,7 +375,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 上场 {0} 次 的本地化字符串。
+ /// Looks up a localized string similar to 上场 {0} 次.
///
internal static string ModelBindingHutaoTeamUpCountFormat {
get {
@@ -385,7 +384,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 渠道服 的本地化字符串。
+ /// Looks up a localized string similar to 渠道服.
///
internal static string ModelBindingLaunchGameLaunchSchemeBilibili {
get {
@@ -394,7 +393,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 官方服 的本地化字符串。
+ /// Looks up a localized string similar to 官方服.
///
internal static string ModelBindingLaunchGameLaunchSchemeChinese {
get {
@@ -403,7 +402,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 国际服 的本地化字符串。
+ /// Looks up a localized string similar to 国际服.
///
internal static string ModelBindingLaunchGameLaunchSchemeOversea {
get {
@@ -412,7 +411,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 网络异常 的本地化字符串。
+ /// Looks up a localized string similar to 网络异常.
///
internal static string ModelBindingUserInitializationFailed {
get {
@@ -421,7 +420,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 第 {0} 期 的本地化字符串。
+ /// Looks up a localized string similar to 第 {0} 期.
///
internal static string ModelEntitySpiralAbyssScheduleFormat {
get {
@@ -430,7 +429,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 愚人众 的本地化字符串。
+ /// Looks up a localized string similar to 愚人众.
///
internal static string ModelIntrinsicAssociationTypeFatui {
get {
@@ -439,7 +438,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 枫丹 的本地化字符串。
+ /// Looks up a localized string similar to 枫丹.
///
internal static string ModelIntrinsicAssociationTypeFontaine {
get {
@@ -448,7 +447,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 稻妻 的本地化字符串。
+ /// Looks up a localized string similar to 稻妻.
///
internal static string ModelIntrinsicAssociationTypeInazuma {
get {
@@ -457,7 +456,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 璃月 的本地化字符串。
+ /// Looks up a localized string similar to 璃月.
///
internal static string ModelIntrinsicAssociationTypeLiyue {
get {
@@ -466,7 +465,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 蒙德 的本地化字符串。
+ /// Looks up a localized string similar to 蒙德.
///
internal static string ModelIntrinsicAssociationTypeMondstadt {
get {
@@ -475,7 +474,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 纳塔 的本地化字符串。
+ /// Looks up a localized string similar to 纳塔.
///
internal static string ModelIntrinsicAssociationTypeNatlan {
get {
@@ -484,7 +483,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游侠 的本地化字符串。
+ /// Looks up a localized string similar to 游侠.
///
internal static string ModelIntrinsicAssociationTypeRanger {
get {
@@ -493,7 +492,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 至冬 的本地化字符串。
+ /// Looks up a localized string similar to 至冬.
///
internal static string ModelIntrinsicAssociationTypeSnezhnaya {
get {
@@ -502,7 +501,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 须弥 的本地化字符串。
+ /// Looks up a localized string similar to 须弥.
///
internal static string ModelIntrinsicAssociationTypeSumeru {
get {
@@ -511,7 +510,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 少男 的本地化字符串。
+ /// Looks up a localized string similar to 少男.
///
internal static string ModelIntrinsicBodyTypeBoy {
get {
@@ -520,7 +519,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 少女 的本地化字符串。
+ /// Looks up a localized string similar to 少女.
///
internal static string ModelIntrinsicBodyTypeGirl {
get {
@@ -529,7 +528,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 成女 的本地化字符串。
+ /// Looks up a localized string similar to 成女.
///
internal static string ModelIntrinsicBodyTypeLady {
get {
@@ -538,16 +537,16 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 萝莉 的本地化字符串。
+ /// Looks up a localized string similar to 萝莉.
///
- internal static string ModelIntrinsicBodyTypeloli {
+ internal static string ModelIntrinsicBodyTypeLoli {
get {
- return ResourceManager.GetString("ModelIntrinsicBodyTypeloli", resourceCulture);
+ return ResourceManager.GetString("ModelIntrinsicBodyTypeLoli", resourceCulture);
}
}
///
- /// 查找类似 成男 的本地化字符串。
+ /// Looks up a localized string similar to 成男.
///
internal static string ModelIntrinsicBodyTypeMale {
get {
@@ -556,7 +555,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 雷 的本地化字符串。
+ /// Looks up a localized string similar to 雷.
///
internal static string ModelIntrinsicElementNameElec {
get {
@@ -565,7 +564,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 火 的本地化字符串。
+ /// Looks up a localized string similar to 火.
///
internal static string ModelIntrinsicElementNameFire {
get {
@@ -574,7 +573,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 草 的本地化字符串。
+ /// Looks up a localized string similar to 草.
///
internal static string ModelIntrinsicElementNameGrass {
get {
@@ -583,7 +582,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 冰 的本地化字符串。
+ /// Looks up a localized string similar to 冰.
///
internal static string ModelIntrinsicElementNameIce {
get {
@@ -592,7 +591,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 岩 的本地化字符串。
+ /// Looks up a localized string similar to 岩.
///
internal static string ModelIntrinsicElementNameRock {
get {
@@ -601,7 +600,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 水 的本地化字符串。
+ /// Looks up a localized string similar to 水.
///
internal static string ModelIntrinsicElementNameWater {
get {
@@ -610,7 +609,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 风 的本地化字符串。
+ /// Looks up a localized string similar to 风.
///
internal static string ModelIntrinsicElementNameWind {
get {
@@ -619,7 +618,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 三星 的本地化字符串。
+ /// Looks up a localized string similar to 三星.
///
internal static string ModelIntrinsicItemQualityBlue {
get {
@@ -628,7 +627,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 二星 的本地化字符串。
+ /// Looks up a localized string similar to 二星.
///
internal static string ModelIntrinsicItemQualityGreen {
get {
@@ -637,7 +636,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 五星 的本地化字符串。
+ /// Looks up a localized string similar to 五星.
///
internal static string ModelIntrinsicItemQualityOrange {
get {
@@ -646,7 +645,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 四星 的本地化字符串。
+ /// Looks up a localized string similar to 四星.
///
internal static string ModelIntrinsicItemQualityPurple {
get {
@@ -655,7 +654,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 限定五星 的本地化字符串。
+ /// Looks up a localized string similar to 限定五星.
///
internal static string ModelIntrinsicItemQualityRed {
get {
@@ -664,7 +663,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 一星 的本地化字符串。
+ /// Looks up a localized string similar to 一星.
///
internal static string ModelIntrinsicItemQualityWhite {
get {
@@ -673,7 +672,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 弓 的本地化字符串。
+ /// Looks up a localized string similar to 弓.
///
internal static string ModelIntrinsicWeaponTypeBow {
get {
@@ -682,7 +681,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 法器 的本地化字符串。
+ /// Looks up a localized string similar to 法器.
///
internal static string ModelIntrinsicWeaponTypeCatalyst {
get {
@@ -691,7 +690,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 双手剑 的本地化字符串。
+ /// Looks up a localized string similar to 双手剑.
///
internal static string ModelIntrinsicWeaponTypeClaymore {
get {
@@ -700,7 +699,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 长柄武器 的本地化字符串。
+ /// Looks up a localized string similar to 长柄武器.
///
internal static string ModelIntrinsicWeaponTypePole {
get {
@@ -709,7 +708,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 单手剑 的本地化字符串。
+ /// Looks up a localized string similar to 单手剑.
///
internal static string ModelIntrinsicWeaponTypeSwordOneHand {
get {
@@ -718,7 +717,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 月 {1} 日 的本地化字符串。
+ /// Looks up a localized string similar to {0} 月 {1} 日.
///
internal static string ModelMetadataFetterInfoBirthdayFormat {
get {
@@ -727,7 +726,79 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 精炼 {0} 阶 的本地化字符串。
+ /// Looks up a localized string similar to 角色与武器培养素材.
+ ///
+ internal static string ModelMetadataMaterialCharacterAndWeaponEnhancementMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialCharacterAndWeaponEnhancementMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 角色突破素材.
+ ///
+ internal static string ModelMetadataMaterialCharacterAscensionMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialCharacterAscensionMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 角色经验素材.
+ ///
+ internal static string ModelMetadataMaterialCharacterEXPMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialCharacterEXPMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 角色培养素材.
+ ///
+ internal static string ModelMetadataMaterialCharacterLevelUpMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialCharacterLevelUpMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 角色天赋素材.
+ ///
+ internal static string ModelMetadataMaterialCharacterTalentMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialCharacterTalentMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to [\u4e00-\u9fa5]{2}区域特产$.
+ ///
+ internal static string ModelMetadataMaterialLocalSpecialtyRegex {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialLocalSpecialtyRegex", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 武器突破素材.
+ ///
+ internal static string ModelMetadataMaterialWeaponAscensionMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialWeaponAscensionMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 武器强化素材.
+ ///
+ internal static string ModelMetadataMaterialWeaponEnhancementMaterial {
+ get {
+ return ResourceManager.GetString("ModelMetadataMaterialWeaponEnhancementMaterial", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 精炼 {0} 阶.
///
internal static string ModelWeaponAffixFormat {
get {
@@ -736,7 +807,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 必须先选择一个用户与角色 的本地化字符串。
+ /// Looks up a localized string similar to 必须先选择一个用户与角色.
///
internal static string MustSelectUserAndUid {
get {
@@ -745,7 +816,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新增:{0} 个成就 | 更新:{1} 个成就 | 删除:{2} 个成就 的本地化字符串。
+ /// Looks up a localized string similar to 新增:{0} 个成就 | 更新:{1} 个成就 | 删除:{2} 个成就.
///
internal static string ServiceAchievementImportResultFormat {
get {
@@ -754,7 +825,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 单个成就存档内发现多个相同的成就 Id 的本地化字符串。
+ /// Looks up a localized string similar to 单个成就存档内发现多个相同的成就 Id.
///
internal static string ServiceAchievementUserdataCorruptedInnerIdNotUnique {
get {
@@ -763,7 +834,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 攻击力 的本地化字符串。
+ /// Looks up a localized string similar to 攻击力.
///
internal static string ServiceAvatarInfoPropertyAtk {
get {
@@ -772,7 +843,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 基础攻击力 的本地化字符串。
+ /// Looks up a localized string similar to 基础攻击力.
///
internal static string ServiceAvatarInfoPropertyBaseAtk {
get {
@@ -781,7 +852,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 基础防御力 的本地化字符串。
+ /// Looks up a localized string similar to 基础防御力.
///
internal static string ServiceAvatarInfoPropertyBaseDef {
get {
@@ -790,7 +861,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 基础生命值 的本地化字符串。
+ /// Looks up a localized string similar to 基础生命值.
///
internal static string ServiceAvatarInfoPropertyBaseHp {
get {
@@ -799,7 +870,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 暴击伤害 的本地化字符串。
+ /// Looks up a localized string similar to 暴击伤害.
///
internal static string ServiceAvatarInfoPropertyCDmg {
get {
@@ -808,7 +879,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元素充能效率 的本地化字符串。
+ /// Looks up a localized string similar to 元素充能效率.
///
internal static string ServiceAvatarInfoPropertyCE {
get {
@@ -817,7 +888,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 暴击率 的本地化字符串。
+ /// Looks up a localized string similar to 暴击率.
///
internal static string ServiceAvatarInfoPropertyCR {
get {
@@ -826,7 +897,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 雷元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 雷元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBElec {
get {
@@ -835,7 +906,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 火元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 火元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBFire {
get {
@@ -844,7 +915,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 草元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 草元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBGrass {
get {
@@ -853,7 +924,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 冰元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 冰元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBIce {
get {
@@ -862,7 +933,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 物理伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 物理伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBPhyiscal {
get {
@@ -871,7 +942,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 岩元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 岩元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBRock {
get {
@@ -880,7 +951,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 水元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 水元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBWater {
get {
@@ -889,7 +960,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 风元素伤害加成 的本地化字符串。
+ /// Looks up a localized string similar to 风元素伤害加成.
///
internal static string ServiceAvatarInfoPropertyDBWind {
get {
@@ -898,7 +969,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 防御力 的本地化字符串。
+ /// Looks up a localized string similar to 防御力.
///
internal static string ServiceAvatarInfoPropertyDef {
get {
@@ -907,7 +978,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元素精通 的本地化字符串。
+ /// Looks up a localized string similar to 元素精通.
///
internal static string ServiceAvatarInfoPropertyEM {
get {
@@ -916,7 +987,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 治疗加成 的本地化字符串。
+ /// Looks up a localized string similar to 治疗加成.
///
internal static string ServiceAvatarInfoPropertyHB {
get {
@@ -925,7 +996,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 生命值 的本地化字符串。
+ /// Looks up a localized string similar to 生命值.
///
internal static string ServiceAvatarInfoPropertyHp {
get {
@@ -934,7 +1005,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 雷元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 雷元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESElec {
get {
@@ -943,7 +1014,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 火元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 火元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESFire {
get {
@@ -952,7 +1023,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 草元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 草元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESGrass {
get {
@@ -961,7 +1032,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 冰元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 冰元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESIce {
get {
@@ -970,7 +1041,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 物理抗性 的本地化字符串。
+ /// Looks up a localized string similar to 物理抗性.
///
internal static string ServiceAvatarInfoPropertyRESPhysical {
get {
@@ -979,7 +1050,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 岩元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 岩元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESRock {
get {
@@ -988,7 +1059,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 水元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 水元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESWater {
get {
@@ -997,7 +1068,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 风元素抗性 的本地化字符串。
+ /// Looks up a localized string similar to 风元素抗性.
///
internal static string ServiceAvatarInfoPropertyRESWind {
get {
@@ -1006,7 +1077,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 保存养成计划状态失败 的本地化字符串。
+ /// Looks up a localized string similar to 保存养成计划状态失败.
///
internal static string ServiceCultivationProjectCurrentUserdataCourrpted {
get {
@@ -1015,7 +1086,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 存在多个选中的养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 存在多个选中的养成计划.
///
internal static string ServiceCultivationProjectCurrentUserdataCourrpted2 {
get {
@@ -1024,7 +1095,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 开始游戏 的本地化字符串。
+ /// Looks up a localized string similar to 开始游戏.
///
internal static string ServiceDailyNoteNotifierActionLaunchGameButton {
get {
@@ -1033,7 +1104,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 我知道了 的本地化字符串。
+ /// Looks up a localized string similar to 我知道了.
///
internal static string ServiceDailyNoteNotifierActionLaunchGameDismiss {
get {
@@ -1042,7 +1113,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请求异常 的本地化字符串。
+ /// Looks up a localized string similar to 请求异常.
///
internal static string ServiceDailyNoteNotifierAttribution {
get {
@@ -1051,7 +1122,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 每日委托 的本地化字符串。
+ /// Looks up a localized string similar to 每日委托.
///
internal static string ServiceDailyNoteNotifierDailyTask {
get {
@@ -1060,7 +1131,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 奖励未领取 的本地化字符串。
+ /// Looks up a localized string similar to 奖励未领取.
///
internal static string ServiceDailyNoteNotifierDailyTaskHint {
get {
@@ -1069,7 +1140,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 探索派遣 的本地化字符串。
+ /// Looks up a localized string similar to 探索派遣.
///
internal static string ServiceDailyNoteNotifierExpedition {
get {
@@ -1078,7 +1149,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已完成 的本地化字符串。
+ /// Looks up a localized string similar to 已完成.
///
internal static string ServiceDailyNoteNotifierExpeditionAdaptiveHint {
get {
@@ -1087,7 +1158,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 探索派遣已完成 的本地化字符串。
+ /// Looks up a localized string similar to 探索派遣已完成.
///
internal static string ServiceDailyNoteNotifierExpeditionHint {
get {
@@ -1096,7 +1167,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 洞天宝钱 的本地化字符串。
+ /// Looks up a localized string similar to 洞天宝钱.
///
internal static string ServiceDailyNoteNotifierHomeCoin {
get {
@@ -1105,7 +1176,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 当前洞天宝钱:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 当前洞天宝钱:{0}.
///
internal static string ServiceDailyNoteNotifierHomeCoinCurrent {
get {
@@ -1114,7 +1185,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 多个提醒项达到设定值 的本地化字符串。
+ /// Looks up a localized string similar to 多个提醒项达到设定值.
///
internal static string ServiceDailyNoteNotifierMultiValueReached {
get {
@@ -1123,7 +1194,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 原粹树脂 的本地化字符串。
+ /// Looks up a localized string similar to 原粹树脂.
///
internal static string ServiceDailyNoteNotifierResin {
get {
@@ -1132,7 +1203,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 当前原粹树脂:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 当前原粹树脂:{0}.
///
internal static string ServiceDailyNoteNotifierResinCurrent {
get {
@@ -1141,7 +1212,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 实时便笺提醒 的本地化字符串。
+ /// Looks up a localized string similar to 实时便笺提醒.
///
internal static string ServiceDailyNoteNotifierTitle {
get {
@@ -1150,7 +1221,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 参量质变仪 的本地化字符串。
+ /// Looks up a localized string similar to 参量质变仪.
///
internal static string ServiceDailyNoteNotifierTransformer {
get {
@@ -1159,7 +1230,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 准备完成 的本地化字符串。
+ /// Looks up a localized string similar to 准备完成.
///
internal static string ServiceDailyNoteNotifierTransformerAdaptiveHint {
get {
@@ -1168,7 +1239,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 参量质变仪已准备完成 的本地化字符串。
+ /// Looks up a localized string similar to 参量质变仪已准备完成.
///
internal static string ServiceDailyNoteNotifierTransformerHint {
get {
@@ -1177,7 +1248,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法获取祈愿记录:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 无法获取祈愿记录:{0}.
///
internal static string ServiceGachaLogArchiveCollectionUserdataCorruptedMessage {
get {
@@ -1186,7 +1257,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法获取祈愿记录 End Id 的本地化字符串。
+ /// Looks up a localized string similar to 无法获取祈愿记录 End Id.
///
internal static string ServiceGachaLogEndIdUserdataCorruptedMessage {
get {
@@ -1195,7 +1266,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色活动 的本地化字符串。
+ /// Looks up a localized string similar to 角色活动.
///
internal static string ServiceGachaLogFactoryAvatarWishName {
get {
@@ -1204,7 +1275,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 奔行世间 的本地化字符串。
+ /// Looks up a localized string similar to 奔行世间.
///
internal static string ServiceGachaLogFactoryPermanentWishName {
get {
@@ -1213,7 +1284,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 神铸赋形 的本地化字符串。
+ /// Looks up a localized string similar to 神铸赋形.
///
internal static string ServiceGachaLogFactoryWeaponWishName {
get {
@@ -1222,7 +1293,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取云端祈愿记录失败 的本地化字符串。
+ /// Looks up a localized string similar to 获取云端祈愿记录失败.
///
internal static string ServiceGachaLogHutaoCloudEndIdFetchFailed {
get {
@@ -1231,7 +1302,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录上传服务不可用 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录上传服务不可用.
///
internal static string ServiceGachaLogHutaoCloudServiceNotAllowed {
get {
@@ -1240,7 +1311,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请求验证密钥失败 的本地化字符串。
+ /// Looks up a localized string similar to 请求验证密钥失败.
///
internal static string ServiceGachaLogUrlProviderAuthkeyRequestFailed {
get {
@@ -1249,7 +1320,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 未正确提供原神路径,或当前设置的路径不正确 的本地化字符串。
+ /// Looks up a localized string similar to 未正确提供原神路径,或当前设置的路径不正确.
///
internal static string ServiceGachaLogUrlProviderCachePathInvalid {
get {
@@ -1258,7 +1329,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 找不到原神内置浏览器缓存路径:\n{0} 的本地化字符串。
+ /// Looks up a localized string similar to 找不到原神内置浏览器缓存路径:\n{0}.
///
internal static string ServiceGachaLogUrlProviderCachePathNotFound {
get {
@@ -1267,7 +1338,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 未找到可用的 Url 的本地化字符串。
+ /// Looks up a localized string similar to 未找到可用的 Url.
///
internal static string ServiceGachaLogUrlProviderCacheUrlNotFound {
get {
@@ -1276,7 +1347,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 提供的 Url 无效 的本地化字符串。
+ /// Looks up a localized string similar to 提供的 Url 无效.
///
internal static string ServiceGachaLogUrlProviderManualInputInvalid {
get {
@@ -1285,7 +1356,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 HoYoLab 账号不支持使用 SToken 刷新祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to HoYoLab 账号不支持使用 SToken 刷新祈愿记录.
///
internal static string ServiceGachaLogUrlProviderStokenUnsupported {
get {
@@ -1294,7 +1365,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 不支持的 Item Id:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 不支持的 Item Id:{0}.
///
internal static string ServiceGachaStatisticsFactoryItemIdInvalid {
get {
@@ -1303,7 +1374,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 存在多个匹配账号,请删除重复的账号 的本地化字符串。
+ /// Looks up a localized string similar to 存在多个匹配账号,请删除重复的账号.
///
internal static string ServiceGameDetectGameAccountMultiMatched {
get {
@@ -1312,7 +1383,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 查询游戏资源信息 的本地化字符串。
+ /// Looks up a localized string similar to 查询游戏资源信息.
///
internal static string ServiceGameEnsureGameResourceQueryResourceInformation {
get {
@@ -1321,7 +1392,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏文件操作失败:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 游戏文件操作失败:{0}.
///
internal static string ServiceGameFileOperationExceptionMessage {
get {
@@ -1330,7 +1401,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 选择游戏本体 的本地化字符串。
+ /// Looks up a localized string similar to 选择游戏本体.
///
internal static string ServiceGameLocatorFileOpenPickerCommitText {
get {
@@ -1339,7 +1410,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 找不到 Unity 日志文件 的本地化字符串。
+ /// Looks up a localized string similar to 找不到 Unity 日志文件.
///
internal static string ServiceGameLocatorUnityLogFileNotFound {
get {
@@ -1348,7 +1419,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在 Unity 日志文件中找不到游戏路径 的本地化字符串。
+ /// Looks up a localized string similar to 在 Unity 日志文件中找不到游戏路径.
///
internal static string ServiceGameLocatorUnityLogGamePathNotFound {
get {
@@ -1357,7 +1428,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重命名数据文件夹名称失败 的本地化字符串。
+ /// Looks up a localized string similar to 重命名数据文件夹名称失败.
///
internal static string ServiceGamePackageRenameDataFolderFailed {
get {
@@ -1366,7 +1437,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取 Package Version 的本地化字符串。
+ /// Looks up a localized string similar to 获取 Package Version.
///
internal static string ServiceGamePackageRequestPackageVerion {
get {
@@ -1375,7 +1446,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取 Package Version 失败 的本地化字符串。
+ /// Looks up a localized string similar to 获取 Package Version 失败.
///
internal static string ServiceGamePackageRequestPackageVerionFailed {
get {
@@ -1384,7 +1455,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法找到游戏路径,请前往设置修改 的本地化字符串。
+ /// Looks up a localized string similar to 无法找到游戏路径,请前往设置修改.
///
internal static string ServiceGamePathLocateFailed {
get {
@@ -1393,7 +1464,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 未开启长路径功能,无法设置注册表键值 的本地化字符串。
+ /// Looks up a localized string similar to 未开启长路径功能,无法设置注册表键值.
///
internal static string ServiceGameRegisteryInteropLongPathsDisabled {
get {
@@ -1402,7 +1473,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 找不到 PowerShell 的安装目录 的本地化字符串。
+ /// Looks up a localized string similar to 找不到 PowerShell 的安装目录.
///
internal static string ServiceGameRegisteryInteropPowershellNotFound {
get {
@@ -1411,7 +1482,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 找不到游戏配置文件 {0} 的本地化字符串。
+ /// Looks up a localized string similar to 找不到游戏配置文件 {0}.
///
internal static string ServiceGameSetMultiChannelConfigFileNotFound {
get {
@@ -1420,7 +1491,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法读取或保存配置文件,请以管理员模式重试 的本地化字符串。
+ /// Looks up a localized string similar to 无法读取或保存配置文件,请以管理员模式重试.
///
internal static string ServiceGameSetMultiChannelUnauthorizedAccess {
get {
@@ -1429,7 +1500,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在查找必要的模块时遇到问题:无法读取任何模块,可能是保护驱动已经加载完成 的本地化字符串。
+ /// Looks up a localized string similar to 在查找必要的模块时遇到问题:无法读取任何模块,可能是保护驱动已经加载完成.
///
internal static string ServiceGameUnlockerFindModuleNoModuleFound {
get {
@@ -1438,7 +1509,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在查找必要的模块时遇到问题:查找模块超时 的本地化字符串。
+ /// Looks up a localized string similar to 在查找必要的模块时遇到问题:查找模块超时.
///
internal static string ServiceGameUnlockerFindModuleTimeLimitExeeded {
get {
@@ -1447,7 +1518,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在匹配内存时遇到问题:无法匹配到期望的内容 的本地化字符串。
+ /// Looks up a localized string similar to 在匹配内存时遇到问题:无法匹配到期望的内容.
///
internal static string ServiceGameUnlockerInterestedPatternNotFound {
get {
@@ -1456,7 +1527,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在读取必要的模块内存时遇到问题:无法将模块内存复制到指定位置 的本地化字符串。
+ /// Looks up a localized string similar to 在读取必要的模块内存时遇到问题:无法将模块内存复制到指定位置.
///
internal static string ServiceGameUnlockerReadModuleMemoryCopyVirtualMemoryFailed {
get {
@@ -1465,7 +1536,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在读取游戏进程内存时遇到问题:无法读取到指定地址的有效值 的本地化字符串。
+ /// Looks up a localized string similar to 在读取游戏进程内存时遇到问题:无法读取到指定地址的有效值.
///
internal static string ServiceGameUnlockerReadProcessMemoryPointerAddressFailed {
get {
@@ -1474,7 +1545,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录上传服务将于 {0:yyyy-MM-dd HH:mm:ss} 到期 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录上传服务将于 {0:yyyy-MM-dd HH:mm:ss} 到期.
///
internal static string ServiceHutaoUserGachaLogExpiredAt {
get {
@@ -1483,7 +1554,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法找到缓存的元数据文件 的本地化字符串。
+ /// Looks up a localized string similar to 无法找到缓存的元数据文件.
///
internal static string ServiceMetadataFileNotFound {
get {
@@ -1492,7 +1563,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元数据服务尚未初始化,或初始化失败 的本地化字符串。
+ /// Looks up a localized string similar to 元数据服务尚未初始化,或初始化失败.
///
internal static string ServiceMetadataNotInitialized {
get {
@@ -1501,7 +1572,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元数据校验文件解析失败 的本地化字符串。
+ /// Looks up a localized string similar to 元数据校验文件解析失败.
///
internal static string ServiceMetadataParseFailed {
get {
@@ -1510,7 +1581,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元数据校验文件下载失败 的本地化字符串。
+ /// Looks up a localized string similar to 元数据校验文件下载失败.
///
internal static string ServiceMetadataRequestFailed {
get {
@@ -1519,7 +1590,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 你的胡桃版本过低,请尽快升级 的本地化字符串。
+ /// Looks up a localized string similar to 你的胡桃版本过低,请尽快升级.
///
internal static string ServiceMetadataVersionNotSupported {
get {
@@ -1528,7 +1599,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 多个用户记录为选中状态 的本地化字符串。
+ /// Looks up a localized string similar to 多个用户记录为选中状态.
///
internal static string ServiceUserCurrentMultiMatched {
get {
@@ -1537,7 +1608,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 {0} 状态保存失败 的本地化字符串。
+ /// Looks up a localized string similar to 用户 {0} 状态保存失败.
///
internal static string ServiceUserCurrentUpdateAndSaveFailed {
get {
@@ -1546,7 +1617,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 输入的 Cookie 必须包含 Mid 的本地化字符串。
+ /// Looks up a localized string similar to 输入的 Cookie 必须包含 Mid.
///
internal static string ServiceUserProcessCookieNoMid {
get {
@@ -1555,7 +1626,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 输入的 Cookie 必须包含 SToken 的本地化字符串。
+ /// Looks up a localized string similar to 输入的 Cookie 必须包含 SToken.
///
internal static string ServiceUserProcessCookieNoSToken {
get {
@@ -1564,7 +1635,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 输入的 Cookie 无法获取用户信息 的本地化字符串。
+ /// Looks up a localized string similar to 输入的 Cookie 无法获取用户信息.
///
internal static string ServiceUserProcessCookieRequestUserInfoFailed {
get {
@@ -1573,7 +1644,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 成就管理 的本地化字符串。
+ /// Looks up a localized string similar to 成就管理.
///
internal static string ViewAchievementHeader {
get {
@@ -1582,7 +1653,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 主页 的本地化字符串。
+ /// Looks up a localized string similar to 主页.
///
internal static string ViewAnnouncementHeader {
get {
@@ -1591,7 +1662,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 我的角色 的本地化字符串。
+ /// Looks up a localized string similar to 我的角色.
///
internal static string ViewAvatarPropertyHeader {
get {
@@ -1600,7 +1671,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步角色信息 的本地化字符串。
+ /// Looks up a localized string similar to 同步角色信息.
///
internal static string ViewAvatarPropertySyncDataButtonLabel {
get {
@@ -1609,7 +1680,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 成就统计 的本地化字符串。
+ /// Looks up a localized string similar to 成就统计.
///
internal static string ViewCardAchievementStatisticsTitle {
get {
@@ -1618,7 +1689,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 保底计数 的本地化字符串。
+ /// Looks up a localized string similar to 保底计数.
///
internal static string ViewCardGachaStatisticsTitle {
get {
@@ -1627,7 +1698,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 选择账号或直接启动 的本地化字符串。
+ /// Looks up a localized string similar to 选择账号或直接启动.
///
internal static string ViewCardLaunchGameSelectAccountPlaceholder {
get {
@@ -1636,7 +1707,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 等级 的本地化字符串。
+ /// Looks up a localized string similar to 等级.
///
internal static string ViewControlBaseValueSliderLevel {
get {
@@ -1645,7 +1716,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 突破后 的本地化字符串。
+ /// Looks up a localized string similar to 突破后.
///
internal static string ViewControlBaseValueSliderPromoted {
get {
@@ -1654,7 +1725,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 需要管理员权限 的本地化字符串。
+ /// Looks up a localized string similar to 需要管理员权限.
///
internal static string ViewControlElevationText {
get {
@@ -1663,7 +1734,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 加载中,请稍候 的本地化字符串。
+ /// Looks up a localized string similar to 加载中,请稍候.
///
internal static string ViewControlLoadingText {
get {
@@ -1672,7 +1743,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 三星 的本地化字符串。
+ /// Looks up a localized string similar to 三星.
///
internal static string ViewControlStatisticsCardBlueText {
get {
@@ -1681,7 +1752,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 保底 的本地化字符串。
+ /// Looks up a localized string similar to 保底.
///
internal static string ViewControlStatisticsCardGuaranteeText {
get {
@@ -1690,7 +1761,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 五星平均抽数 的本地化字符串。
+ /// Looks up a localized string similar to 五星平均抽数.
///
internal static string ViewControlStatisticsCardOrangeAveragePullText {
get {
@@ -1699,7 +1770,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 五星 的本地化字符串。
+ /// Looks up a localized string similar to 五星.
///
internal static string ViewControlStatisticsCardOrangeText {
get {
@@ -1708,7 +1779,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 抽 的本地化字符串。
+ /// Looks up a localized string similar to 抽.
///
internal static string ViewControlStatisticsCardPullText {
get {
@@ -1717,7 +1788,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 四星 的本地化字符串。
+ /// Looks up a localized string similar to 四星.
///
internal static string ViewControlStatisticsCardPurpleText {
get {
@@ -1726,7 +1797,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UP 平均抽数 的本地化字符串。
+ /// Looks up a localized string similar to UP 平均抽数.
///
internal static string ViewControlStatisticsCardUpAveragePullText {
get {
@@ -1735,7 +1806,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UP 的本地化字符串。
+ /// Looks up a localized string similar to UP.
///
internal static string ViewControlStatisticsCardUpText {
get {
@@ -1744,7 +1815,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 养成计划.
///
internal static string ViewCultivationHeader {
get {
@@ -1753,7 +1824,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 实时便笺 的本地化字符串。
+ /// Looks up a localized string similar to 实时便笺.
///
internal static string ViewDailyNoteHeader {
get {
@@ -1762,7 +1833,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据 的本地化字符串。
+ /// Looks up a localized string similar to 数据.
///
internal static string ViewDataHeader {
get {
@@ -1771,7 +1842,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在此处输入 的本地化字符串。
+ /// Looks up a localized string similar to 在此处输入.
///
internal static string ViewDialogAchievementArchiveCreateInputPlaceholder {
get {
@@ -1780,7 +1851,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置成就存档的名称 的本地化字符串。
+ /// Looks up a localized string similar to 设置成就存档的名称.
///
internal static string ViewDialogAchievementArchiveCreateTitle {
get {
@@ -1789,7 +1860,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入模式 的本地化字符串。
+ /// Looks up a localized string similar to 导入模式.
///
internal static string ViewDialogAchievementArchiveImportStrategy {
get {
@@ -1798,7 +1869,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 贪婪(添加新数据,更新已完成项) 的本地化字符串。
+ /// Looks up a localized string similar to 贪婪(添加新数据,更新已完成项).
///
internal static string ViewDialogAchievementArchiveImportStrategyAggressive {
get {
@@ -1807,7 +1878,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 懒惰(添加新数据,跳过已完成项) 的本地化字符串。
+ /// Looks up a localized string similar to 懒惰(添加新数据,跳过已完成项).
///
internal static string ViewDialogAchievementArchiveImportStrategyLazy {
get {
@@ -1816,7 +1887,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 覆盖(删除老数据,添加新的数据) 的本地化字符串。
+ /// Looks up a localized string similar to 覆盖(删除老数据,添加新的数据).
///
internal static string ViewDialogAchievementArchiveImportStrategyOverwrite {
get {
@@ -1825,7 +1896,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 为当前存档导入成就 的本地化字符串。
+ /// Looks up a localized string similar to 为当前存档导入成就.
///
internal static string ViewDialogAchievementArchiveImportTitle {
get {
@@ -1834,7 +1905,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 绑定当前用户与角色 的本地化字符串。
+ /// Looks up a localized string similar to 绑定当前用户与角色.
///
internal static string ViewDialogCultivateProjectAttachUid {
get {
@@ -1843,7 +1914,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在此处输入计划名称 的本地化字符串。
+ /// Looks up a localized string similar to 在此处输入计划名称.
///
internal static string ViewDialogCultivateProjectInputPlaceholder {
get {
@@ -1852,7 +1923,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 创建新的养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 创建新的养成计划.
///
internal static string ViewDialogCultivateProjectTitle {
get {
@@ -1861,7 +1932,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加到当前养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 添加到当前养成计划.
///
internal static string ViewDialogCultivatePromotionDeltaTitle {
get {
@@ -1870,7 +1941,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 每日委托上线提醒 的本地化字符串。
+ /// Looks up a localized string similar to 每日委托上线提醒.
///
internal static string ViewDialogDailyNoteNotificationDailyTaskNotify {
get {
@@ -1879,7 +1950,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 探索派遣完成提醒 的本地化字符串。
+ /// Looks up a localized string similar to 探索派遣完成提醒.
///
internal static string ViewDialogDailyNoteNotificationExpeditionNotify {
get {
@@ -1888,7 +1959,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 洞天宝钱提醒阈值 的本地化字符串。
+ /// Looks up a localized string similar to 洞天宝钱提醒阈值.
///
internal static string ViewDialogDailyNoteNotificationHomeCoinNotifyThreshold {
get {
@@ -1897,7 +1968,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 原粹树脂提醒阈值 的本地化字符串。
+ /// Looks up a localized string similar to 原粹树脂提醒阈值.
///
internal static string ViewDialogDailyNoteNotificationResinNotifyThreshold {
get {
@@ -1906,7 +1977,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在主页显示卡片 的本地化字符串。
+ /// Looks up a localized string similar to 在主页显示卡片.
///
internal static string ViewDialogDailyNoteNotificationShowInHomeWidget {
get {
@@ -1915,7 +1986,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 实时便笺通知设置 的本地化字符串。
+ /// Looks up a localized string similar to 实时便笺通知设置.
///
internal static string ViewDialogDailyNoteNotificationTitle {
get {
@@ -1924,7 +1995,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 参量质变仪提醒 的本地化字符串。
+ /// Looks up a localized string similar to 参量质变仪提醒.
///
internal static string ViewDialogDailyNoteNotificationTransformerNotify {
get {
@@ -1933,7 +2004,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 导入祈愿记录.
///
internal static string ViewDialogGachaLogImportTitle {
get {
@@ -1942,7 +2013,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录 Url 已失效,请重新获取 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录 Url 已失效,请重新获取.
///
internal static string ViewDialogGachaLogRefreshProgressAuthkeyTimeout {
get {
@@ -1951,7 +2022,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 正在获取 {0} 的本地化字符串。
+ /// Looks up a localized string similar to 正在获取 {0}.
///
internal static string ViewDialogGachaLogRefreshProgressDescription {
get {
@@ -1960,7 +2031,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取祈愿物品中 的本地化字符串。
+ /// Looks up a localized string similar to 获取祈愿物品中.
///
internal static string ViewDialogGachaLogRefreshProgressTitle {
get {
@@ -1969,7 +2040,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请输入 Url 的本地化字符串。
+ /// Looks up a localized string similar to 请输入 Url.
///
internal static string ViewDialogGachaLogUrlInputPlaceholder {
get {
@@ -1978,7 +2049,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 手动输入祈愿记录 Url 的本地化字符串。
+ /// Looks up a localized string similar to 手动输入祈愿记录 Url.
///
internal static string ViewDialogGachaLogUrlTitle {
get {
@@ -1987,7 +2058,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出 App 的本地化字符串。
+ /// Looks up a localized string similar to 导出 App.
///
internal static string ViewDialogImportExportApp {
get {
@@ -1996,7 +2067,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出 App 版本 的本地化字符串。
+ /// Looks up a localized string similar to 导出 App 版本.
///
internal static string ViewDialogImportExportAppVersion {
get {
@@ -2005,7 +2076,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出时间 的本地化字符串。
+ /// Looks up a localized string similar to 导出时间.
///
internal static string ViewDialogImportExportTime {
get {
@@ -2014,7 +2085,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 成就个数 的本地化字符串。
+ /// Looks up a localized string similar to 成就个数.
///
internal static string ViewDialogImportUIAFExportListCount {
get {
@@ -2023,7 +2094,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UIAF 版本 的本地化字符串。
+ /// Looks up a localized string similar to UIAF 版本.
///
internal static string ViewDialogImportUIAFExportUIAFVersion {
get {
@@ -2032,7 +2103,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 记录条数 的本地化字符串。
+ /// Looks up a localized string similar to 记录条数.
///
internal static string ViewDialogImportUIGFExportListCount {
get {
@@ -2041,7 +2112,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UID 的本地化字符串。
+ /// Looks up a localized string similar to UID.
///
internal static string ViewDialogImportUIGFExportUid {
get {
@@ -2050,7 +2121,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UIGF 版本 的本地化字符串。
+ /// Looks up a localized string similar to UIGF 版本.
///
internal static string ViewDialogImportUIGFExportUIGFVersion {
get {
@@ -2059,7 +2130,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在此处输入名称 的本地化字符串。
+ /// Looks up a localized string similar to 在此处输入名称.
///
internal static string ViewDialogLaunchGameAccountInputPlaceholder {
get {
@@ -2068,7 +2139,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 为账号命名 的本地化字符串。
+ /// Looks up a localized string similar to 为账号命名.
///
internal static string ViewDialogLaunchGameAccountTitle {
get {
@@ -2077,7 +2148,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 转换可能需要花费一段时间,请勿关闭胡桃 的本地化字符串。
+ /// Looks up a localized string similar to 转换可能需要花费一段时间,请勿关闭胡桃.
///
internal static string ViewDialogLaunchGamePackageConvertHint {
get {
@@ -2086,7 +2157,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 正在转换客户端 的本地化字符串。
+ /// Looks up a localized string similar to 正在转换客户端.
///
internal static string ViewDialogLaunchGamePackageConvertTitle {
get {
@@ -2095,7 +2166,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 该操作是不可逆的,所有用户登录状态会丢失 的本地化字符串。
+ /// Looks up a localized string similar to 该操作是不可逆的,所有用户登录状态会丢失.
///
internal static string ViewDialogSettingDeleteUserDataContent {
get {
@@ -2104,7 +2175,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 是否永久删除用户数据 的本地化字符串。
+ /// Looks up a localized string similar to 是否永久删除用户数据.
///
internal static string ViewDialogSettingDeleteUserDataTitle {
get {
@@ -2113,7 +2184,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 立即前往 的本地化字符串。
+ /// Looks up a localized string similar to 立即前往.
///
internal static string ViewDialogUserDocumentAction {
get {
@@ -2122,7 +2193,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 进入文档页面并按指示操作 的本地化字符串。
+ /// Looks up a localized string similar to 进入文档页面并按指示操作.
///
internal static string ViewDialogUserDocumentDescription {
get {
@@ -2131,7 +2202,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 操作文档 的本地化字符串。
+ /// Looks up a localized string similar to 操作文档.
///
internal static string ViewDialogUserDocumentHeader {
get {
@@ -2140,7 +2211,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在此处输入包含 SToken 的 Cookie 的本地化字符串。
+ /// Looks up a localized string similar to 在此处输入包含 SToken 的 Cookie.
///
internal static string ViewDialogUserInputPlaceholder {
get {
@@ -2149,7 +2220,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置 Cookie 的本地化字符串。
+ /// Looks up a localized string similar to 设置 Cookie.
///
internal static string ViewDialogUserTitle {
get {
@@ -2158,7 +2229,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录.
///
internal static string ViewGachaLogHeader {
get {
@@ -2167,7 +2238,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 深渊统计 的本地化字符串。
+ /// Looks up a localized string similar to 深渊统计.
///
internal static string ViewHutaoDatabaseHeader {
get {
@@ -2176,7 +2247,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 有新的通知 的本地化字符串。
+ /// Looks up a localized string similar to 有新的通知.
///
internal static string ViewInfoBarToggleTitle {
get {
@@ -2185,7 +2256,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启动游戏 的本地化字符串。
+ /// Looks up a localized string similar to 启动游戏.
///
internal static string ViewLaunchGameHeader {
get {
@@ -2194,7 +2265,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 存档 [{0}] 添加成功 的本地化字符串。
+ /// Looks up a localized string similar to 存档 [{0}] 添加成功.
///
internal static string ViewModelAchievementArchiveAdded {
get {
@@ -2203,7 +2274,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 不能添加名称重复的存档 [{0}] 的本地化字符串。
+ /// Looks up a localized string similar to 不能添加名称重复的存档 [{0}].
///
internal static string ViewModelAchievementArchiveAlreadyExists {
get {
@@ -2212,7 +2283,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 不能添加名称无效的存档 的本地化字符串。
+ /// Looks up a localized string similar to 不能添加名称无效的存档.
///
internal static string ViewModelAchievementArchiveInvalidName {
get {
@@ -2221,7 +2292,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UIAF 文件 的本地化字符串。
+ /// Looks up a localized string similar to UIAF 文件.
///
internal static string ViewModelAchievementExportFileType {
get {
@@ -2230,7 +2301,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入成就中 的本地化字符串。
+ /// Looks up a localized string similar to 导入成就中.
///
internal static string ViewModelAchievementImportProgress {
get {
@@ -2239,7 +2310,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据的 UIAF 版本过低,无法导入 的本地化字符串。
+ /// Looks up a localized string similar to 数据的 UIAF 版本过低,无法导入.
///
internal static string ViewModelAchievementImportWarningMessage {
get {
@@ -2248,7 +2319,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 该操作是不可逆的,该存档和其内的所有成就状态会丢失 的本地化字符串。
+ /// Looks up a localized string similar to 该操作是不可逆的,该存档和其内的所有成就状态会丢失.
///
internal static string ViewModelAchievementRemoveArchiveContent {
get {
@@ -2257,7 +2328,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 确定要删除存档 {0} 吗? 的本地化字符串。
+ /// Looks up a localized string similar to 确定要删除存档 {0} 吗?.
///
internal static string ViewModelAchievementRemoveArchiveTitle {
get {
@@ -2266,7 +2337,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 当前角色无法计算,请同步信息后再试 的本地化字符串。
+ /// Looks up a localized string similar to 当前角色无法计算,请同步信息后再试.
///
internal static string ViewModelAvatarPropertyCalculateWeaponNull {
get {
@@ -2275,7 +2346,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色信息服务 [Enka API] 当前不可用 的本地化字符串。
+ /// Looks up a localized string similar to 角色信息服务 [Enka API] 当前不可用.
///
internal static string ViewModelAvatarPropertyEnkaApiUnavailable {
get {
@@ -2284,7 +2355,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已导出到剪贴板 的本地化字符串。
+ /// Looks up a localized string similar to 已导出到剪贴板.
///
internal static string ViewModelAvatarPropertyExportImageSuccess {
get {
@@ -2293,7 +2364,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取数据中 的本地化字符串。
+ /// Looks up a localized string similar to 获取数据中.
///
internal static string ViewModelAvatarPropertyFetch {
get {
@@ -2302,7 +2373,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 打开剪贴板失败 的本地化字符串。
+ /// Looks up a localized string similar to 打开剪贴板失败.
///
internal static string ViewModelAvatarPropertyOpenClipboardFail {
get {
@@ -2311,7 +2382,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色展柜尚未开启,请前往游戏操作后重试 的本地化字符串。
+ /// Looks up a localized string similar to 角色展柜尚未开启,请前往游戏操作后重试.
///
internal static string ViewModelAvatarPropertyShowcaseNotOpen {
get {
@@ -2320,7 +2391,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无圣遗物或散件 的本地化字符串。
+ /// Looks up a localized string similar to 无圣遗物或散件.
///
internal static string ViewModelComplexReliquarySetViewEmptyName {
get {
@@ -2329,7 +2400,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 养成计划添加失败 的本地化字符串。
+ /// Looks up a localized string similar to 养成计划添加失败.
///
internal static string ViewModelCultivationAddWarning {
get {
@@ -2338,7 +2409,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已成功添加至当前养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 已成功添加至当前养成计划.
///
internal static string ViewModelCultivationEntryAddSuccess {
get {
@@ -2347,7 +2418,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请先前往养成计划页面创建计划并选中 的本地化字符串。
+ /// Looks up a localized string similar to 请先前往养成计划页面创建计划并选中.
///
internal static string ViewModelCultivationEntryAddWarning {
get {
@@ -2356,7 +2427,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加成功 的本地化字符串。
+ /// Looks up a localized string similar to 添加成功.
///
internal static string ViewModelCultivationProjectAdded {
get {
@@ -2365,7 +2436,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 不能添加名称重复的计划 的本地化字符串。
+ /// Looks up a localized string similar to 不能添加名称重复的计划.
///
internal static string ViewModelCultivationProjectAlreadyExists {
get {
@@ -2374,7 +2445,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 不能添加名称无效的计划 的本地化字符串。
+ /// Looks up a localized string similar to 不能添加名称无效的计划.
///
internal static string ViewModelCultivationProjectInvalidName {
get {
@@ -2383,7 +2454,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 HoYoLab 账号不支持验证实时便笺 的本地化字符串。
+ /// Looks up a localized string similar to HoYoLab 账号不支持验证实时便笺.
///
internal static string ViewModelDailyNoteHoyolabVerificationUnsupported {
get {
@@ -2392,7 +2463,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 30 分钟 | 3.75 树脂 的本地化字符串。
+ /// Looks up a localized string similar to 30 分钟 | 3.75 树脂.
///
internal static string ViewModelDailyNoteRefreshTime30 {
get {
@@ -2401,7 +2472,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 4 分钟 | 0.5 树脂 的本地化字符串。
+ /// Looks up a localized string similar to 4 分钟 | 0.5 树脂.
///
internal static string ViewModelDailyNoteRefreshTime4 {
get {
@@ -2410,7 +2481,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 40 分钟 | 5 树脂 的本地化字符串。
+ /// Looks up a localized string similar to 40 分钟 | 5 树脂.
///
internal static string ViewModelDailyNoteRefreshTime40 {
get {
@@ -2419,7 +2490,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 60 分钟 | 7.5 树脂 的本地化字符串。
+ /// Looks up a localized string similar to 60 分钟 | 7.5 树脂.
///
internal static string ViewModelDailyNoteRefreshTime60 {
get {
@@ -2428,7 +2499,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 8 分钟 | 1 树脂 的本地化字符串。
+ /// Looks up a localized string similar to 8 分钟 | 1 树脂.
///
internal static string ViewModelDailyNoteRefreshTime8 {
get {
@@ -2437,7 +2508,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 注册计划任务失败,请使用管理员模式重试 的本地化字符串。
+ /// Looks up a localized string similar to 注册计划任务失败,请使用管理员模式重试.
///
internal static string ViewModelDailyNoteRegisterTaskFail {
get {
@@ -2446,7 +2517,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除计划任务成功 的本地化字符串。
+ /// Looks up a localized string similar to 清除计划任务成功.
///
internal static string ViewModelExperimentalDeleteTaskSuccess {
get {
@@ -2455,7 +2526,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除计划任务失败,请使用管理员模式重试 的本地化字符串。
+ /// Looks up a localized string similar to 清除计划任务失败,请使用管理员模式重试.
///
internal static string ViewModelExperimentalDeleteTaskWarning {
get {
@@ -2464,7 +2535,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除用户数据成功,请立即重启胡桃 的本地化字符串。
+ /// Looks up a localized string similar to 清除用户数据成功,请立即重启胡桃.
///
internal static string ViewModelExperimentalDeleteUserSuccess {
get {
@@ -2473,7 +2544,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 成功保存到指定位置 的本地化字符串。
+ /// Looks up a localized string similar to 成功保存到指定位置.
///
internal static string ViewModelExportSuccessMessage {
get {
@@ -2482,7 +2553,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出成功 的本地化字符串。
+ /// Looks up a localized string similar to 导出成功.
///
internal static string ViewModelExportSuccessTitle {
get {
@@ -2491,7 +2562,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 写入文件时遇到问题 的本地化字符串。
+ /// Looks up a localized string similar to 写入文件时遇到问题.
///
internal static string ViewModelExportWarningMessage {
get {
@@ -2500,7 +2571,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出失败 的本地化字符串。
+ /// Looks up a localized string similar to 导出失败.
///
internal static string ViewModelExportWarningTitle {
get {
@@ -2509,7 +2580,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 UIGF Json 文件 的本地化字符串。
+ /// Looks up a localized string similar to UIGF Json 文件.
///
internal static string ViewModelGachaLogExportFileType {
get {
@@ -2518,7 +2589,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入完成 的本地化字符串。
+ /// Looks up a localized string similar to 导入完成.
///
internal static string ViewModelGachaLogImportComplete {
get {
@@ -2527,7 +2598,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入祈愿记录中 的本地化字符串。
+ /// Looks up a localized string similar to 导入祈愿记录中.
///
internal static string ViewModelGachaLogImportProgress {
get {
@@ -2536,7 +2607,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据的 UIGF 版本过低,无法导入 的本地化字符串。
+ /// Looks up a localized string similar to 数据的 UIGF 版本过低,无法导入.
///
internal static string ViewModelGachaLogImportWarningMessage {
get {
@@ -2545,7 +2616,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入数据中包含了不支持的物品 的本地化字符串。
+ /// Looks up a localized string similar to 导入数据中包含了不支持的物品.
///
internal static string ViewModelGachaLogImportWarningMessage2 {
get {
@@ -2554,7 +2625,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入失败 的本地化字符串。
+ /// Looks up a localized string similar to 导入失败.
///
internal static string ViewModelGachaLogImportWarningTitle {
get {
@@ -2563,7 +2634,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取祈愿记录失败 的本地化字符串。
+ /// Looks up a localized string similar to 获取祈愿记录失败.
///
internal static string ViewModelGachaLogRefreshFail {
get {
@@ -2572,7 +2643,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录刷新操作被异常取消 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录刷新操作被异常取消.
///
internal static string ViewModelGachaLogRefreshOperationCancel {
get {
@@ -2581,7 +2652,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 该操作是不可逆的,该存档和其内的所有祈愿数据会丢失 的本地化字符串。
+ /// Looks up a localized string similar to 该操作是不可逆的,该存档和其内的所有祈愿数据会丢失.
///
internal static string ViewModelGachaLogRemoveArchiveDescription {
get {
@@ -2590,7 +2661,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 确定要删除存档 {0} 吗? 的本地化字符串。
+ /// Looks up a localized string similar to 确定要删除存档 {0} 吗?.
///
internal static string ViewModelGachaLogRemoveArchiveTitle {
get {
@@ -2599,7 +2670,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从胡桃云服务同步祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 从胡桃云服务同步祈愿记录.
///
internal static string ViewModelGachaLogRetrieveFromHutaoCloudProgress {
get {
@@ -2608,7 +2679,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 正在上传到胡桃云服务 的本地化字符串。
+ /// Looks up a localized string similar to 正在上传到胡桃云服务.
///
internal static string ViewModelGachaLogUploadToHutaoCloudProgress {
get {
@@ -2617,7 +2688,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 剪贴板中的文本格式不正确 的本地化字符串。
+ /// Looks up a localized string similar to 剪贴板中的文本格式不正确.
///
internal static string ViewModelImportFromClipboardErrorTitle {
get {
@@ -2626,7 +2697,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据格式不正确 的本地化字符串。
+ /// Looks up a localized string similar to 数据格式不正确.
///
internal static string ViewModelImportWarningMessage {
get {
@@ -2635,7 +2706,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请先创建一个成就存档 的本地化字符串。
+ /// Looks up a localized string similar to 请先创建一个成就存档.
///
internal static string ViewModelImportWarningMessage2 {
get {
@@ -2644,7 +2715,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入失败 的本地化字符串。
+ /// Looks up a localized string similar to 导入失败.
///
internal static string ViewModelImportWarningTitle {
get {
@@ -2653,7 +2724,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 切换服务器失败 的本地化字符串。
+ /// Looks up a localized string similar to 切换服务器失败.
///
internal static string ViewModelLaunchGameEnsureGameResourceFail {
get {
@@ -2662,7 +2733,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无法读取游戏配置文件: {0} 的本地化字符串。
+ /// Looks up a localized string similar to 无法读取游戏配置文件: {0}.
///
internal static string ViewModelLaunchGameMultiChannelReadFail {
get {
@@ -2671,7 +2742,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏路径不正确,前往设置更改游戏路径 的本地化字符串。
+ /// Looks up a localized string similar to 游戏路径不正确,前往设置更改游戏路径.
///
internal static string ViewModelLaunchGamePathInvalid {
get {
@@ -2680,7 +2751,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 尚未选择任何服务器 的本地化字符串。
+ /// Looks up a localized string similar to 尚未选择任何服务器.
///
internal static string ViewModelLaunchGameSchemeNotSelected {
get {
@@ -2689,7 +2760,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 切换账号失败 的本地化字符串。
+ /// Looks up a localized string similar to 切换账号失败.
///
internal static string ViewModelLaunchGameSwitchGameAccountFail {
get {
@@ -2698,7 +2769,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除失败,文件目录权限不足,请使用管理员模式重试 的本地化字符串。
+ /// Looks up a localized string similar to 清除失败,文件目录权限不足,请使用管理员模式重试.
///
internal static string ViewModelSettingClearWebCacheFail {
get {
@@ -2707,7 +2778,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除失败,找不到目录:{0} 的本地化字符串。
+ /// Looks up a localized string similar to 清除失败,找不到目录:{0}.
///
internal static string ViewModelSettingClearWebCachePathInvalid {
get {
@@ -2716,7 +2787,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 清除完成 的本地化字符串。
+ /// Looks up a localized string similar to 清除完成.
///
internal static string ViewModelSettingClearWebCacheSuccess {
get {
@@ -2725,7 +2796,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 复制成功 的本地化字符串。
+ /// Looks up a localized string similar to 复制成功.
///
internal static string ViewModelSettingCopyDeviceIdSuccess {
get {
@@ -2734,7 +2805,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置数据目录成功,重启以应用更改 的本地化字符串。
+ /// Looks up a localized string similar to 设置数据目录成功,重启以应用更改.
///
internal static string ViewModelSettingSetDataFolderSuccess {
get {
@@ -2743,7 +2814,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 [{0}] 添加成功 的本地化字符串。
+ /// Looks up a localized string similar to 用户 [{0}] 添加成功.
///
internal static string ViewModelUserAdded {
get {
@@ -2752,7 +2823,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 [{0}] 的 Cookie 复制成功 的本地化字符串。
+ /// Looks up a localized string similar to 用户 [{0}] 的 Cookie 复制成功.
///
internal static string ViewModelUserCookieCopied {
get {
@@ -2761,7 +2832,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 此 Cookie 不完整,操作失败 的本地化字符串。
+ /// Looks up a localized string similar to 此 Cookie 不完整,操作失败.
///
internal static string ViewModelUserIncomplete {
get {
@@ -2770,7 +2841,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 此 Cookie 无效,操作失败 的本地化字符串。
+ /// Looks up a localized string similar to 此 Cookie 无效,操作失败.
///
internal static string ViewModelUserInvalid {
get {
@@ -2779,7 +2850,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 [{0}] 成功移除 的本地化字符串。
+ /// Looks up a localized string similar to 用户 [{0}] 成功移除.
///
internal static string ViewModelUserRemoved {
get {
@@ -2788,7 +2859,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 [{0}] 的 Cookie 更新成功 的本地化字符串。
+ /// Looks up a localized string similar to 用户 [{0}] 的 Cookie 更新成功.
///
internal static string ViewModelUserUpdated {
get {
@@ -2797,7 +2868,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 页面资源已经被释放,操作取消 的本地化字符串。
+ /// Looks up a localized string similar to 页面资源已经被释放,操作取消.
///
internal static string ViewModelViewDisposedOperationCancel {
get {
@@ -2806,7 +2877,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 现在可以开始使用胡桃了 的本地化字符串。
+ /// Looks up a localized string similar to 现在可以开始使用胡桃了.
///
internal static string ViewModelWelcomeDownloadCompleteMessage {
get {
@@ -2815,7 +2886,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 下载完成 的本地化字符串。
+ /// Looks up a localized string similar to 下载完成.
///
internal static string ViewModelWelcomeDownloadCompleteTitle {
get {
@@ -2824,7 +2895,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 完成 的本地化字符串。
+ /// Looks up a localized string similar to 完成.
///
internal static string ViewModelWelcomeDownloadSummaryComplete {
get {
@@ -2833,7 +2904,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 等待中 的本地化字符串。
+ /// Looks up a localized string similar to 等待中.
///
internal static string ViewModelWelcomeDownloadSummaryDefault {
get {
@@ -2842,7 +2913,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 文件下载异常 的本地化字符串。
+ /// Looks up a localized string similar to 文件下载异常.
///
internal static string ViewModelWelcomeDownloadSummaryException {
get {
@@ -2851,7 +2922,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 创建新存档 的本地化字符串。
+ /// Looks up a localized string similar to 创建新存档.
///
internal static string ViewPageAchievementAddArchive {
get {
@@ -2860,7 +2931,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 创建新存档以继续 的本地化字符串。
+ /// Looks up a localized string similar to 创建新存档以继续.
///
internal static string ViewPageAchievementAddArchiveHint {
get {
@@ -2869,7 +2940,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出 的本地化字符串。
+ /// Looks up a localized string similar to 导出.
///
internal static string ViewPageAchievementExportLabel {
get {
@@ -2878,7 +2949,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从剪贴板导入 的本地化字符串。
+ /// Looks up a localized string similar to 从剪贴板导入.
///
internal static string ViewPageAchievementImportFromClipboard {
get {
@@ -2887,7 +2958,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从 UIAF 文件导入 的本地化字符串。
+ /// Looks up a localized string similar to 从 UIAF 文件导入.
///
internal static string ViewPageAchievementImportFromFile {
get {
@@ -2896,7 +2967,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入 的本地化字符串。
+ /// Looks up a localized string similar to 导入.
///
internal static string ViewPageAchievementImportLabel {
get {
@@ -2905,7 +2976,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除当前存档 的本地化字符串。
+ /// Looks up a localized string similar to 删除当前存档.
///
internal static string ViewPageAchievementRemoveArchive {
get {
@@ -2914,7 +2985,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 搜索成就名称,描述或编号 的本地化字符串。
+ /// Looks up a localized string similar to 搜索成就名称,描述或编号.
///
internal static string ViewPageAchievementSearchPlaceholder {
get {
@@ -2923,7 +2994,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 优先未完成 的本地化字符串。
+ /// Looks up a localized string similar to 优先未完成.
///
internal static string ViewPageAchievementSortIncompletedItemsFirst {
get {
@@ -2932,7 +3003,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 活动公告 的本地化字符串。
+ /// Looks up a localized string similar to 活动公告.
///
internal static string ViewPageAnnouncementActivity {
get {
@@ -2941,7 +3012,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏公告 的本地化字符串。
+ /// Looks up a localized string similar to 游戏公告.
///
internal static string ViewPageAnnouncementGame {
get {
@@ -2950,7 +3021,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 圣遗物评分 的本地化字符串。
+ /// Looks up a localized string similar to 圣遗物评分.
///
internal static string ViewPageAvatarPropertyArtifactScore {
get {
@@ -2959,7 +3030,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 双暴评分 的本地化字符串。
+ /// Looks up a localized string similar to 双暴评分.
///
internal static string ViewPageAvatarPropertyCritScore {
get {
@@ -2968,7 +3039,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 尚未获取任何角色信息 的本地化字符串。
+ /// Looks up a localized string similar to 尚未获取任何角色信息.
///
internal static string ViewPageAvatarPropertyDefaultDescription {
get {
@@ -2977,7 +3048,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出图片 的本地化字符串。
+ /// Looks up a localized string similar to 导出图片.
///
internal static string ViewPageAvatarPropertyExportAsImage {
get {
@@ -2986,7 +3057,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色属性 的本地化字符串。
+ /// Looks up a localized string similar to 角色属性.
///
internal static string ViewPageAvatarPropertyHeader {
get {
@@ -2995,7 +3066,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 详细数据 的本地化字符串。
+ /// Looks up a localized string similar to 详细数据.
///
internal static string ViewPageAvatarPropertyPivotDetailHeader {
get {
@@ -3004,7 +3075,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 总览数据 的本地化字符串。
+ /// Looks up a localized string similar to 总览数据.
///
internal static string ViewPageAvatarPropertyPivotOverviewHeader {
get {
@@ -3013,7 +3084,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 初始词条 的本地化字符串。
+ /// Looks up a localized string similar to 初始词条.
///
internal static string ViewPageAvatarPropertyPrimaryProperties {
get {
@@ -3022,7 +3093,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步 的本地化字符串。
+ /// Looks up a localized string similar to 同步.
///
internal static string ViewPageAvatarPropertyRefreshAction {
get {
@@ -3031,7 +3102,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从 Enka API 同步 的本地化字符串。
+ /// Looks up a localized string similar to 从 Enka API 同步.
///
internal static string ViewPageAvatarPropertyRefreshFromEnkaApi {
get {
@@ -3040,7 +3111,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步游戏内角色展柜中的信息 的本地化字符串。
+ /// Looks up a localized string similar to 同步游戏内角色展柜中的信息.
///
internal static string ViewPageAvatarPropertyRefreshFromEnkaApiDescription {
get {
@@ -3049,7 +3120,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从米游社养成计算同步 的本地化字符串。
+ /// Looks up a localized string similar to 从米游社养成计算同步.
///
internal static string ViewPageAvatarPropertyRefreshFromHoyolabCalculate {
get {
@@ -3058,7 +3129,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步角色天赋信息 的本地化字符串。
+ /// Looks up a localized string similar to 同步角色天赋信息.
///
internal static string ViewPageAvatarPropertyRefreshFromHoyolabCalculateDescription {
get {
@@ -3067,7 +3138,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 从米游社我的角色同步 的本地化字符串。
+ /// Looks up a localized string similar to 从米游社我的角色同步.
///
internal static string ViewPageAvatarPropertyRefreshFromHoyolabGameRecord {
get {
@@ -3076,7 +3147,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步角色天赋外的大部分信息 的本地化字符串。
+ /// Looks up a localized string similar to 同步角色天赋外的大部分信息.
///
internal static string ViewPageAvatarPropertyRefreshFromHoyolabGameRecordDescription {
get {
@@ -3085,7 +3156,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 评分 的本地化字符串。
+ /// Looks up a localized string similar to 评分.
///
internal static string ViewPageAvatarPropertyScore {
get {
@@ -3094,7 +3165,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 强化词条 的本地化字符串。
+ /// Looks up a localized string similar to 强化词条.
///
internal static string ViewPageAvatarPropertySecondaryProperties {
get {
@@ -3103,7 +3174,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 养成计算 的本地化字符串。
+ /// Looks up a localized string similar to 养成计算.
///
internal static string ViewPageCultivateCalculate {
get {
@@ -3112,7 +3183,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新建 的本地化字符串。
+ /// Looks up a localized string similar to 新建.
///
internal static string ViewPageCultivationAddAction {
get {
@@ -3121,7 +3192,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新建计划 的本地化字符串。
+ /// Looks up a localized string similar to 新建计划.
///
internal static string ViewPageCultivationAddProject {
get {
@@ -3130,7 +3201,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新建 的本地化字符串。
+ /// Looks up a localized string similar to 新建.
///
internal static string ViewPageCultivationAddProjectAction {
get {
@@ -3139,7 +3210,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新建养成计划以继续 的本地化字符串。
+ /// Looks up a localized string similar to 新建养成计划以继续.
///
internal static string ViewPageCultivationAddProjectContinue {
get {
@@ -3148,7 +3219,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 稍后可以前往其他页面添加养成计划项 的本地化字符串。
+ /// Looks up a localized string similar to 稍后可以前往其他页面添加养成计划项.
///
internal static string ViewPageCultivationAddProjectDescription {
get {
@@ -3157,7 +3228,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加我的角色与武器到养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 添加我的角色与武器到养成计划.
///
internal static string ViewPageCultivationAvatarPropertyDescription {
get {
@@ -3166,7 +3237,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 养成物品 的本地化字符串。
+ /// Looks up a localized string similar to 养成物品.
///
internal static string ViewPageCultivationCultivateEntry {
get {
@@ -3175,7 +3246,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 背包物品 的本地化字符串。
+ /// Looks up a localized string similar to 背包物品.
///
internal static string ViewPageCultivationInventoryItem {
get {
@@ -3184,7 +3255,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 材料清单 的本地化字符串。
+ /// Looks up a localized string similar to 材料清单.
///
internal static string ViewPageCultivationMaterialList {
get {
@@ -3193,7 +3264,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 材料统计 的本地化字符串。
+ /// Looks up a localized string similar to 材料统计.
///
internal static string ViewPageCultivationMaterialStatistics {
get {
@@ -3202,7 +3273,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往 的本地化字符串。
+ /// Looks up a localized string similar to 前往.
///
internal static string ViewPageCultivationNavigateAction {
get {
@@ -3211,7 +3282,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除清单 的本地化字符串。
+ /// Looks up a localized string similar to 删除清单.
///
internal static string ViewPageCultivationRemoveEntry {
get {
@@ -3220,7 +3291,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除当前计划 的本地化字符串。
+ /// Looks up a localized string similar to 删除当前计划.
///
internal static string ViewPageCultivationRemoveProject {
get {
@@ -3229,7 +3300,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加任意角色到养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 添加任意角色到养成计划.
///
internal static string ViewPageCultivationWikiAvatarDescription {
get {
@@ -3238,7 +3309,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加任意武器到养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 添加任意武器到养成计划.
///
internal static string ViewPageCultivationWikiWeaponDescription {
get {
@@ -3247,7 +3318,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加角色 的本地化字符串。
+ /// Looks up a localized string similar to 添加角色.
///
internal static string ViewPageDailyNoteAddEntry {
get {
@@ -3256,7 +3327,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加角色以定时刷新 的本地化字符串。
+ /// Looks up a localized string similar to 添加角色以定时刷新.
///
internal static string ViewPageDailyNoteAddEntryHint {
get {
@@ -3265,7 +3336,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加 的本地化字符串。
+ /// Looks up a localized string similar to 添加.
///
internal static string ViewPageDailyNoteAddEntryToolTip {
get {
@@ -3274,7 +3345,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 通知 的本地化字符串。
+ /// Looks up a localized string similar to 通知.
///
internal static string ViewPageDailyNoteNotificationHeader {
get {
@@ -3283,7 +3354,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 通知设置 的本地化字符串。
+ /// Looks up a localized string similar to 通知设置.
///
internal static string ViewPageDailyNoteNotificationSetting {
get {
@@ -3292,7 +3363,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 立即刷新 的本地化字符串。
+ /// Looks up a localized string similar to 立即刷新.
///
internal static string ViewPageDailyNoteRefresh {
get {
@@ -3301,7 +3372,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新间隔时间 的本地化字符串。
+ /// Looks up a localized string similar to 刷新间隔时间.
///
internal static string ViewPageDailyNoteRefreshTime {
get {
@@ -3310,7 +3381,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 防止通知自动收入操作中心 的本地化字符串。
+ /// Looks up a localized string similar to 防止通知自动收入操作中心.
///
internal static string ViewPageDailyNoteReminderDescription {
get {
@@ -3319,7 +3390,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 提醒通知 的本地化字符串。
+ /// Looks up a localized string similar to 提醒通知.
///
internal static string ViewPageDailyNoteReminderHeader {
get {
@@ -3328,7 +3399,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 移除角色 的本地化字符串。
+ /// Looks up a localized string similar to 移除角色.
///
internal static string ViewPageDailyNoteRemoveToolTip {
get {
@@ -3337,7 +3408,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 本周已消耗减半次数 的本地化字符串。
+ /// Looks up a localized string similar to 本周已消耗减半次数.
///
internal static string ViewPageDailyNoteResinDiscountUsed {
get {
@@ -3346,7 +3417,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在我游玩原神时不通知我 的本地化字符串。
+ /// Looks up a localized string similar to 在我游玩原神时不通知我.
///
internal static string ViewPageDailyNoteSlientModeDescription {
get {
@@ -3355,7 +3426,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 免打扰模式 的本地化字符串。
+ /// Looks up a localized string similar to 免打扰模式.
///
internal static string ViewPageDailyNoteSlientModeHeader {
get {
@@ -3364,7 +3435,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 验证当前用户与角色 的本地化字符串。
+ /// Looks up a localized string similar to 验证当前用户与角色.
///
internal static string ViewPageDailyNoteVerify {
get {
@@ -3373,7 +3444,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 全量刷新 的本地化字符串。
+ /// Looks up a localized string similar to 全量刷新.
///
internal static string ViewPageGachaLogAggressiveRefresh {
get {
@@ -3382,7 +3453,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导出 的本地化字符串。
+ /// Looks up a localized string similar to 导出.
///
internal static string ViewPageGachaLogExportAction {
get {
@@ -3391,7 +3462,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 尚未获取任何祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 尚未获取任何祈愿记录.
///
internal static string ViewPageGachaLogHint {
get {
@@ -3400,7 +3471,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃云 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃云.
///
internal static string ViewPageGachaLogHutaoCloud {
get {
@@ -3409,7 +3480,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往爱发电购买相关服务 的本地化字符串。
+ /// Looks up a localized string similar to 前往爱发电购买相关服务.
///
internal static string ViewPageGachaLogHutaoCloudAfdianPurchaseDescription {
get {
@@ -3418,7 +3489,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 购买/续费云服务 的本地化字符串。
+ /// Looks up a localized string similar to 购买/续费云服务.
///
internal static string ViewPageGachaLogHutaoCloudAfdianPurchaseHeader {
get {
@@ -3427,7 +3498,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除此 Uid 的云端存档 的本地化字符串。
+ /// Looks up a localized string similar to 删除此 Uid 的云端存档.
///
internal static string ViewPageGachaLogHutaoCloudDelete {
get {
@@ -3436,7 +3507,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已注册为开发者,即使服务过期依旧能使用 的本地化字符串。
+ /// Looks up a localized string similar to 已注册为开发者,即使服务过期依旧能使用.
///
internal static string ViewPageGachaLogHutaoCloudDeveloperHint {
get {
@@ -3445,7 +3516,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃云服务时长不足 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃云服务时长不足.
///
internal static string ViewPageGachaLogHutaoCloudNotAllowed {
get {
@@ -3454,7 +3525,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 下载此 Uid 的云端存档 的本地化字符串。
+ /// Looks up a localized string similar to 下载此 Uid 的云端存档.
///
internal static string ViewPageGachaLogHutaoCloudRetrieve {
get {
@@ -3463,7 +3534,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 每期深渊首次上传可免费获得5天时长 的本地化字符串。
+ /// Looks up a localized string similar to 每期深渊首次上传可免费获得5天时长.
///
internal static string ViewPageGachaLogHutaoCloudSpiralAbyssActivityDescription {
get {
@@ -3472,7 +3543,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 上传深渊记录 的本地化字符串。
+ /// Looks up a localized string similar to 上传深渊记录.
///
internal static string ViewPageGachaLogHutaoCloudSpiralAbyssActivityHeader {
get {
@@ -3481,7 +3552,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 上传当前的祈愿存档 的本地化字符串。
+ /// Looks up a localized string similar to 上传当前的祈愿存档.
///
internal static string ViewPageGachaLogHutaoCloudUpload {
get {
@@ -3490,7 +3561,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入 的本地化字符串。
+ /// Looks up a localized string similar to 导入.
///
internal static string ViewPageGachaLogImportAction {
get {
@@ -3499,7 +3570,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入来自其它 App 的数据 的本地化字符串。
+ /// Looks up a localized string similar to 导入来自其它 App 的数据.
///
internal static string ViewPageGachaLogImportDescription {
get {
@@ -3508,7 +3579,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 导入 UIGF Json 的本地化字符串。
+ /// Looks up a localized string similar to 导入 UIGF Json.
///
internal static string ViewPageGachaLogImportHeader {
get {
@@ -3517,7 +3588,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 输入 的本地化字符串。
+ /// Looks up a localized string similar to 输入.
///
internal static string ViewPageGachaLogInputAction {
get {
@@ -3526,7 +3597,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新 的本地化字符串。
+ /// Looks up a localized string similar to 刷新.
///
internal static string ViewPageGachaLogRefresh {
get {
@@ -3535,7 +3606,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取 的本地化字符串。
+ /// Looks up a localized string similar to 获取.
///
internal static string ViewPageGachaLogRefreshAction {
get {
@@ -3544,7 +3615,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 手动输入 Url 的本地化字符串。
+ /// Looks up a localized string similar to 手动输入 Url.
///
internal static string ViewPageGachaLogRefreshBymanualInput {
get {
@@ -3553,7 +3624,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 使用由你提供的 Url 刷新祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 使用由你提供的 Url 刷新祈愿记录.
///
internal static string ViewPageGachaLogRefreshBymanualInputDescription {
get {
@@ -3562,7 +3633,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 SToken 刷新 的本地化字符串。
+ /// Looks up a localized string similar to SToken 刷新.
///
internal static string ViewPageGachaLogRefreshBySToken {
get {
@@ -3571,7 +3642,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 使用当前用户的 Cookie 信息刷新祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 使用当前用户的 Cookie 信息刷新祈愿记录.
///
internal static string ViewPageGachaLogRefreshBySTokenDescription {
get {
@@ -3580,7 +3651,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 网页缓存刷新 的本地化字符串。
+ /// Looks up a localized string similar to 网页缓存刷新.
///
internal static string ViewPageGachaLogRefreshByWebCache {
get {
@@ -3589,7 +3660,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 使用游戏内浏览器的网页缓存刷新祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 使用游戏内浏览器的网页缓存刷新祈愿记录.
///
internal static string ViewPageGachaLogRefreshByWebCacheDescription {
get {
@@ -3598,7 +3669,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除当前存档 的本地化字符串。
+ /// Looks up a localized string similar to 删除当前存档.
///
internal static string ViewPageGachaLogRemoveArchiveAction {
get {
@@ -3607,7 +3678,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色 的本地化字符串。
+ /// Looks up a localized string similar to 角色.
///
internal static string ViewPageGahcaLogPivotAvatar {
get {
@@ -3616,7 +3687,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 历史 的本地化字符串。
+ /// Looks up a localized string similar to 历史.
///
internal static string ViewPageGahcaLogPivotHistory {
get {
@@ -3625,7 +3696,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 总览 的本地化字符串。
+ /// Looks up a localized string similar to 总览.
///
internal static string ViewPageGahcaLogPivotOverview {
get {
@@ -3634,7 +3705,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 统计 的本地化字符串。
+ /// Looks up a localized string similar to 统计.
///
internal static string ViewPageGahcaLogPivotStatistics {
get {
@@ -3643,7 +3714,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 武器 的本地化字符串。
+ /// Looks up a localized string similar to 武器.
///
internal static string ViewPageGahcaLogPivotWeapon {
get {
@@ -3652,7 +3723,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃已经为你启动了 {0} 次游戏 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃已经为你启动了 {0} 次游戏.
///
internal static string ViewPageHomeGreetingTextCommon1 {
get {
@@ -3661,7 +3732,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 你已经启动了胡桃 {0} 次 的本地化字符串。
+ /// Looks up a localized string similar to 你已经启动了胡桃 {0} 次.
///
internal static string ViewPageHomeGreetingTextCommon2 {
get {
@@ -3670,7 +3741,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 旅行者,欢迎来到提瓦特大陆! 的本地化字符串。
+ /// Looks up a localized string similar to 旅行者,欢迎来到提瓦特大陆!.
///
internal static string ViewPageHomeGreetingTextDefault {
get {
@@ -3679,7 +3750,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 你说的对,但是《胡桃》是由 DGP Studio 自主研发的一款... 的本地化字符串。
+ /// Looks up a localized string similar to 你说的对,但是《胡桃》是由 DGP Studio 自主研发的一款....
///
internal static string ViewPageHomeGreetingTextEasterEgg {
get {
@@ -3688,7 +3759,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 呐,旅行者,这是你来到提瓦特大陆的第 {0} 天哦 的本地化字符串。
+ /// Looks up a localized string similar to 呐,旅行者,这是你来到提瓦特大陆的第 {0} 天哦.
///
internal static string ViewPageHomeGreetingTextEpic1 {
get {
@@ -3697,7 +3768,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置 的本地化字符串。
+ /// Looks up a localized string similar to 设置.
///
internal static string ViewPageHomeLaunchGameSettingAction {
get {
@@ -3706,7 +3777,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 详情 的本地化字符串。
+ /// Looks up a localized string similar to 详情.
///
internal static string ViewPageHutaoDatabaseOverview {
get {
@@ -3715,7 +3786,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色出场 的本地化字符串。
+ /// Looks up a localized string similar to 角色出场.
///
internal static string ViewPageHutaoDatabaseOverviewAvatarAppearanceRank {
get {
@@ -3724,7 +3795,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色持有 的本地化字符串。
+ /// Looks up a localized string similar to 角色持有.
///
internal static string ViewPageHutaoDatabaseOverviewAvatarConstellation {
get {
@@ -3733,7 +3804,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色使用 的本地化字符串。
+ /// Looks up a localized string similar to 角色使用.
///
internal static string ViewPageHutaoDatabaseOverviewAvatarUsageRank {
get {
@@ -3742,7 +3813,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 0 命 的本地化字符串。
+ /// Looks up a localized string similar to 0 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation0 {
get {
@@ -3751,7 +3822,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 1 命 的本地化字符串。
+ /// Looks up a localized string similar to 1 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation1 {
get {
@@ -3760,7 +3831,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 2 命 的本地化字符串。
+ /// Looks up a localized string similar to 2 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation2 {
get {
@@ -3769,7 +3840,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 3 命 的本地化字符串。
+ /// Looks up a localized string similar to 3 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation3 {
get {
@@ -3778,7 +3849,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 4 命 的本地化字符串。
+ /// Looks up a localized string similar to 4 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation4 {
get {
@@ -3787,7 +3858,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 5 命 的本地化字符串。
+ /// Looks up a localized string similar to 5 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation5 {
get {
@@ -3796,7 +3867,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 6 命 的本地化字符串。
+ /// Looks up a localized string similar to 6 命.
///
internal static string ViewPageHutaoDatabaseOverviewConstellation6 {
get {
@@ -3805,7 +3876,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色 的本地化字符串。
+ /// Looks up a localized string similar to 角色.
///
internal static string ViewPageHutaoDatabaseOverviewConstellationAvatar {
get {
@@ -3814,7 +3885,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 持有 的本地化字符串。
+ /// Looks up a localized string similar to 持有.
///
internal static string ViewPageHutaoDatabaseOverviewConstellationHolding {
get {
@@ -3823,7 +3894,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据收集统计 的本地化字符串。
+ /// Looks up a localized string similar to 数据收集统计.
///
internal static string ViewPageHutaoDatabaseOverviewDataCollect {
get {
@@ -3832,7 +3903,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 上传记录总数 的本地化字符串。
+ /// Looks up a localized string similar to 上传记录总数.
///
internal static string ViewPageHutaoDatabaseOverviewRecordTotal {
get {
@@ -3841,7 +3912,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 数据刷新时间 的本地化字符串。
+ /// Looks up a localized string similar to 数据刷新时间.
///
internal static string ViewPageHutaoDatabaseOverviewRefreshTime {
get {
@@ -3850,7 +3921,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 深渊数据统计 的本地化字符串。
+ /// Looks up a localized string similar to 深渊数据统计.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyss {
get {
@@ -3859,7 +3930,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 平均战斗次数 的本地化字符串。
+ /// Looks up a localized string similar to 平均战斗次数.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyssBattleAverage {
get {
@@ -3868,7 +3939,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 满星深渊记录 的本地化字符串。
+ /// Looks up a localized string similar to 满星深渊记录.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyssFullStar {
get {
@@ -3877,7 +3948,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 通关深渊记录 的本地化字符串。
+ /// Looks up a localized string similar to 通关深渊记录.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyssPassed {
get {
@@ -3886,7 +3957,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 平均获取渊星 的本地化字符串。
+ /// Looks up a localized string similar to 平均获取渊星.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyssStarAverage {
get {
@@ -3895,7 +3966,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 总计深渊记录 的本地化字符串。
+ /// Looks up a localized string similar to 总计深渊记录.
///
internal static string ViewPageHutaoDatabaseOverviewSpiralAbyssTotal {
get {
@@ -3904,7 +3975,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 队伍出场 的本地化字符串。
+ /// Looks up a localized string similar to 队伍出场.
///
internal static string ViewPageHutaoDatabaseOverviewTeamAppearance {
get {
@@ -3913,7 +3984,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 登录 的本地化字符串。
+ /// Looks up a localized string similar to 登录.
///
internal static string ViewPageHutaoPassportLoginHeader {
get {
@@ -3922,7 +3993,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请输入密码 的本地化字符串。
+ /// Looks up a localized string similar to 请输入密码.
///
internal static string ViewPageHutaoPassportPasswordHint {
get {
@@ -3931,7 +4002,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 至少需要 8 个字符 的本地化字符串。
+ /// Looks up a localized string similar to 至少需要 8 个字符.
///
internal static string ViewPageHutaoPassportPasswordRequirementHint {
get {
@@ -3940,7 +4011,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 注册 的本地化字符串。
+ /// Looks up a localized string similar to 注册.
///
internal static string ViewPageHutaoPassportRegisterHeader {
get {
@@ -3949,7 +4020,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重置密码 的本地化字符串。
+ /// Looks up a localized string similar to 重置密码.
///
internal static string ViewPageHutaoPassportResetPasswordHeader {
get {
@@ -3958,7 +4029,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请输入邮箱 的本地化字符串。
+ /// Looks up a localized string similar to 请输入邮箱.
///
internal static string ViewPageHutaoPassportUserNameHint {
get {
@@ -3967,7 +4038,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获取验证码 的本地化字符串。
+ /// Looks up a localized string similar to 获取验证码.
///
internal static string ViewPageHutaoPassportVerifyCodeAction {
get {
@@ -3976,7 +4047,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请输入验证码 的本地化字符串。
+ /// Looks up a localized string similar to 请输入验证码.
///
internal static string ViewPageHutaoPassportVerifyCodeHint {
get {
@@ -3985,7 +4056,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启动游戏 的本地化字符串。
+ /// Looks up a localized string similar to 启动游戏.
///
internal static string ViewPageLaunchGameAction {
get {
@@ -3994,7 +4065,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启用「启动游戏-高级功能」的任意功能 您需要在设置里解锁它 的本地化字符串。
+ /// Looks up a localized string similar to 启用「启动游戏-高级功能」的任意功能 您需要在设置里解锁它.
///
internal static string ViewPageLaunchGameAdvancedFeatureElevationHint {
get {
@@ -4003,7 +4074,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 高级功能 的本地化字符串。
+ /// Looks up a localized string similar to 高级功能.
///
internal static string ViewPageLaunchGameAdvanceHeader {
get {
@@ -4012,7 +4083,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 下面的功能十分危险,如果您不愿承担因此可能带来的后果,请勿启用! 的本地化字符串。
+ /// Looks up a localized string similar to 下面的功能十分危险,如果您不愿承担因此可能带来的后果,请勿启用!.
///
internal static string ViewPageLaunchGameAdvanceHint {
get {
@@ -4021,7 +4092,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 将窗口创建为弹出窗口,不带框架 的本地化字符串。
+ /// Looks up a localized string similar to 将窗口创建为弹出窗口,不带框架.
///
internal static string ViewPageLaunchGameAppearanceBorderlessDescription {
get {
@@ -4030,7 +4101,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无边框 的本地化字符串。
+ /// Looks up a localized string similar to 无边框.
///
internal static string ViewPageLaunchGameAppearanceBorderlessHeader {
get {
@@ -4039,7 +4110,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 与游戏内浏览器不兼容,切屏等操作也能使游戏闪退 的本地化字符串。
+ /// Looks up a localized string similar to 与游戏内浏览器不兼容,切屏等操作也能使游戏闪退.
///
internal static string ViewPageLaunchGameAppearanceExclusiveDescription {
get {
@@ -4048,7 +4119,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 独占全屏 的本地化字符串。
+ /// Looks up a localized string similar to 独占全屏.
///
internal static string ViewPageLaunchGameAppearanceExclusiveHeader {
get {
@@ -4057,7 +4128,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 覆盖默认的全屏状态 的本地化字符串。
+ /// Looks up a localized string similar to 覆盖默认的全屏状态.
///
internal static string ViewPageLaunchGameAppearanceFullscreenDescription {
get {
@@ -4066,7 +4137,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 全屏 的本地化字符串。
+ /// Looks up a localized string similar to 全屏.
///
internal static string ViewPageLaunchGameAppearanceFullscreenHeader {
get {
@@ -4075,7 +4146,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 外观 的本地化字符串。
+ /// Looks up a localized string similar to 外观.
///
internal static string ViewPageLaunchGameAppearanceHeader {
get {
@@ -4084,7 +4155,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 覆盖默认屏幕高度 的本地化字符串。
+ /// Looks up a localized string similar to 覆盖默认屏幕高度.
///
internal static string ViewPageLaunchGameAppearanceScreenHeightDescription {
get {
@@ -4093,7 +4164,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 高度 的本地化字符串。
+ /// Looks up a localized string similar to 高度.
///
internal static string ViewPageLaunchGameAppearanceScreenHeightHeader {
get {
@@ -4102,7 +4173,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 覆盖默认屏幕宽度 的本地化字符串。
+ /// Looks up a localized string similar to 覆盖默认屏幕宽度.
///
internal static string ViewPageLaunchGameAppearanceScreenWidthDescription {
get {
@@ -4111,7 +4182,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 宽度 的本地化字符串。
+ /// Looks up a localized string similar to 宽度.
///
internal static string ViewPageLaunchGameAppearanceScreenWidthHeader {
get {
@@ -4120,7 +4191,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 常规 的本地化字符串。
+ /// Looks up a localized string similar to 常规.
///
internal static string ViewPageLaunchGameCommonHeader {
get {
@@ -4129,7 +4200,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 所有选项仅会在启动游戏成功后保存 的本地化字符串。
+ /// Looks up a localized string similar to 所有选项仅会在启动游戏成功后保存.
///
internal static string ViewPageLaunchGameConfigurationSaveHint {
get {
@@ -4138,7 +4209,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 某些选项处于禁用状态,它们只在管理员模式下生效! 的本地化字符串。
+ /// Looks up a localized string similar to 某些选项处于禁用状态,它们只在管理员模式下生效!.
///
internal static string ViewPageLaunchGameElevationHint {
get {
@@ -4147,7 +4218,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在指定的显示器上运行 的本地化字符串。
+ /// Looks up a localized string similar to 在指定的显示器上运行.
///
internal static string ViewPageLaunchGameMonitorsDescription {
get {
@@ -4156,7 +4227,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 显示器 的本地化字符串。
+ /// Looks up a localized string similar to 显示器.
///
internal static string ViewPageLaunchGameMonitorsHeader {
get {
@@ -4165,7 +4236,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同时运行多个游戏客户端 的本地化字符串。
+ /// Looks up a localized string similar to 同时运行多个游戏客户端.
///
internal static string ViewPageLaunchGameMultipleInstancesDescription {
get {
@@ -4174,7 +4245,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 多客户端 的本地化字符串。
+ /// Looks up a localized string similar to 多客户端.
///
internal static string ViewPageLaunchGameMultipleInstancesHeader {
get {
@@ -4183,7 +4254,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏选项 的本地化字符串。
+ /// Looks up a localized string similar to 游戏选项.
///
internal static string ViewPageLaunchGameOptionsHeader {
get {
@@ -4192,7 +4263,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 增量包 的本地化字符串。
+ /// Looks up a localized string similar to 增量包.
///
internal static string ViewPageLaunchGameResourceDiffHeader {
get {
@@ -4201,7 +4272,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 资源下载 的本地化字符串。
+ /// Looks up a localized string similar to 资源下载.
///
internal static string ViewPageLaunchGameResourceHeader {
get {
@@ -4210,7 +4281,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 客户端 的本地化字符串。
+ /// Looks up a localized string similar to 客户端.
///
internal static string ViewPageLaunchGameResourceLatestHeader {
get {
@@ -4219,7 +4290,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 预下载 的本地化字符串。
+ /// Looks up a localized string similar to 预下载.
///
internal static string ViewPageLaunchGameResourcePreDownloadHeader {
get {
@@ -4228,7 +4299,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在游戏时可以随时调整 的本地化字符串。
+ /// Looks up a localized string similar to 在游戏时可以随时调整.
///
internal static string ViewPageLaunchGameSetFpsDescription {
get {
@@ -4237,7 +4308,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置帧率上限 的本地化字符串。
+ /// Looks up a localized string similar to 设置帧率上限.
///
internal static string ViewPageLaunchGameSetFpsHeader {
get {
@@ -4246,7 +4317,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 该账号尚未绑定 UID 的本地化字符串。
+ /// Looks up a localized string similar to 该账号尚未绑定 UID.
///
internal static string ViewPageLaunchGameSwitchAccountAttachUidNull {
get {
@@ -4255,7 +4326,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 绑定当前用户的角色 的本地化字符串。
+ /// Looks up a localized string similar to 绑定当前用户的角色.
///
internal static string ViewPageLaunchGameSwitchAccountAttachUidToolTip {
get {
@@ -4264,7 +4335,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在游戏内切换账号,网络环境发生变化后需要重新手动检测 的本地化字符串。
+ /// Looks up a localized string similar to 在游戏内切换账号,网络环境发生变化后需要重新手动检测.
///
internal static string ViewPageLaunchGameSwitchAccountDescription {
get {
@@ -4273,7 +4344,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 检测 的本地化字符串。
+ /// Looks up a localized string similar to 检测.
///
internal static string ViewPageLaunchGameSwitchAccountDetectAction {
get {
@@ -4282,7 +4353,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 检测账号 的本地化字符串。
+ /// Looks up a localized string similar to 检测账号.
///
internal static string ViewPageLaunchGameSwitchAccountHeader {
get {
@@ -4291,7 +4362,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除 的本地化字符串。
+ /// Looks up a localized string similar to 删除.
///
internal static string ViewPageLaunchGameSwitchAccountRemoveToolTip {
get {
@@ -4300,7 +4371,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重命名 的本地化字符串。
+ /// Looks up a localized string similar to 重命名.
///
internal static string ViewPageLaunchGameSwitchAccountRenameToolTip {
get {
@@ -4309,7 +4380,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 切换游戏服务器(国服/渠道服/国际服) 的本地化字符串。
+ /// Looks up a localized string similar to 切换游戏服务器(国服/渠道服/国际服).
///
internal static string ViewPageLaunchGameSwitchSchemeDescription {
get {
@@ -4318,7 +4389,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 服务器 的本地化字符串。
+ /// Looks up a localized string similar to 服务器.
///
internal static string ViewPageLaunchGameSwitchSchemeHeader {
get {
@@ -4327,7 +4398,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 切换国际服功能会在游戏截图文件夹内创建缓存文件夹 的本地化字符串。
+ /// Looks up a localized string similar to 切换国际服功能会在游戏截图文件夹内创建缓存文件夹.
///
internal static string ViewPageLaunchGameSwitchSchemeHint {
get {
@@ -4336,7 +4407,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请在游戏内关闭垂直同步选项,需要高性能的显卡以支持更高的帧率 的本地化字符串。
+ /// Looks up a localized string similar to 请在游戏内关闭垂直同步选项,需要高性能的显卡以支持更高的帧率.
///
internal static string ViewPageLaunchGameUnlockFpsDescription {
get {
@@ -4345,7 +4416,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 解锁帧率限制 的本地化字符串。
+ /// Looks up a localized string similar to 解锁帧率限制.
///
internal static string ViewPageLaunchGameUnlockFpsHeader {
get {
@@ -4354,7 +4425,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 禁用 的本地化字符串。
+ /// Looks up a localized string similar to 禁用.
///
internal static string ViewPageLaunchGameUnlockFpsOff {
get {
@@ -4363,7 +4434,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启用 的本地化字符串。
+ /// Looks up a localized string similar to 启用.
///
internal static string ViewPageLaunchGameUnlockFpsOn {
get {
@@ -4372,7 +4443,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请输入你的 HoYoLab Uid 的本地化字符串。
+ /// Looks up a localized string similar to 请输入你的 HoYoLab Uid.
///
internal static string ViewPageLoginHoyoverseUserHint {
get {
@@ -4381,7 +4452,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 我已登录 的本地化字符串。
+ /// Looks up a localized string similar to 我已登录.
///
internal static string ViewPageLoginMihoyoUserLoggedInAction {
get {
@@ -4390,7 +4461,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在下方登录米哈游通行证 的本地化字符串。
+ /// Looks up a localized string similar to 在下方登录米哈游通行证.
///
internal static string ViewPageLoginMihoyoUserTitle {
get {
@@ -4399,7 +4470,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 打开截图文件夹 的本地化字符串。
+ /// Looks up a localized string similar to 打开截图文件夹.
///
internal static string ViewPageOpenScreenshotFolderAction {
get {
@@ -4408,7 +4479,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 关于 胡桃 的本地化字符串。
+ /// Looks up a localized string similar to 关于 胡桃.
///
internal static string ViewPageSettingAboutHeader {
get {
@@ -4417,7 +4488,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 外观 的本地化字符串。
+ /// Looks up a localized string similar to 外观.
///
internal static string ViewPageSettingApperanceHeader {
get {
@@ -4426,7 +4497,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置呈现语言 的本地化字符串。
+ /// Looks up a localized string similar to 设置呈现语言.
///
internal static string ViewPageSettingApperanceLanguageDescription {
get {
@@ -4435,7 +4506,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 语言 的本地化字符串。
+ /// Looks up a localized string similar to 语言.
///
internal static string ViewPageSettingApperanceLanguageHeader {
get {
@@ -4444,7 +4515,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 更改窗体的背景材质 的本地化字符串。
+ /// Looks up a localized string similar to 更改窗体的背景材质.
///
internal static string ViewPageSettingBackdropMaterialDescription {
get {
@@ -4453,7 +4524,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 背景材质 的本地化字符串。
+ /// Looks up a localized string similar to 背景材质.
///
internal static string ViewPageSettingBackdropMaterialHeader {
get {
@@ -4462,7 +4533,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 图片缓存 在此处存放 的本地化字符串。
+ /// Looks up a localized string similar to 图片缓存 在此处存放.
///
internal static string ViewPageSettingCacheFolderDescription {
get {
@@ -4471,7 +4542,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 打开 缓存 文件夹 的本地化字符串。
+ /// Looks up a localized string similar to 打开 缓存 文件夹.
///
internal static string ViewPageSettingCacheFolderHeader {
get {
@@ -4480,7 +4551,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 复制 的本地化字符串。
+ /// Looks up a localized string similar to 复制.
///
internal static string ViewPageSettingCopyDeviceIdAction {
get {
@@ -4489,7 +4560,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 执行 的本地化字符串。
+ /// Looks up a localized string similar to 执行.
///
internal static string ViewPageSettingDangerousAction {
get {
@@ -4498,7 +4569,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 危险功能 的本地化字符串。
+ /// Looks up a localized string similar to 危险功能.
///
internal static string ViewPageSettingDangerousHeader {
get {
@@ -4507,7 +4578,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 除非开发人员明确要求你这么做,否则不应尝试执行下方的操作! 的本地化字符串。
+ /// Looks up a localized string similar to 除非开发人员明确要求你这么做,否则不应尝试执行下方的操作!.
///
internal static string ViewPageSettingDangerousHint {
get {
@@ -4516,7 +4587,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户数据/元数据 在此处存放 的本地化字符串。
+ /// Looks up a localized string similar to 用户数据/元数据 在此处存放.
///
internal static string ViewPageSettingDataFolderDescription {
get {
@@ -4525,7 +4596,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 打开 数据 文件夹 的本地化字符串。
+ /// Looks up a localized string similar to 打开 数据 文件夹.
///
internal static string ViewPageSettingDataFolderHeader {
get {
@@ -4534,7 +4605,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除 的本地化字符串。
+ /// Looks up a localized string similar to 删除.
///
internal static string ViewPageSettingDeleteCacheAction {
get {
@@ -4543,7 +4614,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 若祈愿记录缓存刷新频繁提示验证密钥过期,可以尝试此操作 的本地化字符串。
+ /// Looks up a localized string similar to 若祈愿记录缓存刷新频繁提示验证密钥过期,可以尝试此操作.
///
internal static string ViewPageSettingDeleteCacheDescription {
get {
@@ -4552,7 +4623,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除游戏内网页缓存 的本地化字符串。
+ /// Looks up a localized string similar to 删除游戏内网页缓存.
///
internal static string ViewPageSettingDeleteCacheHeader {
get {
@@ -4561,7 +4632,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除注册的计划任务,卸载前务必点击此项 的本地化字符串。
+ /// Looks up a localized string similar to 删除注册的计划任务,卸载前务必点击此项.
///
internal static string ViewPageSettingDeleteTaskDescription {
get {
@@ -4570,7 +4641,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除所有计划任务 的本地化字符串。
+ /// Looks up a localized string similar to 删除所有计划任务.
///
internal static string ViewPageSettingDeleteTaskHeader {
get {
@@ -4579,7 +4650,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 直接删除用户表的所有记录,用于修复特定的账号冲突问题 的本地化字符串。
+ /// Looks up a localized string similar to 直接删除用户表的所有记录,用于修复特定的账号冲突问题.
///
internal static string ViewPageSettingDeleteUserDescription {
get {
@@ -4588,7 +4659,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 删除所有用户 的本地化字符串。
+ /// Looks up a localized string similar to 删除所有用户.
///
internal static string ViewPageSettingDeleteUserHeader {
get {
@@ -4597,7 +4668,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设备 ID 的本地化字符串。
+ /// Looks up a localized string similar to 设备 ID.
///
internal static string ViewPageSettingDeviceIdHeader {
get {
@@ -4606,7 +4677,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在祈愿记录页面显示或隐藏无记录的历史祈愿活动 的本地化字符串。
+ /// Looks up a localized string similar to 在祈愿记录页面显示或隐藏无记录的历史祈愿活动.
///
internal static string ViewPageSettingEmptyHistoryVisibleDescription {
get {
@@ -4615,7 +4686,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无记录的历史祈愿活动 的本地化字符串。
+ /// Looks up a localized string similar to 无记录的历史祈愿活动.
///
internal static string ViewPageSettingEmptyHistoryVisibleHeader {
get {
@@ -4624,7 +4695,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 隐藏 的本地化字符串。
+ /// Looks up a localized string similar to 隐藏.
///
internal static string ViewPageSettingEmptyHistoryVisibleOff {
get {
@@ -4633,7 +4704,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 显示 的本地化字符串。
+ /// Looks up a localized string similar to 显示.
///
internal static string ViewPageSettingEmptyHistoryVisibleOn {
get {
@@ -4642,7 +4713,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 您解锁了含有违反原神服务条款风险的「启动游戏-高级功能」,将自行承担任何不良后果。 的本地化字符串。
+ /// Looks up a localized string similar to 您解锁了含有违反原神服务条款风险的「启动游戏-高级功能」,将自行承担任何不良后果。.
///
internal static string ViewPageSettingFeaturesDangerousHint {
get {
@@ -4651,7 +4722,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 Github 上反馈的问题会优先处理 的本地化字符串。
+ /// Looks up a localized string similar to Github 上反馈的问题会优先处理.
///
internal static string ViewPageSettingFeedbackDescription {
get {
@@ -4660,7 +4731,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 反馈 的本地化字符串。
+ /// Looks up a localized string similar to 反馈.
///
internal static string ViewPageSettingFeedbackHeader {
get {
@@ -4669,7 +4740,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往反馈 的本地化字符串。
+ /// Looks up a localized string similar to 前往反馈.
///
internal static string ViewPageSettingFeedbackNavigate {
get {
@@ -4678,7 +4749,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 祈愿记录 的本地化字符串。
+ /// Looks up a localized string similar to 祈愿记录.
///
internal static string ViewPageSettingGachaLogHeader {
get {
@@ -4687,7 +4758,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏 的本地化字符串。
+ /// Looks up a localized string similar to 游戏.
///
internal static string ViewPageSettingGameHeader {
get {
@@ -4696,7 +4767,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 胡桃账号 的本地化字符串。
+ /// Looks up a localized string similar to 胡桃账号.
///
internal static string ViewPageSettingHutaoPassportHeader {
get {
@@ -4705,7 +4776,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 在完整阅读原神和胡桃工具箱用户协议后,我选择启用「启动游戏-高级功能」 的本地化字符串。
+ /// Looks up a localized string similar to 在完整阅读原神和胡桃工具箱用户协议后,我选择启用「启动游戏-高级功能」.
///
internal static string ViewPageSettingIsAdvancedLaunchOptionsEnabledDescription {
get {
@@ -4714,7 +4785,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 启动高级功能 的本地化字符串。
+ /// Looks up a localized string similar to 启动高级功能.
///
internal static string ViewPageSettingIsAdvancedLaunchOptionsEnabledHeader {
get {
@@ -4723,7 +4794,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 相关链接 的本地化字符串。
+ /// Looks up a localized string similar to 相关链接.
///
internal static string ViewPageSettingLinks {
get {
@@ -4732,7 +4803,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往官网 的本地化字符串。
+ /// Looks up a localized string similar to 前往官网.
///
internal static string ViewPageSettingOfficialSiteNavigate {
get {
@@ -4741,7 +4812,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重置 的本地化字符串。
+ /// Looks up a localized string similar to 重置.
///
internal static string ViewPageSettingResetAction {
get {
@@ -4750,7 +4821,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 下次启动时会重新下载所有图像资源 的本地化字符串。
+ /// Looks up a localized string similar to 下次启动时会重新下载所有图像资源.
///
internal static string ViewPageSettingResetStaticResourceDescription {
get {
@@ -4759,7 +4830,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重置图片资源 的本地化字符串。
+ /// Looks up a localized string similar to 重置图片资源.
///
internal static string ViewPageSettingResetStaticResourceHeader {
get {
@@ -4768,7 +4839,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 重置成功 的本地化字符串。
+ /// Looks up a localized string similar to 重置成功.
///
internal static string ViewPageSettingResetSuccessMessage {
get {
@@ -4777,7 +4848,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 更改目录后需要手动移动目录内的数据,否则会重新创建用户数据 的本地化字符串。
+ /// Looks up a localized string similar to 更改目录后需要手动移动目录内的数据,否则会重新创建用户数据.
///
internal static string ViewPageSettingSetDataFolderDescription {
get {
@@ -4786,7 +4857,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 更改数据目录 的本地化字符串。
+ /// Looks up a localized string similar to 更改数据目录.
///
internal static string ViewPageSettingSetDataFolderHeader {
get {
@@ -4795,7 +4866,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置路径 的本地化字符串。
+ /// Looks up a localized string similar to 设置路径.
///
internal static string ViewPageSettingSetGamePathAction {
get {
@@ -4804,7 +4875,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏路径 的本地化字符串。
+ /// Looks up a localized string similar to 游戏路径.
///
internal static string ViewPageSettingSetGamePathHeader {
get {
@@ -4813,7 +4884,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 设置游戏路径时,请选择游戏本体(YuanShen.exe 或 GenshinImpact.exe)而不是启动器(launcher.exe) 的本地化字符串。
+ /// Looks up a localized string similar to 设置游戏路径时,请选择游戏本体(YuanShen.exe 或 GenshinImpact.exe)而不是启动器(launcher.exe).
///
internal static string ViewPageSettingSetGamePathHint {
get {
@@ -4822,7 +4893,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 赞助我们 的本地化字符串。
+ /// Looks up a localized string similar to 赞助我们.
///
internal static string ViewPageSettingSponsorNavigate {
get {
@@ -4831,7 +4902,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 存储空间 的本地化字符串。
+ /// Looks up a localized string similar to 存储空间.
///
internal static string ViewPageSettingStorageHeader {
get {
@@ -4840,7 +4911,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 打开 的本地化字符串。
+ /// Looks up a localized string similar to 打开.
///
internal static string ViewPageSettingStorageOpenAction {
get {
@@ -4849,7 +4920,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 更改 的本地化字符串。
+ /// Looks up a localized string similar to 更改.
///
internal static string ViewPageSettingStorageSetAction {
get {
@@ -4858,7 +4929,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 贡献翻译 的本地化字符串。
+ /// Looks up a localized string similar to 贡献翻译.
///
internal static string ViewPageSettingTranslateNavigate {
get {
@@ -4867,7 +4938,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往商店 的本地化字符串。
+ /// Looks up a localized string similar to 前往商店.
///
internal static string ViewPageSettingUpdateCheckAction {
get {
@@ -4876,7 +4947,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 前往微软商店查看 的本地化字符串。
+ /// Looks up a localized string similar to 前往微软商店查看.
///
internal static string ViewPageSettingUpdateCheckDescription {
get {
@@ -4885,7 +4956,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 检查更新 的本地化字符串。
+ /// Looks up a localized string similar to 检查更新.
///
internal static string ViewPageSettingUpdateCheckHeader {
get {
@@ -4894,7 +4965,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 Webview2 运行时 的本地化字符串。
+ /// Looks up a localized string similar to Webview2 运行时.
///
internal static string ViewPageSettingWebview2Header {
get {
@@ -4903,7 +4974,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 搭配圣遗物 的本地化字符串。
+ /// Looks up a localized string similar to 搭配圣遗物.
///
internal static string ViewPageWiKiAvatarArtifactSetCombinationHeader {
get {
@@ -4912,7 +4983,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 养成材料 的本地化字符串。
+ /// Looks up a localized string similar to 养成材料.
///
internal static string ViewPageWiKiAvatarAscensionMaterialsHeader {
get {
@@ -4921,7 +4992,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 筛选角色 的本地化字符串。
+ /// Looks up a localized string similar to 筛选角色.
///
internal static string ViewPageWiKiAvatarAutoSuggestBoxPlaceHolder {
get {
@@ -4930,7 +5001,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 汉语 CV 的本地化字符串。
+ /// Looks up a localized string similar to 汉语 CV.
///
internal static string ViewPageWiKiAvatarChineseCVNameTitle {
get {
@@ -4939,7 +5010,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 命之座 的本地化字符串。
+ /// Looks up a localized string similar to 命之座.
///
internal static string ViewPageWiKiAvatarConstellationNameTitle {
get {
@@ -4948,7 +5019,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 衣装 的本地化字符串。
+ /// Looks up a localized string similar to 衣装.
///
internal static string ViewPageWiKiAvatarCostumeHeader {
get {
@@ -4957,7 +5028,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 生日 的本地化字符串。
+ /// Looks up a localized string similar to 生日.
///
internal static string ViewPageWiKiAvatarDateofBirthTitle {
get {
@@ -4966,7 +5037,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 英语 CV 的本地化字符串。
+ /// Looks up a localized string similar to 英语 CV.
///
internal static string ViewPageWiKiAvatarEnglishCVNameTitle {
get {
@@ -4975,7 +5046,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 料理 的本地化字符串。
+ /// Looks up a localized string similar to 料理.
///
internal static string ViewPageWiKiAvatarFoodHeader {
get {
@@ -4984,7 +5055,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 日语 CV 的本地化字符串。
+ /// Looks up a localized string similar to 日语 CV.
///
internal static string ViewPageWiKiAvatarJapaneseCVNameTitle {
get {
@@ -4993,7 +5064,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 韩语 CV 的本地化字符串。
+ /// Looks up a localized string similar to 韩语 CV.
///
internal static string ViewPageWiKiAvatarKoreanCVNameTitle {
get {
@@ -5002,7 +5073,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 其它 的本地化字符串。
+ /// Looks up a localized string similar to 其它.
///
internal static string ViewPageWiKiAvatarMiscHeader {
get {
@@ -5011,7 +5082,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 所属 的本地化字符串。
+ /// Looks up a localized string similar to 所属.
///
internal static string ViewPageWiKiAvatarOccupationNameTitle {
get {
@@ -5020,7 +5091,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 原料理 的本地化字符串。
+ /// Looks up a localized string similar to 原料理.
///
internal static string ViewPageWiKiAvatarOriginalFoodTitle {
get {
@@ -5029,7 +5100,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 资料 的本地化字符串。
+ /// Looks up a localized string similar to 资料.
///
internal static string ViewPageWiKiAvatarQuotesHeader {
get {
@@ -5038,7 +5109,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 特殊料理 的本地化字符串。
+ /// Looks up a localized string similar to 特殊料理.
///
internal static string ViewPageWiKiAvatarSpecialFoodTitle {
get {
@@ -5047,7 +5118,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 故事 的本地化字符串。
+ /// Looks up a localized string similar to 故事.
///
internal static string ViewPageWiKiAvatarStoriesHeader {
get {
@@ -5056,7 +5127,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 天赋 的本地化字符串。
+ /// Looks up a localized string similar to 天赋.
///
internal static string ViewPageWiKiAvatarTanlentHeader {
get {
@@ -5065,7 +5136,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 搭配角色 的本地化字符串。
+ /// Looks up a localized string similar to 搭配角色.
///
internal static string ViewPageWiKiAvatarTeamCombinationHeader {
get {
@@ -5074,7 +5145,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 搭配武器 的本地化字符串。
+ /// Looks up a localized string similar to 搭配武器.
///
internal static string ViewPageWiKiAvatarWeaponCombinationHeader {
get {
@@ -5083,7 +5154,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 添加到养成计划 的本地化字符串。
+ /// Looks up a localized string similar to 添加到养成计划.
///
internal static string ViewPageWiKiGeneralAddToDevPlanButtonLabel {
get {
@@ -5092,7 +5163,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 筛选怪物 的本地化字符串。
+ /// Looks up a localized string similar to 筛选怪物.
///
internal static string ViewPageWiKiMonsterAutoSuggestBoxPlaceHolder {
get {
@@ -5101,7 +5172,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 掉落物品 的本地化字符串。
+ /// Looks up a localized string similar to 掉落物品.
///
internal static string ViewPageWikiMonsterDropItems {
get {
@@ -5110,7 +5181,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 突破后 的本地化字符串。
+ /// Looks up a localized string similar to 突破后.
///
internal static string ViewPageWiKiWeaponAfterAscensionTitle {
get {
@@ -5119,7 +5190,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 筛选武器 的本地化字符串。
+ /// Looks up a localized string similar to 筛选武器.
///
internal static string ViewPageWiKiWeaponAutoSuggestBoxPlaceHolder {
get {
@@ -5128,7 +5199,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 突破前 的本地化字符串。
+ /// Looks up a localized string similar to 突破前.
///
internal static string ViewPageWiKiWeaponBeforeAscensionTitle {
get {
@@ -5137,7 +5208,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 登录失败,请重新登录 的本地化字符串。
+ /// Looks up a localized string similar to 登录失败,请重新登录.
///
internal static string ViewServiceHutaoUserLoginFailHint {
get {
@@ -5146,7 +5217,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 立即登录或注册 的本地化字符串。
+ /// Looks up a localized string similar to 立即登录或注册.
///
internal static string ViewServiceHutaoUserLoginOrRegisterHint {
get {
@@ -5155,7 +5226,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 战斗数据 的本地化字符串。
+ /// Looks up a localized string similar to 战斗数据.
///
internal static string ViewSpiralAbyssBattleHeader {
get {
@@ -5164,7 +5235,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 战斗次数 的本地化字符串。
+ /// Looks up a localized string similar to 战斗次数.
///
internal static string ViewSpiralAbyssBattleTimes {
get {
@@ -5173,7 +5244,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最强一击 的本地化字符串。
+ /// Looks up a localized string similar to 最强一击.
///
internal static string ViewSpiralAbyssDamage {
get {
@@ -5182,7 +5253,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 尚未获取任何挑战记录 的本地化字符串。
+ /// Looks up a localized string similar to 尚未获取任何挑战记录.
///
internal static string ViewSpiralAbyssDefaultDescription {
get {
@@ -5191,7 +5262,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最多击破 的本地化字符串。
+ /// Looks up a localized string similar to 最多击破.
///
internal static string ViewSpiralAbyssDefeat {
get {
@@ -5200,7 +5271,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 详细数据 的本地化字符串。
+ /// Looks up a localized string similar to 详细数据.
///
internal static string ViewSpiralAbyssDetail {
get {
@@ -5209,7 +5280,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元素爆发 的本地化字符串。
+ /// Looks up a localized string similar to 元素爆发.
///
internal static string ViewSpiralAbyssEnergySkill {
get {
@@ -5218,7 +5289,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 深渊记录 的本地化字符串。
+ /// Looks up a localized string similar to 深渊记录.
///
internal static string ViewSpiralAbyssHeader {
get {
@@ -5227,7 +5298,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最深抵达 的本地化字符串。
+ /// Looks up a localized string similar to 最深抵达.
///
internal static string ViewSpiralAbyssMaxFloor {
get {
@@ -5236,7 +5307,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 元素战技 的本地化字符串。
+ /// Looks up a localized string similar to 元素战技.
///
internal static string ViewSpiralAbyssNormalSkill {
get {
@@ -5245,7 +5316,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新数据 的本地化字符串。
+ /// Looks up a localized string similar to 刷新数据.
///
internal static string ViewSpiralAbyssRefresh {
get {
@@ -5254,7 +5325,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新 的本地化字符串。
+ /// Looks up a localized string similar to 刷新.
///
internal static string ViewSpiralAbyssRefreshAction {
get {
@@ -5263,7 +5334,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 同步米游社的深渊挑战记录 的本地化字符串。
+ /// Looks up a localized string similar to 同步米游社的深渊挑战记录.
///
internal static string ViewSpiralAbyssRefreshDescription {
get {
@@ -5272,7 +5343,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 出战次数 的本地化字符串。
+ /// Looks up a localized string similar to 出战次数.
///
internal static string ViewSpiralAbyssReveal {
get {
@@ -5281,7 +5352,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 统计数据 的本地化字符串。
+ /// Looks up a localized string similar to 统计数据.
///
internal static string ViewSpiralAbyssStatistics {
get {
@@ -5290,7 +5361,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 最多承伤 的本地化字符串。
+ /// Looks up a localized string similar to 最多承伤.
///
internal static string ViewSpiralAbyssTakeDamage {
get {
@@ -5299,7 +5370,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 获得渊星 的本地化字符串。
+ /// Looks up a localized string similar to 获得渊星.
///
internal static string ViewSpiralAbyssTotalStar {
get {
@@ -5308,7 +5379,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 上传数据 的本地化字符串。
+ /// Looks up a localized string similar to 上传数据.
///
internal static string ViewSpiralAbyssUploadRecord {
get {
@@ -5317,7 +5388,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 工具 的本地化字符串。
+ /// Looks up a localized string similar to 工具.
///
internal static string ViewToolHeader {
get {
@@ -5326,7 +5397,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 米游社 的本地化字符串。
+ /// Looks up a localized string similar to 米游社.
///
internal static string ViewUserCookieOperation {
get {
@@ -5335,7 +5406,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 HoYoLab 的本地化字符串。
+ /// Looks up a localized string similar to HoYoLab.
///
internal static string ViewUserCookieOperation2 {
get {
@@ -5344,7 +5415,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 网页登录 的本地化字符串。
+ /// Looks up a localized string similar to 网页登录.
///
internal static string ViewUserCookieOperationLoginMihoyoUserAction {
get {
@@ -5353,7 +5424,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 手动输入 的本地化字符串。
+ /// Looks up a localized string similar to 手动输入.
///
internal static string ViewUserCookieOperationManualInputAction {
get {
@@ -5362,7 +5433,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新 Cookie 的本地化字符串。
+ /// Looks up a localized string similar to 刷新 Cookie.
///
internal static string ViewUserCookieOperationRefreshCookieAction {
get {
@@ -5371,7 +5442,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 复制 Cookie 的本地化字符串。
+ /// Looks up a localized string similar to 复制 Cookie.
///
internal static string ViewUserCopyCookieAction {
get {
@@ -5380,7 +5451,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请先登录 的本地化字符串。
+ /// Looks up a localized string similar to 请先登录.
///
internal static string ViewUserDefaultDescription {
get {
@@ -5389,7 +5460,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新 CookieToken 成功 的本地化字符串。
+ /// Looks up a localized string similar to 刷新 CookieToken 成功.
///
internal static string ViewUserRefreshCookieTokenSuccess {
get {
@@ -5398,7 +5469,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 刷新 CookieToken 失败 的本地化字符串。
+ /// Looks up a localized string similar to 刷新 CookieToken 失败.
///
internal static string ViewUserRefreshCookieTokenWarning {
get {
@@ -5407,7 +5478,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 移除用户 的本地化字符串。
+ /// Looks up a localized string similar to 移除用户.
///
internal static string ViewUserRemoveAction {
get {
@@ -5416,7 +5487,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色 的本地化字符串。
+ /// Looks up a localized string similar to 角色.
///
internal static string ViewUserRole {
get {
@@ -5425,7 +5496,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 用户 的本地化字符串。
+ /// Looks up a localized string similar to 用户.
///
internal static string ViewUserUser {
get {
@@ -5434,7 +5505,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 我们将为你下载最基本的图像资源 的本地化字符串。
+ /// Looks up a localized string similar to 我们将为你下载最基本的图像资源.
///
internal static string ViewWelcomeBase {
get {
@@ -5443,7 +5514,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 你可以继续使用电脑,丝毫不受影响 的本地化字符串。
+ /// Looks up a localized string similar to 你可以继续使用电脑,丝毫不受影响.
///
internal static string ViewWelcomeBody {
get {
@@ -5452,7 +5523,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请勿关闭应用程序 的本地化字符串。
+ /// Looks up a localized string similar to 请勿关闭应用程序.
///
internal static string ViewWelcomeSubtitle {
get {
@@ -5461,7 +5532,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 欢迎使用 胡桃 的本地化字符串。
+ /// Looks up a localized string similar to 欢迎使用 胡桃.
///
internal static string ViewWelcomeTitle {
get {
@@ -5470,7 +5541,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色资料 的本地化字符串。
+ /// Looks up a localized string similar to 角色资料.
///
internal static string ViewWikiAvatarHeader {
get {
@@ -5479,7 +5550,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 怪物资料 的本地化字符串。
+ /// Looks up a localized string similar to 怪物资料.
///
internal static string ViewWikiMonsterHeader {
get {
@@ -5488,7 +5559,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 武器资料 的本地化字符串。
+ /// Looks up a localized string similar to 武器资料.
///
internal static string ViewWikiWeaponHeader {
get {
@@ -5497,7 +5568,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 天后开始 的本地化字符串。
+ /// Looks up a localized string similar to {0} 天后开始.
///
internal static string WebAnnouncementTimeDaysBeginFormat {
get {
@@ -5506,7 +5577,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 天后结束 的本地化字符串。
+ /// Looks up a localized string similar to {0} 天后结束.
///
internal static string WebAnnouncementTimeDaysEndFormat {
get {
@@ -5515,7 +5586,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 小时后开始 的本地化字符串。
+ /// Looks up a localized string similar to {0} 小时后开始.
///
internal static string WebAnnouncementTimeHoursBeginFormat {
get {
@@ -5524,7 +5595,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 小时后结束 的本地化字符串。
+ /// Looks up a localized string similar to {0} 小时后结束.
///
internal static string WebAnnouncementTimeHoursEndFormat {
get {
@@ -5533,7 +5604,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 时 的本地化字符串。
+ /// Looks up a localized string similar to {0} 时.
///
internal static string WebDailyNoteExpeditionRemainHoursFormat {
get {
@@ -5542,7 +5613,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 分 的本地化字符串。
+ /// Looks up a localized string similar to {0} 分.
///
internal static string WebDailyNoteExpeditionRemainMinutesFormat {
get {
@@ -5551,7 +5622,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 今日完成委托数量不足 的本地化字符串。
+ /// Looks up a localized string similar to 今日完成委托数量不足.
///
internal static string WebDailyNoteExtraTaskRewardNotAllowed {
get {
@@ -5560,7 +5631,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 「每日委托」奖励未领取 的本地化字符串。
+ /// Looks up a localized string similar to 「每日委托」奖励未领取.
///
internal static string WebDailyNoteExtraTaskRewardNotTaken {
get {
@@ -5569,7 +5640,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 「每日委托」奖励已领取 的本地化字符串。
+ /// Looks up a localized string similar to 「每日委托」奖励已领取.
///
internal static string WebDailyNoteExtraTaskRewardReceived {
get {
@@ -5578,7 +5649,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 预计 {0} {1:HH:mm} 达到存储上限 的本地化字符串。
+ /// Looks up a localized string similar to 预计 {0} {1:HH:mm} 达到存储上限.
///
internal static string WebDailyNoteHomeCoinRecoveryFormat {
get {
@@ -5587,7 +5658,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 今天 的本地化字符串。
+ /// Looks up a localized string similar to 今天.
///
internal static string WebDailyNoteRecoveryTimeDay0 {
get {
@@ -5596,7 +5667,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 明天 的本地化字符串。
+ /// Looks up a localized string similar to 明天.
///
internal static string WebDailyNoteRecoveryTimeDay1 {
get {
@@ -5605,7 +5676,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 后天 的本地化字符串。
+ /// Looks up a localized string similar to 后天.
///
internal static string WebDailyNoteRecoveryTimeDay2 {
get {
@@ -5614,7 +5685,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 天 的本地化字符串。
+ /// Looks up a localized string similar to {0} 天.
///
internal static string WebDailyNoteRecoveryTimeDayFormat {
get {
@@ -5623,7 +5694,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 原粹树脂已完全恢复 的本地化字符串。
+ /// Looks up a localized string similar to 原粹树脂已完全恢复.
///
internal static string WebDailyNoteResinRecoveryCompleted {
get {
@@ -5632,7 +5703,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 将于 {0} {1:HH:mm} 后全部恢复 的本地化字符串。
+ /// Looks up a localized string similar to 将于 {0} {1:HH:mm} 后全部恢复.
///
internal static string WebDailyNoteResinRecoveryFormat {
get {
@@ -5641,7 +5712,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 无感验证成功 的本地化字符串。
+ /// Looks up a localized string similar to 无感验证成功.
///
internal static string WebDailyNoteSenselessVerificationSuccess {
get {
@@ -5650,7 +5721,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 后可再次使用 的本地化字符串。
+ /// Looks up a localized string similar to 后可再次使用.
///
internal static string WebDailyNoteTransformerAppend {
get {
@@ -5659,7 +5730,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 天 的本地化字符串。
+ /// Looks up a localized string similar to {0} 天.
///
internal static string WebDailyNoteTransformerDaysFormat {
get {
@@ -5668,7 +5739,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 时 的本地化字符串。
+ /// Looks up a localized string similar to {0} 时.
///
internal static string WebDailyNoteTransformerHoursFormat {
get {
@@ -5677,7 +5748,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 分 的本地化字符串。
+ /// Looks up a localized string similar to {0} 分.
///
internal static string WebDailyNoteTransformerMinutesFormat {
get {
@@ -5686,7 +5757,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 冷却中 的本地化字符串。
+ /// Looks up a localized string similar to 冷却中.
///
internal static string WebDailyNoteTransformerNotReached {
get {
@@ -5695,7 +5766,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 可使用 的本地化字符串。
+ /// Looks up a localized string similar to 可使用.
///
internal static string WebDailyNoteTransformerReached {
get {
@@ -5704,7 +5775,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 已准备完成 的本地化字符串。
+ /// Looks up a localized string similar to 已准备完成.
///
internal static string WebDailyNoteTransformerReady {
get {
@@ -5713,7 +5784,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 {0} 秒 的本地化字符串。
+ /// Looks up a localized string similar to {0} 秒.
///
internal static string WebDailyNoteTransformerSecondsFormat {
get {
@@ -5722,7 +5793,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 验证失败,请手动验证或前往「米游社-我的角色-实时便笺」页面查看 的本地化字符串。
+ /// Looks up a localized string similar to 验证失败,请手动验证或前往「米游社-我的角色-实时便笺」页面查看.
///
internal static string WebDailyNoteVerificationFailed {
get {
@@ -5731,7 +5802,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 错误的 UID 格式 的本地化字符串。
+ /// Looks up a localized string similar to 错误的 UID 格式.
///
internal static string WebEnkaResponseStatusCode400 {
get {
@@ -5740,7 +5811,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色 UID 不存在 的本地化字符串。
+ /// Looks up a localized string similar to 角色 UID 不存在.
///
internal static string WebEnkaResponseStatusCode404 {
get {
@@ -5749,7 +5820,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 游戏维护中 的本地化字符串。
+ /// Looks up a localized string similar to 游戏维护中.
///
internal static string WebEnkaResponseStatusCode424 {
get {
@@ -5758,7 +5829,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 请求过快,请稍后再试 的本地化字符串。
+ /// Looks up a localized string similar to 请求过快,请稍后再试.
///
internal static string WebEnkaResponseStatusCode429 {
get {
@@ -5767,7 +5838,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 服务器偶发错误 的本地化字符串。
+ /// Looks up a localized string similar to 服务器偶发错误.
///
internal static string WebEnkaResponseStatusCode500 {
get {
@@ -5776,7 +5847,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 服务器严重错误 的本地化字符串。
+ /// Looks up a localized string similar to 服务器严重错误.
///
internal static string WebEnkaResponseStatusCode503 {
get {
@@ -5785,7 +5856,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 未知的服务器错误 的本地化字符串。
+ /// Looks up a localized string similar to 未知的服务器错误.
///
internal static string WebEnkaResponseStatusCodeUnknown {
get {
@@ -5794,7 +5865,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色活动祈愿 的本地化字符串。
+ /// Looks up a localized string similar to 角色活动祈愿.
///
internal static string WebGachaConfigTypeAvatarEventWish {
get {
@@ -5803,7 +5874,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 角色活动祈愿-2 的本地化字符串。
+ /// Looks up a localized string similar to 角色活动祈愿-2.
///
internal static string WebGachaConfigTypeAvatarEventWish2 {
get {
@@ -5812,7 +5883,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 新手祈愿 的本地化字符串。
+ /// Looks up a localized string similar to 新手祈愿.
///
internal static string WebGachaConfigTypeNoviceWish {
get {
@@ -5821,7 +5892,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 常驻祈愿 的本地化字符串。
+ /// Looks up a localized string similar to 常驻祈愿.
///
internal static string WebGachaConfigTypePermanentWish {
get {
@@ -5830,7 +5901,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 武器活动祈愿 的本地化字符串。
+ /// Looks up a localized string similar to 武器活动祈愿.
///
internal static string WebGachaConfigTypeWeaponEventWish {
get {
@@ -5839,7 +5910,7 @@ namespace Snap.Hutao.Resource.Localization {
}
///
- /// 查找类似 状态:{0} | 信息:{1} 的本地化字符串。
+ /// Looks up a localized string similar to 状态:{0} | 信息:{1}.
///
internal static string WebResponseFormat {
get {
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.en.resx b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.en.resx
index 675f310a..7e21adb6 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.en.resx
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.en.resx
@@ -273,7 +273,7 @@
Lady
-
+
Loli
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ja.resx b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ja.resx
index 646e3255..4a713ed3 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ja.resx
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ja.resx
@@ -273,7 +273,7 @@
女性
-
+
幼女
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ko.resx b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ko.resx
index 9dd27ff1..cf21f45f 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ko.resx
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.ko.resx
@@ -273,7 +273,7 @@
여성
-
+
로리
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.resx b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.resx
index 5fead558..7499d605 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.resx
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.resx
@@ -273,7 +273,7 @@
成女
-
+
萝莉
@@ -2046,4 +2046,28 @@
统计
+
+ 角色与武器培养素材
+
+
+ 角色经验素材
+
+
+ 角色突破素材
+
+
+ 角色天赋素材
+
+
+ 角色培养素材
+
+
+ 武器强化素材
+
+
+ 武器突破素材
+
+
+ [\u4e00-\u9fa5]{2}区域特产$
+
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.zh-Hant.resx b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.zh-Hant.resx
index 0ff072f6..b110e7ae 100644
--- a/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.zh-Hant.resx
+++ b/src/Snap.Hutao/Snap.Hutao/Resource/Localization/SH.zh-Hant.resx
@@ -273,7 +273,7 @@
成女
-
+
蘿莉
diff --git a/src/Snap.Hutao/Snap.Hutao/Service/GachaLog/Factory/TypedWishSummaryBuilder.cs b/src/Snap.Hutao/Snap.Hutao/Service/GachaLog/Factory/TypedWishSummaryBuilder.cs
index 5714f161..040e89a1 100644
--- a/src/Snap.Hutao/Snap.Hutao/Service/GachaLog/Factory/TypedWishSummaryBuilder.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Service/GachaLog/Factory/TypedWishSummaryBuilder.cs
@@ -151,8 +151,8 @@ internal sealed class TypedWishSummaryBuilder
TotalOrangePercent = totalOrangePullTracker / totalCount,
TotalPurplePercent = totalPurplePullTracker / totalCount,
TotalBluePercent = totalBluePullTracker / totalCount,
- AverageOrangePull = averageOrangePullTracker.UnsafeAverage(),
- AverageUpOrangePull = averageUpOrangePullTracker.UnsafeAverage(),
+ AverageOrangePull = averageOrangePullTracker.SpanAverage(),
+ AverageUpOrangePull = averageUpOrangePullTracker.SpanAverage(),
OrangeList = summaryItems,
};
}
diff --git a/src/Snap.Hutao/Snap.Hutao/View/Dialog/CultivatePromotionDeltaDialog.xaml.cs b/src/Snap.Hutao/Snap.Hutao/View/Dialog/CultivatePromotionDeltaDialog.xaml.cs
index 8e0d77f5..6e046917 100644
--- a/src/Snap.Hutao/Snap.Hutao/View/Dialog/CultivatePromotionDeltaDialog.xaml.cs
+++ b/src/Snap.Hutao/Snap.Hutao/View/Dialog/CultivatePromotionDeltaDialog.xaml.cs
@@ -73,7 +73,7 @@ internal sealed partial class CultivatePromotionDeltaDialog : ContentDialog
AvatarLevelTarget = Avatar?.LevelTarget ?? 0,
SkillList = Avatar?.Skills.Select(s => new PromotionDelta()
{
- Id = s.GruopId,
+ Id = s.GroupId,
LevelCurrent = s.LevelCurrent,
LevelTarget = s.LevelTarget,
}),
diff --git a/src/Snap.Hutao/Snap.Hutao/Web/Hoyolab/Hk4e/Event/GachaInfo/GachaConfigType.cs b/src/Snap.Hutao/Snap.Hutao/Web/Hoyolab/Hk4e/Event/GachaInfo/GachaConfigType.cs
index 35bd15dd..fa41947e 100644
--- a/src/Snap.Hutao/Snap.Hutao/Web/Hoyolab/Hk4e/Event/GachaInfo/GachaConfigType.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Web/Hoyolab/Hk4e/Event/GachaInfo/GachaConfigType.cs
@@ -14,34 +14,34 @@ internal enum GachaConfigType
/// 新手池
///
[Description("新手祈愿")]
- [LocalizationKey("WebGachaConfigTypeNoviceWish")]
+ [LocalizationKey(nameof(SH.WebGachaConfigTypeNoviceWish))]
NoviceWish = 100,
///
/// 常驻池
///
[Description("常驻祈愿")]
- [LocalizationKey("WebGachaConfigTypePermanentWish")]
+ [LocalizationKey(nameof(SH.WebGachaConfigTypePermanentWish))]
StandardWish = 200,
///
/// 角色1池
///
[Description("角色活动祈愿")]
- [LocalizationKey("WebGachaConfigTypeAvatarEventWish")]
+ [LocalizationKey(nameof(SH.WebGachaConfigTypeAvatarEventWish))]
AvatarEventWish = 301,
///
/// 武器池
///
[Description("武器活动祈愿")]
- [LocalizationKey("WebGachaConfigTypeWeaponEventWish")]
+ [LocalizationKey(nameof(SH.WebGachaConfigTypeWeaponEventWish))]
WeaponEventWish = 302,
///
/// 角色2池
///
[Description("角色活动祈愿-2")]
- [LocalizationKey("WebGachaConfigTypeAvatarEventWish2")]
+ [LocalizationKey(nameof(SH.WebGachaConfigTypeAvatarEventWish2))]
AvatarEventWish2 = 400,
}
\ No newline at end of file
diff --git a/src/Snap.Hutao/Snap.Hutao/Win32/StructMarshal.cs b/src/Snap.Hutao/Snap.Hutao/Win32/StructMarshal.cs
index cc3f6cea..ea1e5c78 100644
--- a/src/Snap.Hutao/Snap.Hutao/Win32/StructMarshal.cs
+++ b/src/Snap.Hutao/Snap.Hutao/Win32/StructMarshal.cs
@@ -66,7 +66,19 @@ internal static class StructMarshal
/// 新的实例
public static RectInt32 RectInt32(PointInt32 point, Vector2 size)
{
- return new(point.X, point.Y, (int)size.X, (int)size.Y);
+ return RectInt32(point.X, point.Y, size);
+ }
+
+ ///
+ /// 构造一个新的
+ ///
+ /// X
+ /// Y
+ /// 尺寸
+ /// 新的实例
+ public static RectInt32 RectInt32(int x, int y, Vector2 size)
+ {
+ return new(x, y, (int)size.X, (int)size.Y);
}
///