aboutsummaryrefslogtreecommitdiff
path: root/src/ui/contacts.c
diff options
context:
space:
mode:
authorJacki <jacki@thejackimonster.de>2024-04-02 02:33:21 +0200
committerJacki <jacki@thejackimonster.de>2024-04-02 02:33:21 +0200
commit0d20581183a04172ad3d10e75affd4fe37917617 (patch)
tree633d2b02fdc6220c08b80931e3cee08b3e9cd979 /src/ui/contacts.c
parent55d0af93d5c78c9e4ac8e3566a166694f86ecad7 (diff)
downloadmessenger-gtk-0d20581183a04172ad3d10e75affd4fe37917617.tar.gz
messenger-gtk-0d20581183a04172ad3d10e75affd4fe37917617.zip
Add first localization
Signed-off-by: Jacki <jacki@thejackimonster.de>
Diffstat (limited to 'src/ui/contacts.c')
-rw-r--r--src/ui/contacts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/contacts.c b/src/ui/contacts.c
index 9aac4bc..df12c5c 100644
--- a/src/ui/contacts.c
+++ b/src/ui/contacts.c
@@ -26,6 +26,7 @@
26 26
27#include "contact_entry.h" 27#include "contact_entry.h"
28#include "../application.h" 28#include "../application.h"
29#include "../ui.h"
29 30
30static void 31static void
31handle_close_button_click(UNUSED GtkButton *button, 32handle_close_button_click(UNUSED GtkButton *button,
@@ -182,7 +183,7 @@ ui_contacts_dialog_init(MESSENGER_Application *app,
182{ 183{
183 g_assert((app) && (handle)); 184 g_assert((app) && (handle));
184 185
185 handle->builder = gtk_builder_new_from_resource( 186 handle->builder = ui_builder_from_resource(
186 application_get_resource_path(app, "ui/contacts.ui") 187 application_get_resource_path(app, "ui/contacts.ui")
187 ); 188 );
188 189