summaryrefslogtreecommitdiff
path: root/apps/player
diff options
context:
space:
mode:
Diffstat (limited to 'apps/player')
-rw-r--r--apps/player/keyboard.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c
index 5d45306f83..aee6eb5de9 100644
--- a/apps/player/keyboard.c
+++ b/apps/player/keyboard.c
@@ -24,7 +24,7 @@
24#include "sprintf.h" 24#include "sprintf.h"
25#include <string.h> 25#include <string.h>
26#include "lcd-player-charset.h" 26#include "lcd-player-charset.h"
27 27#include "lang.h"
28#include "debug.h" 28#include "debug.h"
29 29
30#define KEYBOARD_PAGES 3 30#define KEYBOARD_PAGES 3
@@ -132,16 +132,16 @@ int kbd_input(char* text, int buflen)
132 lcd_puts(1, 1, temptext); 132 lcd_puts(1, 1, temptext);
133 break; 133 break;
134 case MENU_LINE_BACKSPACE: 134 case MENU_LINE_BACKSPACE:
135 lcd_puts_scroll(1, 1, "Backspace"); 135 lcd_puts_scroll(1, 1, str(LANG_PLAYER_KEYBOARD_BACKSPACE));
136 break; 136 break;
137 case MENU_LINE_DELETE: 137 case MENU_LINE_DELETE:
138 lcd_puts_scroll(1, 1, "Delete"); 138 lcd_puts_scroll(1, 1, str(LANG_PLAYER_KEYBOARD_DELETE));
139 break; 139 break;
140 case MENU_LINE_ACCEPT: 140 case MENU_LINE_ACCEPT:
141 lcd_puts_scroll(1, 1, "Accept"); 141 lcd_puts_scroll(1, 1, str(LANG_PLAYER_KEYBOARD_ACCEPT));
142 break; 142 break;
143 case MENU_LINE_QUIT: 143 case MENU_LINE_QUIT:
144 lcd_puts_scroll(1, 1, "Abort"); 144 lcd_puts_scroll(1, 1, str(LANG_PLAYER_KEYBOARD_ABORT));
145 break; 145 break;
146 } 146 }
147 if (menu_line==MENU_LINE_INPUT) { 147 if (menu_line==MENU_LINE_INPUT) {