2
0
Quellcode durchsuchen

部分多语言

桂欢 vor 1 Jahr
Ursprung
Commit
097cc21c37

+ 1 - 1
SLAiELTS/SLAiELTS/Tool/CYLTableViewPlaceHolder/TTTableViewPlaceView.m

@@ -58,7 +58,7 @@
 - (UILabel *)titleLabel{
     if (!_titleLabel) {
         _titleLabel = [[UILabel alloc]initWithFrame:CGRectZero];
-        _titleLabel.text = @"没有数据";
+//        _titleLabel.text = @"没有数据";
         _titleLabel.textColor = [UIColor darkGrayColor];
     }
     return _titleLabel;

+ 1 - 1
SLAiELTS/SLAiELTS/Vendor/Resources/en.lproj/Localizable.strings

@@ -166,7 +166,7 @@
 "朋友圈背景" = "Moments Background";
 "发起群聊" = "Group Chat ";
 "扫一扫  " = "Scan           ";
-//"男性" = "male";
+"是否要删除当条朋友圈内容" = "Do you want to delete the content of this Moment";
 //"男性" = "male";
 //"男性" = "male";
 //"男性" = "male";

+ 1 - 1
SLAiELTS/SLAiELTS/ViewControllers/Moments/MomentsVc/SLMomentsVc.m

@@ -492,7 +492,7 @@ static CGFloat textFieldH = 56;
 
 - (void)didClickDelButtonInCell:(UITableViewCell *)cell
 {
-    [SLCustomizeAlert showAletrWithTitle:NSLocalizedString(@"温馨提示", nil) message:@"是否要删除当条朋友圈内容" sureBtnTitle:NSLocalizedString(@"确定", nil) cancelBtnTitle:NSLocalizedString(@"取消", nil) sureBtnAction:^{
+    [SLCustomizeAlert showAletrWithTitle:NSLocalizedString(@"温馨提示", nil) message:NSLocalizedString(@"是否要删除当条朋友圈内容", nil) sureBtnTitle:NSLocalizedString(@"确定", nil) cancelBtnTitle:NSLocalizedString(@"取消", nil) sureBtnAction:^{
         NSIndexPath *index = [self.tableView indexPathForCell:cell];
         SDTimeLineCellModel *model = self.dataArray[index.row];
         [[SLHttpCenter SharedInstance] getWithUrl:@"/api/Friend/DelateFriendCircle" parameter:@{@"id":model.friendId} success:^(id responseObject) {