mirror of
https://github.com/wahyd4/Yep.git
synced 2026-08-25 04:36:24 +10:00
Fix not now
This commit is contained in:
@@ -178,7 +178,7 @@ extension UIViewController {
|
||||
|
||||
dispatch_async(dispatch_get_main_queue()) {
|
||||
|
||||
YepAlert.confirmOrCancel(title: NSLocalizedString("Notice", comment: ""), message: NSLocalizedString("Yep need to read your Contacts to continue this operation.\nIs that OK?", comment: ""), confirmTitle: NSLocalizedString("OK", comment: ""), cancelTitle: NSLocalizedString("No now", comment: ""), inViewController: self, withConfirmAction: {
|
||||
YepAlert.confirmOrCancel(title: NSLocalizedString("Notice", comment: ""), message: NSLocalizedString("Yep need to read your Contacts to continue this operation.\nIs that OK?", comment: ""), confirmTitle: NSLocalizedString("OK", comment: ""), cancelTitle: NSLocalizedString("Not now", comment: ""), inViewController: self, withConfirmAction: {
|
||||
|
||||
propose()
|
||||
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>81</string>
|
||||
<string>83</string>
|
||||
<key>Fabric</key>
|
||||
<dict>
|
||||
<key>APIKey</key>
|
||||
|
||||
@@ -855,7 +855,7 @@ class ConversationViewController: BaseViewController {
|
||||
|
||||
} else if receivedFriendRequestState == .Blocked {
|
||||
YepAlert.confirmOrCancel(title: NSLocalizedString("Notice", comment: ""), message: String(format: NSLocalizedString("You have blocked %@! Do you want to unblock him or her?", comment: ""), "\(userNickname)")
|
||||
, confirmTitle: NSLocalizedString("Unblock", comment: ""), cancelTitle: NSLocalizedString("No now", comment: ""), inViewController: self, withConfirmAction: {
|
||||
, confirmTitle: NSLocalizedString("Unblock", comment: ""), cancelTitle: NSLocalizedString("Not now", comment: ""), inViewController: self, withConfirmAction: {
|
||||
|
||||
unblockUserWithUserID(userID, failureHandler: nil, completion: { success in
|
||||
println("unblockUserWithUserID \(success)")
|
||||
|
||||
@@ -444,7 +444,7 @@ class ProfileViewController: UIViewController {
|
||||
|
||||
if me.masterSkills.count == 0 && me.learningSkills.count == 0 {
|
||||
|
||||
YepAlert.confirmOrCancel(title: NSLocalizedString("Notice", comment: ""), message: NSLocalizedString("You don't have any skills!\nWould you like to pick some?", comment: ""), confirmTitle: NSLocalizedString("OK", comment: ""), cancelTitle: NSLocalizedString("No now", comment: ""), inViewController: self, withConfirmAction: { [weak self] in
|
||||
YepAlert.confirmOrCancel(title: NSLocalizedString("Notice", comment: ""), message: NSLocalizedString("You don't have any skills!\nWould you like to pick some?", comment: ""), confirmTitle: NSLocalizedString("OK", comment: ""), cancelTitle: NSLocalizedString("Not now", comment: ""), inViewController: self, withConfirmAction: { [weak self] in
|
||||
self?.pickSkills()
|
||||
}, cancelAction: {})
|
||||
}
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
"No more new friends." = "No more new friends.";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"No now" = "No now";
|
||||
"Not now" = "Not now";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"No search results." = "No search results.";
|
||||
|
||||
@@ -278,7 +278,7 @@
|
||||
"No more new friends." = "没有新加入的朋友";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"No now" = "暂不";
|
||||
"Not now" = "暂不";
|
||||
|
||||
/* No comment provided by engineer. */
|
||||
"No search results." = "搜索无结果";
|
||||
|
||||
Reference in New Issue
Block a user