From a71b3d2cd6c6f2dc03cf3f02d52f38155495f998 Mon Sep 17 00:00:00 2001 From: redtide Date: Tue, 15 Jun 2021 07:34:34 +0200 Subject: [PATCH] Update the standard catalog name used in the internat sample What used to be called "fileutils" is called "coreutils" since many years now, so use it to demonstrate loading of the standard catalog. Closes https://github.com/wxWidgets/wxWidgets/pull/2395 --- samples/internat/internat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/internat/internat.cpp b/samples/internat/internat.cpp index 16e86a6620..3d04895800 100644 --- a/samples/internat/internat.cpp +++ b/samples/internat/internat.cpp @@ -268,7 +268,7 @@ bool MyApp::OnInit() #ifdef __LINUX__ { wxLogNull noLog; - m_locale.AddCatalog("fileutils"); + m_locale.AddCatalog("coreutils"); } #endif