diff --git a/client/packages/openblocks/src/comps/comps/dateComp/timeMobileUIView.tsx b/client/packages/openblocks/src/comps/comps/dateComp/timeMobileUIView.tsx index 0ab3a11f..51ff9724 100644 --- a/client/packages/openblocks/src/comps/comps/dateComp/timeMobileUIView.tsx +++ b/client/packages/openblocks/src/comps/comps/dateComp/timeMobileUIView.tsx @@ -90,6 +90,8 @@ const handleClick = ( params.onChange(time); }, onClose: params.onBlur, + confirmText: trans("time.mobileConfirmButtonText"), + cancelText: trans("time.mobileCancelButtonText") }); params.onFocus(); diff --git a/client/packages/openblocks/src/i18n/locales/en.ts b/client/packages/openblocks/src/i18n/locales/en.ts index b0e674e7..b7e7db1b 100644 --- a/client/packages/openblocks/src/i18n/locales/en.ts +++ b/client/packages/openblocks/src/i18n/locales/en.ts @@ -1019,6 +1019,8 @@ export const en = { placeholder: "Select Time", startTime: "Start time", endTime: "End time", + mobileCancelButtonText: "Cancel", + mobileConfirmButtonText: "Confirm", }, button: { prefixIcon: "Prefix icon", diff --git a/client/packages/openblocks/src/i18n/locales/pt.ts b/client/packages/openblocks/src/i18n/locales/pt.ts index f6abfb9f..d8e51e0b 100644 --- a/client/packages/openblocks/src/i18n/locales/pt.ts +++ b/client/packages/openblocks/src/i18n/locales/pt.ts @@ -1053,6 +1053,8 @@ export const pt = { placeholder: "Selecione o tempo", startTime: "Tempo de início", endTime: "Tempo final", + mobileCancelButtonText: "Cancelar", + mobileConfirmButtonText: "Confirmar", }, button: { prefixIcon: "Ícone do prefixo",