diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-06 13:58:26 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-06 14:07:57 +0100 |
commit | 9876a8d0a78a118f65a020c727c1fb079b9adcbd (patch) | |
tree | b55504f846ebfcbcc70766dc00f9ad6164ae14d1 /src/plugins/php | |
parent | bab307bf1b5ac07c45fd2ddb78930831bddb9c4b (diff) | |
download | weechat-9876a8d0a78a118f65a020c727c1fb079b9adcbd.zip |
core: update translations (issue #128)
Diffstat (limited to 'src/plugins/php')
-rw-r--r-- | src/plugins/php/weechat-php.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c index 24fe40cbb..04ae5afe0 100644 --- a/src/plugins/php/weechat-php.c +++ b/src/plugins/php/weechat-php.c @@ -823,7 +823,7 @@ weechat_php_reload_name (const char *name) } /* - * Evaluates PHP code. + * Evaluates PHP source code. * * Returns: * 1: OK @@ -978,8 +978,9 @@ weechat_php_command_cb (const void *pointer, void *data, WEECHAT_COMMAND_ERROR; /* TODO: implement /php eval */ weechat_printf (NULL, - "%sCommand \"/php eval\" is not yet implemented", - weechat_prefix ("error")); + _("%sCommand \"/%s eval\" is not yet implemented"), + weechat_prefix ("error"), + weechat_php_plugin->name); } else WEECHAT_COMMAND_ERROR; |