diff options
author | dartraiden <wowemuh@gmail.com> | 2023-02-26 20:48:56 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-02-26 20:48:56 +0300 |
commit | 91c3279c09cfdf6e0fa0bc6ced553e5886795f17 (patch) | |
tree | 90f33a9b49ddd49ed9dd1ead265dcc71359dd165 | |
parent | 5f7d43f3579ef7252cd9680a0631f4e681c69dcf (diff) |
partial fix for #3350
-rw-r--r-- | plugins/VoiceService/src/VoiceCall.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/VoiceService/src/VoiceCall.cpp b/plugins/VoiceService/src/VoiceCall.cpp index 0435391629..221aebedb6 100644 --- a/plugins/VoiceService/src/VoiceCall.cpp +++ b/plugins/VoiceService/src/VoiceCall.cpp @@ -35,13 +35,13 @@ struct { wchar_t *btn2text; } static stateTexts[NUM_STATES] = { - { L"0:00", L"Hold", L"Drop" }, - { L"Ringing", L"Answer", L"Drop" }, - { L"Calling", nullptr, L"Drop" }, - { L"Holded", L"Resume", L"Drop" }, - { nullptr, nullptr, L"Close" }, - { L"Callee is busy", nullptr, L"Close" }, - { L"Ready", L"Call", L"Cancel" }, + { L"0:00", LPGENW("Hold"), LPGENW("Drop") }, + { LPGENW("Ringing"), LPGENW("Answer"), LPGENW("Drop") }, + { LPGENW("Calling"), nullptr, LPGENW("Drop") }, + { LPGENW("Holded"), LPGENW("Resume"), LPGENW("Drop") }, + { nullptr, nullptr, LPGENW("Close") }, + { LPGENW("Callee is busy"), nullptr, LPGENW("Close") }, + { LPGENW("Ready"), LPGENW("Call"), LPGENW("Cancel") }, }; ///////////////////////////////////////////////////////////////////////////////////////// |