mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
new voice ID for the space character, allows to spell with a pause, once this is in the voice files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5333 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d69c4995f6
commit
de79e68b09
3 changed files with 32 additions and 3 deletions
|
|
@ -2256,7 +2256,7 @@ voice: "Plus"
|
||||||
new:
|
new:
|
||||||
|
|
||||||
id: VOICE_POINT
|
id: VOICE_POINT
|
||||||
desc: spoken only, for composing numbers
|
desc: spoken only, decimal separator for composing numbers
|
||||||
eng: ""
|
eng: ""
|
||||||
voice: "Komma"
|
voice: "Komma"
|
||||||
new:
|
new:
|
||||||
|
|
@ -2833,3 +2833,16 @@ desc: before acknowledging usb in case an MMC is inserted (Ondio)
|
||||||
eng: "Please remove inserted MMC"
|
eng: "Please remove inserted MMC"
|
||||||
voice: "Bitte Multimediakarte entfernen"
|
voice: "Bitte Multimediakarte entfernen"
|
||||||
new: "Bitte eingelegte MMC entfernen"
|
new: "Bitte eingelegte MMC entfernen"
|
||||||
|
|
||||||
|
id: VOICE_DOT
|
||||||
|
desc: spoken only, for spelling
|
||||||
|
eng: ""
|
||||||
|
voice: "Punkt"
|
||||||
|
new:
|
||||||
|
|
||||||
|
id: VOICE_PAUSE
|
||||||
|
desc: spoken only, for spelling, a split second of silence (difficult to author)
|
||||||
|
eng: ""
|
||||||
|
voice: " "
|
||||||
|
new:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2270,7 +2270,7 @@ voice: "plus"
|
||||||
new:
|
new:
|
||||||
|
|
||||||
id: VOICE_POINT
|
id: VOICE_POINT
|
||||||
desc: spoken only, for composing numbers
|
desc: spoken only, decimal separator for composing numbers
|
||||||
eng: ""
|
eng: ""
|
||||||
voice: "point"
|
voice: "point"
|
||||||
new:
|
new:
|
||||||
|
|
@ -2847,3 +2847,16 @@ desc: before acknowledging usb in case an MMC is inserted (Ondio)
|
||||||
eng: "Please remove inserted MMC"
|
eng: "Please remove inserted MMC"
|
||||||
voice: "Please remove multimedia card"
|
voice: "Please remove multimedia card"
|
||||||
new:
|
new:
|
||||||
|
|
||||||
|
id: VOICE_DOT
|
||||||
|
desc: spoken only, for spelling
|
||||||
|
eng: ""
|
||||||
|
voice: "dot"
|
||||||
|
new:
|
||||||
|
|
||||||
|
id: VOICE_PAUSE
|
||||||
|
desc: spoken only, for spelling, a split second of silence (difficult to author)
|
||||||
|
eng: ""
|
||||||
|
voice: " "
|
||||||
|
new:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -610,7 +610,10 @@ int talk_spell(const char* spell, bool enqueue)
|
||||||
else if (c == '+')
|
else if (c == '+')
|
||||||
talk_id(VOICE_PLUS, true);
|
talk_id(VOICE_PLUS, true);
|
||||||
else if (c == '.')
|
else if (c == '.')
|
||||||
talk_id(VOICE_POINT, true);
|
talk_id(VOICE_POINT, true);
|
||||||
|
/* fixme: change to VOICE_DOT when settled in the voice files */
|
||||||
|
else if (c == ' ')
|
||||||
|
talk_id(VOICE_PAUSE, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue