You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mobile/src/main/res/values-de/patterns.xml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ 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
-
<itemname="pattern_recognition"type="string">^(((schaue|spiele|wiedergabe fortsetzen|höre|schaue film|spiele film) (.+)( auf (.+))?( auf zufallswiedergabe)?)|((offset|zeitcode) (.+)( auf (.+))?)|((pausieren|anhalten|fortsetzen) wiedergabe( auf (.+))?))|(verbinde mit (.+)|trenne)$</item>
12
+
<itemname="pattern_recognition"type="string">^(((schaue|spiele|wiedergabe fortsetzen|höre|schaue film|spiele film) (.+)( auf (.+))?( auf zufallswiedergabe)?)|((offset|zeitcode) (.+)( auf (.+))?)|(( wiedergabe)?(pausieren|anhalten|fortsetzen)( auf (.+))?))|(verbinde mit (.+)|trenne)$</item>
13
13
14
14
<itemname="pattern_on_client"type="string">(.+) auf (.+)$</item>
The following three patterns allow for pause/resume/stop of playback. If your language reverses the order of the
40
+
words ("pause" and "playback", for example), make sure to reverse the order of the corresponding phrase in the pattern_recognition pattern above:
41
+
(pause|stop|resume)( playback)?
42
+
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
Copy file name to clipboardExpand all lines: mobile/src/main/res/values-es/patterns.xml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ 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
-
<itemname="pattern_recognition"type="string">^(((ver|continuar viendo|escuchar|ver película) (.+)( en (.+))?( en modo aleatorio)?)|((posición) (.+)( en (.+))?)|((pausar|detener|continuar) reproducción( en (.+))?))|(conectar a (.+)|desconectar)$</item>
12
+
<itemname="pattern_recognition"type="string">^(((ver|continuar viendo|escuchar|ver película) (.+)( en (.+))?( en modo aleatorio)?)|((posición) (.+)( en (.+))?)|((pausar|detener|continuar)( reproducción)?( en (.+))?))|(conectar a (.+)|desconectar)$</item>
13
13
14
14
<itemname="pattern_on_client"type="string">(.+) en (.+)$</item>
The following three patterns allow for pause/resume/stop of playback. If your language reverses the order of the
40
+
words ("pause" and "playback", for example), make sure to reverse the order of the corresponding phrase in the pattern_recognition pattern above:
41
+
(pause|stop|resume)( playback)?
42
+
The given example pattern matches pause or stop or resume, and optionally playback (so:pause, pause playback, resume, resume playback, stop, stop playback)
Copy file name to clipboardExpand all lines: mobile/src/main/res/values-fr/patterns.xml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ 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
-
<itemname="pattern_recognition"type="string">^(((regarder|reprendre lecture|écouter|regarder film) (.+)( sur (.+))?)|((position) (.+)( sur (.+))?)|((pauser|reprendre|arrêter) lecture( sur (.+))?))$</item>
12
+
<itemname="pattern_recognition"type="string">^(((regarder|reprendre lecture|écouter|regarder film) (.+)( sur (.+))?)|((position) (.+)( sur (.+))?)|((pauser|reprendre|arrêter)( lecture)?( sur (.+))?))$</item>
13
13
14
14
<itemname="pattern_on_client"type="string">(.+) sur (.+)$</item>
The following three patterns allow for pause/resume/stop of playback. If your language reverses the order of the
37
+
words ("pause" and "playback", for example), make sure to reverse the order of the corresponding phrase in the pattern_recognition pattern above:
38
+
(pause|stop|resume)( playback)?
39
+
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
Copy file name to clipboardExpand all lines: mobile/src/main/res/values/patterns.xml
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ 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
-
<itemname="pattern_recognition"type="string">^(((watch|play|resume watching|listen to|watch movie|play movie) (.+)( on (.+))?( on shuffle)?)|((offset|timecode) (.+)( on (.+))?)|((pause|stop|resume) playback( on (.+))?))|(connect to (.+)|disconnect)$</item>
12
+
<itemname="pattern_recognition"type="string">^(((watch|play|resume watching|listen to|watch movie|play movie) (.+)( on (.+))?( on shuffle)?)|((offset|timecode) (.+)( on (.+))?)|((pause|stop|resume)( playback)?( on (.+))?))|(connect to (.+)|disconnect)$</item>
13
13
14
14
<itemname="pattern_on_client"type="string">(.+) on (.+)$</item>
The following three patterns allow for pause/resume/stop of playback. If your language reverses the order of the
40
+
words ("pause" and "playback", for example), make sure to reverse the order of the corresponding phrase in the pattern_recognition pattern above:
41
+
(pause|stop|resume)( playback)?
42
+
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
0 commit comments