compose: Initial migration of AppDetails* logic to compose [2/*]
Deprecate setting to hide similar and related apps as they will be always listed in the suggestions pane on widescreen devices Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
14
app/src/main/res/drawable/ic_experiment.xml
Normal file
14
app/src/main/res/drawable/ic_experiment.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ SPDX-FileCopyrightText: Material Design Authors / Google LLC
|
||||
~ SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M200,840Q149,840 127.5,794.5Q106,749 138,710L360,440L360,200L320,200Q303,200 291.5,188.5Q280,177 280,160Q280,143 291.5,131.5Q303,120 320,120L640,120Q657,120 668.5,131.5Q680,143 680,160Q680,177 668.5,188.5Q657,200 640,200L600,200L600,440L822,710Q854,749 832.5,794.5Q811,840 760,840L200,840ZM280,720L680,720L544,560L416,560L280,720ZM200,760L760,760L520,468L520,200L440,200L440,468L200,760ZM480,480L480,480L480,480L480,480L480,480L480,480Z"/>
|
||||
</vector>
|
||||
14
app/src/main/res/drawable/ic_suggestions.xml
Normal file
14
app/src/main/res/drawable/ic_suggestions.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
~ SPDX-FileCopyrightText: Material Design Authors / Google LLC
|
||||
~ SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="960"
|
||||
android:viewportHeight="960">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M480,880Q447,880 423.5,856.5Q400,833 400,800L560,800Q560,833 536.5,856.5Q513,880 480,880ZM320,760L320,680L640,680L640,760L320,760ZM330,640Q261,599 220.5,530Q180,461 180,380Q180,255 267.5,167.5Q355,80 480,80Q605,80 692.5,167.5Q780,255 780,380Q780,461 739.5,530Q699,599 630,640L330,640ZM354,560L606,560Q651,528 675.5,481Q700,434 700,380Q700,288 636,224Q572,160 480,160Q388,160 324,224Q260,288 260,380Q260,434 284.5,481Q309,528 354,560ZM480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Q480,560 480,560Z"/>
|
||||
</vector>
|
||||
@@ -56,74 +56,57 @@
|
||||
android:id="@+id/layout_details_app"
|
||||
layout="@layout/layout_details_app" />
|
||||
|
||||
<ViewFlipper
|
||||
android:id="@+id/view_flipper"
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="@drawable/divider"
|
||||
android:orientation="vertical"
|
||||
android:showDividers="middle">
|
||||
|
||||
<RelativeLayout
|
||||
<include
|
||||
android:id="@+id/layout_detail_description"
|
||||
layout="@layout/layout_details_description" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_review"
|
||||
layout="@layout/layout_details_review" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_beta"
|
||||
layout="@layout/layout_details_beta" />
|
||||
|
||||
<com.airbnb.epoxy.EpoxyRecyclerView
|
||||
android:id="@+id/epoxy_recycler_stream"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="320dp">
|
||||
|
||||
<ProgressBar
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true" />
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="@drawable/divider"
|
||||
android:clipToPadding="false"
|
||||
android:orientation="vertical"
|
||||
android:showDividers="middle">
|
||||
android:overScrollMode="never"
|
||||
android:scrollbars="none"
|
||||
app:itemSpacing="@dimen/margin_small"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:listitem="@layout/view_app" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_detail_description"
|
||||
layout="@layout/layout_details_description" />
|
||||
<include
|
||||
android:id="@+id/layout_details_compatibility"
|
||||
layout="@layout/layout_details_compatibility" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_review"
|
||||
layout="@layout/layout_details_review" />
|
||||
<include
|
||||
android:id="@+id/layout_details_permissions"
|
||||
layout="@layout/layout_details_permissions" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_beta"
|
||||
layout="@layout/layout_details_beta" />
|
||||
<include
|
||||
android:id="@+id/layout_details_data_safety"
|
||||
layout="@layout/layout_details_data_safety" />
|
||||
|
||||
<com.airbnb.epoxy.EpoxyRecyclerView
|
||||
android:id="@+id/epoxy_recycler_stream"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipToPadding="false"
|
||||
android:orientation="vertical"
|
||||
android:overScrollMode="never"
|
||||
android:scrollbars="none"
|
||||
app:itemSpacing="@dimen/margin_small"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:listitem="@layout/view_app" />
|
||||
<include
|
||||
android:id="@+id/layout_details_privacy"
|
||||
layout="@layout/layout_details_privacy" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_compatibility"
|
||||
layout="@layout/layout_details_compatibility" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_permissions"
|
||||
layout="@layout/layout_details_permissions" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_data_safety"
|
||||
layout="@layout/layout_details_data_safety" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_privacy"
|
||||
layout="@layout/layout_details_privacy" />
|
||||
|
||||
<include
|
||||
android:id="@+id/layout_details_dev"
|
||||
layout="@layout/layout_details_dev" />
|
||||
</LinearLayout>
|
||||
</ViewFlipper>
|
||||
<include
|
||||
android:id="@+id/layout_details_dev"
|
||||
layout="@layout/layout_details_dev" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</LinearLayout>
|
||||
|
||||
@@ -1,106 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".view.ui.details.DetailsMoreFragment">
|
||||
|
||||
<androidx.appcompat.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?attr/actionBarSize"
|
||||
app:navigationIcon="@drawable/ic_arrow_back" />
|
||||
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="@drawable/divider"
|
||||
android:orientation="vertical"
|
||||
android:showDividers="middle">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="@drawable/divider"
|
||||
android:orientation="vertical"
|
||||
android:paddingStart="@dimen/padding_small"
|
||||
android:paddingEnd="@dimen/padding_normal"
|
||||
android:showDividers="middle">
|
||||
|
||||
<com.aurora.store.view.custom.layouts.ActionHeaderLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textIsSelectable="true"
|
||||
app:headerTitle="@string/details_description" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_description"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="all"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line1"
|
||||
android:textIsSelectable="true" />
|
||||
|
||||
<com.aurora.store.view.custom.layouts.ActionHeaderLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textIsSelectable="true"
|
||||
app:headerTitle="@string/details_dependencies" />
|
||||
|
||||
<com.airbnb.epoxy.EpoxyRecyclerView
|
||||
android:id="@+id/recycler_dependency"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:clipToPadding="true"
|
||||
android:nestedScrollingEnabled="false"
|
||||
android:orientation="horizontal"
|
||||
android:overScrollMode="never"
|
||||
android:scrollbars="none"
|
||||
app:itemSpacing="@dimen/margin_small"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:itemCount="4"
|
||||
tools:listitem="@layout/view_app_dependent" />
|
||||
</LinearLayout>
|
||||
|
||||
<com.airbnb.epoxy.EpoxyRecyclerView
|
||||
android:id="@+id/recycler_more"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipToPadding="true"
|
||||
android:nestedScrollingEnabled="false"
|
||||
android:orientation="vertical"
|
||||
android:overScrollMode="never"
|
||||
android:scrollbars="none"
|
||||
app:itemSpacing="@dimen/margin_small"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:itemCount="4"
|
||||
tools:listitem="@layout/view_file" />
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</LinearLayout>
|
||||
@@ -1,43 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".view.ui.details.ScreenshotFragment">
|
||||
|
||||
<androidx.appcompat.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?attr/actionBarSize"
|
||||
android:translationZ="1dp"
|
||||
app:navigationIcon="@drawable/ic_arrow_back" />
|
||||
|
||||
<com.airbnb.epoxy.EpoxyRecyclerView
|
||||
android:id="@+id/recycler_view"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal"
|
||||
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||||
tools:listitem="@layout/view_screenshot" />
|
||||
</LinearLayout>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ViewStub
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inflatedId="@+id/header_view" />
|
||||
|
||||
<ViewStub
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inflatedId="@+id/recycler_view_01" />
|
||||
|
||||
<ViewStub
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:inflatedId="@+id/recycler_view_02" />
|
||||
</LinearLayout>
|
||||
@@ -1,140 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:divider="@drawable/divider"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/padding_large"
|
||||
android:showDividers="middle">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/img_icon"
|
||||
android:layout_width="@dimen/icon_size_category"
|
||||
android:layout_height="@dimen/icon_size_category"
|
||||
android:layout_centerVertical="true"
|
||||
tools:src="@drawable/bg_placeholder" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_header"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginStart="@dimen/margin_normal"
|
||||
android:layout_marginBottom="@dimen/margin_normal"
|
||||
android:layout_toEndOf="@id/img_icon"
|
||||
android:maxLines="1"
|
||||
android:text="@string/title_manual_download"
|
||||
android:textAlignment="viewStart"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.SubTitle" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_line1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLines="2"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line1"
|
||||
tools:text="App Name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_line2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_line1"
|
||||
android:layout_alignStart="@id/txt_line1"
|
||||
android:layout_alignEnd="@id/txt_line1"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line2"
|
||||
android:textColor="?colorAccent"
|
||||
tools:text="Package Name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txt_line3"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_line2"
|
||||
android:layout_alignStart="@id/txt_line1"
|
||||
android:layout_alignEnd="@id/txt_line1"
|
||||
android:textAlignment="viewStart"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line3"
|
||||
tools:text="Base version" />
|
||||
</RelativeLayout>
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/version_code_layout"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:helperText="@string/manual_download_hint">
|
||||
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/version_code_inp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:imeOptions="actionDone"
|
||||
android:inputType="number" />
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:weightSum="2">
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/btn_secondary"
|
||||
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/height_button"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/action_cancel" />
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/btn_primary"
|
||||
style="@style/Widget.Material3.Button.TextButton.Dialog.Flush"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="@dimen/height_button"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/action_install" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
@@ -1,59 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/padding_small"
|
||||
android:textIsSelectable="true">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line1"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="Line1" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_subtitle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_title"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="2"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line2"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="Line2" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_description"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_subtitle"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line3"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="Line3" />
|
||||
</RelativeLayout>
|
||||
|
||||
@@ -1,48 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/padding_xsmall"
|
||||
android:paddingStart="@dimen/padding_small"
|
||||
android:paddingEnd="@dimen/padding_xsmall">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/line1"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:textAlignment="viewStart"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line1"
|
||||
tools:text="File Name" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/line2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/line1"
|
||||
android:layout_alignStart="@id/line1"
|
||||
android:layout_alignEnd="@id/line1"
|
||||
android:maxLines="1"
|
||||
android:textAlignment="viewStart"
|
||||
android:textAppearance="@style/TextAppearance.Aurora.Line2"
|
||||
tools:text="File Size" />
|
||||
</RelativeLayout>
|
||||
@@ -1,81 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:padding="@dimen/padding_xsmall">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/img"
|
||||
android:layout_width="@dimen/icon_size_small"
|
||||
android:layout_height="@dimen/icon_size_small"
|
||||
android:layout_marginEnd="@dimen/margin_small" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_author"
|
||||
style="@style/TextAppearance.Aurora.Line1"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toEndOf="@id/img"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textAlignment="viewStart"
|
||||
android:textSize="14sp"
|
||||
tools:text="Author Name" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_time"
|
||||
style="@style/TextAppearance.Aurora.Line3"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_author"
|
||||
android:layout_alignStart="@id/txt_author"
|
||||
android:layout_alignEnd="@id/txt_author"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textAlignment="viewStart"
|
||||
tools:text="Date" />
|
||||
|
||||
<RatingBar
|
||||
android:id="@+id/rating"
|
||||
style="@style/Widget.AppCompat.RatingBar.Small"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/txt_time"
|
||||
android:layout_alignStart="@id/txt_author"
|
||||
android:numStars="5" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/txt_comment"
|
||||
style="@style/TextAppearance.Aurora.Line2"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/img"
|
||||
android:layout_alignStart="@id/txt_author"
|
||||
android:layout_marginTop="@dimen/margin_xsmall"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="10"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="Comment" />
|
||||
</RelativeLayout>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/img"
|
||||
android:layout_width="@dimen/screenshot_width"
|
||||
android:layout_height="@dimen/screenshot_height"
|
||||
android:adjustViewBounds="true" />
|
||||
</RelativeLayout>
|
||||
@@ -1,28 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/img"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</LinearLayout>
|
||||
@@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
~ Aurora Store
|
||||
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
|
||||
~
|
||||
~ Aurora Store is free software: you can redistribute it and/or modify
|
||||
~ it under the terms of the GNU General Public License as published by
|
||||
~ the Free Software Foundation, either version 2 of the License, or
|
||||
~ (at your option) any later version.
|
||||
~
|
||||
~ Aurora Store is distributed in the hope that it will be useful,
|
||||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
~ GNU General Public License for more details.
|
||||
~
|
||||
~ You should have received a copy of the GNU General Public License
|
||||
~ along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
||||
~
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/img"
|
||||
android:layout_width="@dimen/screenshot_width_mini"
|
||||
android:layout_height="@dimen/screenshot_height_mini"
|
||||
android:adjustViewBounds="true" />
|
||||
</RelativeLayout>
|
||||
@@ -32,9 +32,6 @@
|
||||
<action
|
||||
android:id="@+id/action_global_expandedStreamBrowseFragment"
|
||||
app:destination="@id/expandedStreamBrowseFragment" />
|
||||
<action
|
||||
android:id="@+id/action_global_screenshotFragment"
|
||||
app:destination="@id/screenshotFragment" />
|
||||
<action
|
||||
android:id="@+id/action_global_devProfileFragment"
|
||||
app:destination="@id/devProfileFragment" />
|
||||
@@ -165,18 +162,11 @@
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_devAppsFragment"
|
||||
app:destination="@id/devAppsFragment" />
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_detailsMoreFragment"
|
||||
app:destination="@id/detailsMoreFragment" />
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_detailsReviewFragment"
|
||||
app:destination="@id/detailsReviewFragment" />
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_detailsExodusFragment"
|
||||
app:destination="@id/detailsExodusFragment" />
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_manualDownloadSheet"
|
||||
app:destination="@id/manualDownloadSheet" />
|
||||
<argument
|
||||
android:name="app"
|
||||
android:defaultValue="@null"
|
||||
app:argType="com.aurora.gplayapi.data.models.App"
|
||||
app:nullable="true" />
|
||||
<action
|
||||
android:id="@+id/action_appDetailsFragment_to_permissionBottomSheet"
|
||||
app:destination="@id/permissionBottomSheet" />
|
||||
@@ -209,17 +199,6 @@
|
||||
android:name="expandedStreamUrl"
|
||||
app:argType="string" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/screenshotFragment"
|
||||
android:name="com.aurora.store.view.ui.details.ScreenshotFragment"
|
||||
tools:layout="@layout/fragment_screenshot">
|
||||
<argument
|
||||
android:name="position"
|
||||
app:argType="integer" />
|
||||
<argument
|
||||
android:name="arrayOfArtwork"
|
||||
app:argType="com.aurora.gplayapi.data.models.Artwork[]" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/devProfileFragment"
|
||||
android:name="com.aurora.store.view.ui.details.DevProfileFragment"
|
||||
@@ -253,36 +232,6 @@
|
||||
android:name="developerName"
|
||||
app:argType="string" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/detailsMoreFragment"
|
||||
android:name="com.aurora.store.view.ui.details.DetailsMoreFragment"
|
||||
tools:layout="@layout/fragment_details_more">
|
||||
<argument
|
||||
android:name="app"
|
||||
app:argType="com.aurora.gplayapi.data.models.App" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/detailsReviewFragment"
|
||||
android:name="com.aurora.store.view.ui.details.DetailsReviewFragment"
|
||||
tools:layout="@layout/fragment_details_review">
|
||||
<argument
|
||||
android:name="displayName"
|
||||
app:argType="string" />
|
||||
<argument
|
||||
android:name="packageName"
|
||||
app:argType="string" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/detailsExodusFragment"
|
||||
android:name="com.aurora.store.view.ui.details.DetailsExodusFragment"
|
||||
tools:layout="@layout/fragment_generic_with_toolbar">
|
||||
<argument
|
||||
android:name="displayName"
|
||||
app:argType="string" />
|
||||
<argument
|
||||
android:name="report"
|
||||
app:argType="com.aurora.store.data.model.Report" />
|
||||
</fragment>
|
||||
<fragment
|
||||
android:id="@+id/splashFragment"
|
||||
android:name="com.aurora.store.view.ui.splash.SplashFragment"
|
||||
@@ -397,15 +346,6 @@
|
||||
android:name="com.aurora.store.view.ui.sheets.FilterSheet"
|
||||
android:label="FilterSheet"
|
||||
tools:layout="@layout/sheet_filter" />
|
||||
<dialog
|
||||
android:id="@+id/manualDownloadSheet"
|
||||
android:name="com.aurora.store.view.ui.sheets.ManualDownloadSheet"
|
||||
android:label="ManualDownloadSheet"
|
||||
tools:layout="@layout/sheet_manual_download">
|
||||
<argument
|
||||
android:name="app"
|
||||
app:argType="com.aurora.gplayapi.data.models.App" />
|
||||
</dialog>
|
||||
<dialog
|
||||
android:id="@+id/permissionBottomSheet"
|
||||
android:name="com.aurora.store.view.ui.sheets.PermissionBottomSheet"
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="title_library">المكتبة</string>
|
||||
<string name="insecure_anonymous_apply">تأكد من إعادة تسجيل الدخول وإعادة تشغيل التطبيق لتطبيق التغييرات.</string>
|
||||
<string name="pref_network_title">الشبكات</string>
|
||||
<string name="pref_ui_similar_apps_desc">عرض مجموعات متشابهة وذات صلة في صفحة تفاصيل التطبيق</string>
|
||||
<string name="pref_ui_similar_apps">تطبيقات مشابهة و ذات صلة</string>
|
||||
<string name="pref_ui_no_for_you_desc">عرض صفحات لك على الشاشة الرئيسية</string>
|
||||
<string name="pref_ui_no_for_you">صفحات لك</string>
|
||||
|
||||
@@ -180,7 +180,6 @@
|
||||
<string name="pref_install_mode_am">Instalador AM</string>
|
||||
<string name="pref_install_mode_summary">Seleiciona\'l métodu d\'instalación de los archivos APK</string>
|
||||
<string name="pref_ui_similar_apps">Aplicaciones asemeyaes y rellacionaes</string>
|
||||
<string name="pref_ui_similar_apps_desc">Amuesa les aplicaciones asemeyaes y rellacionaes nes páxines de detalles de les aplicaciones</string>
|
||||
<string name="tab_for_you">Pa ti</string>
|
||||
<string name="title_installed">Instalóse</string>
|
||||
<string name="title_installer">App Installer</string>
|
||||
|
||||
@@ -179,7 +179,6 @@
|
||||
<string name="pref_ui_layout">Tərtibat</string>
|
||||
<string name="pref_ui_layout_tab">İlkin səhifəni seç</string>
|
||||
<string name="pref_ui_similar_apps">Oxşar və əlaqəli tətbiqlər</string>
|
||||
<string name="pref_ui_similar_apps_desc">Tətbiq təfərrüatları səhifəsində oxşar və əlaqəli qrupları göstər</string>
|
||||
<string name="purchase_failed">Endirmə Alınmadı</string>
|
||||
<string name="purchase_invalid">Tətbiq satın alınmayıb</string>
|
||||
<string name="purchase_unsupported">Tətbiq dəstəklənmir</string>
|
||||
|
||||
@@ -118,7 +118,6 @@
|
||||
<string name="pref_network_proxy_url">URL проксі</string>
|
||||
<string name="pref_network_proxy_url_message">Увядзіце сапраўдны URL для праходжання ўсяго трафіку праз проксі.</string>
|
||||
<string name="pref_ui_similar_apps">Падобнае</string>
|
||||
<string name="pref_ui_similar_apps_desc">Паказваць падобныя ці звязаныя кластары на старонцы праграмы</string>
|
||||
<string name="pref_aurora_only_desc">Не правяраць наяўнасць абнаўленняў для праграм, усталяваных з крыніц па-за межамі крамы Aurora</string>
|
||||
<string name="purchase_failed">Памылка спампоўкі</string>
|
||||
<string name="purchase_no_file">Не ўдалося атрымаць файл</string>
|
||||
|
||||
@@ -139,7 +139,6 @@
|
||||
<string name="pref_install_mode_services">Услуги на Aurora</string>
|
||||
<string name="pref_install_mode_summary">Изберете режим на инсталиране на APK</string>
|
||||
<string name="pref_ui_no_for_you_desc">Показва страници за вас на началния екран</string>
|
||||
<string name="pref_ui_similar_apps_desc">Показва подобни и свързани клъстери на страницата с подробности за приложението</string>
|
||||
<string name="purchase_failed">Изтеглянето се провали</string>
|
||||
<string name="purchase_unsupported">Приложението не се поддържа</string>
|
||||
<string name="purchase_not_found">Приложението не е намерено</string>
|
||||
|
||||
@@ -176,7 +176,6 @@
|
||||
<string name="pref_ui_similar_apps">Aplicacions similars i relacionades</string>
|
||||
<string name="purchase_unsupported">Aplicació no compatible</string>
|
||||
<string name="purchase_not_found">No s\'ha trobat l\'aplicació</string>
|
||||
<string name="pref_ui_similar_apps_desc">Mostrar grups similars i relacionats a la pàgina detalls de l\'aplicació</string>
|
||||
<string name="purchase_failed">Error en descarregar</string>
|
||||
<string name="title_blacklist_manager">Gestor de llistes negres</string>
|
||||
<string name="pref_ui_no_for_you_desc">Visualitzar les Pàgines per a tu a la pantalla d\'inici</string>
|
||||
|
||||
@@ -51,7 +51,6 @@
|
||||
<string name="purchase_unsupported">Aplikace není kompatibilní</string>
|
||||
<string name="purchase_invalid">Aplikace nebyla zakoupena</string>
|
||||
<string name="purchase_failed">Stažení se nezdařilo</string>
|
||||
<string name="pref_ui_similar_apps_desc">Zobrazit podobné a související skupiny na stránce s detaily aplikace</string>
|
||||
<string name="pref_ui_similar_apps">Podobné a související aplikace</string>
|
||||
<string name="pref_ui_no_for_you_desc">Zobrazit stránky pro vás na domovské obrazovce</string>
|
||||
<string name="pref_ui_no_for_you">Stránky pro vás</string>
|
||||
|
||||
@@ -105,7 +105,6 @@
|
||||
<string name="pref_install_mode_am">AM-installationsprogram</string>
|
||||
<string name="pref_ui_layout">Layout</string>
|
||||
<string name="purchase_not_found">Appen blev ikke fundet</string>
|
||||
<string name="pref_ui_similar_apps_desc">Vis lignende og relaterede samlinger på appens detaljeside</string>
|
||||
<string name="spoof_apply">Sørg for at logge ind igen for at anvende spoofen</string>
|
||||
<string name="title_manual_download">Manuel download</string>
|
||||
<string name="toast_apk_whitelisted">Hvidlistet</string>
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="toast_purchase_blocked">App-Käufe sind für anonyme Konten nicht verfügbar.</string>
|
||||
<string name="insecure_anonymous_apply">Bitte neu anmelden und die App neu starten, um die Änderungen zu übernehmen.</string>
|
||||
<string name="pref_network_title">Netzwerk</string>
|
||||
<string name="pref_ui_similar_apps_desc">Ähnliche und verwandte Apps in der App-Detailansicht anzeigen</string>
|
||||
<string name="pref_ui_similar_apps">Ähnliche Apps</string>
|
||||
<string name="pref_ui_no_for_you_desc">„Für dich“-Tab auf der Startseite anzeigen</string>
|
||||
<string name="pref_ui_no_for_you">„Für dich“-Tab</string>
|
||||
|
||||
@@ -168,7 +168,6 @@
|
||||
<string name="pref_ui_title">Προσαρμογή</string>
|
||||
<string name="pref_ui_no_for_you_desc">Εμφάνιση σελίδων για εσάς στην αρχική οθόνη</string>
|
||||
<string name="purchase_unsupported">Η εφαρμογή δεν υποστηρίζεται</string>
|
||||
<string name="pref_ui_similar_apps_desc">Εμφάνιση παρόμοιων και σχετικών ομάδων στη σελίδα λεπτομερειών εφαρμογής</string>
|
||||
<string name="purchase_session_expired">Η συνεδρία έληξε, συνδεθείτε ξανά για να λάβετε νέα.</string>
|
||||
<string name="tab_top_paid">Κορυφαίες επί πληρωμή</string>
|
||||
<string name="title_device">Συσκευή</string>
|
||||
|
||||
@@ -176,7 +176,6 @@
|
||||
<string name="download_eta_min">ankoraŭ %1$d m %2$d s</string>
|
||||
<string name="pref_ui_title">Agordo</string>
|
||||
<string name="pref_ui_no_for_you">\"Por vi\" paĝoj</string>
|
||||
<string name="pref_ui_similar_apps_desc">Vidigi similajn kaj rilatajn apojn sur la paĝo de la apon detaloj</string>
|
||||
<string name="pref_install_mode_shizuku">Shizuku instalilo</string>
|
||||
<string name="pref_install_mode_am">AM instalilo</string>
|
||||
<string name="action_request_analysis">Peti novan analizon</string>
|
||||
|
||||
@@ -211,7 +211,6 @@
|
||||
<string name="toast_manual_available">Felicidades, el código de la versión solicitada está disponible, descargándolo ahora.</string>
|
||||
<string name="toast_manual_unavailable">El código de versión que estás solicitando no está disponible.</string>
|
||||
<string name="title_manual_download">Descarga manual</string>
|
||||
<string name="pref_ui_similar_apps_desc">Mostrar grupos similares y relacionados en la página de detalles de la aplicación</string>
|
||||
<string name="pref_ui_similar_apps">Aplicaciones similares y relacionadas</string>
|
||||
<string name="pref_ui_no_for_you_desc">Mostrar las páginas Para ti en la pantalla de inicio</string>
|
||||
<string name="pref_ui_no_for_you">Páginas para ti</string>
|
||||
|
||||
@@ -201,7 +201,6 @@
|
||||
<string name="notification_channel_updates">Uuenduste märguanded</string>
|
||||
<string name="permissions_denied">Vajalikud load on keelatud. Toimingu jätkamiseks luba need</string>
|
||||
<string name="pref_updates_auto">Automaatsed uuendused</string>
|
||||
<string name="pref_ui_similar_apps_desc">Kuva rakenduse üksikasjade lehel sarnaseid ja seotud rakendusi</string>
|
||||
<string name="title_manual_download">Käsitsi allalaadimine</string>
|
||||
<string name="toast_clipboard_copied">Kopeeriti lõikelauale</string>
|
||||
<string name="toast_manual_available">Õnnitlused, taotletud versioonikood on saadaval, laadime alla.</string>
|
||||
|
||||
@@ -216,7 +216,6 @@
|
||||
<string name="toast_manual_unavailable">Eskatzen ari zaren bertsio kodea ez dago erabilgarri.</string>
|
||||
<string name="title_manual_download">Eskuzko deskargatzea</string>
|
||||
<string name="insecure_anonymous_apply">Ziurtatu berriro hasten duzula saioa eta berrabiarazi aplikazioa aldaketak aplikatzeko.</string>
|
||||
<string name="pref_ui_similar_apps_desc">Erakutsi antzeko taldeak eta erlazionatuak aplikazioaren xehetasunen orrian</string>
|
||||
<string name="pref_ui_similar_apps">Antzeko aplikazioak eta erlazionatuak</string>
|
||||
<string name="pref_ui_no_for_you_desc">Erakutsi zuretzako orriak hasierako pantailan</string>
|
||||
<string name="pref_ui_no_for_you">Zuretzako orrialdeak</string>
|
||||
|
||||
@@ -223,7 +223,6 @@
|
||||
<string name="onboarding_permission_installer_desc">اجازه نصب برنامهها از فروشگاه آرورا</string>
|
||||
<string name="pref_install_delete_title">حذف APK پس از نصب</string>
|
||||
<string name="pref_install_mode_am">نصب کننده AM.</string>
|
||||
<string name="pref_ui_similar_apps_desc">نمایش خوشه های مشابه و مرتبط در صفحه جزئیات برنامه</string>
|
||||
<string name="spoof_apply">اطمینان حاصل کنید که برای اعمال پارامتر جعلی دوباره وارد سیستم شوید</string>
|
||||
<string name="tab_editor_choice">انتخاب سردبیران</string>
|
||||
<string name="title_no_network">بدون شبکه</string>
|
||||
|
||||
@@ -187,7 +187,6 @@
|
||||
<string name="insecure_anonymous_apply">Varmista, että kirjaudut uudelleen ja käynnistät sovelluksen uudelleen ottaaksesi muutokset käyttöön.</string>
|
||||
<string name="spoof_apply">Varmista, että kirjaudut uudelleen ottaaksesi huijauksen käyttöösi</string>
|
||||
<string name="purchase_session_expired">Sessio päättyi, kirjaudu uudelleen uuden session aloittamiseksi.</string>
|
||||
<string name="pref_ui_similar_apps_desc">Näytä sovelluksen lisätietosivulla sen kanssa samankaltaisia ja siihen liittyviä sovelluksia</string>
|
||||
<string name="pref_ui_no_for_you_desc">Näytä Sinulle räätälöity-sivut kotinäytöllä</string>
|
||||
<string name="pref_ui_layout_tab">Valitse oletusvälilehti</string>
|
||||
<string name="pref_ui_layout">Ulkoasu</string>
|
||||
|
||||
@@ -209,7 +209,6 @@
|
||||
<string name="insecure_anonymous_apply">Reconnectez-vous et redémarrez l’appli pour appliquer les changements.</string>
|
||||
<string name="pref_network_title">Mise en réseau</string>
|
||||
<string name="pref_ui_no_for_you">Pages « Pour vous »</string>
|
||||
<string name="pref_ui_similar_apps_desc">Afficher les grappes semblables et connexes sur la page des détails de l’appli</string>
|
||||
<string name="pref_ui_similar_apps">Applis semblables et connexes</string>
|
||||
<string name="pref_ui_no_for_you_desc">Afficher les pages « Pour vous » sur l’écran d’accueil</string>
|
||||
<string name="pref_ui_layout_tab">Choisir l’onglet par défaut</string>
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
<string name="purchase_unsupported">Aplicación non soportada</string>
|
||||
<string name="purchase_invalid">Aplicación non mercada</string>
|
||||
<string name="purchase_failed">Descarga fallida</string>
|
||||
<string name="pref_ui_similar_apps_desc">Amosar grupos similares e relacionados na páxina de detalles da aplicación</string>
|
||||
<string name="pref_ui_similar_apps">Aplicacións semellantes e relacionadas</string>
|
||||
<string name="pref_ui_no_for_you_desc">Mostrar Suxestións Personalizadas na pantalla de inicio</string>
|
||||
<string name="pref_ui_no_for_you">Suxestións personalizadas</string>
|
||||
|
||||
@@ -207,7 +207,6 @@
|
||||
<string name="pref_install_mode_session">מתקין מערכת</string>
|
||||
<string name="pref_ui_layout_tab">בחר עמוד ברירת מחדל</string>
|
||||
<string name="pref_ui_no_for_you_desc">הצגת עמודים בשבילך במסך הבית</string>
|
||||
<string name="pref_ui_similar_apps_desc">יישומים דומים וקשורים במסך פרטי היישום</string>
|
||||
<string name="title_spoof_manager">מנהל הזיוף</string>
|
||||
<string name="details_beta_description">אתה תראה תכונות חדשות ובאגים לפני כולם. תן משוב למפתחים כדי לעזור להם להשתפר.</string>
|
||||
<string name="device_miui_extra">אפשרי לבחור מתקין נתיב, אבל לא תוכל להתקין התקנות מאוחדות (מפוצלות - split), אז הבחירה בידך.</string>
|
||||
|
||||
@@ -218,7 +218,6 @@
|
||||
<string name="pref_install_mode_root">रूट इंस्टॉलर</string>
|
||||
<string name="pref_install_mode_services">ऑरोरा सेवाएं (अस्वीकृत)</string>
|
||||
<string name="purchase_session_expired">सत्र समाप्त हो गया, नया सत्र प्राप्त करने के लिए पुनः लॉगिन करें।</string>
|
||||
<string name="pref_ui_similar_apps_desc">ऐप विवरण पृष्ठ पर समान और संबंधित समूह प्रदर्शित करें</string>
|
||||
<string name="spoof_apply">सुनिश्चित करें कि आप छलावरण लागू करने के लिए पुनः लॉगिन करें</string>
|
||||
<string name="purchase_unsupported">ऐप समर्थित नहीं है</string>
|
||||
<string name="toast_apk_whitelisted">श्वेतसूचीबद्ध</string>
|
||||
|
||||
@@ -211,7 +211,6 @@
|
||||
<string name="toast_manual_available">Čestitamo, traženi kod verzije je dostupan, preuzima se.</string>
|
||||
<string name="toast_manual_unavailable">Zatraženi kod verzije nije dostupan.</string>
|
||||
<string name="title_manual_download">Ručno preuzimanje</string>
|
||||
<string name="pref_ui_similar_apps_desc">Prikaži slične i srodne skupove podataka na stranici detalja aplikacije</string>
|
||||
<string name="pref_ui_similar_apps">Slične i srodne aplikacije</string>
|
||||
<string name="pref_ui_no_for_you_desc">Prikaži „Za tvoje stranice” na početnom ekranu</string>
|
||||
<string name="pref_ui_no_for_you">Za tvoje stranice</string>
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="action_installations">Telepítések</string>
|
||||
<string name="action_disable">Tiltás</string>
|
||||
<string name="action_clear">Törlés</string>
|
||||
<string name="pref_ui_similar_apps_desc">Hasonló és releváns csoportok megjelenítése a részletek lapon</string>
|
||||
<string name="pref_ui_similar_apps">Hasonló és releváns alkalmazások</string>
|
||||
<string name="pref_ui_no_for_you_desc">„Önnek ajánlott” oldal megjelenítése a kezdőlapon</string>
|
||||
<string name="pref_ui_no_for_you">Önnek ajánlott oldalak</string>
|
||||
|
||||
@@ -198,7 +198,6 @@
|
||||
<string name="purchase_not_found">Aplikasi tidak ditemukan</string>
|
||||
<string name="purchase_unsupported">Aplikasi tidak didukung</string>
|
||||
<string name="purchase_invalid">Aplikasi tidak dibeli</string>
|
||||
<string name="pref_ui_similar_apps_desc">Tampilkan kelompok yang serupa dan terkait pada halaman detail aplikasi</string>
|
||||
<string name="pref_ui_similar_apps">Aplikasi serupa dan terkait</string>
|
||||
<string name="pref_ui_no_for_you_desc">Tampilkan halaman Untuk Anda di layar beranda</string>
|
||||
<string name="pref_ui_no_for_you">Halaman Untuk Anda</string>
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="toast_purchase_blocked">Gli acquisti di app non sono disponibili sui profili anonimi.</string>
|
||||
<string name="insecure_anonymous_apply">Assicurati di effettuare nuovamente l\'accesso e di riavviare l\'app per applicare le modifiche.</string>
|
||||
<string name="pref_network_title">Rete</string>
|
||||
<string name="pref_ui_similar_apps_desc">Visualizza i gruppi di app simili e correlate nella pagina dei dettagli dell\'app</string>
|
||||
<string name="pref_ui_similar_apps">App simili e correlate</string>
|
||||
<string name="pref_ui_no_for_you_desc">Visualizza le pagine «Per te» sulla schermata iniziale</string>
|
||||
<string name="pref_ui_no_for_you">Pagine «Per te»</string>
|
||||
|
||||
@@ -212,7 +212,6 @@
|
||||
<string name="toast_manual_unavailable">要求したバージョン番号は利用できません。</string>
|
||||
<string name="toast_manual_available">おめでとう!要求したバージョンコードが利用できます。ダウンロード中。</string>
|
||||
<string name="title_manual_download">手動ダウンロード</string>
|
||||
<string name="pref_ui_similar_apps_desc">類似のアプリをアプリ詳細ページに表示する</string>
|
||||
<string name="pref_ui_similar_apps">類似のアプリ</string>
|
||||
<string name="pref_ui_no_for_you_desc">ホーム画面におすすめページを表示する</string>
|
||||
<string name="pref_ui_no_for_you">おすすめページ</string>
|
||||
|
||||
@@ -216,7 +216,6 @@
|
||||
<string name="toast_manual_unavailable">Koda guhertoya ku tu dixwazî tune ye.</string>
|
||||
<string name="title_manual_download">Bi destan daxe</string>
|
||||
<string name="insecure_anonymous_apply">Ji bo sepandina guhertinan zanibe be ku tu ji nû ve têketiye û sepanê ji nû ve daye destpêkirin.</string>
|
||||
<string name="pref_ui_similar_apps_desc">Komên wekhev û têkildar li ser rûpela hûrgiliyên sepanê nîşan bide</string>
|
||||
<string name="pref_ui_similar_apps">Sepanên wekhev û têkildar</string>
|
||||
<string name="pref_ui_no_for_you_desc">Rûpelên Bo Te li ser dîmendera malê rê bide</string>
|
||||
<string name="pref_ui_no_for_you">Rûpelên Bo Te</string>
|
||||
|
||||
@@ -207,7 +207,6 @@
|
||||
<string name="title_apps">앱스</string>
|
||||
<string name="title_app_settings">앱 설정</string>
|
||||
<string name="purchase_failed">다운로드 실패됨</string>
|
||||
<string name="pref_ui_similar_apps_desc">앱 세부 페이지에서 유사한 및 관련 클러스터 표시</string>
|
||||
<string name="action_request_analysis">새 분석 요청</string>
|
||||
<string name="action_home_screen">홈 화면에 추가</string>
|
||||
<string name="download_clear_finished">완료건 지우기</string>
|
||||
|
||||
@@ -151,7 +151,6 @@
|
||||
<string name="download_force_clear_all">Priverstinai išvalyti visus</string>
|
||||
<string name="download_pause_all">Pristabdyti visus</string>
|
||||
<string name="pref_ui_no_for_you">„Jums“ puslapiai</string>
|
||||
<string name="pref_ui_similar_apps_desc">Rodyti programėlės puslapyje panašių ir susijusių programėlių rinkinį</string>
|
||||
<string name="tab_editor_choice">Redaktoriaus pasirinkimas</string>
|
||||
<string name="tab_for_you">Jums</string>
|
||||
<string name="title_apps_library">Programėlės bibliotekoje</string>
|
||||
|
||||
@@ -111,7 +111,6 @@
|
||||
<string name="pref_ui_no_for_you">Lapas \"Tev\"</string>
|
||||
<string name="pref_ui_no_for_you_desc">Rādīt lapas \"Tev\" sākuma ekrānā</string>
|
||||
<string name="pref_ui_similar_apps">Līdzīgas un saistītas lietotnes</string>
|
||||
<string name="pref_ui_similar_apps_desc">Rādīt līdzīgas un saistītas lietotnes</string>
|
||||
<string name="purchase_failed">Lejupielāde neizdevās</string>
|
||||
<string name="tab_top_paid">Top maksas</string>
|
||||
<string name="tab_trending">Populāri</string>
|
||||
|
||||
@@ -187,7 +187,6 @@
|
||||
<string name="toast_developer_setting_failed">Skru på utviklingsinnstillingene fra enhetsinnstillingene for å åpne dem.</string>
|
||||
<string name="toast_page_unavailable">Utforskningssiden er utilgjengelig</string>
|
||||
<string name="toast_spoof_applied">Enhetslureri i bruk.</string>
|
||||
<string name="pref_ui_similar_apps_desc">Vis lignende og relaterte klynger på appdetaljsiden</string>
|
||||
<string name="pref_ui_no_for_you_desc">Vis For You-sider på startskjermen</string>
|
||||
<string name="installer_service_misconfigured">Sett opp Aurora-tjenester og innvilg alle tilganger først.</string>
|
||||
<string name="title_spoof_manager">Lureri-håndterer</string>
|
||||
|
||||
@@ -70,7 +70,6 @@
|
||||
<string name="purchase_unsupported">App niet ondersteund</string>
|
||||
<string name="purchase_invalid">App niet aangeschaft</string>
|
||||
<string name="purchase_failed">Installatie mislukt</string>
|
||||
<string name="pref_ui_similar_apps_desc">Toon vergelijkbare en gerelateerde clusters op de app-detailspagina</string>
|
||||
<string name="pref_ui_similar_apps">Vergelijkbare en gerelateerde apps</string>
|
||||
<string name="pref_ui_no_for_you_desc">Pagina met aanbevelingen op thuisscherm tonen</string>
|
||||
<string name="pref_ui_no_for_you">Voor jou pagina\'s</string>
|
||||
|
||||
@@ -55,7 +55,6 @@
|
||||
<string name="purchase_unsupported">ਐਪ ਸਪੋਰਟਡ ਨਹੀਂ</string>
|
||||
<string name="purchase_invalid">ਇਹ ਐਪ ਅਜੇ ਤੁਹਾਡੇ ਵਲੋਂ ਖਰੀਦਿਆ ਨਹੀਂ ਗਿਆ</string>
|
||||
<string name="purchase_failed">ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ</string>
|
||||
<string name="pref_ui_similar_apps_desc">ਐਪ ਜਾਣਕਾਰੀ ਵਾਲੇ ਪੇਜ ਤੇ ਇਸੇ ਸ਼੍ਰੇਣੀ ਦੇ ਕੁੱਝ ਹੋਰ ਐਪਸ ਵਾਲਾ ਖ਼ਾਨਾ ਵਿਖਾਓ</string>
|
||||
<string name="pref_ui_similar_apps">ਇਸੇ ਸ਼੍ਰੇਣੀ ਦੇ ਕੁੱਝ ਹੋਰ ਐਪਸ</string>
|
||||
<string name="pref_ui_no_for_you_desc">ਖਾਸ ਤੁਹਾਡੇ ਲਈ ਚੁਣੇ ਹੋਏ ਐਪਸ ਵਾਲਾ ਪੰਨਾ ਵਿਖਾਓ</string>
|
||||
<string name="pref_ui_no_for_you">ਤੁਹਾਡੇ ਲਈ ਚੁਣੇ ਹੋਏ ਐਪਸ</string>
|
||||
|
||||
@@ -211,7 +211,6 @@
|
||||
<string name="pref_common_extra">Dodatkowe</string>
|
||||
<string name="pref_ui_no_for_you">Strony dla Ciebie</string>
|
||||
<string name="pref_ui_no_for_you_desc">Wyświetl strony Dla Ciebie na ekranie głównym</string>
|
||||
<string name="pref_ui_similar_apps_desc">Wyświetl grupy podobnych i powiązanych na stronie szczegółów aplikacji</string>
|
||||
<string name="pref_ui_similar_apps">Aplikacje podobne i powiązane</string>
|
||||
<string name="pref_ui_layout_tab">Wybierz domyślną kartę</string>
|
||||
<string name="pref_ui_layout">Układ</string>
|
||||
|
||||
@@ -211,7 +211,6 @@
|
||||
<string name="toast_manual_available">O código da versão solicitada está disponível, baixando agora.</string>
|
||||
<string name="toast_manual_unavailable">O código de versão que você solicitou não está disponível.</string>
|
||||
<string name="title_manual_download">Baixar manualmente</string>
|
||||
<string name="pref_ui_similar_apps_desc">Exibir apps semelhantes e relacionados na página de detalhes do app</string>
|
||||
<string name="pref_ui_no_for_you_desc">Exibir páginas de recomendação na tela inicial</string>
|
||||
<string name="pref_network_title">Rede</string>
|
||||
<string name="details_no_app_match">Não há apps correspondentes</string>
|
||||
|
||||
@@ -83,7 +83,6 @@
|
||||
<string name="purchase_unsupported">Aplicação não suportada</string>
|
||||
<string name="purchase_invalid">Aplicação não comprada</string>
|
||||
<string name="purchase_failed">Descarga falhou</string>
|
||||
<string name="pref_ui_similar_apps_desc">Mostrar grupos de aplicações semelhantes e relacionadas na página de detalhes das aplicações</string>
|
||||
<string name="pref_ui_similar_apps">Aplicações semelhantes e relacionadas</string>
|
||||
<string name="pref_ui_no_for_you_desc">Exibir páginas de recomendação no ecrã inicial</string>
|
||||
<string name="pref_ui_no_for_you">Páginas de recomendação</string>
|
||||
|
||||
@@ -207,7 +207,6 @@
|
||||
<string name="toast_clipboard_copied">Copiat în clipboard</string>
|
||||
<string name="pref_install_mode_session">Instalator sesiune</string>
|
||||
<string name="pref_install_mode_title">Metoda de instalare</string>
|
||||
<string name="pref_ui_similar_apps_desc">Afișare grupuri similare și asociate pe pagina de detalii a aplicației</string>
|
||||
<string name="pref_network_title">Rețea</string>
|
||||
<string name="session_good">Vai! Toate bune.</string>
|
||||
<string name="title_purchase_history">Istoricul achizițiilor</string>
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="toast_purchase_blocked">Покупка приложений недоступна когда анонимно.</string>
|
||||
<string name="insecure_anonymous_apply">Убедитесь, что выполнили новый вход и перезапустили приложение для применения изменений.</string>
|
||||
<string name="pref_network_title">Сеть</string>
|
||||
<string name="pref_ui_similar_apps_desc">Показать секции похожих и связанных на странице приложения</string>
|
||||
<string name="pref_ui_no_for_you_desc">Показать страницу рекомендаций на главном экране</string>
|
||||
<string name="pref_ui_layout_tab">Вкладка по умолчанию</string>
|
||||
<string name="pref_ui_layout">Вкладки</string>
|
||||
|
||||
@@ -215,7 +215,6 @@
|
||||
<string name="about_bhim">BHIM - UPI</string>
|
||||
<string name="about_bhim_summary">Dona pro mèdiu de UPI</string>
|
||||
<string name="download_metadata">Retzende meta-datos</string>
|
||||
<string name="pref_ui_similar_apps_desc">Ammustra sos grupos de aplicatziones simigiantes e ligados in sa pàgina de sos detàllios de s\'aplicatzione</string>
|
||||
<string name="about_fdroid_summary">Otene Aurora Store pro mèdiu de F-Droid.</string>
|
||||
<string name="pref_install_mode_services">Servìtzios de Aurora</string>
|
||||
<string name="title_installation">Installatzione</string>
|
||||
|
||||
@@ -234,7 +234,6 @@
|
||||
<string name="download_eta_min">වි. %1$d ත. %2$d ක් ඉතිරිය</string>
|
||||
<string name="download_eta_sec">ත. %1$d ක් ඉතිරිය</string>
|
||||
<string name="onboarding_permission_notifications">දැනුම්දීම්</string>
|
||||
<string name="pref_ui_similar_apps_desc">යෙදුමේ විස්තර පිටුවේ සමාන හා ආශ්රිත පර්ෂද පෙන්වන්න</string>
|
||||
<string name="session_good">ඔක්කොම හරි!</string>
|
||||
<string name="session_enjoy">ඇතුළු වී අත්විඳින්න.</string>
|
||||
<string name="session_init">සූදානම් කෙරෙමින්…</string>
|
||||
|
||||
@@ -140,7 +140,6 @@
|
||||
<string name="pref_install_mode_shizuku">Shizuku inštalátor</string>
|
||||
<string name="pref_install_mode_session">Inštalátor relácie</string>
|
||||
<string name="pref_vending_version_device">Predvolené (z konfigurácie zariadenia)</string>
|
||||
<string name="pref_ui_similar_apps_desc">Zobraziť podobné a súvisiace skupiny na stránke podrobností aplikácie</string>
|
||||
<string name="pref_updates_incompatible">Nekompatibilné aktualizácie</string>
|
||||
<string name="pref_updates_incompatible_desc">Zobraziť aktualizácie pre nekompatibilné alebo zakázané aplikácie, ktoré môžu zlyhať pri nštalovaní</string>
|
||||
<string name="pref_aurora_only">Iba aplikácie Aurora obchod</string>
|
||||
|
||||
@@ -272,7 +272,6 @@
|
||||
<string name="pref_filter_fdroid_title">Filtrirajte F-Droid aplikacije</string>
|
||||
<string name="pref_ui_title">Prilagajanje</string>
|
||||
<string name="pref_ui_no_for_you">Strani za vas</string>
|
||||
<string name="pref_ui_similar_apps_desc">Prikaži podobne in sorodne gruče na strani s podrobnostmi o aplikaciji</string>
|
||||
<string name="menu">Meni</string>
|
||||
<string name="about_wiki_title">Wiki</string>
|
||||
<string name="about_wiki_summary">Poiščite odgovore na pogosto zastavljena vprašanja (F.A.Q.), korake za odpravljanje težav in več</string>
|
||||
|
||||
@@ -82,7 +82,6 @@
|
||||
<string name="purchase_unsupported">Appka lama taageerin</string>
|
||||
<string name="purchase_invalid">Appka lama iibsanin</string>
|
||||
<string name="purchase_failed">Dajintii maguulaysan</string>
|
||||
<string name="pref_ui_similar_apps_desc">Soodhig appska lamidka ah iyo kuwa laxidhiidha bogga faahfaahinta appka</string>
|
||||
<string name="pref_ui_similar_apps">Lamid ah & laxidhiidha</string>
|
||||
<string name="pref_ui_no_for_you_desc">Boggaga Adiga shaashada hore soodhig</string>
|
||||
<string name="pref_ui_no_for_you">Boggaga Adiga</string>
|
||||
|
||||
@@ -173,7 +173,6 @@
|
||||
<string name="pref_ui_no_for_you">Faqe “Për ju”</string>
|
||||
<string name="pref_ui_no_for_you_desc">Shfaq te skena e kreut faqe “Për ju”</string>
|
||||
<string name="pref_ui_similar_apps">Aplikacione të ngjashme dhe të afërta</string>
|
||||
<string name="pref_ui_similar_apps_desc">Shfaq te faqja e hollësive të aplikacionit grumbuj të ngjashëm dhe të afërt</string>
|
||||
<string name="purchase_failed">Shkarkimi dështoi</string>
|
||||
<string name="purchase_invalid">Aplikacion jo i blerë</string>
|
||||
<string name="purchase_unsupported">Aplikacioni nuk mbulohet</string>
|
||||
|
||||
@@ -215,7 +215,6 @@
|
||||
<string name="toast_manual_unavailable">Кôд верзије који тражите није доступан.</string>
|
||||
<string name="title_manual_download">Ручно преузимање</string>
|
||||
<string name="insecure_anonymous_apply">Обавезно се поново пријавите и поново покрените апликацију да бисте применили промене.</string>
|
||||
<string name="pref_ui_similar_apps_desc">Прикажите сличне и сродне скупове на страници с детаљима о апликацији</string>
|
||||
<string name="pref_ui_similar_apps">Сличне и сродне апликације</string>
|
||||
<string name="pref_ui_no_for_you_desc">Прикажите странице за вас на почетном екрану</string>
|
||||
<string name="pref_ui_no_for_you">Странице за вас</string>
|
||||
|
||||
@@ -202,7 +202,6 @@
|
||||
<string name="toast_export_failed">Kunde inte exportera enhetens konfiguration</string>
|
||||
<string name="toast_export_success">Enhetens konfiguration exporterades</string>
|
||||
<string name="toast_apk_blacklisted">Svartlistad</string>
|
||||
<string name="pref_ui_similar_apps_desc">Visa liknande och relaterade klustrar på appens detaljsida</string>
|
||||
<string name="onboarding_permission_esm">Hanterare av externt lagringsutrymme</string>
|
||||
<string name="details_no_permission">Inga behörigheter</string>
|
||||
<string name="action_pending">Avvaktande</string>
|
||||
|
||||
@@ -97,7 +97,6 @@
|
||||
<string name="pref_ui_layout">தளவமைப்பு</string>
|
||||
<string name="pref_ui_layout_tab">இயல்புநிலை தாவலைத் தேர்ந்தெடுக்கவும்</string>
|
||||
<string name="pref_ui_similar_apps">ஒத்த மற்றும் தொடர்புடைய பயன்பாடுகள்</string>
|
||||
<string name="pref_ui_similar_apps_desc">செயலி விவரங்கள் பக்கத்தில் ஒத்த மற்றும் தொடர்புடைய கொத்துகளைக் காண்பி</string>
|
||||
<string name="purchase_not_found">பயன்பாடு கிடைக்கவில்லை</string>
|
||||
<string name="title_device">சாதனம்</string>
|
||||
<string name="title_installed">நிறவப்பட்டவை</string>
|
||||
|
||||
@@ -78,7 +78,6 @@
|
||||
<string name="purchase_unsupported">Uygulama desteklenmiyor</string>
|
||||
<string name="purchase_invalid">Uygulama satın alınmadı</string>
|
||||
<string name="purchase_failed">İndirme başarısız</string>
|
||||
<string name="pref_ui_similar_apps_desc">Uygulama ayrıntıları sayfasında benzer ve ilgili kümeleri görüntüle</string>
|
||||
<string name="pref_ui_similar_apps">Benzer ve ilgili uygulamalar</string>
|
||||
<string name="pref_ui_no_for_you_desc">Ana ekranda Sana özel sayfaları göster</string>
|
||||
<string name="pref_ui_no_for_you">Sana özel sayfalar</string>
|
||||
|
||||
@@ -162,7 +162,6 @@
|
||||
<string name="purchase_unsupported">Застосунок не підтримується</string>
|
||||
<string name="purchase_invalid">Застосунок не придбано</string>
|
||||
<string name="purchase_failed">Не вдалося завантажити</string>
|
||||
<string name="pref_ui_similar_apps_desc">Показувати групи подібних та пов\'язаних застосунків на сторінці відомостей про застосунок</string>
|
||||
<string name="pref_ui_similar_apps">Подібні та пов’язані застосунки</string>
|
||||
<string name="pref_ui_no_for_you_desc">Показувати сторінки для вас на головному екрані</string>
|
||||
<string name="pref_ui_no_for_you">Сторінки Для вас</string>
|
||||
|
||||
@@ -218,7 +218,6 @@
|
||||
<string name="toast_manual_available">Chúc mừng, mã phiên bản được yêu cầu đang có sẵn, đang tải xuống ngay bây giờ.</string>
|
||||
<string name="toast_manual_unavailable">Mã phiên bản bạn đang yêu cầu không có sẵn.</string>
|
||||
<string name="title_manual_download">Tải xuống thủ công</string>
|
||||
<string name="pref_ui_similar_apps_desc">Hiển thị các cụm tương tự và liên quan trên trang chi tiết ứng dụng</string>
|
||||
<string name="pref_ui_similar_apps">Các ứng dụng tương tự và liên quan</string>
|
||||
<string name="pref_ui_no_for_you_desc">Hiển thị trang Cho bạn trên màn hình chính</string>
|
||||
<string name="pref_ui_no_for_you">Trang Cho Bạn</string>
|
||||
|
||||
@@ -208,7 +208,6 @@
|
||||
<string name="installer_service_unavailable">安装 Aurora 服务 1.09 或以上版本,或更改安装程序。</string>
|
||||
<string name="insecure_anonymous_apply">确保你重新登录并重新启动应用程序以应用更改。</string>
|
||||
<string name="pref_network_title">网络</string>
|
||||
<string name="pref_ui_similar_apps_desc">在应用程序详细信息页面上显示相似和相关的集群</string>
|
||||
<string name="pref_ui_similar_apps">相似及相关应用</string>
|
||||
<string name="pref_ui_no_for_you_desc">在主页展示 For You 页面</string>
|
||||
<string name="pref_ui_no_for_you">For You 页面</string>
|
||||
|
||||
@@ -116,7 +116,6 @@
|
||||
<string name="purchase_unsupported">尚未支援該應用程式</string>
|
||||
<string name="purchase_invalid">尚未購買該應用程式</string>
|
||||
<string name="purchase_failed">下載失敗</string>
|
||||
<string name="pref_ui_similar_apps_desc">在詳細說明頁面顯示「相似及相關」</string>
|
||||
<string name="pref_ui_similar_apps">相似及相關的程式</string>
|
||||
<string name="pref_ui_no_for_you_desc">在首頁顯示「為你精選」頁面</string>
|
||||
<string name="pref_ui_no_for_you">為你精選頁面</string>
|
||||
|
||||
@@ -136,7 +136,6 @@
|
||||
<string name="details_data_safety_subtitle">Data privacy and security practices declared by developer</string>
|
||||
<string name="details_privacy">"Privacy"</string>
|
||||
<string name="details_ratings">"Rating and reviews"</string>
|
||||
<string name="details_ratings_subtitle">Feedback given by other users</string>
|
||||
<string name="details_ratings_title_hint">"Review title"</string>
|
||||
<string name="details_think_this_app">"What do you think about this app?"</string>
|
||||
<string name="download_cancel_all">"Cancel all"</string>
|
||||
@@ -223,7 +222,6 @@
|
||||
<string name="pref_ui_no_for_you">"For you pages"</string>
|
||||
<string name="pref_ui_no_for_you_desc">"Display For you pages on home screen"</string>
|
||||
<string name="pref_ui_similar_apps">"Similar and related apps"</string>
|
||||
<string name="pref_ui_similar_apps_desc">"Display similar and related clusters on app details page"</string>
|
||||
<string name="pref_updates_incompatible">Show updates that may fail</string>
|
||||
<string name="pref_updates_incompatible_desc">Display updates for incompatible or disabled apps that may fail to install</string>
|
||||
<string name="pref_aurora_only">Filter apps from other sources</string>
|
||||
|
||||
@@ -49,11 +49,4 @@
|
||||
app:key="PREFERENCE_FOR_YOU"
|
||||
app:summary="@string/pref_ui_no_for_you_desc"
|
||||
app:title="@string/pref_ui_no_for_you" />
|
||||
|
||||
<SwitchPreferenceCompat
|
||||
app:defaultValue="false"
|
||||
app:iconSpaceReserved="false"
|
||||
app:key="PREFERENCE_SIMILAR"
|
||||
app:summary="@string/pref_ui_similar_apps_desc"
|
||||
app:title="@string/pref_ui_similar_apps" />
|
||||
</androidx.preference.PreferenceScreen>
|
||||
|
||||
Reference in New Issue
Block a user