From 9d76fc778c19eb694774af6789980228bc438592 Mon Sep 17 00:00:00 2001 From: ebits Date: Thu, 20 Nov 2025 04:51:54 +0530 Subject: [PATCH] Fix: Alphabetical arrangement in Lang.zig --- src/config/Lang.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/Lang.zig b/src/config/Lang.zig index ef1eedd..ba391b4 100644 --- a/src/config/Lang.zig +++ b/src/config/Lang.zig @@ -20,6 +20,7 @@ err_domain: []const u8 = "invalid domain", err_empty_password: []const u8 = "empty password not allowed", err_envlist: []const u8 = "failed to get envlist", err_get_active_tty: []const u8 = "failed to get active tty", +err_hibernate: []const u8 = "failed to execute hibernate command", err_hostname: []const u8 = "failed to get hostname", err_lock_state: []const u8 = "failed to get lock state", err_log: []const u8 = "failed to open log file", @@ -47,7 +48,6 @@ err_perm_dir: []const u8 = "failed to change current directory", err_perm_group: []const u8 = "failed to downgrade group permissions", err_perm_user: []const u8 = "failed to downgrade user permissions", err_pwnam: []const u8 = "failed to get user info", -err_hibernate: []const u8 = "failed to execute hibernate command", err_sleep: []const u8 = "failed to execute sleep command", err_battery: []const u8 = "failed to load battery status", err_switch_tty: []const u8 = "failed to switch tty", @@ -60,6 +60,7 @@ err_xauth: []const u8 = "xauth command failed", err_xcb_conn: []const u8 = "xcb connection failed", err_xsessions_dir: []const u8 = "failed to find sessions folder", err_xsessions_open: []const u8 = "failed to open sessions folder", +hibernate: []const u8 = "hibernate", insert: []const u8 = "insert", login: []const u8 = "login", logout: []const u8 = "logged out", @@ -72,7 +73,6 @@ restart: []const u8 = "reboot", shell: [:0]const u8 = "shell", shutdown: []const u8 = "shutdown", sleep: []const u8 = "sleep", -hibernate: []const u8 = "hibernate", wayland: []const u8 = "wayland", x11: []const u8 = "x11", xinitrc: [:0]const u8 = "xinitrc",