l10n: update

This commit is contained in:
2024-05-06 20:29:32 +08:00
parent b287dfc627
commit 60ceb84625
8 changed files with 461 additions and 947 deletions

View File

@ -208,7 +208,11 @@ class RsiLauncherEnhanceDialogUI extends HookConsumerWidget {
? FluentIcons.chevron_up
: FluentIcons.chevron_down),
const SizedBox(width: 12),
Text(expandEnhance.value ? "收起额外功能" : "展开额外功能"),
Text(expandEnhance.value
? S.current
.tools_rsi_launcher_enhance_action_fold
: S.current
.tools_rsi_launcher_enhance_action_expand),
],
))),
],

View File

@ -299,17 +299,18 @@ class UnP4kErrorWidget extends StatelessWidget {
"You must install .NET to run this application") ||
errorMessage.contains(
"You must install or update .NET to run this application")) ...[
const Text(
"缺少运行库",
style: TextStyle(fontSize: 16),
Text(
S.current.tools_unp4k_missing_runtime,
style: const TextStyle(fontSize: 16),
),
const SizedBox(height: 6),
const Text("使用此功能需安装 .NET8 运行库,请点击下方按钮下载安装,安装成功后重新打开此页面即可继续使用。"),
Text(S.current.tools_unp4k_missing_runtime_info),
const SizedBox(height: 16),
FilledButton(
child: const Padding(
padding: EdgeInsets.symmetric(horizontal: 12, vertical: 3),
child: Text("安装运行库"),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 3),
child: Text(
S.current.tools_unp4k_missing_runtime_action_install),
),
onPressed: () {
launchUrlString(_downloadUrl);