We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a12ddde commit af55b14Copy full SHA for af55b14
lib/modules/collect/collect_type.dart
@@ -5,20 +5,20 @@ enum CollectType {
5
/// 未收藏
6
none(0, '未收藏'),
7
8
- /// 正在观看
9
- watching(1, '正在观看'),
+ /// 在看
+ watching(1, '在看'),
10
11
- /// 计划观看
12
- planToWatch(2, '计划观看'),
+ /// 想看
+ planToWatch(2, '想看'),
13
14
- /// 搁置中
15
- onHold(3, '搁置中'),
+ /// 搁置
+ onHold(3, '搁置'),
16
17
- /// 已看过
18
- watched(4, '已看过'),
+ /// 看过
+ watched(4, '看过'),
19
20
- /// 已抛弃
21
- abandoned(5, '已抛弃');
+ /// 抛弃
+ abandoned(5, '抛弃');
22
23
const CollectType(this.value, this.label);
24
0 commit comments