update based on scott's comments

This commit is contained in:
panxi 2019-10-17 16:52:05 -04:00
parent d94bbc1dae
commit 4e1a6ca479
4 changed files with 86 additions and 74 deletions

View File

@ -46,8 +46,8 @@
// To set the placeholder and text // To set the placeholder and text
@property (nullable, weak, nonatomic) NSString *text; @property (nullable, weak, nonatomic) NSString *text;
@property (nullable, weak, nonatomic) NSString *formText; @property (nullable, weak, nonatomic) NSString *formText;
@property (nullable, weak, nonatomic) NSString *fieldKey; @property (nullable, strong, nonatomic) NSString *fieldKey;
@property (nullable, weak, nonatomic) NSString *groupName; @property (nullable, strong, nonatomic) NSString *groupName;
@property (nullable, weak, nonatomic) NSString *placeholder; // will move out in Feb release @property (nullable, weak, nonatomic) NSString *placeholder; // will move out in Feb release

View File

@ -37,6 +37,11 @@
"checkbox_checked_state" = "Verificado"; "checkbox_checked_state" = "Verificado";
"checkbox_unchecked_state" = "Sin marcar"; "checkbox_unchecked_state" = "Sin marcar";
"checkbox_desc_state" = "%@ Casilla %@"; "checkbox_desc_state" = "%@ Casilla %@";
// Radio Button
"radio_action_hint" = "Toca dos veces para seleccionar.";
"radio_selected_state" = "Seleccionado";
"radio_not_selected_state" = "No Seleccionado";
"radio_desc_state" = "Opción";
// Switch // Switch
"mfswitch_buttonlabel" = "Botón Cambiar"; "mfswitch_buttonlabel" = "Botón Cambiar";
"AccOn" = "encendido"; "AccOn" = "encendido";

View File

@ -37,6 +37,13 @@
"checkbox_checked_state" = "Verificado"; "checkbox_checked_state" = "Verificado";
"checkbox_unchecked_state" = "Sin marcar"; "checkbox_unchecked_state" = "Sin marcar";
"checkbox_desc_state" = "%@ Casilla %@"; "checkbox_desc_state" = "%@ Casilla %@";
// Radio Button
"radio_action_hint" = "Toca dos veces para seleccionar.";
"radio_selected_state" = "Seleccionado";
"radio_not_selected_state" = "No Seleccionado";
"radio_desc_state" = "Opción";
// Switch // Switch
"mfswitch_buttonlabel" = "Botón Cambiar"; "mfswitch_buttonlabel" = "Botón Cambiar";
"AccOn" = "encendido"; "AccOn" = "encendido";