Skip to content

Commit

Permalink
🌐 :: [#94] HomeFeature / 로그아웃 ConfirmationDialog 지역화
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Jul 25, 2023
1 parent 6b83b44 commit 2c47fd7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ private extension HomeStore {
},
.init(title: L10n.Home.logoutButtonTitle, style: .default) { [route, logoutUseCase] _ in
let confirmationDialogRoutePath = DotoriRoutePath.confirmationDialog(
title: "로그아웃",
message: "정말로 도토리를 로그아웃 하시겠습니까?"
title: L10n.Home.logoutTitle,
message: L10n.Home.reallyLogoutTitle
) {
logoutUseCase()
route.send(DotoriRoutePath.signin)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@
"applied_massage_button_title" = "Cancel Massage";
"modify_limit_button_title" = "Modify Limit";
"recent_refresh_date" = "Recent Refresh : %@";
"logout_title" = "Logout";
"really_logout_title" = "Are you sure you want to logout Dotori?";
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@
"applied_massage_button_title" = "신청 취소";
"modify_limit_button_title" = "인원 수정";
"recent_refresh_date" = "최근 새로고침 : %@";
"logout_title" = "로그아웃";
"really_logout_title" = "정말로 도토리를 로그아웃 하시겠습니까?";

0 comments on commit 2c47fd7

Please sign in to comment.