File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const MemoDisplaySettingMenu = observer(({ className }: Props) => {
38
38
</ Select >
39
39
</ div >
40
40
< div className = "w-full flex flex-row justify-between items-center" >
41
- < span className = "text-sm shrink-0 mr-3" > Layout </ span >
41
+ < span className = "text-sm shrink-0 mr-3" > { t ( "memo.layout" ) } </ span >
42
42
< Select
43
43
value = { viewStore . state . layout }
44
44
onChange = { ( _ , value ) =>
@@ -47,8 +47,8 @@ const MemoDisplaySettingMenu = observer(({ className }: Props) => {
47
47
} )
48
48
}
49
49
>
50
- < Option value = { "LIST" } > { "List" } </ Option >
51
- < Option value = { "MASONRY" } > { "Masonry" } </ Option >
50
+ < Option value = { "LIST" } > { t ( "memo.list" ) } </ Option >
51
+ < Option value = { "MASONRY" } > { t ( "memo.masonry" ) } </ Option >
52
52
</ Select >
53
53
</ div >
54
54
</ div >
Original file line number Diff line number Diff line change 160
160
"private" : " Private" ,
161
161
"protected" : " Workspace" ,
162
162
"public" : " Public"
163
- }
163
+ },
164
+ "layout" : " Layout" ,
165
+ "list" : " List" ,
166
+ "masonry" : " Masonry"
164
167
},
165
168
"message" : {
166
169
"archived-successfully" : " Archived successfully" ,
Original file line number Diff line number Diff line change 156
156
"private" : " 私有" ,
157
157
"protected" : " 工作区" ,
158
158
"public" : " 公开"
159
- }
159
+ },
160
+ "layout" : " 布局" ,
161
+ "list" : " 列表模式" ,
162
+ "masonry" : " 瀑布流模式"
160
163
},
161
164
"message" : {
162
165
"archived-successfully" : " 归档成功" ,
You can’t perform that action at this time.
0 commit comments