Skip to content

Commit e70a20a

Browse files
author
Chris Bellew
committed
Use full phrases for pause/stop/resume playback pattern.
1 parent a8868e9 commit e70a20a

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

mobile/src/main/res/values-de/patterns.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
3737

3838
<!--
3939
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:
40+
words ("pause" and "playback", for example - see the German translation for an example), make sure to reverse the order
41+
of the corresponding phrase in the pattern_recognition pattern above:
4142
(pause|stop|resume)( playback)?
4243
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
4344
-->

mobile/src/main/res/values-es/patterns.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
3737

3838
<!--
3939
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:
40+
words ("pause" and "playback", for example - see the German translation for an example), make sure to reverse the order
41+
of the corresponding phrase in the pattern_recognition pattern above:
4142
(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)
43+
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
4344
-->
4445
<item name="pattern_pause_playback" type="string">pausar|pausar reproducción</item>
4546
<item name="pattern_resume_playback" type="string">continuar|continuar reproducción</item>

mobile/src/main/res/values-fr/patterns.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
3434

3535
<!--
3636
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:
37+
words ("pause" and "playback", for example - see the German translation for an example), make sure to reverse the order
38+
of the corresponding phrase in the pattern_recognition pattern above:
3839
(pause|stop|resume)( playback)?
3940
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
4041
-->

mobile/src/main/res/values/patterns.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ adding translations, please do not modify (.*), $1, ([0-9]+), etc.
4141
(pause|stop|resume)( playback)?
4242
The given example pattern matches pause or stop or resume, and optionally playback (so, pause, pause playback, resume, resume playback, stop, stop playback)
4343
-->
44-
<item name="pattern_pause_playback" type="string">pause( playback)?</item>
45-
<item name="pattern_resume_playback" type="string">resume( playback)?</item>
46-
<item name="pattern_stop_playback" type="string">stop( playback)?</item>
44+
<item name="pattern_pause_playback" type="string">pause|pause playback</item>
45+
<item name="pattern_resume_playback" type="string">resume|resume playback</item>
46+
<item name="pattern_stop_playback" type="string">stop|stop playback</item>
4747

4848
<!--
4949
The following are used in conjunction with the pattern_offset below. These should match the

0 commit comments

Comments
 (0)