部分简单转繁体

This commit is contained in:
liyuhua
2023-08-09 11:55:27 +08:00
parent 471b84dc7f
commit 7a1ffa871a
73 changed files with 722 additions and 567 deletions

View File

@@ -50,7 +50,7 @@
}
- (void)viewDidAppear:(BOOL)animated {
[self showErrorToast:@"第三方登录需绑定手机号喔~"];
[self showErrorToast:YMLocalizedString(@"LoginBindPhoneViewController0")];
}
- (void)setUpUI {

View File

@@ -426,7 +426,7 @@ UIKIT_EXTERN NSString * kUserCompleteInfoFinishKey;
- (UILabel *)codeDesLabel {
if (!_codeDesLabel) {
_codeDesLabel = [[UILabel alloc] init];
_codeDesLabel.text = @"(选填)";
_codeDesLabel.text = YMLocalizedString(@"LoginFullInfoViewController5");
_codeDesLabel.font = [UIFont systemFontOfSize:15];
_codeDesLabel.textColor = [DJDKMIMOMColor textThirdColor];
[_codeDesLabel setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisHorizontal];

View File

@@ -180,7 +180,7 @@
- (XPLoginInputView *)pwdInputView {
if (!_pwdInputView) {
_pwdInputView = [[XPLoginInputView alloc] init];
NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc] initWithString:@"请输入密码(6-16个字符)"];
NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc] initWithString:YMLocalizedString(@"XPForgetPwdViewController6")];
[placeholder addAttribute:NSForegroundColorAttributeName value:UIColor.whiteColor range:NSMakeRange(0, placeholder.length)];
_pwdInputView.inputTextField.attributedPlaceholder = placeholder;
_pwdInputView.inputTextField.keyboardType = UIKeyboardTypeAlphabet;

View File

@@ -183,7 +183,7 @@
- (UIButton *)forgetBtn {
if (!_forgetBtn) {
_forgetBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[_forgetBtn setTitle:@"忘记密码?" forState:UIControlStateNormal];
[_forgetBtn setTitle:YMLocalizedString(@"XPRoomRedPacketPwdView1") forState:UIControlStateNormal];
[_forgetBtn setTitleColor:UIColor.whiteColor forState:UIControlStateNormal];
_forgetBtn.titleLabel.font = [UIFont systemFontOfSize:14 weight:UIFontWeightRegular];
[_forgetBtn addTarget:self action:@selector(forgetBtnClicked) forControlEvents:UIControlEventTouchUpInside];