From b9731561f86eef8212ec39cecd02cfe329bffc87 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 17 Aug 2006 13:31:34 +0000 Subject: forgot to translate the splash messages git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10633 a1c6a512-1295-4272-9138-f99709370657 --- apps/action.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'apps') 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 #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; -- cgit v1.2.3