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:
Christian Stimming 2007-01-22 16:35:11 +00:00
parent 19dcf011eb
commit 1ca2c7f405

View File

@ -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: