Fixed issue with incorrect displaying some of the translated strings to Bulgarian language

Fixed issue with incorrect displaying some of the translated strings to Bulgarian language (#5905)
This commit is contained in:
Theo Arends 2019-06-03 10:51:21 +02:00
parent efb4d08823
commit 7ce54debdc
2 changed files with 3 additions and 3 deletions

View File

@ -788,7 +788,7 @@ void WSContentSendStyle(void)
void WSContentButton(uint8_t title_index)
{
char action[4];
char title[32];
char title[64];
if (title_index <= BUTTON_RESET_CONFIGURATION) {
char confirm[64];
@ -1489,7 +1489,7 @@ void HandleLoggingConfiguration(void)
WSContentStart_P(S_CONFIGURE_LOGGING);
WSContentSendStyle();
WSContentSend_P(HTTP_FORM_LOG1);
char stemp1[32];
char stemp1[45];
char stemp2[32];
uint8_t dlevel[3] = { LOG_LEVEL_INFO, LOG_LEVEL_INFO, LOG_LEVEL_NONE };
for (uint8_t idx = 0; idx < 3; idx++) {

View File

@ -455,7 +455,7 @@ void HandleDomoticzConfiguration(void)
return;
}
char stemp[32];
char stemp[40];
WSContentStart_P(S_CONFIGURE_DOMOTICZ);
WSContentSendStyle();