summaryrefslogtreecommitdiff
path: root/src/locales/en.cpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 15:54:30 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-10-04 15:54:30 +0200
commit2855642dd16cea260f3b32351f0529328a0bcb15 (patch)
treea375d2c57e1089ba54746371674e48c9216bb8e4 /src/locales/en.cpp
parentb8e049f02a16dc8398b2a954b561c84beda423c7 (diff)
namespacing locale, config, file_templates
Diffstat (limited to 'src/locales/en.cpp')
-rw-r--r--src/locales/en.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locales/en.cpp b/src/locales/en.cpp
index d311b36..9410663 100644
--- a/src/locales/en.cpp
+++ b/src/locales/en.cpp
@@ -16,7 +16,7 @@
#include "locales.hpp"
-locale_entry en_locales[] = {
+locale::locale_entry locale::en_locales[] = {
// General UI strings.
{"ui.unsavedProject", "[unsaved project]"},
{"ui.workingOn", "Working on"},
@@ -209,4 +209,4 @@ locale_entry en_locales[] = {
{"import.error.import","Failure: Failed to import result from service"},
};
-const int en_locale_count = sizeof(en_locales) / sizeof(en_locales[0]); \ No newline at end of file
+const int locale::en_locale_count = sizeof(locale::en_locales) / sizeof(locale::en_locales[0]); \ No newline at end of file