From 2b5a4fef7649b582b95de055155b7d1a0b1f4a51 Mon Sep 17 00:00:00 2001 From: "Frank H. Ellenberger" Date: Mon, 20 Sep 2021 22:28:17 +0200 Subject: [PATCH] I18N: Mark a forgotten message translatable found by Christian Wehling --- gnucash/gnome/gnc-plugin-page-account-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/gnome/gnc-plugin-page-account-tree.c b/gnucash/gnome/gnc-plugin-page-account-tree.c index 967dcd8763..3c323480a9 100644 --- a/gnucash/gnome/gnc-plugin-page-account-tree.c +++ b/gnucash/gnome/gnc-plugin-page-account-tree.c @@ -1657,7 +1657,7 @@ gnc_plugin_page_account_tree_cmd_delete_account (GtkAction *action, GncPluginPag acct_name = g_strdup (_("(no name)")); if (gnc_account_n_children(account) > 1) { - gchar* message = g_strdup_printf("Account '%s' has more than one subaccount, move subaccounts or delete them before attempting to delete this account.", acct_name); + gchar* message = g_strdup_printf(_("The account \"%s\" has more than one subaccount.\n\nMove the subaccounts or delete them before attempting to delete this account."), acct_name); gnc_error_dialog(GTK_WINDOW(window),"%s", message); g_free (message); g_free(acct_name);