@@ -9,45 +9,45 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
9
9
a quite complicated regular expression. Plugging it into https://www.debuggex.com/ should help you figure out how
10
10
it is constructed.
11
11
-->
12
- <item name =" pattern_recognition" type =" string" >^(((watch|resume watching|listen to|watch movie ) (.+)( on (.+))?( on shuffle )?)|((offset|timecode) (.+)( on (.+))?)|((pause|stop|resume) playback( on (.+))?))|(connect to (.+)|disconnect )$</item >
12
+ <item name =" pattern_recognition" type =" string" >^(((ver|continuar viendo|escuchar|ver película ) (.+)( en (.+))?( en modo aleatorio )?)|((offset|timecode) (.+)( en (.+))?)|((pausar|detener|continuar) reproducción( en (.+))?))|(conectar a (.+)|desconectar )$</item >
13
13
14
- <item name =" pattern_on_client" type =" string" >(.+) on (.+)$</item >
15
- <item name =" pattern_resume_watching" type =" string" >^resume watching (.+)</item >
16
- <item name =" pattern_on_shuffle" type =" string" > on shuffle $</item >
17
- <item name =" pattern_watch" type =" string" >watch $1</item >
18
- <item name =" pattern_watch_movie" type =" string" >watch movie (.+)</item >
19
- <item name =" pattern_watch_season_episode_of_show" type =" string" >watch season ([0-9]+) episode ([0-9]+) of (.+)</item >
20
- <item name =" pattern_watch_show_season_episode" type =" string" >watch (.+) season ([0-9]+) episode ([0-9]+)</item >
21
- <item name =" pattern_watch_episode_of_show" type =" string" >watch episode (.+) of (.+)</item >
22
- <item name =" pattern_watch_next_episode_of_show" type =" string" >watch the next episode of (.+)</item >
23
- <item name =" pattern_watch_latest_episode_of_show" type =" string" >watch( the )? latest episode of (.+)</item >
24
- <item name =" pattern_watch_show_episode_named" type =" string" >watch (.+) episode (.+)</item >
25
- <item name =" pattern_connect_to" type =" string" >^connect to (.+)</item >
26
- <item name =" pattern_disconnect" type =" string" >^disconnect $</item >
27
- <item name =" pattern_watch2" type =" string" >watch (.+)</item >
14
+ <item name =" pattern_on_client" type =" string" >(.+) en (.+)$</item >
15
+ <item name =" pattern_resume_watching" type =" string" >^continuar viendo (.+)</item >
16
+ <item name =" pattern_on_shuffle" type =" string" > en modo aleatorio $</item >
17
+ <item name =" pattern_watch" type =" string" >ver $1</item >
18
+ <item name =" pattern_watch_movie" type =" string" >ver película (.+)</item >
19
+ <item name =" pattern_watch_season_episode_of_show" type =" string" >ver temporada ([0-9]+) episodio ([0-9]+) de (.+)</item >
20
+ <item name =" pattern_watch_show_season_episode" type =" string" >ver (.+) temporada ([0-9]+) episodio ([0-9]+)</item >
21
+ <item name =" pattern_watch_episode_of_show" type =" string" >ver el episodio (.+) de (.+)</item >
22
+ <item name =" pattern_watch_next_episode_of_show" type =" string" >ver el siguiente episodio de (.+)</item >
23
+ <item name =" pattern_watch_latest_episode_of_show" type =" string" >ver( el )? último episodio de (.+)</item >
24
+ <item name =" pattern_watch_show_episode_named" type =" string" >ver (.+) episodio (.+)</item >
25
+ <item name =" pattern_connect_to" type =" string" >^conectar a (.+)</item >
26
+ <item name =" pattern_disconnect" type =" string" >^desconectar $</item >
27
+ <item name =" pattern_watch2" type =" string" >ver (.+)</item >
28
28
29
29
<!--
30
30
The following pattern lets the user say "listen to <album> by <artist>" or
31
31
"listen to the album <album> by <artist>".
32
32
-->
33
- <item name =" pattern_listen_to_album_by_artist" type =" string" >listen to the album (.+) by (.+)</item >
33
+ <item name =" pattern_listen_to_album_by_artist" type =" string" >escuchar el álbum (.+) de (.+)</item >
34
34
35
- <item name =" pattern_listen_to_album" type =" string" >listen to the album (.+)</item >
36
- <item name =" pattern_listen_to_song_by_artist" type =" string" >listen to (.+) by (.+)</item >
35
+ <item name =" pattern_listen_to_album" type =" string" >escuchar el álbum (.+)</item >
36
+ <item name =" pattern_listen_to_song_by_artist" type =" string" >escuchar (.+) de (.+)</item >
37
37
38
- <item name =" pattern_pause_playback" type =" string" >pause playback </item >
39
- <item name =" pattern_resume_playback" type =" string" >resume playback </item >
40
- <item name =" pattern_stop_playback" type =" string" >stop playback </item >
38
+ <item name =" pattern_pause_playback" type =" string" >pausar reproducción </item >
39
+ <item name =" pattern_resume_playback" type =" string" >continuar reproducción </item >
40
+ <item name =" pattern_stop_playback" type =" string" >detener reproducción </item >
41
41
42
42
<!--
43
43
The following are used in conjunction with the pattern_offset below. These should match the
44
44
(hours?minutes?seconds?), with the addition of the ^ character (to indicate that in the matching
45
45
pattern group starts with (hours or minutes or seconds). Unreliable behavior may result if
46
46
these to not match the corresponding groups in pattern_offset.
47
47
-->
48
- <item name =" pattern_hours" type =" string" >^hours ?</item >
49
- <item name =" pattern_minutes" type =" string" >^minutes ?</item >
50
- <item name =" pattern_seconds" type =" string" >^seconds ?</item >
48
+ <item name =" pattern_hours" type =" string" >^horas ?</item >
49
+ <item name =" pattern_minutes" type =" string" >^minutos ?</item >
50
+ <item name =" pattern_seconds" type =" string" >^segundos ?</item >
51
51
52
52
<!--
53
53
Offset pattern. This lets the user start with with "offset" or "timecode", followed by:
@@ -63,5 +63,5 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
63
63
The (hours?|minutes?|seconds?) means hour, with or without an s at the end (singular or plural), and the
64
64
same for minutes and seconds (the | means "or").
65
65
-->
66
- <item name =" pattern_offset" type =" string" >^(offset|timecode) ([0-9]+|two|to ) (hours?|minutes?|seconds ?)(?: ([0-9]+|two|to ) (minutes?|seconds ?))?(?: ([0-9]+|two|to ) (seconds ?))?</item >
66
+ <item name =" pattern_offset" type =" string" >^(offset|timecode) ([0-9]) (horas?|minutos?|segundos ?)(?: ([0-9]) (minutos?|segundos ?))?(?: ([0-9]) (segundos ?))?</item >
67
67
</resources >
0 commit comments