mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix capitalization in summary bar. Fixes #394550.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15419 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
19dcf011eb
commit
1ca2c7f405
@ -313,13 +313,13 @@ get_total_mode_label(const char *mnemonic, int total_mode)
|
|||||||
switch(total_mode)
|
switch(total_mode)
|
||||||
{
|
{
|
||||||
case TOTAL_CURR_TOTAL:
|
case TOTAL_CURR_TOTAL:
|
||||||
label_str = g_strdup_printf( _("%s, total:"), mnemonic );
|
label_str = g_strdup_printf( _("%s, Total:"), mnemonic );
|
||||||
break;
|
break;
|
||||||
case TOTAL_NON_CURR_TOTAL:
|
case TOTAL_NON_CURR_TOTAL:
|
||||||
label_str = g_strdup_printf( _("%s, non currency commodities total:"), mnemonic );
|
label_str = g_strdup_printf( _("%s, Non Currency Commodities Total:"), mnemonic );
|
||||||
break;
|
break;
|
||||||
case TOTAL_GRAND_TOTAL:
|
case TOTAL_GRAND_TOTAL:
|
||||||
label_str = g_strdup_printf( _("%s, grand total:"), mnemonic );
|
label_str = g_strdup_printf( _("%s, Grand Total:"), mnemonic );
|
||||||
break;
|
break;
|
||||||
case TOTAL_SINGLE:
|
case TOTAL_SINGLE:
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user