This commit is contained in:
2025-11-17 20:07:39 +08:00
parent ee433db4ad
commit 005e3c7581
43 changed files with 529 additions and 172 deletions

View File

@@ -113,7 +113,7 @@
_titleLabel.numberOfLines = 0;
_titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
_titleLabel.textColor = [UIColor colorWithWhite:0.2 alpha:1.0];
_titleLabel.text = @"👋 欢迎使用『Lovekey 键盘』";
_titleLabel.text = KBLocalized(@"👋 Welcome to Key of Love Keyboard");
}
return _titleLabel;
}
@@ -124,7 +124,7 @@
_descLabel.numberOfLines = 0;
_descLabel.font = [UIFont systemFontOfSize:14];
_descLabel.textColor = [UIColor colorWithWhite:0.2 alpha:1.0];
_descLabel.text = @"点击任一对话去粘贴,选择任意回复方式去试用吧~";
_descLabel.text = KBLocalized(@"Tap any conversation to paste, then try any reply style~");
}
return _descLabel;
}
@@ -137,7 +137,7 @@
_q1Label = [UILabel new];
_q1Label.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
_q1Label.textColor = [UIColor blackColor];
_q1Label.text = @"在干嘛?";
_q1Label.text = KBLocalized(@"What are you doing?");
}
return _q1Label;
}
@@ -147,10 +147,9 @@
_q2Label = [UILabel new];
_q2Label.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
_q2Label.textColor = [UIColor blackColor];
_q2Label.text = @"我去洗澡了";
_q2Label.text = KBLocalized(@"I'm going to take a shower.");
}
return _q2Label;
}
@end