From f580a6cf2d0f4b28d688068aeae923d37ce62a39 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Sun, 4 Jun 2023 22:36:11 +0800 Subject: [PATCH] [gnc-ui-balances.c] better wording for balance limits --- libgnucash/app-utils/gnc-ui-balances.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libgnucash/app-utils/gnc-ui-balances.c b/libgnucash/app-utils/gnc-ui-balances.c index 0451ca7626..a93c5d557a 100644 --- a/libgnucash/app-utils/gnc-ui-balances.c +++ b/libgnucash/app-utils/gnc-ui-balances.c @@ -366,9 +366,9 @@ get_balance_limit_info (const Account *account, gboolean icon) gboolean lower_limit_reached, higher_limit_reached; gboolean lower_is_zero = FALSE; gboolean higher_is_zero = FALSE; - const char *higher_template = N_("%s balance is %s, exceeds limit of %s."); - const char *lower_template = N_("%s balance is %s, subceeds limit of %s."); - const char *zero_template = N_("%s balance is %s, and should be zero."); + const char *higher_template = N_("%s balance of %s is above the upper limit %s."); + const char *lower_template = N_("%s balance of %s is below the lower limit %s."); + const char *zero_template = N_("%s balance of %s should be zero."); g_return_val_if_fail (GNC_IS_ACCOUNT(account), NULL);