diff options
-rw-r--r-- | src/core/stdpopup/src/options.cpp | 6 |
1 files 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()) { |