File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
src/renderer/src/modules/new-user-guide Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 246
246
"mark_all_read_button.mark_all_as_read" : " Mark all as read" ,
247
247
"mark_all_read_button.mark_as_read" : " Mark <which /> as read" ,
248
248
"mark_all_read_button.undo" : " Undo" ,
249
+ "new_user_guide.actions.next" : " Next" ,
250
+ "new_user_guide.actions.back" : " Back" ,
251
+ "new_user_guide.actions.finish" : " Finish" ,
249
252
"new_user_guide.intro.description" : " This guide will help you get started with the app." ,
250
253
"new_user_guide.intro.title" : " Welcome to Folo!" ,
251
254
"new_user_guide.outro.description" : " You have completed the guide. Enjoy your journey!" ,
Original file line number Diff line number Diff line change 246
246
"mark_all_read_button.mark_all_as_read" : " 全部标记为已读" ,
247
247
"mark_all_read_button.mark_as_read" : " 标记 <which /> 为已读" ,
248
248
"mark_all_read_button.undo" : " 撤销" ,
249
+ "new_user_guide.actions.next" : " 下一步" ,
250
+ "new_user_guide.actions.back" : " 上一步" ,
251
+ "new_user_guide.actions.finish" : " 完成" ,
249
252
"new_user_guide.intro.description" : " 本指南将帮助你快速上手这款应用。" ,
250
253
"new_user_guide.intro.title" : " 欢迎使用 Folo!" ,
251
254
"new_user_guide.outro.description" : " 你已完成指南,祝你使用愉快!" ,
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ export function GuideModalContent({ onClose }: { onClose: () => void }) {
244
244
} }
245
245
variant = { "outline" }
246
246
>
247
- Back
247
+ { t . app ( "new_user_guide.actions.back" ) }
248
248
</ Button >
249
249
) }
250
250
< Button
@@ -276,7 +276,9 @@ export function GuideModalContent({ onClose }: { onClose: () => void }) {
276
276
}
277
277
} }
278
278
>
279
- { step <= totalSteps ? "Next" : "Finish" }
279
+ { step <= totalSteps
280
+ ? t . app ( "new_user_guide.actions.next" )
281
+ : t . app ( "new_user_guide.actions.finish" ) }
280
282
</ Button >
281
283
</ div >
282
284
</ div >
You can’t perform that action at this time.
0 commit comments