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": "搜索", "Search": "搜索",
"Downloading": "下载中", "Downloading": "下载中",
"Downloaded": "已下载", "Downloaded": "已下载",
"Artwork": "作品", "Artwork": "插画",
"Explore": "探索", "Explore": "探索",
"Bookmarks": "收藏", "Bookmarks": "收藏",
"Following": "关注", "Following": "关注",
"History": "历史", "History": "历史",
"Ranking": "排行", "Ranking": "排行",
"Settings": "设置", "Settings": "设置",
"Artworks": "作品", "Artworks": "插画",
"Mangas": "漫画", "Mangas": "漫画",
"Users": "用户", "Users": "用户",
"Search artwork": "搜索作品", "Search artwork": "搜索作品",
@@ -156,7 +156,9 @@
"Next work": "下一作品", "Next work": "下一作品",
"Previous work": "上一作品", "Previous work": "上一作品",
"Add to favorites": "添加收藏", "Add to favorites": "添加收藏",
"Follow the artist": "关注画师" "Follow the artist": "关注画师",
"Manga": "漫画",
"Actions": "操作"
}, },
"zh_TW": { "zh_TW": {
"Search": "搜索", "Search": "搜索",
@@ -315,6 +317,8 @@
"Next work": "下一作品", "Next work": "下一作品",
"Previous work": "上一作品", "Previous work": "上一作品",
"Add to favorites": "添加收藏", "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 child: width > 600
? Button( ? Button(
onPressed: showMenu, onPressed: showMenu,
child: const Row( child: Row(
children: [ children: [
Icon( const Icon(
MdIcons.menu, MdIcons.menu,
size: 18, size: 18,
), ),
SizedBox( const SizedBox(
width: 8, width: 8,
), ),
Text('Actions'), Text('Actions'.tl),
], ],
)) ))
: IconButton( : IconButton(

View File

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