Get ordering of dates in Spanish right (dd-mm-yyyy)

1. Switch from mm-dd-yyyy to dd-mm-yyyy
2. Insert "de" (Spanish for "of") preposition.
3. Document this new voice recording "of.wav".

As reported in FS-7279.
上级 efd3744a
......@@ -222,6 +222,7 @@ I will translate them anyways
<prompt phrase="Noviembre" filename="mon-10.wav"/>
<prompt phrase="Diciembre" filename="mon-11.wav"/>
<prompt phrase="En punto" filename="oclock.wav"/>
<prompt phrase="de" filename="of.wav"/>
<prompt phrase="oh" filename="oh.wav"/>
<prompt phrase="P.M." filename="p-m.wav"/>
<prompt phrase="Segundo" filename="second.wav"/>
......
......@@ -171,6 +171,7 @@
<prompt phrase="Noviembre" filename="mon-10.wav"/>
<prompt phrase="Diciembre" filename="mon-11.wav"/>
<prompt phrase="En punto" filename="oclock.wav"/>
<prompt phrase="de" filename="of.wav"/>
<prompt phrase="P.M." filename="p-m.wav"/>
<prompt phrase="Segundo" filename="second.wav"/>
<prompt phrase="Segundos" filename="seconds.wav"/>
......
......@@ -170,6 +170,7 @@
<prompt phrase="Noviembre" filename="mon-10.wav"/>
<prompt phrase="Diciembre" filename="mon-11.wav"/>
<prompt phrase="En punto" filename="oclock.wav"/>
<prompt phrase="de" filename="of.wav"/>
<prompt phrase="P.M." filename="p-m.wav"/>
<prompt phrase="Segundo" filename="second.wav"/>
<prompt phrase="Segundos" filename="seconds.wav"/>
......
......@@ -335,8 +335,10 @@ static switch_status_t es_say_time(switch_core_session_t *session, char *tosay,
if (say_date) {
say_file("time/day-%d.wav", tm.tm_wday);
say_file("time/mon-%d.wav", tm.tm_mon);
say_num(tm.tm_mday, SSM_PRONOUNCED);
say_file("time/of.wav");
say_file("time/mon-%d.wav", tm.tm_mon);
say_file("time/of.wav");
say_num(tm.tm_year + 1900, SSM_PRONOUNCED);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论