Commit 235ab2db authored by wanglei's avatar wanglei

[打包]移除无用文件

parent f9dc4efb
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:endColor="#0456ED"
android:startColor="#68D2FF" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#74DAFF" android:endColor="#0051FF"/>
<corners android:radius="@dimen/dp_4"/>
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/white" />
<corners android:radius="@dimen/dp_37" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<solid android:color="@color/colorPrimary" />
</shape>
</item>
<item android:id="@android:id/progress">
<scale android:scaleWidth="100%">
<shape>
<solid android:color="@color/white" />
</shape>
</scale>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 背景 -->
<item android:id="@android:id/background">
<shape>
<solid android:color="#F0FFFA" /> <!-- 背景颜色 -->
<corners android:radius="@dimen/dp_10" />
</shape>
</item>
<!-- 进度条 -->
<item android:id="@android:id/progress">
<scale android:scaleWidth="100%">
<shape>
<solid android:color="@color/colorPrimary" /> <!-- 进度条颜色 -->
<corners android:radius="@dimen/dp_10" />
</shape>
</scale>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:background="@color/color_f7fafa">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_top"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
app:layout_constraintTop_toTopOf="parent">
<FrameLayout
android:id="@+id/ll_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingTop="6dp"
android:paddingBottom="6dp"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivBack"
android:padding="@dimen/dp_16"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_return_w" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/junk_clean"
android:textColor="@color/white"
android:textSize="20sp"
android:textStyle="bold" />
</FrameLayout>
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/ll_size"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="36dp"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_title">
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_length"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textColor="@color/white"
android:textSize="32sp"
android:textStyle="bold"
tools:ignore="HardcodedText" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_unit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="6dp"
android:text="B"
android:textColor="@color/white"
android:textSize="17sp"
android:textStyle="bold"
tools:ignore="HardcodedText" />
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/found"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_size" />
</androidx.appcompat.widget.LinearLayoutCompat>
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_scan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="36dp"
android:layout_marginEnd="50dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_title" />
<ProgressBar
android:id="@+id/pb_progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginTop="32dp"
android:max="100"
android:progress="0"
android:progressDrawable="@drawable/junk_clean_progress"
app:layout_constraintTop_toBottomOf="@id/ll_size" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_path"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
android:paddingVertical="6dp"
android:text="@string/clean_tips"
android:textColor="@color/white"
android:textSize="14sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/pb_progress"
tools:ignore="TextContrastCheck"
tools:layout_editor_absoluteX="15dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
<com.base.appzxhy.business.ads.NativeParentView
android:id="@+id/flAd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="15dp"
android:layout_marginTop="10dp"
app:layout_constraintTop_toBottomOf="@id/cl_top">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/zhanwei1"
tools:ignore="ImageContrastCheck" />
</com.base.appzxhy.business.ads.NativeParentView>
<pokercc.android.expandablerecyclerview.ExpandableRecyclerView
android:id="@+id/expandable_files"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="12dp"
android:paddingStart="15dp"
android:paddingEnd="15dp"
android:scrollbars="none"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@id/tv_clean"
app:layout_constraintTop_toBottomOf="@id/flAd" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_clean"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="30dp"
android:layout_marginBottom="30dp"
android:background="@drawable/bg_btn_enable_50"
android:gravity="center"
android:paddingVertical="12dp"
android:text="@string/clean"
android:textColor="@color/colorPrimary"
android:textSize="18sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent" />
<include
android:id="@+id/layout_animation"
layout="@layout/layout_animation"
android:visibility="gone" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_400"
android:layout_marginHorizontal="@dimen/dp_16"
android:background="@color/transparent">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/ivBg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/dp_45"
android:scaleType="fitXY"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/bg_rate" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginHorizontal="@dimen/dp_30"
android:layout_marginTop="@dimen/dp_98"
android:background="@color/transparent"
android:gravity="center_horizontal"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/tvThank"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_40"
android:layout_marginTop="@dimen/dp_16"
android:gravity="center"
android:text="@string/thank_you_for_using_app"
android:textColor="#1A1A1A"
android:textSize="@dimen/sp_16" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginHorizontal="@dimen/dp_15"
android:layout_marginTop="@dimen/dp_20"
android:gravity="center"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/star1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_5"
app:srcCompat="@drawable/icon_star_pressed" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/star2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_5"
app:srcCompat="@drawable/icon_star_pressed" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/star3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_5"
app:srcCompat="@drawable/icon_star_pressed" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/star4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_5"
app:srcCompat="@drawable/icon_star_pressed" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/star5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_5"
app:srcCompat="@drawable/icon_star_pressed" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center"
android:text="@string/thank_you_very_much"
android:textSize="@dimen/sp_12" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_25"
android:layout_marginBottom="@dimen/dp_35"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="@id/ivBg">
<TextView
android:id="@+id/tvCancel"
android:layout_width="0dp"
android:layout_height="@dimen/dp_42"
android:layout_weight="1"
android:background="@drawable/bg_ffffff_37"
android:gravity="center"
android:text="@string/cancel"
android:textColor="#1A1A1A"
android:textSize="@dimen/sp_18" />
<TextView
android:id="@+id/tvSubmit"
android:layout_width="0dp"
android:layout_height="@dimen/dp_42"
android:layout_marginStart="@dimen/dp_16"
android:layout_weight="1"
android:background="@drawable/icon_anniu"
android:gravity="center"
android:text="@string/submit"
android:textColor="@color/white"
android:textSize="@dimen/sp_18" />
</LinearLayout>
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/rate_face" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_400"
android:background="@drawable/lanse_bg"
app:layout_constraintTop_toTopOf="parent" />
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="-20dp"
android:cropToPadding="true"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="@id/iv"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.45"
app:lottie_fileName="qiling_dongxiao.json" />
<FrameLayout
android:id="@+id/flTop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/dp_24"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_16"
android:layout_marginTop="@dimen/dp_8"
android:layout_marginBottom="@dimen/dp_16"
android:text="@string/app_name"
android:textColor="@color/white"
android:textSize="@dimen/sp_19"
android:textStyle="bold" />
</FrameLayout>
<androidx.core.widget.NestedScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/flTop">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/dp_10">
<FrameLayout
android:id="@+id/flClean"
android:layout_width="@dimen/dp_250"
android:layout_height="@dimen/dp_250"
android:layout_gravity="center_horizontal"
android:layout_marginTop="-20dp">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_ring_home" />
<com.mikhaellopez.circularprogressbar.CircularProgressBar
android:id="@+id/circleProgress"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp_28"
app:cpb_background_progressbar_color="#CCFFFFFF"
app:cpb_background_progressbar_width="@dimen/dp_8"
app:cpb_progress_direction="to_right"
app:cpb_progress_max="100"
app:cpb_progressbar_color="@color/white"
app:cpb_progressbar_width="@dimen/dp_8"
app:cpb_round_border="true"
tools:cpb_progress="50" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/dp_20">
<TextView
android:id="@+id/tvUsed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_8"
android:text="0.0 GB"
android:textColor="#F22C25"
android:textSize="@dimen/sp_18"
tools:ignore="HardcodedText" />
<TextView
android:id="@+id/tvTotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" / 0.0GB"
android:textColor="@color/white"
android:textSize="@dimen/sp_18"
tools:ignore="HardcodedText" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_12"
android:text="@string/CLEAN"
android:textColor="@color/white"
android:textSize="@dimen/sp_18"
android:textStyle="bold" />
</LinearLayout>
</FrameLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-10dp"
android:overScrollMode="never"
android:paddingHorizontal="@dimen/dp_8" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
......@@ -7,16 +7,13 @@
</string>
<string name="file_recovery">Dateiwiederherstellung</string>
<string name="junk_clean">Junk-Bereinigung</string>
<string name="battery_info">Akkustatus</string>
<string name="screenshot_clean">Screenshot-Bereinigung</string>
<string name="app_manager">App-Manager</string>
<string name="large_file_clean">Großdatei-Bereinigung</string>
<string name="photo_compression">Fotokomprimierung</string>
<string name="similar_photos">Doppelte Fotos</string>
<string name="home">Start</string>
<string name="recovery">Wiederherstellung</string>
<string name="settings">Einstellungen</string>
<string name="battery_status">Akkustatus</string>
......@@ -31,8 +28,6 @@
<string name="please_wait">Bitte warten</string>
<string name="power">Ladestand</string>
<string name="charging">Wird geladen</string>
<string name="left_with_current_power_consumption">verbleibend bei aktuellem Verbrauch</string>
<string name="finish">Fertig</string>
<string name="found">Gefunden</string>
<string name="clean_tips">Bereinigung löscht keine persönlichen Daten</string>
<string name="clean">Bereinigen</string>
......@@ -44,13 +39,7 @@
<string name="cleaned_up">Bereinigt</string>
<string name="cleaned_up_content">Andere Daten bereinigt, um Speicherplatz freizugeben</string>
<string name="result_junk_clean">Überflüssige Junk-Dateien bereinigt!</string>
<string name="result_antivirus">Virenschutz für Ihr Gerät</string>
<string name="clean_now">Jetzt bereinigen</string>
<string name="result_battery_info">Akkunutzung und Details anzeigen</string>
<string name="result_large_file_clean">Große Dateien bereinigen für mehr Speicherplatz</string>
<string name="result_photo_compression">Fotogröße reduzieren für mehr Platz</string>
<string name="result_screenshot_clean">Screenshots bereinigen für mehr Speicherplatz</string>
<string name="result_similar_photos">Doppelte Fotos löschen spart Platz</string>
<string name="all_types">Alle Typen</string>
<string name="delete">Löschen</string>
<string name="other_than">Andere als</string>
......@@ -79,41 +68,21 @@
<string name="compress_all">Alle komprimieren</string>
<string name="best_quality_photo">Beste Fotoqualität</string>
<string name="most_space_saved">Maximaler Platzgewinn</string>
<string name="recover_tip">Datenrettung von nicht-rooted Android-Geräten</string>
<string name="photos">Fotos</string>
<string name="recover_lost_photos">Verlorene Fotos wiederherstellen</string>
<string name="videos">Videos</string>
<string name="recover_lost_videos">Verlorene Videos wiederherstellen</string>
<string name="audios">Audios</string>
<string name="documents">Dokumente</string>
<string name="recover_lost_documents">Verlorene Dokumente wiederherstellen</string>
<string name="scan">Scannen</string>
<string name="click_to_view">Zum Anzeigen tippen</string>
<string name="clean_junk">Junk bereinigen</string>
<string name="more">Mehr</string>
<string name="duplicate_photos">Doppelte Fotos</string>
<string name="already_saved_for_you">Für Sie bereits gespart</string>
<string name="rate_us">Bewerten Sie uns</string>
<string name="version">Version</string>
<string name="recycle_bin">Papierkorb</string>
<string name="recyclebin_tip"><![CDATA[Mobispeedy schützt Ihre Fotos, Videos, Dateien & App-Dateien vor Löschung]]></string>
<string name="recyclebin">Papierkorb</string>
<string name="thank_you_for_using_app">Danke für die Nutzung von %s!</string>
<string name="thank_you_very_much_for_taking_the_time_to_rate_us">Vielen Dank für Ihre Bewertung.</string>
<string name="submit">ABSENDEN</string>
<string name="screenshot_cleaner">Screenshot-Bereinigung</string>
<string name="guide_title_1">Ein-Klick-Bereinigung</string>
<string name="guide_tip_1">
Junk entfernen, Geschwindigkeit steigern. Mit einem Klick Speicher freigeben.
</string>
<string name="guide_title_2">Speicher bereinigen spart Platz</string>
<string name="guide_tip_2">
Fotos, Videos und Audiodateien bereinigen für mehr Platz und Ordnung.
</string>
<string name="guide_title_3">Virenschutz</string>
<string name="guide_tip_3">
Leistungsstarke Scanfunktion für umfassenden Schutz. Sicherheit für Ihr Gerät.
</string>
......@@ -135,73 +104,26 @@
<string name="logout_content">Wirklich beenden ohne erneute Bereinigung?</string>
<string name="please_wait_a_moment">Bitte kurz warten</string>
<string name="exit">Beenden</string>
<string name="start_to_use">JETZT STARTEN</string>
<string name="privacy">Datenschutz</string>
<string name="agree">Zustimmen</string>
<string name="terms_of_service">Nutzungsbedingungen</string>
<string name="notification_title">Benachrichtigungen aktivieren</string>
<string name="notification_content">Wichtige Bereinigungshinweise nicht verpassen</string>
<string name="turn_on">Aktivieren</string>
<string name="junk_files">Junk-Dateien</string>
<string name="memory_used">Speichernutzung</string>
<string name="storage_used">Speicherbelegung</string>
<string name="CLEAN">BERENIGEN</string>
<string name="make_your_phone_clean">Halten Sie Ihr Gerät sauber</string>
<string name="antivirus">Antivirus</string>
<string name="mobile_antivirus_protection">Virenschutz für Ihr Gerät</string>
<string name="clear_phone_screenshot">Screenshots bereinigen</string>
<string name="clear_large_files_on_the_phone">Großdateien bereinigen</string>
<string name="clear_similar_pictures_on_the_phone">Ähnliche Bilder bereinigen</string>
<string name="image_compression">Bildkomprimierung</string>
<string name="compress_mobile_phone_images">Handybilder komprimieren</string>
<string name="view_battery_information">Akkustatus anzeigen</string>
<string name="show_all_settings">Alle Einstellungen anzeigen</string>
<string name="malware_scan">Virenscan</string>
<string name="uninstall">Deinstallieren</string>
<string name="apps">Apps</string>
<string name="antivirus_scan_error_occurred_please_try_again">Virenscan-Fehler, bitte erneut versuchen</string>
<string name="exit_malware_clean">Virenscan beenden?</string>
<string name="exit_malware_clean_content">Mögliche Bedrohungen gefunden! Schützen Sie Ihr Gerät jetzt.</string>
<string name="no_threats_found">Ihr Gerät ist sicher\nKeine Bedrohungen gefunden!</string>
<string name="kind_tips">Hinweis</string>
<string name="powered_by_trustlook">Powered by Trustlook</string>
<string name="malware_recommended">Für genauere Ergebnisse Internetverbindung empfohlen</string>
<string name="notification_tips">Aktivieren Sie Benachrichtigungen für wichtige Hinweise.</string>
<string name="don_t_miss_important_tips">Wichtige Hinweise nicht verpassen</string>
<string name="let_us_know_how_we_re_doing">Bewerten Sie uns!</string>
<string name="we_feedback_invaluable">
Ihr Feedback hilft uns bei der kontinuierlichen Verbesserung.
</string>
<string name="select_a_language">Sprache wählen</string>
<string name="one_tap_clean">Ein-Klick-Bereinigung</string>
<string name="get_started">Loslegen</string>
<string name="loading">Wird geladen...</string>
<string name="try_it_new">Neu ausprobieren</string>
<string name="battery">Akku</string>
<string name="estimated_battery">Voraussichtliche Akkulaufzeit</string>
<string name="electric_current">Stromstärke</string>
<string name="real_time_current">Echtzeit-Strom</string>
<string name="average_current">Durchschnittsstrom</string>
<string name="permission_request">Berechtigungsanfrage</string>
<string name="deny">Ablehnen</string>
<string name="allow">Erlauben</string>
<string name="reject">Ablehnen</string>
<string name="collect_installed_application_information">Installierte Apps erfassen:</string>
<string name="when_you_use_the_vlrus">Beim Virenscan erfassen wir App-Informationen wie: App-Name, Paketname, Versionscode, Versionsname, MD5-Hash, Signatur, Installationspfad und Dateiinformationen.</string>
<string name="using_and_transferring_installed">Nutzung und Übermittlung der Daten:</string>
<string name="virus_scanning_functionality_uses_trustlook_sdk">Virenscan nutzt Trustlook SDK. App-Daten werden zur Analyse an Trustlook übermittelt, um Sicherheitsrisiken zu identifizieren. Trustlook analysiert Apps mittels statischer und verhaltensbasierter Methoden.</string>
<string name="installed_application_information_access_and_sharing_statement">Datenzugriff und -weitergabe:</string>
<string name="we_take_the_confidentiality_of_your">Wir behandeln Ihre Daten vertraulich. Daten werden nicht verkauft, lizenziert oder weitergegeben.</string>
<string name="view_information_collection_instructions">Datenerfassungshinweise:</string>
<string name="notify_junk_clean">Jetzt Junk-Dateien bereinigen!</string>
<string name="notif_antivirus">Mögliche Bedrohungen erkannt. Jetzt scannen!</string>
<string name="notify_battery_info">Akkunutzung anzeigen!</string>
<string name="notify_large_file">Großdateien bereinigen für mehr Speicherplatz!</string>
<string name="notify_similar_photos">Doppelte Fotos bereinigen!</string>
<string name="notify_screenshot">Screenshots bereinigen für mehr Platz!</string>
<string name="notify_photo_compression">Fotos komprimieren für mehr Speicherplatz!</string>
<string name="lf_you_exit_the_scanning_results_will_be_discarded">Bei Abbruch gehen Scanergebnisse verloren.</string>
<string name="exit_scanning">Scan abbrechen</string>
<string name="ads_are_about_to_be_shown_s">Werbung wird in (%1$s Sek.) angezeigt</string>
<string name="issue">%1$s Problem</string>
</resources>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="ExtraTranslation">
<string name="preparing_advertisement">Preparando anuncio</string>
<string name="involve_ad">Este proceso puede incluir publicidad.</string>
<string name="consent_required">Se requiere consentimiento</string>
......
......@@ -30,11 +30,9 @@
<dimen name="sp_20">20sp</dimen>
<dimen name="dp_70">70dp</dimen>
<dimen name="dp_38">38dp</dimen>
<dimen name="dp_330">330dp</dimen>
<dimen name="dp_55">55dp</dimen>
<dimen name="dp_6">6dp</dimen>
<dimen name="sp_15">15sp</dimen>
<dimen name="dp_295">295dp</dimen>
<dimen name="dp_306">306dp</dimen>
<dimen name="dp_136">136dp</dimen>
<dimen name="dp_24">24dp</dimen>
......@@ -50,20 +48,14 @@
<dimen name="dp_42">42dp</dimen>
<dimen name="dp_400">400dp</dimen>
<dimen name="sp_19">19sp</dimen>
<dimen name="dp_250">250dp</dimen>
<dimen name="dp_28">28dp</dimen>
<dimen name="dp_54">54dp</dimen>
<dimen name="dp_25">25dp</dimen>
<dimen name="dp_37">37dp</dimen>
<dimen name="dp_220">220dp</dimen>
<dimen name="dp_39">39dp</dimen>
<dimen name="dp_62">62dp</dimen>
<dimen name="dp_375">375dp</dimen>
<dimen name="dp_350">350dp</dimen>
<dimen name="dp__30">-30dp</dimen>
<dimen name="dp__10">-10dp</dimen>
<dimen name="dp_138">138dp</dimen>
<dimen name="dp_72">72dp</dimen>
<dimen name="dp_132">132dp</dimen>
<dimen name="dp_200">200dp</dimen>
<dimen name="dp_238">238dp</dimen>
......
......@@ -52,7 +52,6 @@ Please rest assured that we will handle your information in strict accordance wi
<string name="please_wait">Please wait</string>
<string name="power">Power</string>
<string name="charging">Charging</string>
<string name="found">Found</string>
<string name="clean_tips">Clean Up doesn\'t Delete Your Personal Data</string>
<string name="clean">Clean</string>
<string name="go_it">Go it</string>
......@@ -137,10 +136,8 @@ Please rest assured that we will handle your information in strict accordance wi
<string name="powered_by_trustlook">Powered by Trustlook</string>
<string name="malware_recommended">It is recommended to turn on the network connection for more accurate results</string>
<string name="notification_tips">Enable notifications to receive suggestions that matter.</string>
<string name="don_t_miss_important_tips">Don\'t miss important tips</string>
<string name="select_a_language">Select a language</string>
<string name="get_started">Get Started</string>
<string name="loading">loading...</string>
<string name="battery">Battery</string>
<string name="estimated_battery">Estimated battery</string>
<string name="electric_current">Electric current</string>
......@@ -167,7 +164,6 @@ Please rest assured that we will handle your information in strict accordance wi
<string name="exit_uninstall_app_content">Exit Uninstall App? Unused applications may occupy phone storage</string>
<string name="notify_uninstall_app">Remove unused apps to free up storage space.</string>
<string name="quick_clean">Quick Clean</string>
<string name="hello_blank_fragment">Hello blank fragment</string>
<string name="scan_completed">Scan Completed</string>
<string name="turn_on_notification">Turn on notification</string>
<string name="redundant_files_found">Redundant Files Found</string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment