@ledvance/base 1.3.23 → 1.3.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/localazy.json +11 -1
- package/package.json +1 -1
- package/src/components/TextField.tsx +1 -2
- package/src/i18n/strings.ts +493 -2045
- package/translateKey.txt +11 -1
package/localazy.json
CHANGED
|
@@ -930,7 +930,17 @@
|
|
|
930
930
|
"MATCH:mood_string_mode_light_show",
|
|
931
931
|
"MATCH:thermostat_scene",
|
|
932
932
|
"MATCH:thermostat_vacationplan",
|
|
933
|
-
"MATCH:thermostat_automatictab"
|
|
933
|
+
"MATCH:thermostat_automatictab",
|
|
934
|
+
"MATCH:conflict_dialog_active_item_bio_rhythm_description",
|
|
935
|
+
"MATCH:conflict_dialog_active_item_wakeupschedule_titel",
|
|
936
|
+
"MATCH:conflict_dialog_active_item_wakeupschedule_description",
|
|
937
|
+
"MATCH:conflict_dialog_active_item_sleepschedule_description",
|
|
938
|
+
"MATCH:thermostat_scenedescription",
|
|
939
|
+
"MATCH:routines_add_scence_doalog_headline",
|
|
940
|
+
"MATCH:thermostat_editscene",
|
|
941
|
+
"MATCH:thermostat_inputlosteditscene",
|
|
942
|
+
"MATCH:thermostat_infocancelscene",
|
|
943
|
+
"MATCH:thermostat_cancelscene"
|
|
934
944
|
],
|
|
935
945
|
"replacements": {
|
|
936
946
|
"REGEX:% %1\\$s.*?\\)%": "{0}",
|
package/package.json
CHANGED
|
@@ -18,7 +18,6 @@ interface TextFieldProps extends TextInputProps {
|
|
|
18
18
|
const TextField = (props: TextFieldProps) => {
|
|
19
19
|
const icon = props.tipIcon || res.ic_warning_amber
|
|
20
20
|
const color = props.tipColor || props.theme?.global.warning
|
|
21
|
-
const editable = props.editable ?? !props.editable
|
|
22
21
|
|
|
23
22
|
const styles = StyleSheet.create({
|
|
24
23
|
topTip: {
|
|
@@ -70,7 +69,7 @@ const TextField = (props: TextFieldProps) => {
|
|
|
70
69
|
<Text style={[styles.topTip, { opacity: (!!props.value) ? 1 : 0 }]}>{props.placeholder}</Text>
|
|
71
70
|
<View style={styles.textInputGroup}>
|
|
72
71
|
<TextInput{...props} style={styles.textInput} />
|
|
73
|
-
{!!props.value && editable &&
|
|
72
|
+
{!!props.value && props.editable &&
|
|
74
73
|
<TouchableOpacity
|
|
75
74
|
style={styles.iconTouchable}
|
|
76
75
|
onPress={() => {
|