summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-18 11:11:25 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-18 11:11:25 +0000
commitf7e307ee4d8600edf82a9a20d28d11453480641f (patch)
tree9babb2e88ef401ede3ac2113f5c35ae8a785cd2b /input
parentb5d81049e9322963c43852d04edb751ad0ab0d62 (diff)
downloadmpv-f7e307ee4d8600edf82a9a20d28d11453480641f.tar.bz2
mpv-f7e307ee4d8600edf82a9a20d28d11453480641f.tar.xz
Make a few more messages translatable by moving them into help_mp-en.h.
patch by Paul TT < paultt == at == hackerjournal == dot == it > git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16794 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r--input/input.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/input/input.c b/input/input.c
index ba01509b31..372a534134 100644
--- a/input/input.c
+++ b/input/input.c
@@ -21,6 +21,7 @@
#include "../osdep/keycodes.h"
#include "../osdep/timer.h"
#include "../mp_msg.h"
+#include "../help_mp.h"
#include "../m_config.h"
#include "../m_option.h"
@@ -833,7 +834,7 @@ mp_input_get_cmd_from_keys(int n,int* keys, int paused) {
cmd = mp_input_find_bind_for_key(def_cmd_binds,n,keys);
if(cmd == NULL) {
- mp_msg(MSGT_INPUT,MSGL_WARN,"No bind found for key %s",mp_input_get_key_name(keys[0]));
+ mp_msg(MSGT_INPUT,MSGL_WARN,MSGTR_NoBindFound,mp_input_get_key_name(keys[0]));
if(n > 1) {
int s;
for(s=1; s < n; s++)