diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-05-31 19:45:35 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-25 16:35:27 +0200 |
commit | dc60f343badd8abb93fa8082924cf0fd6e1ce1df (patch) | |
tree | 50a3a16487a26afc84cd321352876966852c129b /src/plugins/fset | |
parent | 02a94b496082fe55d06083601c777ff576405343 (diff) | |
download | weechat-dc60f343badd8abb93fa8082924cf0fd6e1ce1df.zip |
fset: translate buffer title
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/fset-buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/fset/fset-buffer.c b/src/plugins/fset/fset-buffer.c index 004b7c3c7..58564d145 100644 --- a/src/plugins/fset/fset-buffer.c +++ b/src/plugins/fset/fset-buffer.c @@ -53,10 +53,10 @@ fset_buffer_set_title () num_options = weechat_arraylist_size (fset_options); snprintf (str_title, sizeof (str_title), - "%s | %d/%d | " - "Key(input): alt+'-'(-)=subtract 1, alt+'+'(+)=add 1, " - "alt+f,alt+r(r)=reset, alf+f,alt+u(u)=unset, alt+enter(s)=set, " - "alt+f,alt+a(a)=append", + _("%s | %d/%d | " + "Key(input): alt+'-'(-)=subtract 1, alt+'+'(+)=add 1, " + "alt+f,alt+r(r)=reset, alf+f,alt+u(u)=unset, " + "alt+enter(s)=set, alt+f,alt+a(a)=append"), (fset_option_filter) ? fset_option_filter : "*", (num_options > 0) ? fset_buffer_selected_line + 1 : 0, num_options); |