diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-09-18 12:41:12 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-09-18 12:41:12 +0000 |
commit | fa9dee01bc70a56cb602f66776a43939c8293f6f (patch) | |
tree | cde60a608aa0f16f51c28099f784d85b832dc862 /apps/lang/english.lang | |
parent | 7ef47ed87614d6100b491b2c0eb9f75d1fdc1f01 (diff) |
Reverted the recording timer commit, as it has at least 2 major problems. (1) It uses the user timer, which interferes e.g. with backlight fading on H1x0 (and potentially other targets). Using the user timer here is a waste, as the required timing lies in the range of seconds to days. A tick task would be sufficient. (2) It draws to the LCD from within an ISR. This must not be done unless there's a mechanism to ensure it doesn't interfere with the main thread's drawing, otherwise garbage might be displayed and LCD updates might stop working.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10991 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/lang/english.lang')
-rw-r--r-- | apps/lang/english.lang | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang index 8dee255c8a..320d4d0f2b 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -9806,83 +9806,3 @@ *: "" </voice> </phrase> -<phrase> - id: LANG_TIMER_CONFIRM - desc: Confirm string for recording countdown timer settings - user: - <source> - *: "Press PLAY to confirm" - </source> - <dest> - *: "Press PLAY to confirm" - h100,h120,h300: "Press NAVI to confirm" - </dest> - <voice> - *: "" - </voice> -</phrase> -<phrase> - id: LANG_TIMER_SET - desc: Recording timer menu - <source> - *: "Set countdown timer" - </source> - <dest> - *: "Set countdown timer" - </dest> - <voice> - *: "Set countdown timer" - </voice> -</phrase> -<phrase> - id: LANG_TIMER_DAYS - desc: recording timer settings string - <source> - *: "Days" - </source> - <dest> - *: "Days" - </dest> - <voice> - *: "Days" - </voice> -</phrase> -<phrase> - id: LANG_TIMER_HRS - desc: recording timer settings string - <source> - *: "Hrs" - </source> - <dest> - *: "Hrs" - </dest> - <voice> - *: "Hrs" - </voice> -</phrase> -<phrase> - id: LANG_TIMER_MINS - desc: recording timer settings string - <source> - *: "Mins" - </source> - <dest> - *: "Mins" - </dest> - <voice> - *: "Mins" - </voice> -</phrase> -<phrase> - id: LANG_REC_TIMER - desc: recording screen timer string - <source> - *: "Timer" - </source> - <dest> - *: "Timer" - </dest> - <voice> - *: "Timer" - </voice> -</phrase> |