summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-08-17 13:31:34 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-08-17 13:31:34 +0000
commitb9731561f86eef8212ec39cecd02cfe329bffc87 (patch)
treedd3d193019e1714a81ae571e16ddfa4cc10eec46
parentf1781318d3483bac2bb5f87f4bdb96f678e6945a (diff)
downloadrockbox-b9731561f86eef8212ec39cecd02cfe329bffc87.tar.gz
rockbox-b9731561f86eef8212ec39cecd02cfe329bffc87.zip
forgot to translate the splash messages
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10633 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/action.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/action.c b/apps/action.c
index 8f6af0245c..e031ce0312 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -21,6 +21,8 @@
#include <stdlib.h>
#include "config.h"
+#include "lang.h"
+
#include "button.h"
#include "action.h"
#include "kernel.h"
@@ -128,7 +130,7 @@ int get_action_worker(int context, int timeout,
{
last_button = BUTTON_NONE;
keys_locked = false;
- gui_syncsplash(HZ/2, true, "Keys Unlocked");
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_OFF_PLAYER));
return ACTION_REDRAW;
}
else
@@ -137,7 +139,7 @@ int get_action_worker(int context, int timeout,
#endif
{
if ((button&BUTTON_REL))
- gui_syncsplash(HZ, true, "Keys Locked");
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER));
return ACTION_REDRAW;
}
}
@@ -179,7 +181,7 @@ int get_action_worker(int context, int timeout,
unlock_combo = button;
keys_locked = true;
action_signalscreenchange();
- gui_syncsplash(HZ, true, "Keys Locked");
+ gui_syncsplash(HZ/2, true, str(LANG_KEYLOCK_ON_PLAYER));
button_clear_queue();
return ACTION_REDRAW;