diff --git a/app/src/main/java/org/xbmc/kore/ui/AbstractListFragment.java b/app/src/main/java/org/xbmc/kore/ui/AbstractListFragment.java index fb09ad5..7e26e8e 100644 --- a/app/src/main/java/org/xbmc/kore/ui/AbstractListFragment.java +++ b/app/src/main/java/org/xbmc/kore/ui/AbstractListFragment.java @@ -167,7 +167,7 @@ public abstract class AbstractListFragment extends Fragment { item.setTitle(R.string.multi_column); gridView.setNumColumns(1); } - editor.commit(); + editor.apply(); adapter.notifyDataSetChanged(); //force gridView to redraw } diff --git a/app/src/main/java/org/xbmc/kore/ui/BaseActivity.java b/app/src/main/java/org/xbmc/kore/ui/BaseActivity.java index 1c7c9e6..b5d859d 100644 --- a/app/src/main/java/org/xbmc/kore/ui/BaseActivity.java +++ b/app/src/main/java/org/xbmc/kore/ui/BaseActivity.java @@ -26,7 +26,7 @@ import org.xbmc.kore.utils.UIUtils; /** * Base activity, where common behaviour is implemented */ -public class BaseActivity extends AppCompatActivity { +public abstract class BaseActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { diff --git a/app/src/main/res/layout/fragment_about.xml b/app/src/main/res/layout/fragment_about.xml index df403d1..1bd40a0 100644 --- a/app/src/main/res/layout/fragment_about.xml +++ b/app/src/main/res/layout/fragment_about.xml @@ -27,7 +27,9 @@ android:layout_width="wrap_content" android:layout_gravity="center_vertical" android:paddingLeft="@dimen/default_padding" + android:paddingStart="@dimen/default_padding" android:paddingRight="@dimen/small_padding" + android:paddingEnd="@dimen/small_padding" android:fontFamily="sans-serif" android:textSize="20sp" diff --git a/app/src/main/res/layout/fragment_addon_details.xml b/app/src/main/res/layout/fragment_addon_details.xml index 5eacdc9..5d72643 100644 --- a/app/src/main/res/layout/fragment_addon_details.xml +++ b/app/src/main/res/layout/fragment_addon_details.xml @@ -53,6 +53,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -71,6 +75,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -130,6 +135,7 @@ android:layout_height="wrap_content" style="@style/TextAppearance.Media.SmallDetails" android:paddingRight="@dimen/default_padding" + android:paddingEnd="@dimen/default_padding" android:textColor="?attr/appTextColorSecondary" android:text="@string/author"/> diff --git a/app/src/main/res/layout/fragment_album_details.xml b/app/src/main/res/layout/fragment_album_details.xml index 9721112..f35fa61 100644 --- a/app/src/main/res/layout/fragment_album_details.xml +++ b/app/src/main/res/layout/fragment_album_details.xml @@ -53,6 +53,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -71,6 +75,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -129,7 +134,8 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" - android:gravity="right" + android:layout_alignParentEnd="true" + android:gravity="end" style="@style/TextAppearance.Media.SmallDetails"/> @@ -146,6 +152,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" style="@style/TextAppearance.Media.SmallDetails" android:textColor="?attr/appTextColorPrimary" android:textStyle="bold"/> @@ -156,7 +163,9 @@ android:layout_height="wrap_content" android:layout_alignTop="@id/rating" android:layout_toRightOf="@id/rating" + android:layout_toEndOf="@id/rating" android:layout_toLeftOf="@id/year" + android:layout_toStartOf="@id/year" style="@style/TextAppearance.Media.SmallDetails" android:text="@string/max_rating_music"/> @@ -216,6 +225,7 @@ android:layout_alignParentEnd="true" android:layout_marginBottom="@dimen/default_padding" android:layout_marginRight="@dimen/double_padding" + android:layout_marginEnd="@dimen/double_padding" android:src="@drawable/ic_play_arrow_white_24dp" app:fab_colorNormal="?attr/fabColorNormal" app:fab_colorPressed="?attr/fabColorPressed"/> diff --git a/app/src/main/res/layout/fragment_artist_details.xml b/app/src/main/res/layout/fragment_artist_details.xml index 0eb7844..888ad1f 100644 --- a/app/src/main/res/layout/fragment_artist_details.xml +++ b/app/src/main/res/layout/fragment_artist_details.xml @@ -53,6 +53,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -103,6 +107,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -129,6 +134,7 @@ android:layout_alignParentEnd="true" android:layout_marginBottom="@dimen/default_padding" android:layout_marginRight="@dimen/double_padding" + android:layout_marginEnd="@dimen/double_padding" android:src="@drawable/ic_play_arrow_white_24dp" app:fab_colorNormal="?attr/fabColorNormal" app:fab_colorPressed="?attr/fabColorPressed"/> diff --git a/app/src/main/res/layout/fragment_episode_details.xml b/app/src/main/res/layout/fragment_episode_details.xml index eef3280..f0e22a8 100644 --- a/app/src/main/res/layout/fragment_episode_details.xml +++ b/app/src/main/res/layout/fragment_episode_details.xml @@ -130,6 +130,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/TextAppearance.Media.SmallDetails"/> + android:layout_marginRight="@dimen/small_padding" + android:layout_marginEnd="@dimen/small_padding"/> @@ -186,6 +192,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/director_title" + android:layout_toEndOf="@id/director_title" android:layout_alignTop="@id/director_title" style="@style/TextAppearance.Media.Info" android:textColor="?attr/appTextColorSecondary" @@ -252,6 +259,7 @@ android:layout_alignParentEnd="true" android:layout_marginBottom="@dimen/default_padding" android:layout_marginRight="@dimen/double_padding" + android:layout_marginEnd="@dimen/double_padding" android:src="@drawable/ic_play_arrow_white_24dp" app:fab_colorNormal="?attr/fabColorNormal" app:fab_colorPressed="?attr/fabColorPressed"/> diff --git a/app/src/main/res/layout/fragment_movie_details.xml b/app/src/main/res/layout/fragment_movie_details.xml index 8c5c45e..782b39e 100644 --- a/app/src/main/res/layout/fragment_movie_details.xml +++ b/app/src/main/res/layout/fragment_movie_details.xml @@ -60,6 +60,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -78,6 +82,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -151,6 +156,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/TextAppearance.Media.SmallDetails"/> + android:layout_marginRight="@dimen/small_padding" + android:layout_marginEnd="@dimen/small_padding"/> @@ -217,6 +230,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/director_title" + android:layout_toEndOf="@id/director_title" android:layout_alignTop="@id/director_title" style="@style/TextAppearance.Media.Info" android:textColor="?attr/appTextColorSecondary" @@ -261,6 +275,7 @@ android:layout_alignParentEnd="true" android:layout_marginBottom="@dimen/default_padding" android:layout_marginRight="@dimen/double_padding" + android:layout_marginEnd="@dimen/double_padding" android:src="@drawable/ic_play_arrow_white_24dp" app:fab_colorNormal="?attr/fabColorNormal" app:fab_colorPressed="?attr/fabColorPressed"/> diff --git a/app/src/main/res/layout/fragment_music_video_details.xml b/app/src/main/res/layout/fragment_music_video_details.xml index ef36220..b4b5aa6 100644 --- a/app/src/main/res/layout/fragment_music_video_details.xml +++ b/app/src/main/res/layout/fragment_music_video_details.xml @@ -58,6 +58,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -76,6 +80,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -133,13 +138,16 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/TextAppearance.Media.SmallDetails"/> @@ -174,6 +182,7 @@ android:layout_alignParentEnd="true" android:layout_marginBottom="@dimen/default_padding" android:layout_marginRight="@dimen/double_padding" + android:layout_marginEnd="@dimen/double_padding" android:src="@drawable/ic_play_arrow_white_24dp" app:fab_colorNormal="?attr/fabColorNormal" app:fab_colorPressed="?attr/fabColorPressed"/> diff --git a/app/src/main/res/layout/fragment_now_playing.xml b/app/src/main/res/layout/fragment_now_playing.xml index 5a1616c..1d14f3f 100644 --- a/app/src/main/res/layout/fragment_now_playing.xml +++ b/app/src/main/res/layout/fragment_now_playing.xml @@ -53,6 +53,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -71,6 +75,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -240,6 +245,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/TextAppearance.Media.SmallDetails"/> + android:layout_marginRight="@dimen/small_padding" + android:layout_marginEnd="@dimen/small_padding"/> diff --git a/app/src/main/res/layout/fragment_remote.xml b/app/src/main/res/layout/fragment_remote.xml index 9b501d8..8c6fc4b 100644 --- a/app/src/main/res/layout/fragment_remote.xml +++ b/app/src/main/res/layout/fragment_remote.xml @@ -239,6 +239,7 @@ android:layout_width="@dimen/remote_icon_size" android:layout_height="@dimen/remote_icon_size" android:layout_toRightOf="@id/down" + android:layout_toEndOf="@id/down" android:layout_alignTop="@id/back" android:src="?attr/iconMenu" android:contentDescription="@string/osd"/> diff --git a/app/src/main/res/layout/fragment_tvshow_overview.xml b/app/src/main/res/layout/fragment_tvshow_overview.xml index 9ebd962..c54fd79 100644 --- a/app/src/main/res/layout/fragment_tvshow_overview.xml +++ b/app/src/main/res/layout/fragment_tvshow_overview.xml @@ -57,6 +57,8 @@ style="@style/TextAppearance.Media.Title" android:paddingLeft="@dimen/poster_width_plus_padding" android:paddingRight="@dimen/default_padding" + android:paddingStart="@dimen/poster_width_plus_padding" + android:paddingEnd="@dimen/default_padding" android:background="?attr/contentBackgroundColor"/> @@ -75,6 +79,7 @@ android:layout_alignParentStart="true" android:layout_alignParentLeft="true" android:layout_marginLeft="@dimen/default_padding" + android:layout_marginStart="@dimen/default_padding" android:layout_alignBottom="@id/media_undertitle" android:contentDescription="@string/poster" android:scaleType="centerCrop"/> @@ -116,6 +121,7 @@ android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/TextAppearance.Media.SmallDetails"/> + android:layout_marginRight="@dimen/small_padding" + android:layout_marginEnd="@dimen/small_padding"/> diff --git a/app/src/main/res/layout/grid_item_album.xml b/app/src/main/res/layout/grid_item_album.xml index 4ed70b5..1342e23 100644 --- a/app/src/main/res/layout/grid_item_album.xml +++ b/app/src/main/res/layout/grid_item_album.xml @@ -42,6 +42,7 @@ android:padding="@dimen/default_icon_padding" android:layout_alignTop="@id/art" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/Widget.Button.Borderless" android:src="?attr/iconOverflow" android:contentDescription="@string/action_options"/> @@ -52,6 +53,8 @@ android:orientation="vertical" android:layout_toLeftOf="@+id/list_context_menu" android:layout_toRightOf="@id/art" + android:layout_toStartOf="@+id/list_context_menu" + android:layout_toEndOf="@id/art" android:layout_alignTop="@id/art"> + android:layout_alignParentLeft="true" + android:contentDescription="@string/poster"/> @@ -78,7 +79,8 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerVertical="true" - android:src="?attr/iconOpenInNew"/> + android:src="?attr/iconOpenInNew" + android:contentDescription="@string/poster"/> @@ -54,6 +55,8 @@ android:layout_height="wrap_content" android:layout_toRightOf="@id/status_indicator" android:layout_toLeftOf="@id/list_context_menu" + android:layout_toEndOf="@id/status_indicator" + android:layout_toStartOf="@id/list_context_menu" android:layout_alignTop="@id/status_indicator" android:layout_alignWithParentIfMissing="true" style="@style/TextAppearance.HostName"/> @@ -65,6 +68,8 @@ android:layout_below="@+id/host_name" android:layout_alignLeft="@+id/host_name" android:layout_alignRight="@+id/host_name" + android:layout_alignStart="@+id/host_name" + android:layout_alignEnd="@+id/host_name" style="@style/TextAppearance.HostDetails"/> diff --git a/app/src/main/res/layout/grid_item_movie.xml b/app/src/main/res/layout/grid_item_movie.xml index 35a2c0a..b40e847 100644 --- a/app/src/main/res/layout/grid_item_movie.xml +++ b/app/src/main/res/layout/grid_item_movie.xml @@ -42,6 +42,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toRightOf="@id/art" + android:layout_toEndOf="@id/art" android:layout_alignTop="@id/art" style="@style/TextAppearance.Medialist.Title"/> @@ -57,6 +59,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@id/title" + android:layout_alignStart="@id/title" android:layout_below="@id/details" android:layout_alignParentBottom="true" style="@style/TextAppearance.Medialist.OtherInfo"/> diff --git a/app/src/main/res/layout/grid_item_song.xml b/app/src/main/res/layout/grid_item_song.xml index 494b450..3fcf2dc 100644 --- a/app/src/main/res/layout/grid_item_song.xml +++ b/app/src/main/res/layout/grid_item_song.xml @@ -42,6 +42,7 @@ android:padding="@dimen/default_icon_padding" android:layout_alignTop="@id/art" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" style="@style/Widget.Button.Borderless" android:src="?attr/iconOverflow" android:contentDescription="@string/action_options"/> @@ -52,6 +53,8 @@ android:orientation="vertical" android:layout_toLeftOf="@+id/list_context_menu" android:layout_toRightOf="@id/art" + android:layout_toStartOf="@+id/list_context_menu" + android:layout_toEndOf="@id/art" android:layout_alignTop="@id/art"> @@ -56,6 +58,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@id/title" + android:layout_alignStart="@id/title" android:layout_below="@id/details" android:layout_alignParentBottom="true" style="@style/TextAppearance.Medialist.OtherInfo"/> diff --git a/app/src/main/res/layout/list_item_episode.xml b/app/src/main/res/layout/list_item_episode.xml index 28f0202..22ae303 100644 --- a/app/src/main/res/layout/list_item_episode.xml +++ b/app/src/main/res/layout/list_item_episode.xml @@ -27,6 +27,7 @@ android:layout_width="@dimen/default_icon_size" android:layout_height="@dimen/default_icon_size" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" android:padding="@dimen/default_icon_padding" style="@style/Widget.Button.Borderless" android:src="?attr/iconOverflow" @@ -44,6 +45,7 @@ android:layout_width="@dimen/default_icon_size" android:layout_height="match_parent" android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" android:layout_marginTop="@dimen/small_padding" android:contentDescription="@string/seen" android:src="?attr/iconSeen"/> @@ -53,7 +55,7 @@ android:layout_width="@dimen/seasonlist_art_width" android:layout_height="wrap_content" style="@style/TextAppearance.Medialist.Title" - android:gravity="right"/> + android:gravity="end"/> @@ -71,6 +75,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@id/title" + android:layout_alignStart="@id/title" android:layout_below="@id/title" style="@style/TextAppearance.Medialist.Details" android:paddingBottom="@dimen/small_padding"/> diff --git a/app/src/main/res/layout/list_item_song.xml b/app/src/main/res/layout/list_item_song.xml index 91657a0..a71e058 100644 --- a/app/src/main/res/layout/list_item_song.xml +++ b/app/src/main/res/layout/list_item_song.xml @@ -26,7 +26,7 @@ android:layout_width="48dp" android:layout_height="wrap_content" style="@style/TextAppearance.Medialist.Title" - android:gravity="right" + android:gravity="end" android:paddingTop="@dimen/small_padding" android:paddingLeft="@dimen/small_padding" android:paddingRight="@dimen/small_padding"/> @@ -36,6 +36,7 @@ android:layout_height="@dimen/default_icon_size" android:padding="@dimen/default_icon_padding" android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" android:layout_centerVertical="true" style="@style/Widget.Button.Borderless" android:src="?attr/iconOverflow" @@ -48,12 +49,15 @@ style="@style/TextAppearance.Medialist.Title" android:layout_toRightOf="@id/track_number" android:layout_toLeftOf="@id/list_context_menu" + android:layout_toEndOf="@id/track_number" + android:layout_toStartOf="@id/list_context_menu" android:layout_alignBottom="@id/track_number"/> diff --git a/app/src/main/res/layout/notification_colapsed.xml b/app/src/main/res/layout/notification_colapsed.xml index 9dd4434..23653a7 100644 --- a/app/src/main/res/layout/notification_colapsed.xml +++ b/app/src/main/res/layout/notification_colapsed.xml @@ -19,7 +19,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" - android:background="@color/background_floating_material_dark"> + android:background="@color/notification_backgroup"> + android:background="@color/notification_backgroup"> + android:gravity="center" + android:contentDescription="@string/rewind"/> + android:gravity="center" + android:contentDescription="@string/play"/> + android:gravity="center" + android:contentDescription="@string/fast_forward"/> Kore Axustes Opciones - Cargando... + Cargando… Abrir caxón de navegación Zarrar caxón de navegación @@ -41,7 +41,7 @@ Anovar fonoteca Alternar pantalla completa Coneutáu a %1$s - Coneutando... + Coneutando… Coneutando a %1$s (%2$s)… Bienllegáu @@ -64,7 +64,7 @@ Habilita la conexón de rede enantes de guetar centros multimedia, por favor.

Esbilla ún p\'amestalu o primi Siguiente p\'amestar a mano otru. ]]> Ensin conexón de rede - Guetando... + Guetando… Nun s\'alcontraron centros multimedia Centros multimedia alcontraos Configuración manual @@ -87,7 +87,7 @@ Alcontré estos centros multimedia na to rede.

Esbilla ún p\'amestalu Especifica un puertu TCP válidu pa esti centru multimedia, por favor. Especifica un puertu d\'EventServer válidu pa esti centru multimedia, por favor. Coneutando a %1$s… - Por favor, espera entrín tento de coneutame col to centru multimedia... + Por favor, espera entrín tento de coneutame col to centru multimedia… Kodi/XBMC rique l\'autenticación.\nEspecifica un nome d\'usuariu y contraseña, por favor. Nome d\'usuariu y/o contraseña incorreutos.\nComprueba les tos credenciales, por favor. Coneutáu a Kodi/XBMC. @@ -141,7 +141,7 @@ Primi Finar p\'apenzar a usar el mandu. Cola Reproducir Reproducir dende equí - Coneutar... + Coneutar… Nun pue coneutase col centru multimedia Coneutáu Disponible diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index a632a55..67c9827 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -44,7 +44,7 @@ Медийният център се затваря. До медийния център е изпратен сигнал за събуждане. - Изключи... + Изключи… Изход Суспендиране Рестартиране diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 9fe2644..e21e781 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -63,7 +63,7 @@ ]]> - Si necesitas ayuda para configurarlo, Pulsa Si necesitas ayuda para configurarlo, Pulsa
Seleccione uno para añadir o presione Siguiente para añadir manualmente uno.]]>
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 1e1bf24..45e3c1d 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -120,7 +120,7 @@ ]]> Non trovo questo indirizzo del media center! - Non posso collegarmi a questo media center perchè non riesco a rilevare il suo indirizzo. + Non posso collegarmi a questo media center perché non riesco a rilevare il suo indirizzo. Play Pausa diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 37f6de0..4717db9 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -272,9 +272,9 @@ Obejrzany Pobierz - Czy na pewno chcesz pobrać ten film?\nFilm będzie pobierany w tle, a to może zająć trochę czasu... - Czy na pewno chcesz pobrać ten odcinek?\nOdcinek będzie pobierany w tle, a to może zająć trochę czasu... - Czy na pewno chcesz pobrać ten album?\nAlbum będzie pobierany w tle, a to może zająć trochę czasu... + Czy na pewno chcesz pobrać ten film?\nFilm będzie pobierany w tle, a to może zająć trochę czasu… + Czy na pewno chcesz pobrać ten odcinek?\nOdcinek będzie pobierany w tle, a to może zająć trochę czasu… + Czy na pewno chcesz pobrać ten album?\nAlbum będzie pobierany w tle, a to może zająć trochę czasu… Taki plik istnieje.\nChcesz go nadpisać, czy nadać nową nazwę? Katalog pobrania już istnieje.\nJeśli wystąpią duplikaty nazwy - chciałbyś nadpisać pliki, czy zmienić im nazwę? @@ -326,7 +326,7 @@ Wibruj po naciśnięciu klawiszy pilota Boczne skróty - O ... + O …
Proszę, oceń nas na
Google Play

diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index c60640b..f614aa8 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -279,7 +279,7 @@ Se necessitar de ajuda, visite o nosso Tem a certeza que pretende transferir todos os álbuns?\nA transferência será efetuada em segundo plano, mas poderá demorar algum tempo até estar completa. Tipos de rede autorizados para transferências Tipos de rede - Não foi possível enviar o video para o Kodi + Não foi possível enviar o vídeo para o Kodi Manter o controlo remoto sobre o écran de bloqueio Multi-coluna Nenhum tipo de conexão seleccionado nas opções diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 6f4e1c7..41e1805 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -25,6 +25,7 @@ #ffffffff #88ffffff + #3bffffff #de000000 #8a000000 @@ -79,4 +80,6 @@ #ffc73a00 + @color/background_floating_material_dark + \ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 155b414..e12fd33 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -301,13 +301,13 @@