From 8c1a0548ccc2a8db96fed3f9f3935642d87c02c4 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Mon, 7 Feb 2022 20:26:18 +0300 Subject: Fix pangram --- src/core/stdpopup/src/options.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/stdpopup/src/options.cpp b/src/core/stdpopup/src/options.cpp index ad599987c8..d4a844404f 100644 --- a/src/core/stdpopup/src/options.cpp +++ b/src/core/stdpopup/src/options.cpp @@ -301,15 +301,15 @@ public: pd.flags = PDF_UNICODE; pd.pwszTitle = TranslateT("Example"); - pd.pwszText = TranslateT("The quick brown fox jumped over the lazy dog."); + pd.pwszText = TranslateT("The quick brown fox jumps over the lazy dog."); ShowPopup(pd); pd.pwszTitle = TranslateT("Example With a Long Title"); - pd.pwszText = TranslateT("The quick brown fox jumped over the lazy dog."); + pd.pwszText = TranslateT("The quick brown fox jumps over the lazy dog."); ShowPopup(pd); pd.pwszTitle = TranslateT("Example"); - pd.pwszText = TranslateT("Thequickbrownfoxjumpedoverthelazydog."); + pd.pwszText = TranslateT("Thequickbrownfoxjumpsoverthelazydog."); ShowPopup(pd); for (auto &hContact : Contacts()) { -- cgit v1.2.3