Skip to content

Commit

Permalink
button.accept
Browse files Browse the repository at this point in the history
  • Loading branch information
nixzhu committed Aug 12, 2016
1 parent 4fe54dc commit c08fbf5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Yep/Views/FriendRequest/FriendRequestView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ final class FriendRequestView: UIView {

lazy var acceptButton: UIButton = {
let button = self.baseButton()
button.setTitle(NSLocalizedString("Accept", comment: ""), forState: .Normal)
button.setTitle(NSLocalizedString("button.accept", comment: ""), forState: .Normal)
button.backgroundColor = UIColor.yepTintColor()
button.addTarget(self, action: #selector(FriendRequestView.tryAcceptAction), forControlEvents: .TouchUpInside)
return button
Expand Down
2 changes: 1 addition & 1 deletion Yep/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"doing%@" = " is %@...";
"title.about" = "About";
"prompt.accept_friend_request_failed" = "Accept Friend Request failed!";
"Accept" = "Accept";
"button.accept" = "Accept";
"Action" = "Action";
"Add Friends" = "Add Friends";
"Add Skills" = "Add Skills";
Expand Down
2 changes: 1 addition & 1 deletion Yep/zh-Hans.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"doing%@" = "正在%@...";
"title.about" = "关于";
"prompt.accept_friend_request_failed" = "接受好友请求失败!";
"Accept" = "接受";
"button.accept" = "接受";
"Action" = "操作";
"Add Friends" = "添加好友";
"Add Skills" = "添加技能";
Expand Down

0 comments on commit c08fbf5

Please sign in to comment.