improve text

This commit is contained in:
wgh19
2024-05-31 17:44:50 +08:00
parent cb356dbf71
commit 20829e1ad5
3 changed files with 19 additions and 13 deletions

View File

@@ -3,14 +3,14 @@
"Search": "搜索",
"Downloading": "下载中",
"Downloaded": "已下载",
"Artwork": "作品",
"Artwork": "插画",
"Explore": "探索",
"Bookmarks": "收藏",
"Following": "关注",
"History": "历史",
"Ranking": "排行",
"Settings": "设置",
"Artworks": "作品",
"Artworks": "插画",
"Mangas": "漫画",
"Users": "用户",
"Search artwork": "搜索作品",
@@ -156,7 +156,9 @@
"Next work": "下一作品",
"Previous work": "上一作品",
"Add to favorites": "添加收藏",
"Follow the artist": "关注画师"
"Follow the artist": "关注画师",
"Manga": "漫画",
"Actions": "操作"
},
"zh_TW": {
"Search": "搜索",
@@ -315,6 +317,8 @@
"Next work": "下一作品",
"Previous work": "上一作品",
"Add to favorites": "添加收藏",
"Follow the artist": "關注畫師"
"Follow the artist": "關注畫師",
"Manga": "漫畫",
"Actions": "操作"
}
}

View File

@@ -252,16 +252,16 @@ class _ImagePageState extends State<ImagePage> with WindowListener {
child: width > 600
? Button(
onPressed: showMenu,
child: const Row(
child: Row(
children: [
Icon(
const Icon(
MdIcons.menu,
size: 18,
),
SizedBox(
const SizedBox(
width: 8,
),
Text('Actions'),
Text('Actions'.tl),
],
))
: IconButton(

View File

@@ -152,7 +152,9 @@ class _MainPageState extends State<MainPage> with WindowListener {
),
PaneItemSeparator(),
PaneItemHeader(
header: Text("Artwork".tl).paddingBottom(4).paddingLeft(8)),
header: Text('${"Artwork".tl}/${"Manga".tl}')
.paddingBottom(4)
.paddingLeft(8)),
PaneItem(
icon: const Icon(
MdIcons.explore_outlined,
@@ -215,10 +217,10 @@ class _MainPageState extends State<MainPage> with WindowListener {
context: context,
removeTop: true,
child: Navigator(
key: navigatorKey,
onGenerateRoute: (settings) => AppPageRoute(
builder: (context) => const RecommendationPage()),
),
key: navigatorKey,
onGenerateRoute: (settings) => AppPageRoute(
builder: (context) => const RecommendationPage()),
),
))),
);
}