aboutsummaryrefslogtreecommitdiff
path: root/src/Routes/Home.c
diff options
context:
space:
mode:
authorfrosty <gabriel@bwaaa.monster>2026-04-03 11:23:38 -0400
committerfrosty <gabriel@bwaaa.monster>2026-04-03 14:09:06 -0400
commitc9709029ca37ce27ea2d395b07ebb535c4bc421f (patch)
tree444c139cfa262b342454f0d157d96904715dd3a0 /src/Routes/Home.c
parent0eff62bf68b3e272853eb9781d194208dd80fed7 (diff)
downloadomnisearch-c9709029ca37ce27ea2d395b07ebb535c4bc421f.tar.gz
fix: replaced en_uk with en_gb as default locale
Diffstat (limited to 'src/Routes/Home.c')
-rw-r--r--src/Routes/Home.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Routes/Home.c b/src/Routes/Home.c
index 48edfd9..bbd53b7 100644
--- a/src/Routes/Home.c
+++ b/src/Routes/Home.c
@@ -6,7 +6,7 @@
int home_handler(UrlParams *params) {
(void)params;
char *theme = get_theme("");
- char *locale = get_locale("en_uk");
+ char *locale = get_locale("en_gb");
TemplateContext ctx = new_context();
context_set(&ctx, "theme", theme);