Commit 8c837c6e by jaewan Committed by tonihei

Clean up resources

PiperOrigin-RevId: 415937814
parent 20fb153c
Showing with 137 additions and 576 deletions
...@@ -79,26 +79,26 @@ import java.util.WeakHashMap; ...@@ -79,26 +79,26 @@ import java.util.WeakHashMap;
playAction = playAction =
createNotificationAction( createNotificationAction(
service, service,
R.drawable.media_session_service_notification_ic_play, android.R.drawable.ic_media_play,
R.string.play_button_content_description, R.string.media3_controls_play_description,
ACTION_PLAY); ACTION_PLAY);
pauseAction = pauseAction =
createNotificationAction( createNotificationAction(
service, service,
R.drawable.media_session_service_notification_ic_pause, android.R.drawable.ic_media_pause,
R.string.pause_button_content_description, R.string.media3_controls_pause_description,
ACTION_PAUSE); ACTION_PAUSE);
skipToPrevAction = skipToPrevAction =
createNotificationAction( createNotificationAction(
service, service,
R.drawable.media_session_service_notification_ic_skip_to_previous, android.R.drawable.ic_media_previous,
R.string.skip_to_previous_item_button_content_description, R.string.media3_controls_seek_to_previous_description,
ACTION_SKIP_TO_PREVIOUS); ACTION_SKIP_TO_PREVIOUS);
skipToNextAction = skipToNextAction =
createNotificationAction( createNotificationAction(
service, service,
R.drawable.media_session_service_notification_ic_skip_to_next, android.R.drawable.ic_media_next,
R.string.skip_to_next_item_button_content_description, R.string.media3_controls_seek_to_next_description,
ACTION_SKIP_TO_NEXT); ACTION_SKIP_TO_NEXT);
playerInfoMap = new WeakHashMap<>(); playerInfoMap = new WeakHashMap<>();
......
...@@ -82,15 +82,15 @@ import java.util.Map; ...@@ -82,15 +82,15 @@ import java.util.Map;
* names defined in your application. The drawables that can be overridden are: * names defined in your application. The drawables that can be overridden are:
* *
* <ul> * <ul>
* <li><b>{@code exo_notification_small_icon}</b> - The icon passed by default to {@link * <li><b>{@code media3_notification_small_icon}</b> - The icon passed by default to {@link
* NotificationCompat.Builder#setSmallIcon(int)}. A different icon can also be specified * NotificationCompat.Builder#setSmallIcon(int)}. A different icon can also be specified
* programmatically by calling {@link #setSmallIcon(int)}. * programmatically by calling {@link #setSmallIcon(int)}.
* <li><b>{@code exo_notification_play}</b> - The play icon. * <li><b>{@code media3_notification_play}</b> - The play icon.
* <li><b>{@code exo_notification_pause}</b> - The pause icon. * <li><b>{@code media3_notification_pause}</b> - The pause icon.
* <li><b>{@code exo_notification_rewind}</b> - The rewind icon. * <li><b>{@code media3_notification_rewind}</b> - The rewind icon.
* <li><b>{@code exo_notification_fastforward}</b> - The fast forward icon. * <li><b>{@code media3_notification_fastforward}</b> - The fast forward icon.
* <li><b>{@code exo_notification_previous}</b> - The previous icon. * <li><b>{@code media3_notification_previous}</b> - The previous icon.
* <li><b>{@code exo_notification_next}</b> - The next icon. * <li><b>{@code media3_notification_next}</b> - The next icon.
* </ul> * </ul>
* *
* <p>Alternatively, the action icons can be set programatically by using the {@link Builder}. * <p>Alternatively, the action icons can be set programatically by using the {@link Builder}.
...@@ -287,13 +287,13 @@ public class PlayerNotificationManager { ...@@ -287,13 +287,13 @@ public class PlayerNotificationManager {
this.channelId = channelId; this.channelId = channelId;
channelImportance = NotificationUtil.IMPORTANCE_LOW; channelImportance = NotificationUtil.IMPORTANCE_LOW;
mediaDescriptionAdapter = new DefaultMediaDescriptionAdapter(/* pendingIntent= */ null); mediaDescriptionAdapter = new DefaultMediaDescriptionAdapter(/* pendingIntent= */ null);
smallIconResourceId = R.drawable.exo_notification_small_icon; smallIconResourceId = R.drawable.media3_notification_small_icon;
playActionIconResourceId = R.drawable.exo_notification_play; playActionIconResourceId = R.drawable.media3_notification_play;
pauseActionIconResourceId = R.drawable.exo_notification_pause; pauseActionIconResourceId = R.drawable.media3_notification_pause;
rewindActionIconResourceId = R.drawable.exo_notification_rewind; rewindActionIconResourceId = R.drawable.media3_notification_seek_back;
fastForwardActionIconResourceId = R.drawable.exo_notification_fastforward; fastForwardActionIconResourceId = R.drawable.media3_notification_seek_forward;
previousActionIconResourceId = R.drawable.exo_notification_previous; previousActionIconResourceId = R.drawable.media3_notification_seek_to_previous;
nextActionIconResourceId = R.drawable.exo_notification_next; nextActionIconResourceId = R.drawable.media3_notification_seek_to_next;
} }
/** /**
...@@ -366,7 +366,7 @@ public class PlayerNotificationManager { ...@@ -366,7 +366,7 @@ public class PlayerNotificationManager {
* The resource id of the small icon of the notification shown in the status bar. See {@link * The resource id of the small icon of the notification shown in the status bar. See {@link
* NotificationCompat.Builder#setSmallIcon(int)}. * NotificationCompat.Builder#setSmallIcon(int)}.
* *
* <p>The default is {@code R.drawable#exo_notification_small_icon}. * <p>The default is {@code R.drawable#media3_notification_small_icon}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -378,7 +378,7 @@ public class PlayerNotificationManager { ...@@ -378,7 +378,7 @@ public class PlayerNotificationManager {
/** /**
* The resource id of the drawable to be used as the icon of action {@link #ACTION_PLAY}. * The resource id of the drawable to be used as the icon of action {@link #ACTION_PLAY}.
* *
* <p>The default is {@code R.drawable#exo_notification_play}. * <p>The default is {@code R.drawable#media3_notification_play}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -390,7 +390,7 @@ public class PlayerNotificationManager { ...@@ -390,7 +390,7 @@ public class PlayerNotificationManager {
/** /**
* The resource id of the drawable to be used as the icon of action {@link #ACTION_PAUSE}. * The resource id of the drawable to be used as the icon of action {@link #ACTION_PAUSE}.
* *
* <p>The default is {@code R.drawable#exo_notification_pause}. * <p>The default is {@code R.drawable#media3_notification_pause}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -402,7 +402,7 @@ public class PlayerNotificationManager { ...@@ -402,7 +402,7 @@ public class PlayerNotificationManager {
/** /**
* The resource id of the drawable to be used as the icon of action {@link #ACTION_REWIND}. * The resource id of the drawable to be used as the icon of action {@link #ACTION_REWIND}.
* *
* <p>The default is {@code R.drawable#exo_notification_rewind}. * <p>The default is {@code R.drawable#media3_notification_rewind}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -415,7 +415,7 @@ public class PlayerNotificationManager { ...@@ -415,7 +415,7 @@ public class PlayerNotificationManager {
* The resource id of the drawable to be used as the icon of action {@link * The resource id of the drawable to be used as the icon of action {@link
* #ACTION_FAST_FORWARD}. * #ACTION_FAST_FORWARD}.
* *
* <p>The default is {@code R.drawable#exo_notification_fastforward}. * <p>The default is {@code R.drawable#media3_notification_fastforward}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -427,7 +427,7 @@ public class PlayerNotificationManager { ...@@ -427,7 +427,7 @@ public class PlayerNotificationManager {
/** /**
* The resource id of the drawable to be used as the icon of action {@link #ACTION_PREVIOUS}. * The resource id of the drawable to be used as the icon of action {@link #ACTION_PREVIOUS}.
* *
* <p>The default is {@code R.drawable#exo_notification_previous}. * <p>The default is {@code R.drawable#media3_notification_previous}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -439,7 +439,7 @@ public class PlayerNotificationManager { ...@@ -439,7 +439,7 @@ public class PlayerNotificationManager {
/** /**
* The resource id of the drawable to be used as the icon of action {@link #ACTION_NEXT}. * The resource id of the drawable to be used as the icon of action {@link #ACTION_NEXT}.
* *
* <p>The default is {@code R.drawable#exo_notification_next}. * <p>The default is {@code R.drawable#media3_notification_next}.
* *
* @return This builder. * @return This builder.
*/ */
...@@ -1169,37 +1169,37 @@ public class PlayerNotificationManager { ...@@ -1169,37 +1169,37 @@ public class PlayerNotificationManager {
ACTION_PLAY, ACTION_PLAY,
new NotificationCompat.Action( new NotificationCompat.Action(
playActionIconResourceId, playActionIconResourceId,
context.getString(R.string.exo_controls_play_description), context.getString(R.string.media3_controls_play_description),
createBroadcastIntent(ACTION_PLAY, context, instanceId))); createBroadcastIntent(ACTION_PLAY, context, instanceId)));
actions.put( actions.put(
ACTION_PAUSE, ACTION_PAUSE,
new NotificationCompat.Action( new NotificationCompat.Action(
pauseActionIconResourceId, pauseActionIconResourceId,
context.getString(R.string.exo_controls_pause_description), context.getString(R.string.media3_controls_pause_description),
createBroadcastIntent(ACTION_PAUSE, context, instanceId))); createBroadcastIntent(ACTION_PAUSE, context, instanceId)));
actions.put( actions.put(
ACTION_REWIND, ACTION_REWIND,
new NotificationCompat.Action( new NotificationCompat.Action(
rewindActionIconResourceId, rewindActionIconResourceId,
context.getString(R.string.exo_controls_rewind_description), context.getString(R.string.media3_controls_seek_back_description),
createBroadcastIntent(ACTION_REWIND, context, instanceId))); createBroadcastIntent(ACTION_REWIND, context, instanceId)));
actions.put( actions.put(
ACTION_FAST_FORWARD, ACTION_FAST_FORWARD,
new NotificationCompat.Action( new NotificationCompat.Action(
fastForwardActionIconResourceId, fastForwardActionIconResourceId,
context.getString(R.string.exo_controls_fastforward_description), context.getString(R.string.media3_controls_seek_forward_description),
createBroadcastIntent(ACTION_FAST_FORWARD, context, instanceId))); createBroadcastIntent(ACTION_FAST_FORWARD, context, instanceId)));
actions.put( actions.put(
ACTION_PREVIOUS, ACTION_PREVIOUS,
new NotificationCompat.Action( new NotificationCompat.Action(
previousActionIconResourceId, previousActionIconResourceId,
context.getString(R.string.exo_controls_previous_description), context.getString(R.string.media3_controls_seek_to_previous_description),
createBroadcastIntent(ACTION_PREVIOUS, context, instanceId))); createBroadcastIntent(ACTION_PREVIOUS, context, instanceId)));
actions.put( actions.put(
ACTION_NEXT, ACTION_NEXT,
new NotificationCompat.Action( new NotificationCompat.Action(
nextActionIconResourceId, nextActionIconResourceId,
context.getString(R.string.exo_controls_next_description), context.getString(R.string.media3_controls_seek_to_next_description),
createBroadcastIntent(ACTION_NEXT, context, instanceId))); createBroadcastIntent(ACTION_NEXT, context, instanceId)));
return actions; return actions;
} }
......
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M4,18l8.5,-6L4,6v12zM13,6v12l8.5,-6L13,6z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,18l8.5,-6L6,6v12zM16,6v12h2V6h-2z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M8,5v14l11,-7z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,6h2v12L6,18zM9.5,12l8.5,6L18,6z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="32dp"
android:height="32dp"
android:viewportHeight="24.0"
android:viewportWidth="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M11,18L11,6l-8.5,6 8.5,6zM11.5,12l8.5,6L20,6l-8.5,6z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2018 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="36dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2018 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="36dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M8,5v14l11,-7z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2018 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="36dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,18l8.5,-6L6,6v12zM16,6v12h2V6h-2z"/>
</vector>
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2018 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="36dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M6,6h2v12L6,18zM9.5,12l8.5,6L18,6z"/>
</vector>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Speel tans"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Speel tans"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Speel"</string> <string name="play_button_content_description" msgid="963503759453979404">"Speel"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Onderbreek"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Onderbreek"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Slaan oor na vorige item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Slaan oor na volgende item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"አሁን እየተጫወተ ያለ"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"አሁን እየተጫወተ ያለ"</string>
<string name="play_button_content_description" msgid="963503759453979404">"አጫውት"</string> <string name="play_button_content_description" msgid="963503759453979404">"አጫውት"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ላፍታ አቁም"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ላፍታ አቁም"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ወደ ቀዳሚው ንጥል ዝለል"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ወደ ቀጣዩ ንጥል ዝለል"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"التعرف التلقائي على الوسائط"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"التعرف التلقائي على الوسائط"</string>
<string name="play_button_content_description" msgid="963503759453979404">"تشغيل"</string> <string name="play_button_content_description" msgid="963503759453979404">"تشغيل"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"إيقاف مؤقت"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"إيقاف مؤقت"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"التخطي إلى العنصر السابق"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"التخطي إلى العنصر التالي"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"এতিয়া প্লে’ হৈ আছে"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"এতিয়া প্লে’ হৈ আছে"</string>
<string name="play_button_content_description" msgid="963503759453979404">"প্লে’ কৰক"</string> <string name="play_button_content_description" msgid="963503759453979404">"প্লে’ কৰক"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"পজ কৰক"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"পজ কৰক"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"এটা এৰি তাৰ পূৰ্বৱৰ্তী বস্তুটোলৈ যাওক"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"এটা এৰি তাৰ পৰৱৰ্তী বস্তুটোলৈ যাওক"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"İndi oxudulur"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"İndi oxudulur"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Oxudun"</string> <string name="play_button_content_description" msgid="963503759453979404">"Oxudun"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Durdurun"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Durdurun"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Əvvəlki elementə keçin"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Növbəti elementə keçin"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Trenutno svira"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Trenutno svira"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Pusti"</string> <string name="play_button_content_description" msgid="963503759453979404">"Pusti"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pauziraj"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pauziraj"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Pređi na prethodnu stavku"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Pređi na sledeću stavku"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Зараз іграе"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Зараз іграе"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Прайграць"</string> <string name="play_button_content_description" msgid="963503759453979404">"Прайграць"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Прыпыніць"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Прыпыніць"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Перайсці да папярэдняга элемента"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Перайсці да наступнага элемента"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Възпроизвежда се в момента"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Възпроизвежда се в момента"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Пускане"</string> <string name="play_button_content_description" msgid="963503759453979404">"Пускане"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Поставяне на пауза"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Поставяне на пауза"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Преминаване към предишния елемент"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Преминаване към следващия елемент"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"এখন চলছে"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"এখন চলছে"</string>
<string name="play_button_content_description" msgid="963503759453979404">"চালান"</string> <string name="play_button_content_description" msgid="963503759453979404">"চালান"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"পজ করুন"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"পজ করুন"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"পূর্ববর্তী আইটেমে যান"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"পরবর্তী আইটেমে যান"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Trenutno se reproducira"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Trenutno se reproducira"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproduciranje"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproduciranje"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pauza"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pauza"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Preskok na prethodnu stavku"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Preskok na sljedeću stavku"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Està sonant"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Està sonant"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reprodueix"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reprodueix"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Posa en pausa"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Posa en pausa"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Ves a l\'element anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Ves a l\'element següent"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Přehrává se"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Přehrává se"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Přehrát"</string> <string name="play_button_content_description" msgid="963503759453979404">"Přehrát"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pozastavit"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pozastavit"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Přejít na předchozí položku"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Přejít na další položku"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Afspilles nu"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Afspilles nu"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Afspil"</string> <string name="play_button_content_description" msgid="963503759453979404">"Afspil"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Sæt på pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Sæt på pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Gå til forrige element"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Gå til næste element"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Wiedergeben"</string> <string name="play_button_content_description" msgid="963503759453979404">"Wiedergeben"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausieren"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausieren"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Zum vorherigen Titel springen"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Zum nächsten Titel springen"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Ακούγεται τώρα"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Ακούγεται τώρα"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Αναπαραγωγή"</string> <string name="play_button_content_description" msgid="963503759453979404">"Αναπαραγωγή"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Παύση"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Παύση"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Μετάβαση στο προηγούμενο στοιχείο"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Μετάβαση στο επόμενο στοιχείο"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Play"</string> <string name="play_button_content_description" msgid="963503759453979404">"Play"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Skip to previous item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Skip to next item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Play"</string> <string name="play_button_content_description" msgid="963503759453979404">"Play"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Skip to previous item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Skip to next item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Play"</string> <string name="play_button_content_description" msgid="963503759453979404">"Play"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Skip to previous item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Skip to next item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Play"</string> <string name="play_button_content_description" msgid="963503759453979404">"Play"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Skip to previous item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Skip to next item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‏‏‏‎‎‎‎‎‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‎‏‎‎‏‏‏‎‎‏‏‏‏‎‎‏‏‏‎‏‎‎‏‏‏‎‏‏‏‏‎Now playing‎‏‎‎‏‎"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‏‏‏‎‎‎‎‎‏‏‏‎‏‎‏‎‎‏‏‎‎‎‎‎‏‎‎‏‏‏‎‎‏‏‏‏‎‎‏‏‏‎‏‎‎‏‏‏‎‏‏‏‏‎Now playing‎‏‎‎‏‎"</string>
<string name="play_button_content_description" msgid="963503759453979404">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‏‎‏‎‏‏‏‏‏‎‎‎‎‏‏‎‏‏‎‎‏‎‎‎‎‎‏‏‏‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‎‎‎‏‏‎‎‎‎‏‏‎‎‎Play‎‏‎‎‏‎"</string> <string name="play_button_content_description" msgid="963503759453979404">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‏‎‏‎‏‏‏‏‏‎‎‎‎‏‏‎‏‏‎‎‏‎‎‎‎‎‏‏‏‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‎‎‎‏‏‎‎‎‎‏‏‎‎‎Play‎‏‎‎‏‎"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‎‏‎‏‏‎‏‏‎‎‏‏‏‎‏‏‏‎‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‏‎‏‎‏‎‏‏‏‏‏‏‎‎‎‎‏‎‎‏‎‎‎‎Pause‎‏‎‎‏‎"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‎‏‎‏‏‎‏‏‎‎‏‏‏‎‏‏‏‎‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‏‎‏‎‏‎‏‏‏‏‏‏‎‎‎‎‏‎‎‏‎‎‎‎Pause‎‏‎‎‏‎"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‏‎‎‎‏‏‎‎‏‏‏‎‎‎‏‏‏‏‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‎‏‎‎‎‎Skip to previous item‎‏‎‎‏‎"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‏‏‎‏‏‏‏‎‏‎‏‎‏‎‏‎‎‏‎‏‎‎‏‎‏‎‏‏‏‎‏‏‎‏‏‏‎‎‏‏‎‏‏‎‏‏‏‏‎‏‎‏‎‎‎‎‏‎Skip to next item‎‏‎‎‏‎"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"En reproducción"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"En reproducción"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausar"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausar"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Ir al elemento anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Ir al siguiente elemento"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Está sonando"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Está sonando"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausar"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausar"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Saltar al elemento anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Saltar al siguiente elemento"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Hetkel mängimas"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Hetkel mängimas"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Esitamine"</string> <string name="play_button_content_description" msgid="963503759453979404">"Esitamine"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Peatamine"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Peatamine"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Eelmise üksuse juurde liikumine"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Järgmise üksuse juurde liikumine"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Orain erreproduzitzen"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Orain erreproduzitzen"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Erreproduzitu"</string> <string name="play_button_content_description" msgid="963503759453979404">"Erreproduzitu"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausatu"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausatu"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Joan aurreko elementura"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Joan hurrengo elementura"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"درحال پخش"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"درحال پخش"</string>
<string name="play_button_content_description" msgid="963503759453979404">"پخش"</string> <string name="play_button_content_description" msgid="963503759453979404">"پخش"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"مکث"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"مکث"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"پرش به مورد قبلی"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"پرش به مورد بعدی"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Nyt toistetaan"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Nyt toistetaan"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Toista"</string> <string name="play_button_content_description" msgid="963503759453979404">"Toista"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Keskeytä"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Keskeytä"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Siirry edelliseen"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Siirry seuraavaan"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"En cours de lecture"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"En cours de lecture"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Lire"</string> <string name="play_button_content_description" msgid="963503759453979404">"Lire"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Passer à l\'élément précédent"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Passer à l\'élément suivant"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"En écoute"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"En écoute"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Lire"</string> <string name="play_button_content_description" msgid="963503759453979404">"Lire"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Passer à l\'élément précédent"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Passer à l\'élément suivant"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Reproducindo"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Reproducindo"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproducir"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pór en pausa"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pór en pausa"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Omitir o elemento e ir ao anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Omitir o elemento e ir ao seguinte"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"હાલમાં ચાલી રહ્યું છે"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"હાલમાં ચાલી રહ્યું છે"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ચલાવો"</string> <string name="play_button_content_description" msgid="963503759453979404">"ચલાવો"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"થોભાવો"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"થોભાવો"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"પહેલાંની આઇટમ પર જાઓ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"આગલી આઇટમ પર જાઓ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"अभी चल रहा है"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"अभी चल रहा है"</string>
<string name="play_button_content_description" msgid="963503759453979404">"चलाएं"</string> <string name="play_button_content_description" msgid="963503759453979404">"चलाएं"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"रोकें"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"रोकें"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"पिछले आइटम पर जाएं"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"अगले आइटम पर जाएं"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Sada se reproducira"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Sada se reproducira"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproduciraj"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproduciraj"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pauziraj"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pauziraj"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Preskoči na prethodnu stavku"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Preskoči na sljedeću stavku"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Most játszott tartalom"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Most játszott tartalom"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Lejátszás"</string> <string name="play_button_content_description" msgid="963503759453979404">"Lejátszás"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Szünet"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Szünet"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Ugrás az előző elemre"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Ugrás a következő elemre"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Այժմ հնչում է"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Այժմ հնչում է"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Նվագարկել"</string> <string name="play_button_content_description" msgid="963503759453979404">"Նվագարկել"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Դադարեցնել"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Դադարեցնել"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Անցնել նախորդ տարրին"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Անցնել հաջորդ տարրին"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Sedang diputar"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Sedang diputar"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Putar"</string> <string name="play_button_content_description" msgid="963503759453979404">"Putar"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Jeda"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Jeda"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Lewati ke item sebelumnya"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Lewati ke item berikutnya"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Í spilun"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Í spilun"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Spila"</string> <string name="play_button_content_description" msgid="963503759453979404">"Spila"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Gera hlé"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Gera hlé"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Fara í fyrra atriði"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Fara í næsta atriði"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Ora in riproduzione"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Ora in riproduzione"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Riproduci"</string> <string name="play_button_content_description" msgid="963503759453979404">"Riproduci"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Metti in pausa"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Metti in pausa"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Vai all\'elemento precedente"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Vai all\'elemento successivo"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"פועל עכשיו"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"פועל עכשיו"</string>
<string name="play_button_content_description" msgid="963503759453979404">"הפעלה"</string> <string name="play_button_content_description" msgid="963503759453979404">"הפעלה"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"השהיה"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"השהיה"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"דילוג לפריט הקודם"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"דילוג לפריט הבא"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"再生中"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"再生中"</string>
<string name="play_button_content_description" msgid="963503759453979404">"再生"</string> <string name="play_button_content_description" msgid="963503759453979404">"再生"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"一時停止"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"一時停止"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"前の項目にスキップ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"次の項目にスキップ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ამჟამად უკრავს"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ამჟამად უკრავს"</string>
<string name="play_button_content_description" msgid="963503759453979404">"დაკვრა"</string> <string name="play_button_content_description" msgid="963503759453979404">"დაკვრა"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"პაუზა"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"პაუზა"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"წინა ერთეულზე გადასვლა"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"შემდეგ ერთეულზე გადასვლა"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Ойнатылуда"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Ойнатылуда"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Ойнату"</string> <string name="play_button_content_description" msgid="963503759453979404">"Ойнату"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Кідірту"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Кідірту"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Алдыңғы элементке өткізіп жіберу"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Келесі элементке өткізіп жіберу"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"កំពុងចាក់"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"កំពុងចាក់"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ចាក់"</string> <string name="play_button_content_description" msgid="963503759453979404">"ចាក់"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ផ្អាក"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ផ្អាក"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"រំលងទៅមេឌៀមុន"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"រំលងទៅមេឌៀបន្ទាប់"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ಇದೀಗ ಪ್ಲೇ ಮಾಡಲಾಗುತ್ತಿದೆ"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ಇದೀಗ ಪ್ಲೇ ಮಾಡಲಾಗುತ್ತಿದೆ"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ಪ್ಲೇ ಮಾಡಿ"</string> <string name="play_button_content_description" msgid="963503759453979404">"ಪ್ಲೇ ಮಾಡಿ"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ವಿರಾಮಗೊಳಿಸಿ"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ವಿರಾಮಗೊಳಿಸಿ"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ಹಿಂದಿನ ಐಟಂಗೆ ಸ್ಕಿಪ್ ಮಾಡಿ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ಮುಂದಿನ ಐಟಂಗೆ ಸ್ಕಿಪ್ ಮಾಡಿ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"지금 재생 중인 미디어 이름"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"지금 재생 중인 미디어 이름"</string>
<string name="play_button_content_description" msgid="963503759453979404">"재생"</string> <string name="play_button_content_description" msgid="963503759453979404">"재생"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"일시중지"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"일시중지"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"이전 항목으로 건너뛰기"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"다음 항목으로 건너뛰기"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Эмне ойноп жатат?"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Эмне ойноп жатат?"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Ойнотуу"</string> <string name="play_button_content_description" msgid="963503759453979404">"Ойнотуу"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Тындыруу"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Тындыруу"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Мурунку нерсеге өтүү"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Кийинки нерсеге өтүү"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ກຳລັງຫຼິ້ນ"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ກຳລັງຫຼິ້ນ"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ຫຼິ້ນ"</string> <string name="play_button_content_description" msgid="963503759453979404">"ຫຼິ້ນ"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ຢຸດຊົ່ວຄາວ"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ຢຸດຊົ່ວຄາວ"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ຂ້າມໄປລາຍການກ່ອນໜ້າ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ຂ້າມໄປລາຍການຕໍ່ໄປ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Dabar leidžiama"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Dabar leidžiama"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Leisti"</string> <string name="play_button_content_description" msgid="963503759453979404">"Leisti"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pristabdyti"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pristabdyti"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Pereiti prie ankstesnio elemento"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Pereiti prie kito elemento"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Tagad atskaņo"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Tagad atskaņo"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Atskaņot"</string> <string name="play_button_content_description" msgid="963503759453979404">"Atskaņot"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Apturēt"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Apturēt"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Pāriet uz iepriekšējo vienumu"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Pāriet uz nākamo vienumu"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Пушти"</string> <string name="play_button_content_description" msgid="963503759453979404">"Пушти"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Паузирај"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Паузирај"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Скокни на претходната ставка"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Скокни на следната ставка"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ഇപ്പോൾ പ്ലേ ചെയ്യുന്നത്"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ഇപ്പോൾ പ്ലേ ചെയ്യുന്നത്"</string>
<string name="play_button_content_description" msgid="963503759453979404">"പ്ലേ ചെയ്യുക"</string> <string name="play_button_content_description" msgid="963503759453979404">"പ്ലേ ചെയ്യുക"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"താൽക്കാലികമായി നിർത്തുക"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"താൽക്കാലികമായി നിർത്തുക"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"മുമ്പത്തെ ഇനത്തിലേക്ക് പോകുക"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"അടുത്ത ഇനത്തിലേക്ക് പോകുക"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Одоо тоглуулж байна"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Одоо тоглуулж байна"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Тоглуулах"</string> <string name="play_button_content_description" msgid="963503759453979404">"Тоглуулах"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Түр зогсоох"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Түр зогсоох"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Өмнөх зүйл рүү алгасах"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Дараагийн зүйл рүү алгасах"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"आता प्ले करत आहे"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"आता प्ले करत आहे"</string>
<string name="play_button_content_description" msgid="963503759453979404">"प्ले करा"</string> <string name="play_button_content_description" msgid="963503759453979404">"प्ले करा"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"थांबवा"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"थांबवा"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"मागील आयटमवर जा"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"पुढील आयटमवर जा"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Sedang dimainkan"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Sedang dimainkan"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Main"</string> <string name="play_button_content_description" msgid="963503759453979404">"Main"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Jeda"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Jeda"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Langkau ke item sebelumnya"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Langkau ke item seterusnya"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ဖွင့်ရန်"</string> <string name="play_button_content_description" msgid="963503759453979404">"ဖွင့်ရန်"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ခဏရပ်ရန်"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ခဏရပ်ရန်"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ယခင်တစ်ခုသို့ ပြန်သွားရန်"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"နောက်တစ်ခုသို့ ကျော်ရန်"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Spilles nå"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Spilles nå"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Spill av"</string> <string name="play_button_content_description" msgid="963503759453979404">"Spill av"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Sett på pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Sett på pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Gå tilbake til det forrige elementet"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Hopp til det neste elementet"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"प्ले गर्नुहोस्"</string> <string name="play_button_content_description" msgid="963503759453979404">"प्ले गर्नुहोस्"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"पज गर्नुहोस्"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"पज गर्नुहोस्"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"अघिल्लो वस्तुमा जानुहोस्"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"अर्को वस्तुमा जानुहोस्"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Wordt nu afgespeeld"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Wordt nu afgespeeld"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Afspelen"</string> <string name="play_button_content_description" msgid="963503759453979404">"Afspelen"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pauzeren"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pauzeren"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Overslaan en naar vorig item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Overslaan en naar volgend item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ଏବେ ଚାଲୁଛି"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ଏବେ ଚାଲୁଛି"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ଚଲାନ୍ତୁ"</string> <string name="play_button_content_description" msgid="963503759453979404">"ଚଲାନ୍ତୁ"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ବିରତ କରନ୍ତୁ"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ବିରତ କରନ୍ତୁ"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ପୂର୍ବବର୍ତ୍ତୀ ଆଇଟମକୁ ଯାଆନ୍ତୁ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ପରବର୍ତ୍ତୀ ଆଇଟମକୁ ଯାଆନ୍ତୁ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ਹੁਣੇ ਚੱਲ ਰਿਹਾ ਹੈ"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ਹੁਣੇ ਚੱਲ ਰਿਹਾ ਹੈ"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ਚਲਾਓ"</string> <string name="play_button_content_description" msgid="963503759453979404">"ਚਲਾਓ"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"ਰੋਕੋ"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"ਰੋਕੋ"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ਪਿਛਲੀ ਆਈਟਮ \'ਤੇ ਜਾਓ"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ਅਗਲੀ ਆਈਟਮ \'ਤੇ ਜਾਓ"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Co jest grane"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Co jest grane"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Odtwórz"</string> <string name="play_button_content_description" msgid="963503759453979404">"Odtwórz"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Wstrzymaj"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Wstrzymaj"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Przeskocz do poprzedniego elementu"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Przeskocz do następnego elementu"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Tocando agora"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Tocando agora"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Iniciar"</string> <string name="play_button_content_description" msgid="963503759453979404">"Iniciar"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausar"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausar"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Voltar para o item anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Pular para o próximo item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"A reproduzir"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"A reproduzir"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Reproduzir"</string> <string name="play_button_content_description" msgid="963503759453979404">"Reproduzir"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Colocar em pausa"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Colocar em pausa"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Ir para o item anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Ir para o item seguinte"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Tocando agora"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Tocando agora"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Iniciar"</string> <string name="play_button_content_description" msgid="963503759453979404">"Iniciar"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausar"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausar"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Voltar para o item anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Pular para o próximo item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Now Playing"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Redați"</string> <string name="play_button_content_description" msgid="963503759453979404">"Redați"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Întrerupeți"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Întrerupeți"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Treceți la elementul anterior"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Treceți la elementul următor"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Текущий медиафайл"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Текущий медиафайл"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Воспроизвести"</string> <string name="play_button_content_description" msgid="963503759453979404">"Воспроизвести"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Приостановить"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Приостановить"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Перейти к предыдущему файлу"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Перейти к следующему файлу"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"දැන් වාදනය වේ"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"දැන් වාදනය වේ"</string>
<string name="play_button_content_description" msgid="963503759453979404">"වාදනය කරන්න"</string> <string name="play_button_content_description" msgid="963503759453979404">"වාදනය කරන්න"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"විරාම ගන්වන්න"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"විරාම ගන්වන්න"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"පෙර අයිතමය වෙත යන්න"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ඊළඟ අයිතමය වෙත යන්න"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Prehráva sa"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Prehráva sa"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Prehrať"</string> <string name="play_button_content_description" msgid="963503759453979404">"Prehrať"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pozastaviť"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pozastaviť"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Preskočiť na predchádzajúcu položku"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Preskočiť na ďalšiu položku"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Zdaj se predvaja"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Zdaj se predvaja"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Predvajanje"</string> <string name="play_button_content_description" msgid="963503759453979404">"Predvajanje"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Začasna zaustavitev"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Začasna zaustavitev"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Preskok na prejšnji element"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Preskok na naslednji element"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Po luhet tani"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Po luhet tani"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Luaj"</string> <string name="play_button_content_description" msgid="963503759453979404">"Luaj"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Vendos në pauzë"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Vendos në pauzë"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Kapërce tek artikulli i mëparshëm"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Kapërce tek artikulli tjetër"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Тренутно свира"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Тренутно свира"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Пусти"</string> <string name="play_button_content_description" msgid="963503759453979404">"Пусти"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Паузирај"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Паузирај"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Пређи на претходну ставку"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Пређи на следећу ставку"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Spelas just nu"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Spelas just nu"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Spela upp"</string> <string name="play_button_content_description" msgid="963503759453979404">"Spela upp"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pausa"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pausa"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Hoppa till föregående objekt"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Hoppa till nästa objekt"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Inayocheza sasa"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Inayocheza sasa"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Cheza"</string> <string name="play_button_content_description" msgid="963503759453979404">"Cheza"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Simamisha"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Simamisha"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Rudi kwenye kipengee kilichotangulia"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Nenda kwenye kipengee kinachofuata"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"இப்போது பிளே செய்வது"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"இப்போது பிளே செய்வது"</string>
<string name="play_button_content_description" msgid="963503759453979404">"பிளே செய்யும்"</string> <string name="play_button_content_description" msgid="963503759453979404">"பிளே செய்யும்"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"இடைநிறுத்தும்"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"இடைநிறுத்தும்"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"முந்தையதற்குச் செல்லும்"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"அடுத்ததற்குச் செல்லும்"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ప్రస్తుతం ప్లే అవుతున్నది"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ప్రస్తుతం ప్లే అవుతున్నది"</string>
<string name="play_button_content_description" msgid="963503759453979404">"ప్లే చేయి"</string> <string name="play_button_content_description" msgid="963503759453979404">"ప్లే చేయి"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"పాజ్ చేయి"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"పాజ్ చేయి"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"మునుపటి ఐటెమ్‌కు స్కిప్ చేయి"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"తర్వాత ఐటెమ్‌కు స్కిప్ చేయి"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"กำลังเล่น"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"กำลังเล่น"</string>
<string name="play_button_content_description" msgid="963503759453979404">"เล่น"</string> <string name="play_button_content_description" msgid="963503759453979404">"เล่น"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"หยุดชั่วคราว"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"หยุดชั่วคราว"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"ข้ามไปยังรายการก่อนหน้า"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"ข้ามไปยังรายการถัดไป"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Nagpi-play ngayon"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Nagpi-play ngayon"</string>
<string name="play_button_content_description" msgid="963503759453979404">"I-play"</string> <string name="play_button_content_description" msgid="963503759453979404">"I-play"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"I-pause"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"I-pause"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Lumaktaw sa nakaraang item"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Lumaktaw sa susunod na item"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Şimdi oynatılıyor"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Şimdi oynatılıyor"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Oynat"</string> <string name="play_button_content_description" msgid="963503759453979404">"Oynat"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Duraklat"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Duraklat"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Önceki öğeye atla"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Sonraki öğeye atla"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Зараз грає"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Зараз грає"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Відтворити"</string> <string name="play_button_content_description" msgid="963503759453979404">"Відтворити"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Призупинити"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Призупинити"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Перейти до попереднього медіафайлу"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Перейти до наступного медіафайлу"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"ابھی چل رہا ہے"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"ابھی چل رہا ہے"</string>
<string name="play_button_content_description" msgid="963503759453979404">"چلائیں"</string> <string name="play_button_content_description" msgid="963503759453979404">"چلائیں"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"موقوف کریں"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"موقوف کریں"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"پچھلے آئٹم پر جائیں"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"اگلے آئٹم پر جائیں"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Bu qaysi musiqa"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Bu qaysi musiqa"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Ijro"</string> <string name="play_button_content_description" msgid="963503759453979404">"Ijro"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Pauza"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Pauza"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Avvalgi obyektga oʻtish"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Keyingi obyektga oʻtish"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Đang phát"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Đang phát"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Phát"</string> <string name="play_button_content_description" msgid="963503759453979404">"Phát"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Tạm dừng"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Tạm dừng"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Chuyển về mục trước đó"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Chuyển đến mục tiếp theo"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"正在播放"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"正在播放"</string>
<string name="play_button_content_description" msgid="963503759453979404">"播放"</string> <string name="play_button_content_description" msgid="963503759453979404">"播放"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"暂停"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"暂停"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"跳至上一项"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"跳至下一项"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"現正播放"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"現正播放"</string>
<string name="play_button_content_description" msgid="963503759453979404">"播放"</string> <string name="play_button_content_description" msgid="963503759453979404">"播放"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"暫停"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"暫停"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"跳去上一個項目"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"跳去下一個項目"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"現正播放"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"現正播放"</string>
<string name="play_button_content_description" msgid="963503759453979404">"播放"</string> <string name="play_button_content_description" msgid="963503759453979404">"播放"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"暫停"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"暫停"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"跳到上一個項目"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"跳到下一個項目"</string>
</resources> </resources>
...@@ -19,7 +19,5 @@ ...@@ -19,7 +19,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="default_notification_channel_name" msgid="7213672915724563695">"Okudlala manje"</string> <string name="default_notification_channel_name" msgid="7213672915724563695">"Okudlala manje"</string>
<string name="play_button_content_description" msgid="963503759453979404">"Dlala"</string> <string name="play_button_content_description" msgid="963503759453979404">"Dlala"</string>
<string name="pause_button_content_description" msgid="3510124037191104584">"Phumula"</string> <string name="media3_controls_pause_description" msgid="3510124037191104584">"Phumula"</string>
<string name="skip_to_previous_item_button_content_description" msgid="4352480799561670760">"Yeqela entweni yangaphambilini"</string>
<string name="skip_to_next_item_button_content_description" msgid="6034072145387511457">"Yeqela entweni elandelayo"</string>
</resources> </resources>
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
limitations under the License. limitations under the License.
--> -->
<resources> <resources>
<drawable name="exo_notification_play">@drawable/exo_icon_play</drawable> <drawable name="media3_notification_play">@android:drawable/ic_media_play</drawable>
<drawable name="exo_notification_pause">@drawable/exo_icon_pause</drawable> <drawable name="media3_notification_pause">@android:drawable/ic_media_pause</drawable>
<drawable name="exo_notification_next">@drawable/exo_icon_next</drawable> <drawable name="media3_notification_seek_to_next">@android:drawable/ic_media_next</drawable>
<drawable name="exo_notification_previous">@drawable/exo_icon_previous</drawable> <drawable name="media3_notification_seek_to_previous">@android:drawable/ic_media_previous</drawable>
<drawable name="exo_notification_fastforward">@drawable/exo_icon_fastforward</drawable> <drawable name="media3_notification_seek_forward">@android:drawable/ic_media_ff</drawable>
<drawable name="exo_notification_rewind">@drawable/exo_icon_rewind</drawable> <drawable name="media3_notification_seek_back">@android:drawable/ic_media_rew</drawable>
<drawable name="exo_notification_small_icon">@drawable/exo_icon_circular_play</drawable> <drawable name="media3_notification_small_icon">@drawable/media3_icon_circular_play</drawable>
</resources> </resources>
...@@ -20,24 +20,15 @@ ...@@ -20,24 +20,15 @@
<string name="default_notification_channel_name">Now playing</string> <string name="default_notification_channel_name">Now playing</string>
<!-- Content description of 'play' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <!-- Content description of 'play' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<string name="play_button_content_description">Play</string> <string name="media3_controls_play_description">Play</string>
<!-- Content description of 'pause' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <!-- Content description of 'pause' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<string name="pause_button_content_description">Pause</string> <string name="media3_controls_pause_description">Pause</string>
<!-- Content description of 'skip to previous item' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <!-- Content description of 'seek to previous item' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<string name="skip_to_previous_item_button_content_description">Skip to previous item</string> <string name="media3_controls_seek_to_previous_description">Seek to previous item</string>
<!-- Content description of 'skip to next item' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] --> <!-- Content description of 'seek to next item' button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<string name="skip_to_next_item_button_content_description">Skip to next item</string> <string name="media3_controls_seek_to_next_description">Seek to next item</string>
<!-- Content description of 'seek back' for rewind button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<!-- Description for a media control button that causes the previous track to be played. [CHAR LIMIT=30] --> <string name="media3_controls_seek_back_description">Seek back</string>
<string name="exo_controls_previous_description">Previous</string> <!-- Content description of 'seek forward' for fast-forward button on media notification for accessibility (not shown on the screen). [CHAR LIMIT=NONE] -->
<!-- Description for a media control button that causes the next track to be played. [CHAR LIMIT=30] --> <string name="media3_controls_seek_forward_description">Seek forward</string>
<string name="exo_controls_next_description">Next</string>
<!-- Description for a media control button that causes playback to be paused. [CHAR LIMIT=30] -->
<string name="exo_controls_pause_description">Pause</string>
<!-- Description for a media control button that causes playback to be started. [CHAR LIMIT=30] -->
<string name="exo_controls_play_description">Play</string>
<!-- Description for a media control button that causes playback to be rewound. [CHAR LIMIT=30] -->
<string name="exo_controls_rewind_description">Rewind</string>
<!-- Description for a media control button that causes playback to be fast-forwarded. [CHAR LIMIT=30] -->
<string name="exo_controls_fastforward_description">Fast forward</string>
</resources> </resources>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment