summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/lang/english.lang20
-rw-r--r--apps/lang/svenska.lang100
-rw-r--r--apps/player/keyboard.c10
3 files changed, 125 insertions, 5 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 14e3172269..a520ec64bc 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -1326,3 +1326,23 @@ id: LANG_CREATING
1326desc: Screen feedback during playlist creation 1326desc: Screen feedback during playlist creation
1327eng: "Creating" 1327eng: "Creating"
1328new: 1328new:
1329
1330id: LANG_PLAYER_KEYBOARD_BACKSPACE
1331desc: Backspace alternative in player keyboard interaction
1332eng: "Backspace"
1333new:
1334
1335id: LANG_PLAYER_KEYBOARD_DELETE
1336desc: Delete alternative in player keyboard interaction
1337eng: "Delete"
1338new:
1339
1340id: LANG_PLAYER_KEYBOARD_ACCEPT
1341desc: Accept alternative in player keyboard interaction
1342eng: "Accept"
1343new:
1344
1345id: LANG_PLAYER_KEYBOARD_ABORT
1346desc: Abort alternative in player keyboard interaction
1347eng: "Abort"
1348new:
diff --git a/apps/lang/svenska.lang b/apps/lang/svenska.lang
index 40b45cc903..1539a437ed 100644
--- a/apps/lang/svenska.lang
+++ b/apps/lang/svenska.lang
@@ -1218,3 +1218,103 @@ id: LANG_MENU_SETTING_OK
1218desc: Visual confirmation of changing a setting 1218desc: Visual confirmation of changing a setting
1219eng: "OK" 1219eng: "OK"
1220new: "OK" 1220new: "OK"
1221
1222id: LANG_ALARM_MOD_ALARM_MENU
1223desc: The name of the additional entry in the main menu for the RTC alarm mod.
1224eng: "Wake-Up Alarm"
1225new: "Väckarklocka"
1226
1227id: LANG_ALARM_MOD_ERROR
1228desc: The text that tells that the time is incorrect (for the RTC alarm mod).
1229eng: "Alarm time is too soon!"
1230new: "Väckning om för kort tid!"
1231
1232id: LANG_ALARM_MOD_KEYS
1233desc: Shown key functions in alarm menu (for the RTC alarm mod).
1234eng: "PLAY=Set OFF=Cancel"
1235new: "PLAY=Sätt OFF=Avbryt"
1236
1237id: LANG_ALARM_MOD_SHUTDOWN
1238desc: The text that tells the user that the alarm time is ok and the device shuts off (for the RTC alarm mod).
1239eng: "Shutting down..."
1240new: "Stannar..."
1241
1242id: LANG_ALARM_MOD_TIME
1243desc: The current alarm time shown in the alarm menu for the RTC alarm mod.
1244eng: "Alarm time: %02d:%02d"
1245new: "Alarm: %02d:%02d"
1246
1247id: LANG_ALARM_MOD_TIME_TO_GO
1248desc: The time until the alarm will go off shown in the alarm menu for the RTC alarm mod.
1249eng: "Waking up in %d:%02d"
1250new: "Vaknar om %d:%02d"
1251
1252id: LANG_CREATE_PLAYLIST
1253desc: Menu option for creating a playlist
1254eng: "Create Playlist"
1255new: "Skapa Spellista"
1256
1257id: LANG_CREATING
1258desc: Screen feedback during playlist creation
1259eng: "Creating"
1260new: "Skapar"
1261
1262id: LANG_DELETE
1263desc: The verb/action Delete
1264eng: "Delete"
1265new: "Radera"
1266
1267id: LANG_DELETED
1268desc: A file has beed deleted
1269eng: "Deleted"
1270new: "Raderad"
1271
1272id: LANG_FAILED
1273desc: Something failed. To be appended after above actions
1274eng: "failed"
1275new: "misslyckades"
1276
1277id: LANG_PLAYER_ONPLAY_1
1278desc:
1279eng: "\x81 Queue"
1280new: "\x81 Köa"
1281
1282id: LANG_PLAYER_ONPLAY_2
1283desc:
1284eng: "- Ren + Del"
1285new: "- Ren + Del"
1286
1287id: LANG_QUEUE
1288desc: The verb/action Queue
1289eng: "Queue"
1290new: "Kö"
1291
1292id: LANG_REALLY_DELETE
1293desc: Really Delete?
1294eng: "Delete?"
1295new: "Radera?"
1296
1297id: LANG_RENAME
1298desc: The verb/action Rename
1299eng: "Rename"
1300new: "Ändra namn"
1301
1302id: LANG_PLAYER_KEYBOARD_ABORT
1303desc: Abort alternative in player keyboard interaction
1304eng: "Abort"
1305new: "Avbryt"
1306
1307id: LANG_PLAYER_KEYBOARD_ACCEPT
1308desc: Accept alternative in player keyboard interaction
1309eng: "Accept"
1310new: "Utför"
1311
1312id: LANG_PLAYER_KEYBOARD_BACKSPACE
1313desc: Backspace alternative in player keyboard interaction
1314eng: "Backspace"
1315new: "Backsteg"
1316
1317id: LANG_PLAYER_KEYBOARD_DELETE
1318desc: Delete alternative in player keyboard interaction
1319eng: "Delete"
1320new: "Radera"
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) {