Browse Source

PDFTools(iOS) - 所有表单的文案同步

chenyu 1 year ago
parent
commit
786e1cc26d

BIN
compdfkit-demo.xcworkspace/xcuserdata/carry.xcuserdatad/UserInterfaceState.xcuserstate


+ 1 - 1
compdfkit-tools/compdfkit-tools/Annotation/PDFProperties/PDFLink/CPDFFormLinkViewController.m

@@ -247,7 +247,7 @@
     _pageTextField.layer.cornerRadius = 5.0;
     _pageTextField.delegate = self;
     _pageTextField.font = [UIFont systemFontOfSize:18.0];
-    NSString *str = [NSString stringWithFormat:@"1~%ld", self.pageCount];
+    NSString *str = [NSString stringWithFormat:@"Add a Page Number Between 1~%ld", self.pageCount];
     _pageTextField.placeholder = NSLocalizedString(str, nil);
     [self.scrcollView addSubview:_pageTextField];
     offstY +=_urlTextField.frame.size.height;

+ 9 - 9
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFArrowStyleTableView.m

@@ -49,20 +49,20 @@
         CPDFFormArrowModel * roundModel = [[CPDFFormArrowModel alloc] init];
         roundModel.isSelected = NO;
         roundModel.iconImage = [UIImage imageNamed:@"CPDFFormCircle" inBundle:[NSBundle bundleForClass:self.class] compatibleWithTraitCollection:nil];
-        roundModel.title = NSLocalizedString(@"Round", nil);
+        roundModel.title = NSLocalizedString(@"Circle", nil);
         [dataArray addObject:roundModel];
         
         
         CPDFFormArrowModel * forkModel = [[CPDFFormArrowModel alloc] init];
         forkModel.isSelected = NO;
         forkModel.iconImage = [UIImage imageNamed:@"CPDFFormCross" inBundle:[NSBundle bundleForClass:self.class] compatibleWithTraitCollection:nil];
-        forkModel.title = NSLocalizedString(@"Fork", nil);
+        forkModel.title = NSLocalizedString(@"Cross", nil);
         [dataArray addObject:forkModel];
         
         CPDFFormArrowModel * RhombusModel = [[CPDFFormArrowModel alloc] init];
         RhombusModel.isSelected = NO;
         RhombusModel.iconImage = [UIImage imageNamed:@"CPDFFormDiamond" inBundle:[NSBundle bundleForClass:self.class] compatibleWithTraitCollection:nil];
-        RhombusModel.title = NSLocalizedString(@"Rhombus", nil);
+        RhombusModel.title = NSLocalizedString(@"Diamond", nil);
         [dataArray addObject:RhombusModel];
         
         CPDFFormArrowModel *SsquareModel = [[CPDFFormArrowModel alloc] init];
@@ -123,7 +123,7 @@
     NSString * titleString = @"";
     switch (style) {
         case CPDFWidgetButtonStyleCircle:{
-            titleString = NSLocalizedString(@"Round", nil);
+            titleString = NSLocalizedString(@"Circle", nil);
         }
             break;
             
@@ -133,12 +133,12 @@
             break;
             
         case CPDFWidgetButtonStyleCross:{
-            titleString = NSLocalizedString(@"Fork", nil);
+            titleString = NSLocalizedString(@"Cross", nil);
         }
             break;
             
         case CPDFWidgetButtonStyleDiamond:{
-            titleString = NSLocalizedString(@"Rhombus", nil);
+            titleString = NSLocalizedString(@"Diamond", nil);
         }
             break;
             
@@ -202,13 +202,13 @@
     
     CPDFWidgetButtonStyle style = CPDFWidgetButtonStyleNone;
     
-    if([model.title isEqualToString:@"Round"]) {
+    if([model.title isEqualToString:@"Circle"]) {
         style = CPDFWidgetButtonStyleCircle;
     }else if([model.title isEqualToString:@"Check"]) {
         style = CPDFWidgetButtonStyleCheck;
-    }else if([model.title isEqualToString:@"Fork"]) {
+    }else if([model.title isEqualToString:@"Cross"]) {
         style = CPDFWidgetButtonStyleCross;
-    }else if([model.title isEqualToString:@"Rhombus"]) {
+    }else if([model.title isEqualToString:@"Diamond"]) {
         style = CPDFWidgetButtonStyleDiamond;
     }else if([model.title isEqualToString:@"Star"]) {
         style = CPDFWidgetButtonStyleStar;

+ 5 - 5
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormButtonViewController.m

@@ -69,7 +69,7 @@
     // Do any additional setup after loading the view.
     self.borderColorView = [[CPDFColorSelectView alloc] init];
     self.borderColorView.delegate = self;
-    self.borderColorView.colorLabel.text = NSLocalizedString(@"Border Color", nil);
+    self.borderColorView.colorLabel.text = NSLocalizedString(@"Stroke Color", nil);
     self.borderColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.borderColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.borderColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -84,7 +84,7 @@
     [self.scrcollView addSubview:self.backGroundColorView];
     
     self.textColorView = [[CPDFColorSelectView alloc] init];
-    self.textColorView.colorLabel.text = NSLocalizedString(@"Text Color", nil);
+    self.textColorView.colorLabel.text = NSLocalizedString(@"Font Color", nil);
     self.textColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.textColorView.delegate = self;
     self.textColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
@@ -92,7 +92,7 @@
     [self.scrcollView addSubview:self.textColorView];
     
     self.sizeThickNessView = [[CPDFThicknessSliderView alloc] init];
-    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Size", nil);
+    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Font Size", nil);
     self.sizeThickNessView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.sizeThickNessView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     [self.scrcollView addSubview:self.sizeThickNessView];
@@ -105,7 +105,7 @@
     [self.scrcollView addSubview:self.textFiledView];
     
     self.buttonTextFiledView = [[CPDFFormTextFieldView alloc] init];
-    self.buttonTextFiledView.titleLabel.text = NSLocalizedString(@"Button Text", nil);
+    self.buttonTextFiledView.titleLabel.text = NSLocalizedString(@"Push Button", nil);
     self.buttonTextFiledView.delegate = self;
     [self.scrcollView addSubview:self.buttonTextFiledView];
     
@@ -113,7 +113,7 @@
     self.hideFormView.delegate = self;
     self.hideFormView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     [self.scrcollView addSubview:self.hideFormView];
     self.hideFormView.delegate = self;
     

+ 6 - 6
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormCheckBoxViewController.m

@@ -62,12 +62,12 @@
     
     self.formTextFiledView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.formTextFiledView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.formTextFiledView.titleLabel.text = NSLocalizedString(@"Field Name", nil);
+    self.formTextFiledView.titleLabel.text = NSLocalizedString(@"Name", nil);
     self.formTextFiledView.delegate = self;
     
     self.borderColorView = [[CPDFColorSelectView alloc] init];
     self.borderColorView.delegate = self;
-    self.borderColorView.colorLabel.text = NSLocalizedString(@"Border Color", nil);
+    self.borderColorView.colorLabel.text = NSLocalizedString(@"Stroke Color", nil);
     self.borderColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.borderColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.borderColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -86,7 +86,7 @@
     
     self.colorSelectView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.colorSelectView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.colorSelectView.colorLabel.text = NSLocalizedString(@"Color", nil);
+    self.colorSelectView.colorLabel.text = NSLocalizedString(@"Checkmark Color", nil);
     self.colorSelectView.delegate = self;
     self.colorSelectView.colorPickerView.showsHorizontalScrollIndicator = NO;
     
@@ -94,7 +94,7 @@
     [self.scrcollView addSubview:self.selectDefaultSwitchView];
     self.selectDefaultSwitchView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.selectDefaultSwitchView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.selectDefaultSwitchView.titleLabel.text = NSLocalizedString(@"Selected by default", nil);
+    self.selectDefaultSwitchView.titleLabel.text = NSLocalizedString(@"Button is Checked by default", nil);
     self.selectDefaultSwitchView.delegate = self;
     
     self.hideFormSwitchView = [[CPDFFormSwitchView alloc] init];
@@ -102,7 +102,7 @@
     
     self.hideFormSwitchView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormSwitchView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormSwitchView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormSwitchView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     self.hideFormSwitchView.delegate = self;
     
     self.arrowStyleView = [[CPDFFormArrowStyleView alloc] init];
@@ -110,7 +110,7 @@
     
     self.arrowStyleView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.arrowStyleView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.arrowStyleView.titleLabel.text = NSLocalizedString(@"Arrow Style", nil);
+    self.arrowStyleView.titleLabel.text = NSLocalizedString(@"Button Style", nil);
     self.arrowStyleView.delegate = self;
     
     self.buttonWidget = (CPDFButtonWidgetAnnotation*)self.annotManage.annotStyle.annotations.firstObject;

+ 4 - 4
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormComboxViewController.m

@@ -65,7 +65,7 @@
     
     self.borderColorView = [[CPDFColorSelectView alloc] init];
     self.borderColorView.delegate = self;
-    self.borderColorView.colorLabel.text = NSLocalizedString(@"Border Color", nil);
+    self.borderColorView.colorLabel.text = NSLocalizedString(@"Stroke Color", nil);
     self.borderColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.borderColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.borderColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -79,7 +79,7 @@
     self.backGroundColorView.delegate = self;
     
     self.textColorView = [[CPDFColorSelectView alloc] init];
-    self.textColorView.colorLabel.text = NSLocalizedString(@"Text Color", nil);
+    self.textColorView.colorLabel.text = NSLocalizedString(@"Font Color", nil);
     self.textColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.textColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.textColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -90,7 +90,7 @@
     [self.scrcollView addSubview:self.textColorView];
     
     self.sizeThickNessView = [[CPDFThicknessSliderView alloc] init];
-    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Size", nil);
+    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Font Size", nil);
     self.sizeThickNessView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.sizeThickNessView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     [self.scrcollView addSubview:self.sizeThickNessView];
@@ -105,7 +105,7 @@
     self.hideFormView.delegate = self;
     self.hideFormView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     [self.scrcollView addSubview:self.hideFormView];
     
     self.fontSettingView = [[CPDFFontSettingView alloc] init];

+ 10 - 5
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormListOptionVC.m

@@ -57,7 +57,12 @@
     [self.view addSubview:self.backBtn];
     
     self.titleLabel = [[UILabel alloc] init];
-    self.titleLabel.text =  NSLocalizedString(@"List", nil);
+    CPDFChoiceWidgetAnnotation * widget = (CPDFChoiceWidgetAnnotation *)self.annotation;
+    if(widget.isListChoice) {
+        self.titleLabel.text =  NSLocalizedString(@"Edit List Box", nil);
+    }else{
+        self.titleLabel.text =  NSLocalizedString(@"Edit ComBo Box", nil);
+    }
     self.titleLabel.font = [UIFont boldSystemFontOfSize:17];
     self.titleLabel.adjustsFontSizeToFitWidth = YES;
     self.titleLabel.textAlignment = NSTextAlignmentCenter;
@@ -185,7 +190,7 @@
 
 - (void)buttonItemClicked_add:(id)sender {
     if (![self.pdfView.document bookmarkForPageIndex:self.pdfView.currentPageIndex]) {
-        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Add ListBox" message:nil preferredStyle:UIAlertControllerStyleAlert];
+        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Add Items" message:nil preferredStyle:UIAlertControllerStyleAlert];
         [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
             textField.placeholder = NSLocalizedString(@"Input Option", nil);
         }];
@@ -264,9 +269,9 @@
     }];
     
     UITableViewRowAction *editAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Edit" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
-        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Edit List" message:nil preferredStyle:UIAlertControllerStyleAlert];
+        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Edit Items" message:nil preferredStyle:UIAlertControllerStyleAlert];
         [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
-            textField.placeholder = NSLocalizedString(@"List Title", nil);
+            textField.placeholder = NSLocalizedString(@"Item Title", nil);
         }];
             
         UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"Cancel", nil) style:UIAlertActionStyleCancel handler:nil];
@@ -322,7 +327,7 @@
     UIContextualAction * editAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleNormal title:nil handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
             UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Edit Item" message:nil preferredStyle:UIAlertControllerStyleAlert];
             [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
-                textField.placeholder = NSLocalizedString(@"List Title", nil);
+                textField.placeholder = NSLocalizedString(@"Item Title", nil);
             }];
     
             UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"Cancel", nil) style:UIAlertActionStyleCancel handler:nil];

+ 4 - 4
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormListViewController.m

@@ -65,7 +65,7 @@
     
     self.borderColorView = [[CPDFColorSelectView alloc] init];
     self.borderColorView.delegate = self;
-    self.borderColorView.colorLabel.text = NSLocalizedString(@"Border Color", nil);
+    self.borderColorView.colorLabel.text = NSLocalizedString(@"Stroke Color", nil);
     self.borderColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.borderColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.borderColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -79,7 +79,7 @@
     self.backGroundColorView.delegate = self;
     
     self.textColorView = [[CPDFColorSelectView alloc] init];
-    self.textColorView.colorLabel.text = NSLocalizedString(@"Text Color", nil);
+    self.textColorView.colorLabel.text = NSLocalizedString(@"Font Color", nil);
     self.textColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.textColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.textColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -90,7 +90,7 @@
     [self.scrcollView addSubview:self.textColorView];
     
     self.sizeThickNessView = [[CPDFThicknessSliderView alloc] init];
-    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Size", nil);
+    self.sizeThickNessView.titleLabel.text = NSLocalizedString(@"Font Size", nil);
     self.sizeThickNessView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.sizeThickNessView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     [self.scrcollView addSubview:self.sizeThickNessView];
@@ -105,7 +105,7 @@
     self.hideFormView.delegate = self;
     self.hideFormView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     [self.scrcollView addSubview:self.hideFormView];
     
     self.fontSettingView = [[CPDFFontSettingView alloc] init];

+ 5 - 5
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormRadioButtonViewController.m

@@ -66,7 +66,7 @@
     
     self.borderColorView = [[CPDFColorSelectView alloc] init];
     self.borderColorView.delegate = self;
-    self.borderColorView.colorLabel.text = NSLocalizedString(@"Border Color", nil);
+    self.borderColorView.colorLabel.text = NSLocalizedString(@"Stroke Color", nil);
     self.borderColorView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.borderColorView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.borderColorView.colorPickerView.showsHorizontalScrollIndicator = NO;
@@ -85,7 +85,7 @@
     
     self.colorSelectView.colorLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.colorSelectView.colorLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.colorSelectView.colorLabel.text = NSLocalizedString(@"Color", nil);
+    self.colorSelectView.colorLabel.text = NSLocalizedString(@"Checkmark Color", nil);
     self.colorSelectView.delegate = self;
     self.colorSelectView.colorPickerView.showsHorizontalScrollIndicator = NO;
     
@@ -93,7 +93,7 @@
     [self.scrcollView addSubview:self.selectDefaultSwitchView];
     self.selectDefaultSwitchView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.selectDefaultSwitchView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.selectDefaultSwitchView.titleLabel.text = NSLocalizedString(@"Selected by default", nil);
+    self.selectDefaultSwitchView.titleLabel.text = NSLocalizedString(@"Button is Checked by default", nil);
     self.selectDefaultSwitchView.delegate = self;
     
     self.hideFormSwitchView = [[CPDFFormSwitchView alloc] init];
@@ -101,7 +101,7 @@
     
     self.hideFormSwitchView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormSwitchView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormSwitchView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormSwitchView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     self.hideFormSwitchView.delegate = self;
     
     self.arrowStyleView = [[CPDFFormArrowStyleView alloc] init];
@@ -110,7 +110,7 @@
     self.arrowStyleView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.arrowStyleView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
     self.arrowStyleView.delegate  = self;
-    self.arrowStyleView.titleLabel.text = NSLocalizedString(@"Arrow Style", nil);
+    self.arrowStyleView.titleLabel.text = NSLocalizedString(@"Button Style", nil);
     
     self.buttonWidget = (CPDFButtonWidgetAnnotation*)self.annotManage.annotStyle.annotations.firstObject;
 }

+ 2 - 2
compdfkit-tools/compdfkit-tools/Form/Controller/CPDFFormTextViewController.m

@@ -106,7 +106,7 @@
     self.hideFormView.delegate = self;
     self.hideFormView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.hideFormView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide Form", nil);
+    self.hideFormView.titleLabel.text = NSLocalizedString(@"Hide The Field", nil);
     [self.scrcollView addSubview:self.hideFormView];
     
     self.multiLineView = [[CPDFFormSwitchView alloc] init];
@@ -130,7 +130,7 @@
     self.inputTextView = [[CPDFFormInputTextView alloc] init];
     self.inputTextView.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];
     self.inputTextView.titleLabel.textColor = [UIColor colorWithRed:153/255. green:153/255. blue:153/255. alpha:1];
-    self.inputTextView.titleLabel.text = NSLocalizedString(@"Preset Text Content", nil);
+    self.inputTextView.titleLabel.text = NSLocalizedString(@"Default Value", nil);
     self.inputTextView.delegate = self;
     [self.scrcollView addSubview:self.inputTextView];