improve translation

This commit is contained in:
2024-11-07 09:41:14 +08:00
parent 082aa36316
commit 26fa41f503
2 changed files with 17 additions and 2 deletions

View File

@@ -173,7 +173,13 @@
"Unselected": "未选择", "Unselected": "未选择",
"Long press and drag to reorder.": "长按并拖动以重新排序。", "Long press and drag to reorder.": "长按并拖动以重新排序。",
"Limit image width": "限制图片宽度", "Limit image width": "限制图片宽度",
"When using Continuous(Top to Bottom) mode": "当使用连续(从上到下)模式" "When using Continuous(Top to Bottom) mode": "当使用连续(从上到下)模式",
"Open link": "打开链接",
"Open comic": "打开漫画",
"Move To First": "移动到最前",
"Cancel": "取消",
"Paused": "已暂停",
"Pause": "暂停"
}, },
"zh_TW": { "zh_TW": {
"Home": "首頁", "Home": "首頁",
@@ -349,6 +355,12 @@
"Unselected": "未選擇", "Unselected": "未選擇",
"Long press and drag to reorder.": "長按並拖動以重新排序。", "Long press and drag to reorder.": "長按並拖動以重新排序。",
"Limit image width": "限制圖片寬度", "Limit image width": "限制圖片寬度",
"When using Continuous(Top to Bottom) mode": "當使用連續(從上到下)模式" "When using Continuous(Top to Bottom) mode": "當使用連續(從上到下)模式",
"Open link": "打開鏈接",
"Open comic": "打開漫畫",
"Move To First": "移動到最前",
"Cancel": "取消",
"Paused": "已暫停",
"Pause": "暫停"
} }
} }

View File

@@ -369,6 +369,9 @@ class _SearchPageState extends State<SearchPage> {
), ),
trailing: const Icon(Icons.arrow_right), trailing: const Icon(Icons.arrow_right),
onTap: () { onTap: () {
setState(() {
suggestions.clear();
});
handleAppLink(Uri.parse(controller.text)); handleAppLink(Uri.parse(controller.text));
}, },
); );