diff options
author | bviktor <bviktor@outlook.com> | 2012-11-03 21:48:56 -0700 |
---|---|---|
committer | bviktor <bviktor@outlook.com> | 2012-11-03 21:48:56 -0700 |
commit | 3c5284f19de644e010d0dfe85d179fb5633c92fb (patch) | |
tree | cfcfb0f27d78dd65bb657f0e0caeabb42737cc03 /src/fe-gtk/fkeys.c | |
parent | e0b1724158d44370d34d108a5f07fe0b36e4e254 (diff) | |
parent | c2c23894fc4e376ff10c9c3cbcfa5c350c1e3073 (diff) |
Merge pull request #224 from Arnavion/utf8-everywhere
UTF-8 everywhere
Diffstat (limited to 'src/fe-gtk/fkeys.c')
-rw-r--r-- | src/fe-gtk/fkeys.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fe-gtk/fkeys.c b/src/fe-gtk/fkeys.c index f86a59f8..4e0cd4a3 100644 --- a/src/fe-gtk/fkeys.c +++ b/src/fe-gtk/fkeys.c @@ -1019,8 +1019,8 @@ key_load_kbs (char *filename) free (ibuf); ibuf = malloc (1024); snprintf (ibuf, 1024, - _("Unknown keyname %s in key bindings config file\nLoad aborted, please fix %s/keybindings.conf\n"), - buf, get_xdir_utf8 ()); + _("Unknown keyname %s in key bindings config file\nLoad aborted, please fix %s" G_DIR_SEPARATOR_S "keybindings.conf\n"), + buf, get_xdir ()); fe_message (ibuf, FE_MSG_ERROR); free (ibuf); return 2; @@ -1057,8 +1057,8 @@ key_load_kbs (char *filename) free (ibuf); ibuf = malloc (1024); snprintf (ibuf, 1024, - _("Unknown action %s in key bindings config file\nLoad aborted, Please fix %s/keybindings\n"), - buf, get_xdir_utf8 ()); + _("Unknown action %s in key bindings config file\nLoad aborted, Please fix %s" G_DIR_SEPARATOR_S "keybindings\n"), + buf, get_xdir ()); fe_message (ibuf, FE_MSG_ERROR); free (ibuf); return 3; @@ -1078,8 +1078,8 @@ key_load_kbs (char *filename) free (ibuf); ibuf = malloc (1024); snprintf (ibuf, 1024, - _("Expecting Data line (beginning Dx{:|!}) but got:\n%s\n\nLoad aborted, Please fix %s/keybindings\n"), - buf, get_xdir_utf8 ()); + _("Expecting Data line (beginning Dx{:|!}) but got:\n%s\n\nLoad aborted, Please fix %s" G_DIR_SEPARATOR_S "keybindings\n"), + buf, get_xdir ()); fe_message (ibuf, FE_MSG_ERROR); free (ibuf); return 4; @@ -1148,8 +1148,8 @@ key_load_kbs (char *filename) abort ();*/ snprintf (ibuf, 1024, _("Key bindings config file is corrupt, load aborted\n" - "Please fix %s/keybindings.conf\n"), - get_xdir_utf8 ()); + "Please fix %s" G_DIR_SEPARATOR_S "keybindings.conf\n"), + get_xdir ()); fe_message (ibuf, FE_MSG_ERROR); free (ibuf); return 5; |