42
42
*/
43
43
static NSString *const kNameSignUpCellAccessibilityID = @" NameSignUpCellAccessibilityID" ;
44
44
45
- /* * @var kNextButtonAccessibilityID
45
+ /* * @var kSaveButtonAccessibilityID
46
46
@brief The Accessibility Identifier for the @c next button.
47
47
*/
48
- static NSString *const kNextButtonAccessibilityID = @" NextButtonAccessibilityID " ;
48
+ static NSString *const kSaveButtonAccessibilityID = @" SaveButtonAccessibilityID " ;
49
49
50
50
/* * @var kTextFieldRightViewSize
51
51
@brief The height and width of the @c rightView of the password text field.
@@ -113,7 +113,7 @@ - (void)viewDidLoad {
113
113
style: UIBarButtonItemStylePlain
114
114
target: self
115
115
action: @selector (save )];
116
- saveButtonItem.accessibilityIdentifier = kNextButtonAccessibilityID ;
116
+ saveButtonItem.accessibilityIdentifier = kSaveButtonAccessibilityID ;
117
117
self.navigationItem .rightBarButtonItem = saveButtonItem;
118
118
}
119
119
@@ -129,7 +129,7 @@ - (void)viewDidLayoutSubviews {
129
129
NSString *termsOfService = [FUIAuthStrings termsOfService ];
130
130
NSString *termsOfServiceNotice =
131
131
[NSString stringWithFormat: [FUIAuthStrings termsOfServiceNotice ],
132
- [FUIAuthStrings next ], termsOfService];
132
+ [FUIAuthStrings save ], termsOfService];
133
133
NSMutableAttributedString *attributedString =
134
134
[[NSMutableAttributedString alloc ] initWithString: termsOfServiceNotice];
135
135
NSRange termsOfServiceRange = [termsOfServiceNotice rangeOfString: termsOfService];
0 commit comments