lineagehw: Remove persistent storage feature

Change-Id: I286735192cf3f688980645efa7c1ba057fa825ca
This commit is contained in:
Michael Bestas
2018-01-23 20:21:10 +02:00
parent d66c37c8d3
commit 19d8afb7e6
106 changed files with 0 additions and 587 deletions

View File

@@ -400,7 +400,6 @@ package lineageos.hardware {
}
public final class LineageHardwareManager {
method public boolean deletePersistentObject(java.lang.String);
method public boolean get(int);
method public int getColorBalance();
method public android.util.Range<java.lang.Integer> getColorBalanceRange();
@@ -433,9 +432,6 @@ package lineageos.hardware {
method public int getVibratorWarningIntensity();
method public boolean isSunlightEnhancementSelfManaged();
method public boolean isSupported(int);
method public byte[] readPersistentBytes(java.lang.String);
method public int readPersistentInt(java.lang.String);
method public java.lang.String readPersistentString(java.lang.String);
method public boolean registerThermalListener(lineageos.hardware.ThermalListenerCallback);
method public boolean requireAdaptiveBacklightForSunlightEnhancement();
method public boolean set(int, boolean);
@@ -447,9 +443,6 @@ package lineageos.hardware {
method public boolean setTouchscreenGestureEnabled(lineageos.hardware.TouchscreenGesture, boolean);
method public boolean setVibratorIntensity(int);
method public boolean unRegisterThermalListener(lineageos.hardware.ThermalListenerCallback);
method public boolean writePersistentBytes(java.lang.String, byte[]);
method public boolean writePersistentInt(java.lang.String, int);
method public boolean writePersistentString(java.lang.String, java.lang.String);
field public static final int FEATURE_ADAPTIVE_BACKLIGHT = 1; // 0x1
field public static final int FEATURE_AUTO_CONTRAST = 4096; // 0x1000
field public static final int FEATURE_COLOR_BALANCE = 131072; // 0x20000
@@ -460,7 +453,6 @@ package lineageos.hardware {
field public static final int FEATURE_HIGH_TOUCH_SENSITIVITY = 16; // 0x10
field public static final int FEATURE_KEY_DISABLE = 32; // 0x20
field public static final int FEATURE_LONG_TERM_ORBITS = 64; // 0x40
field public static final int FEATURE_PERSISTENT_STORAGE = 16384; // 0x4000
field public static final int FEATURE_PICTURE_ADJUSTMENT = 262144; // 0x40000
field public static final int FEATURE_SERIAL_NUMBER = 128; // 0x80
field public static final int FEATURE_SUNLIGHT_ENHANCEMENT = 256; // 0x100
@@ -629,7 +621,6 @@ package lineageos.platform {
field public static final java.lang.String HARDWARE_ABSTRACTION_ACCESS = "lineageos.permission.HARDWARE_ABSTRACTION_ACCESS";
field public static final java.lang.String MANAGE_ALARMS = "lineageos.permission.MANAGE_ALARMS";
field public static final java.lang.String MANAGE_LIVEDISPLAY = "lineageos.permission.MANAGE_LIVEDISPLAY";
field public static final java.lang.String MANAGE_PERSISTENT_STORAGE = "lineageos.permission.MANAGE_PERSISTENT_STORAGE";
field public static final java.lang.String MANAGE_REMOTE_PREFERENCES = "lineageos.permission.MANAGE_REMOTE_PREFERENCES";
field public static final java.lang.String MODIFY_MSIM_PHONE_STATE = "lineageos.permission.MODIFY_MSIM_PHONE_STATE";
field public static final java.lang.String MODIFY_NETWORK_SETTINGS = "lineageos.permission.MODIFY_NETWORK_SETTINGS";

View File

@@ -52,7 +52,6 @@ import org.lineageos.hardware.DisplayModeControl;
import org.lineageos.hardware.HighTouchSensitivity;
import org.lineageos.hardware.KeyDisabler;
import org.lineageos.hardware.LongTermOrbits;
import org.lineageos.hardware.PersistentStorage;
import org.lineageos.hardware.PictureAdjustment;
import org.lineageos.hardware.SerialNumber;
import org.lineageos.hardware.SunlightEnhancement;
@@ -106,9 +105,6 @@ public class LineageHardwareService extends LineageSystemService implements Ther
public DisplayMode getDefaultDisplayMode();
public boolean setDisplayMode(DisplayMode mode, boolean makeDefault);
public boolean writePersistentBytes(String key, byte[] value);
public byte[] readPersistentBytes(String key);
public int getColorBalanceMin();
public int getColorBalanceMax();
public int getColorBalance();
@@ -154,8 +150,6 @@ public class LineageHardwareService extends LineageSystemService implements Ther
mSupportedFeatures |= LineageHardwareManager.FEATURE_AUTO_CONTRAST;
if (DisplayModeControl.isSupported())
mSupportedFeatures |= LineageHardwareManager.FEATURE_DISPLAY_MODES;
if (PersistentStorage.isSupported())
mSupportedFeatures |= LineageHardwareManager.FEATURE_PERSISTENT_STORAGE;
if (ThermalMonitor.isSupported())
mSupportedFeatures |= LineageHardwareManager.FEATURE_THERMAL_MONITOR;
if (ColorBalance.isSupported())
@@ -346,14 +340,6 @@ public class LineageHardwareService extends LineageSystemService implements Ther
return DisplayModeControl.setMode(mode, makeDefault);
}
public boolean writePersistentBytes(String key, byte[] value) {
return PersistentStorage.set(key, value);
}
public byte[] readPersistentBytes(String key) {
return PersistentStorage.get(key);
}
public int getColorBalanceMin() {
return ColorBalance.getMinValue();
}
@@ -707,41 +693,6 @@ public class LineageHardwareService extends LineageSystemService implements Ther
return mLineageHwImpl.setDisplayMode(mode, makeDefault);
}
@Override
public boolean writePersistentBytes(String key, byte[] value) {
mContext.enforceCallingOrSelfPermission(
lineageos.platform.Manifest.permission.MANAGE_PERSISTENT_STORAGE, null);
if (key == null || key.length() == 0 || key.length() > 64) {
Log.e(TAG, "Invalid key: " + key);
return false;
}
// A null value is delete
if (value != null && (value.length > 4096 || value.length == 0)) {
Log.e(TAG, "Invalid value: " + (value != null ? Arrays.toString(value) : null));
return false;
}
if (!isSupported(LineageHardwareManager.FEATURE_PERSISTENT_STORAGE)) {
Log.e(TAG, "Persistent storage is not supported");
return false;
}
return mLineageHwImpl.writePersistentBytes(key, value);
}
@Override
public byte[] readPersistentBytes(String key) {
mContext.enforceCallingOrSelfPermission(
lineageos.platform.Manifest.permission.MANAGE_PERSISTENT_STORAGE, null);
if (key == null || key.length() == 0 || key.length() > 64) {
Log.e(TAG, "Invalid key: " + key);
return null;
}
if (!isSupported(LineageHardwareManager.FEATURE_PERSISTENT_STORAGE)) {
Log.e(TAG, "Persistent storage is not supported");
return null;
}
return mLineageHwImpl.readPersistentBytes(key);
}
@Override
public int getThermalState() {
mContext.enforceCallingOrSelfPermission(

View File

@@ -126,13 +126,6 @@
android:label="@string/permlab_read_alarms"
android:description="@string/permdesc_read_alarms"/>
<!-- Allows an application to access persistent property storage
<p>Not for use by third-party applications. -->
<permission android:name="lineageos.permission.MANAGE_PERSISTENT_STORAGE"
android:label="@string/permlab_managePersistentStorage"
android:description="@string/permdesc_managePersistentStorage"
android:protectionLevel="signature|privileged" />
<!-- Permission for accessing a provider of app suggestions
<p>Not for use by third-party applications. -->
<permission android:name="lineageos.permission.ACCESS_APP_SUGGESTIONS"

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">verander Lineage veilige instellings</string>
<string name="permdesc_writeSecureSettings">Laat \'n toep toe om Lineage veilige stelsel instellings te verander. Nie vir gebruik deur normale toeps nie.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">bestuur aanhoudende spasie</string>
<string name="permdesc_managePersistentStorage">Laat \'n toep toe om eienskappe te skryf of lees, al word jou toestel herstel na fabriek instellings.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">toegang na toep voorstelle</string>
<string name="permdesc_accessAppSuggestions">Laat \'n toep toegang na toep voorstelle.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">تعديل إعدادات نظام Lineage الآمن</string>
<string name="permdesc_writeSecureSettings">السماح للتطبيق بتعديل إعدادات نظام Lineage الآمن. غير مخصص للاستخدام بواسطة التطبيقات العادية.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">إدارة التخزين الدائم</string>
<string name="permdesc_managePersistentStorage">السماح للتطبيق بقراءة أو كتابة الخصائص التي تستمر خلال إعادة تعيين المصنع.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">الوصول إلى اقتراحات التطبيق</string>
<string name="permdesc_accessAppSuggestions">السماح للتطبيق بالوصول إلى اقتراحات التطبيق.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage চিকিওৰ ছিষ্টেম ছেটিংচ সংশোধন কৰক</string>
<string name="permdesc_writeSecureSettings">এটা এপ্প্‌ক Lineage চিকিওৰ ছিষ্টেম ছেটিং সংশোধন কৰিবলৈ অনুমতি দিয়ে সাধাৰণ এপ্প্‌সমূহৰ ব্যৱহাৰৰ কাৰণে নহয়৷</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">নিৰবিচ্ছিন্ন ষ্ট\'ৰেজ প্ৰবন্ধন কৰক</string>
<string name="permdesc_managePersistentStorage">এটা এপ্প্‌ক ধৰ্মবোৰ পঢ়িবলৈ বা লিখিবলৈ অনুমতি দিয়ে যিবোৰ ফেক্টৰী ৰিছেটৰ মাধ্যমত চলি থাকিব পাৰে।</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">এপ্প্‌ পৰামৰ্শত প্ৰৱেশ কৰক</string>
<string name="permdesc_accessAppSuggestions">এটা এপ্প্‌ক এপ্প্‌ পৰামৰ্শত প্ৰৱেশ কৰিবলৈ অনুমতি দিয়ে।</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar axustes del sistema de seguranza Lineage</string>
<string name="permdesc_writeSecureSettings">Permite qu\'una aplicación modifique los axustes del sistema de seguranza de Lineage. Nun s\'usa pa les aplicaciones normales.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">xestionar almacenamientu persistente</string>
<string name="permdesc_managePersistentStorage">Permite qu\'una aplicación llea o escriba propiedaes que quiciabes persistan dempués de reafitar el preséu.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">accesu a suxerencies d\'aplicaciones</string>
<string name="permdesc_accessAppSuggestions">Permite qu\'una aplicación acceda a les suxerencies d\'aplicaciones.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage təhlükəsiz sistem tənzimləmələrini dəyişdir</string>
<string name="permdesc_writeSecureSettings">Tətbiqetməyə Lineage təhlükəsiz sistem tənzimləmələrini dəyişmə icazəsi verər. Normal tətbiqetmələr üçün deyil.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">davamlı saxlama sahəsini idarə et</string>
<string name="permdesc_managePersistentStorage">Tətbiqetməyə zavod tənzimləmələrinə qayıtdıqda davamlı qalıcı xüsusiyyətləri oxuma və ya yazma icazəsi verər.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">tətbiqetmə təkliflərinə müraciət et</string>
<string name="permdesc_accessAppSuggestions">Tətbiqetmənin tətbiqetmə təkliflərinə müraciətinə icazə verər.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">змяняць параметры бяспекі сістэмы</string>
<string name="permdesc_writeSecureSettings">Дадатак зможа змяняць абароненыя налады сістэмы. Гэты дазвол не выкарыстоўваецца звычайнымі дадаткамі.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">кіраваць месцам захоўвання дадзеных</string>
<string name="permdesc_managePersistentStorage">Дазваляе дадатку змяняць чытанне ці запіс уласцівасцяў, якія могуць захоўвацца нават пасля скіду налад.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">доступ да спіса рэкамендаваных дадаткаў</string>
<string name="permdesc_accessAppSuggestions">Дадатак зможа атрымваць доступ да спісу рэкамендаваных дадаткаў.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Модифициране настройките на Lineage сигурността</string>
<string name="permdesc_writeSecureSettings">Разрешава на проложението да променя системните настройки на сигурността. Това разрешение не се използва от нормални приложения.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">управлявате места за съхранение на данни</string>
<string name="permdesc_managePersistentStorage">Позволява на приложенията да четат или пишат свойства, които могат да се запазят и след връщане на първоначални настройки.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">Достъп до съвети от приложения</string>
<string name="permdesc_accessAppSuggestions">Осигурява достъп до съвети от приложения.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar la configuració segura del sistema Lineage</string>
<string name="permdesc_writeSecureSettings">Permet a una aplicació modificar la configuració segura del sistema Lineage. No utilitzar en aplicacions normals.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gestiona l\'emmagatzematge persistent</string>
<string name="permdesc_managePersistentStorage">Permet a una aplicació llegir o escriure propietats que poden persistir després d\'un reinici a la configuració de fàbrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">accés als suggeriments d\'aplicacions</string>
<string name="permdesc_accessAppSuggestions">Permet a una aplicació accedir als suggeriments d\'aplicacions.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">upravit nastavení zabezpečení systému Lineage</string>
<string name="permdesc_writeSecureSettings">Umožní změnit nastavení zabezpečení systému LineageOS. Není určeno pro normální aplikace.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">spravovat trvalé úložiště</string>
<string name="permdesc_managePersistentStorage">Umožňuje číst a zapisovat vlastnosti, které mohou přetrvat při tovární obnově.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">přístup k návrhům aplikací</string>
<string name="permdesc_accessAppSuggestions">Povoluje přistupovat k návrhům aplikací.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">ændre systemindstillinger for Lineage sikkerhed</string>
<string name="permdesc_writeSecureSettings">Tillader en app at ændre systemindstillinger for Lineage sikkerhed. Bør ikke anvendes til normale apps.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">administrere permanent lager</string>
<string name="permdesc_managePersistentStorage">Tillader en app at læse eller skrive egenskaber, som kan overleve en gendannelse af fabriksdata.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">adgang til app-forslag</string>
<string name="permdesc_accessAppSuggestions">Tillader en app at få adgang til app-forslag.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage-Sicherheits-Systemeinstellungen ändern</string>
<string name="permdesc_writeSecureSettings">Ermöglicht der App, Lineage-Sicherheits-Systemeinstellungen zu ändern. Nicht für die Nutzung durch normale Anwendungen bestimmt.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">permanenten Speicher verwalten</string>
<string name="permdesc_managePersistentStorage">Ermöglicht der App, Eigenschaften auszulesen oder zu speichern, die auch beim Zurücksetzen auf die Werkseinstellungen erhalten bleiben können.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">auf die App-Vorschläge zugreifen</string>
<string name="permdesc_accessAppSuggestions">Ermöglicht der App den Zugriff auf App-Vorschläge.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">τροποποίηση ασφαλών ρυθμίσεων συστήματος Lineage</string>
<string name="permdesc_writeSecureSettings">Επιτρέπει σε μια εφαρμογή να τροποποιεί τις ασφαλείς ρυθμίσεις συστήματος του Lineage. Δεν χρησιμοποιείται από κανονικές εφαρμογές.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">διαχείριση επίμονου χώρου αποθήκευσης</string>
<string name="permdesc_managePersistentStorage">Επιτρέπει σε μια εφαρμογή να διαβάσει ή να γράψει ιδιότητες που μπορούν να επιμείνουν ακόμη και μετά από μια επαναφορά εργοστασιακών ρυθμίσεων.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">πρόσβαση στις προτάσεις εφαρμογών</string>
<string name="permdesc_accessAppSuggestions">Επιτρέπει σε μια εφαρμογή την πρόσβαση στις προτάσεις εφαρμογών.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modify Lineage secure system settings</string>
<string name="permdesc_writeSecureSettings">Allows an app to modify Lineage secure system settings. Not for use by normal apps.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">manage persistent storage</string>
<string name="permdesc_managePersistentStorage">Allows an app to read or write properties which may persist thrοugh a factory reset.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modify Lineage secure system settings</string>
<string name="permdesc_writeSecureSettings">Allows an app to modify Lineage secure system settings. Not for use by normal apps.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">manage persistent storage</string>
<string name="permdesc_managePersistentStorage">Allows an app to read or write properties which may persist thrοugh a factory reset.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modify Lineage secure system settings</string>
<string name="permdesc_writeSecureSettings">Allows an app to modify Lineage secure system settings. Not for use by normal apps.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">manage persistent storage</string>
<string name="permdesc_managePersistentStorage">Allows an app to read or write properties which may persist thrοugh a factory reset.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">acceder a las sugerencias de aplicaciones</string>
<string name="permdesc_accessAppSuggestions">Permite que una aplicación acceda a las sugerencias de aplicaciones.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar los ajustes del sistema seguro de Lineage</string>
<string name="permdesc_writeSecureSettings">Permite que una aplicación modifique los ajustes del sistema seguro de Lineage. No es para el uso de aplicaciones normales.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gestionar el almacenamiento persistente</string>
<string name="permdesc_managePersistentStorage">Permite que una aplicación lea o escriba propiedades que pueden continuar incluso después de una restauración de fábrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">acceder a las sugerencias de aplicaciones</string>
<string name="permdesc_accessAppSuggestions">Permite a una aplicación acceder a las sugerencias de aplicaciones.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar la configuración de sistema seguro de Lineage</string>
<string name="permdesc_writeSecureSettings">Permite que una aplicación modifique la configuración del sistema seguro de Lineage. No es para el uso de aplicaciones normales.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">administrar el almacenamiento persistente</string>
<string name="permdesc_managePersistentStorage">Permite que una aplicación lea o escriba propiedades que pueden persistir incluso después de una restauración de fábrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">acceder a las sugerencias de aplicaciones</string>
<string name="permdesc_accessAppSuggestions">Permite que una aplicación acceda a las sugerencias de aplicaciones.</string>

View File

@@ -40,7 +40,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<string name="custom_tile_listener_binding_label">Kohandatud tahvli kuulaja</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">aldatu Lineage sistemaren ezarpen seguruak</string>
<string name="permdesc_writeSecureSettings">Lineage sistemaren ezarpen seguruak aldatzea ahalbidetzen dio aplikazioari. Aplikazio arruntek ez dute behar.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">kudeatu behin betiko biltegiratzea</string>
<string name="permdesc_managePersistentStorage">Gailua lantegiko ezarpenetara leheneratuta ere mantenduko diren ezaugarriak irakurri edo idaztea ahalbidetzen dio aplikazioari.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">aplikazio aholkuak atzitu</string>
<string name="permdesc_accessAppSuggestions">Aplikazio proposamenak atzitzea ahalbidetzen dio aplikazioari.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">تغییر تنظیمات امنیت سیستم Lineage</string>
<string name="permdesc_writeSecureSettings">به برنامه اجازه می‌دهد تا تنظیمات امنیت سیستم Lineage را تغییر دهد. برای استفاده برنامه‌های عادی پیشنهاد نمی‌شود.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">مدیریت حافظه پایدار</string>
<string name="permdesc_managePersistentStorage">به برنامه اجازه می‌دهد ویژگی‌هایی را مشاهده و ویرایش کند که بعد از تنظیم مجدد کارخانه ممکن است باقی بماند.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<string name="custom_tile_listener_binding_label">پیرو کاشی شخصی</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">muokkaa Lineage-järjestelmän turvallisuusasetuksia</string>
<string name="permdesc_writeSecureSettings">Sallii sovelluksen muokata Lineage-järjestelmän turvallisuusasetuksia. Ei normaalin sovelluksen käytettäväksi.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">hallitse pysyvää tallennustilaa</string>
<string name="permdesc_managePersistentStorage">Sallii sovelluksen lukea tai kirjoittaa ominaisuuksia jotka voivat säilyä tehdasasetusten palautuksen jälkeen.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">käyttää sovellusehdotuksia</string>
<string name="permdesc_accessAppSuggestions">Sallii sovelluksen käyttää sovellusehdotuksia.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modifier les paramètres système sécurisés de Lineage</string>
<string name="permdesc_writeSecureSettings">Autorise une application à modifier des paramètres système sécurisés de Lineage. Ne pas utiliser pour des applications normales.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gérer le stockage permanent</string>
<string name="permdesc_managePersistentStorage">Autorise une application à lire ou à écrire des propriétés qui pourraient persister après une réinitialisation d\'usine.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">accès aux suggestions d\'applications</string>
<string name="permdesc_accessAppSuggestions">Permet à une application d\'accéder aux suggestions d\'applications.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar a configuración de seguridade do sistema Lineage</string>
<string name="permdesc_writeSecureSettings">Permítelle a unha aplicación modificar a configuración de seguridade do sistema Lineage. As aplicacións normais non deberían utilizar este permiso.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">Xestionar almacenamento persistente</string>
<string name="permdesc_managePersistentStorage">Permítelle a unha aplicación ler ou escribir propiedades que poden persisitir tras unha restauración de fábrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">acceder ás suxestións de aplicacións</string>
<string name="permdesc_accessAppSuggestions">Permitirlle a unha aplicación acceder ás suxestións de aplicacións.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage સુ‌રક્ષિત સિસ્ટમ સેટિંગ્સમાં ફેરફાર કરો</string>
<string name="permdesc_writeSecureSettings">ઍપને Lineage સુ‌રક્ષિત સિસ્ટમ સેટિંગ્સમાં ફેરફાર કરવાની પરવાનગી આપે છે. સામાન્ય એપ્સ દ્વારા ઉપયોગ માટે નથી.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">નિરંતર સંગ્રહનું વ્ય‌વસ્થાપન કરો</string>
<string name="permdesc_managePersistentStorage">ફેક્ટરી રિસેટ મારફત વળગી રહે એવા ગુણધર્મો વાંચવાની અથવા લખવાની ઍપને પરવાનગી આપે છે.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ઍક્સેસ એપ્લિકેશન સૂચનો</string>
<string name="permdesc_accessAppSuggestions">ઍપને ઍપ્લિકેશન સૂચનોને ઍક્સેસ કરવાની પરવાનગી આપે છે.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">promijeni Lineage postavke sigurnosti sustava</string>
<string name="permdesc_writeSecureSettings">Dopušta aplikaciji da promjeni Lineage postavke sigurnosti sustava. Nije za korištenje kod normalnih aplikacija.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">upravljanje stalnom pohranom</string>
<string name="permdesc_managePersistentStorage">Dopušta aplikaciji čitati ili pisati svojstva koja ostaju poslije resetiranja na tvorničke postavke.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">pristup prijedlozima aplikacije</string>
<string name="permdesc_accessAppSuggestions">Dopusti aplikaciji pristupiti prijedlozima aplikacije.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage biztonsági rendszer beállításainak módosítása</string>
<string name="permdesc_writeSecureSettings">Lehetővé teszi egy alkalmazás számára a Lineage biztonsági rendszer beállításainak módosítását. Szokásos alkalmazások számára nem használható.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">állandó tároló kezelése</string>
<string name="permdesc_managePersistentStorage">Lehetővé teszi az alkalmazás számára olyan tulajdonságok írását vagy olvasását, amelyek a gyári beállítások visszaállítása során is megmaradnak.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">hozzáférés az alkalmazás javaslatokhoz</string>
<string name="permdesc_accessAppSuggestions">Lehetővé teszi az alkalmazás számára az alkalmazás javaslatokhoz való hozzáférést.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -53,9 +53,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">mengubah pengaturan sistem aman Lineage</string>
<string name="permdesc_writeSecureSettings">Memungkinkan aplikasi untuk memodifikasi pengaturan sistem aman Lineage. Tidak untuk digunakan oleh aplikasi normal.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">mengatur penyimpanan tetap</string>
<string name="permdesc_managePersistentStorage">Memungkinkan aplikasi untuk membaca atau menulis properti yang dapat bertahan dari setel ulang ke pabrik.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">akses saran aplikasi</string>
<string name="permdesc_accessAppSuggestions">Mengizinkan aplikasi untuk mengakses saran aplikasi.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modifica le impostazioni di sistema sicure Lineage</string>
<string name="permdesc_writeSecureSettings">Consenti ad un\'app di modificare le impostazioni di sistema sicure Lineage. Non per l\'uso di normali applicazioni.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gestione archivio persistente</string>
<string name="permdesc_managePersistentStorage">Consenti ad un\'app di leggere o scrivere proprietà che possono persistere ad un ripristino di fabbrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">accedi ai suggerimenti app</string>
<string name="permdesc_accessAppSuggestions">Consenti ad un\'app di accedere ai suggerimenti app.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">שנה הגדרות מאובטחות של מערכת Lineage</string>
<string name="permdesc_writeSecureSettings">מאפשר ליישום לשנות את ההגדרות המאובטחות של מערכת Lineage. לא לשימוש ביישומים רגילים.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">נהל אחסון תמידי</string>
<string name="permdesc_managePersistentStorage">מאפשר ליישום לקרוא או לכתוב נתונים והגדרות העלולים לשרוד גם לאחר איפוס המכשיר להגדרות היצרן.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">גישה להצעות יישומים</string>
<string name="permdesc_accessAppSuggestions">מאפשר ליישום לגשת להצעות יישומים.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">LineageOS セキュアシステム設定の変更</string>
<string name="permdesc_writeSecureSettings">LineageOS セキュアシステム設定の変更をアプリに許可します。通常のアプリ用ではありません。</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">永続ストレージの管理</string>
<string name="permdesc_managePersistentStorage">工場出荷時の状態に戻しても永続する可能性のあるプロパティの読み取りまたは書き込みをアプリに許可します。</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">アプリの候補へのアクセス</string>
<string name="permdesc_accessAppSuggestions">アプリの候補へのアクセスをアプリに許可します。</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage ಸುರಕ್ಷಿತ ಸೆಟ್ಟಿಂಗ್ಸನ್ನು ಮಾರ್ಪಡಿಸು</string>
<string name="permdesc_writeSecureSettings">ಒಂದು ಆಪ್‍ಗೆ Lineage ಸುರಕ್ಷಿತ ಸೆಟ್ಟಿಂಗ್ಸನ್ನು ಮಾರ್ಪಡಿಸಲು ಅನುಮತಿಸುತ್ತದೆ. ಸಾಮಾನ್ಯ ಆಪ್‍ಗಳ ಬಳಕೆಗಲ್ಲ.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">ನಿರಂತರ ಸಂಗ್ರಹಣೆ ನಿರ್ವಹಿಸು</string>
<string name="permdesc_managePersistentStorage">ಒಂದು ಆಪ್‍ಗೆ ಪ್ರಾಪರ್ಟೀಸನ್ನು ರೀಡ್/ವ್ರೈಟ್ ಮಾಡಲು ಅನುಮತಿಸುತ್ತದೆ ಅದು ಫ್ಯಾಕ್ಟರಿ ಮರುಹೊಂದಿಕೆಯ ನಂತರವೂ ಮುಂದುವರೆಯಬಹುದು.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ಅಪ್ಲಿ‌ ಸಲಹೆಗಳಿಗೆ ಪ್ರವೇಶ ಪಡೆಯಿರಿ</string>
<string name="permdesc_accessAppSuggestions">ಅಪ್ಲಿ‌ ಸಲಹೆಗಳಿಗೆ ಪ್ರವೇಶ ಪಡೆಯಲು ಒಂದು ಅಪ್ಲಿ‌ ಅನುವು ಮಾಡುತ್ತದೆ.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage 보안 시스템 설정 수정</string>
<string name="permdesc_writeSecureSettings">앱이 Lineage 보안 시스템 설정을 수정할 수 있도록 허용합니다. 일반 앱을 위한 것이 아닙니다.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">상주 저장소 관리</string>
<string name="permdesc_managePersistentStorage">공장 초기화 후에도 지속될 수 있는 속성의 읽기 쓰기를 허용합니다.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">앱 제안 접근</string>
<string name="permdesc_accessAppSuggestions">앱이 앱 제안에 접근하도록 허용합니다.</string>

View File

@@ -29,7 +29,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<string name="custom_tile_listener_binding_label">کاشی دروستکراوی گوێگر</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -40,7 +40,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<string name="custom_tile_listener_binding_label">Eegene Kachel-Lauschter-Service</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">keisti Lineage sistemos saugos nustatymus</string>
<string name="permdesc_writeSecureSettings">Leidžia programai keisti Lineage sistemos saugos nustatymus. Neskirta naudoti įprastoms programoms.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">valdyti nuolatinę saugykla</string>
<string name="permdesc_managePersistentStorage">Leidžia programai skaityti ar rašyti įrašus, kurie gali išlikti net atstačius gamyklinius nustatymus.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<string name="custom_tile_listener_binding_label">Tinkintos plytelės klausytojas</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage സുരക്ഷാ സംവിധാന ക്രമീകരണങ്ങൾ പരിഷ്‌ക്കരിക്കുക</string>
<string name="permdesc_writeSecureSettings">Lineage സുരക്ഷിത സിസ്റ്റം ക്രമീകരണങ്ങൾ പരിഷ്ക്കരിക്കുവാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു. സാധാരണ ആപ്ലിക്കേഷനുകൾക്ക് ഉപയോഗിക്കാനുള്ളതല്ല.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">സ്ഥിര സംഭരണം മാനേജ് ചെയ്യുക</string>
<string name="permdesc_managePersistentStorage">ഫാക്ടറി റീസെറ്റ് മുഖേന നിലനില്‍ക്കുന്ന പ്രോപ്പര്‍ട്ടീസ് റീഡ് അല്ലെങ്കില്‍ വ്രൈറ്റ് ചെയ്യാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ആപ്ലിക്കേഷന്‍ നിർദ്ദേശങ്ങളിലേക്ക് പ്രവേശിക്കുക</string>
<string name="permdesc_accessAppSuggestions">ആപ്ലിക്കേഷന്‍ നിർദ്ദേശങ്ങളിലേക്ക് പ്രവേശിക്കുവാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage सुरक्षित सिस्टिम सेटिंग्ज सुधारित करा</string>
<string name="permdesc_writeSecureSettings">अॅपला Lineage सुरक्षित सिस्टिम सेटिंग्ज सुधारित करण्याची परवानगी देते. सामान्य अॅपद्वारे वापरासाठी नाही.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">पर्सिस्टंट संग्रह व्यवस्थापित करा</string>
<string name="permdesc_managePersistentStorage">अॅपला गुणधर्म वाचू किंवा लिहू देते जे फॅक्टरी रीसेटद्वारे पर्सिस्ट होऊ शकतात.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">अनुप्रयोग सूचनांमध्ये ऍक्सेस करा</string>
<string name="permdesc_accessAppSuggestions">अनुप्रयोगाला अनुप्रयोग सूचनांमध्ये ऍक्सेस करण्याची परवानगी देते.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">endre Lineage sikker systeminnstillinger</string>
<string name="permdesc_writeSecureSettings">Gir en app tilgang til å endre Lineage sikkerhets-systeminnstillinger. Tilgangen bør ikke gis til normale apper.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">administrere permanent lager</string>
<string name="permdesc_managePersistentStorage">Gir en app tilgang til å lese eller skrive egenskaper, som kan overleve gjenoppretting av fabrikkinnstillinger.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">tilgang til app-forslag</string>
<string name="permdesc_accessAppSuggestions">Tillat en app tilgang til app forslag.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">beveiligde Lineage-systeeminstellingen wijzigen</string>
<string name="permdesc_writeSecureSettings">Hiermee kan de app de beveiligde systeeminstellingen van Lineage wijzigen. Niet voor gebruik door normale apps.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">blijvende opslag beheren</string>
<string name="permdesc_managePersistentStorage">Hiermee kan de app eigenschappen lezen of schrijven die blijven bestaan na terugzetten naar fabrieksinstellingen.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">toegang tot app-suggesties</string>
<string name="permdesc_accessAppSuggestions">Hiermee kan de app toegang krijgen tot app-suggesties.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage ସୁରଷିତ ସିଷ୍ଟମ୍‍ ସେଟିଂସମୂହ ସମ୍ପାଦନା</string>
<string name="permdesc_writeSecureSettings">Lineage ସୁରଷିତ ସିଷ୍ଟମ୍‍ ସେଟିଂସମୂହ‍ ସମ୍ପାଦନା କରିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ। ସାଧାରଣ ଆପ୍ଲିକେସନଗୁଡିକ ଦ୍ଵାରା ବ୍ୟବହାରରେ ନାହିଁ।</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">ସ୍ଥାୟୀ ଷ୍ଟୋରେଜ୍‍ ପରିଚାଳନା କରନ୍ତୁ</string>
<string name="permdesc_managePersistentStorage">ଏକ ଫ୍ୟାକ୍ଟରୀ ରିସେଟ୍‍ ମାଧ୍ୟମରେ ଯେଉଁ ଗୁଣାବଳି ଥ୍ୟାୟୀ ହୋଇ ରହିଥାଏ ତାହା ପଢିବା ବା ଲେଖିବା ପାଇଁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ଆପ୍ଲିକେସନ୍‍ ମତାମତ ଆକ୍‍ସେସ୍‍ କରିଥାଏ</string>
<string name="permdesc_accessAppSuggestions">ଆପ୍ଲିକେସନ୍‍ ମତାମତ ଆକ୍‍ସେସ୍ କରିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modyfikuje zabezpieczone ustawienia systemowe Lineage</string>
<string name="permdesc_writeSecureSettings">Pozwala aplikacji na modyfikacje zabezpieczonych ustawień systemowych Lineage. Nie do użytku przez zwykłe aplikacje.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">zarządza trwałą pamięcią</string>
<string name="permdesc_managePersistentStorage">Umożliwia aplikacji odczyt lub zapis właściwości, które mogą przetrwać reset do ustawień fabrycznych.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">dostęp do sugestii</string>
<string name="permdesc_accessAppSuggestions">Zezwala aplikacji na dostęp do sugestii.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar as configurações de segurança do sistema da Lineage</string>
<string name="permdesc_writeSecureSettings">Permite que um aplicativo modifique as configurações de segurança do sistema Lineage. Não deve ser usado por aplicativos normais.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gerenciar o armazenamento persistente</string>
<string name="permdesc_managePersistentStorage">Permite a um app ler ou escrever propriedades que podem persistir mesmo após um reset de fábrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">acesso a sugestões de apps</string>
<string name="permdesc_accessAppSuggestions">Permite que o aplicativo acesse sugestões de apps.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modificar as definições de sistema seguro Lineage</string>
<string name="permdesc_writeSecureSettings">Permite que uma aplicação modifique as definições de sistema seguro Lineage. Nunca deverá ser necessário para aplicações normais.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gerir o armazenamento persistente</string>
<string name="permdesc_managePersistentStorage">Permite que uma aplicação leia ou escreva propriedades que possam persistir mesmo após a reposição dos dados de fábrica.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">aceder a sugestões da aplicação</string>
<string name="permdesc_accessAppSuggestions">Permite que uma aplicação aceda às sugestões de aplicações.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">modifică setările de siguranță sistem Lineage</string>
<string name="permdesc_writeSecureSettings">Permite unei aplicații să modifice setările de sistem Lineage sigure. Nu este utilizabilă de către aplicațiile normale.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">gestionează stocare persistentă</string>
<string name="permdesc_managePersistentStorage">Permite unei aplicații să citească sau să scrie proprietăți ce se pot menține în urma unei reveniri la setările din fabrică.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">accesează sugestiile aplicației</string>
<string name="permdesc_accessAppSuggestions">Permite unei aplicații să acceseze sugestiile aplicației.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Изменение параметров безопасности системы Lineage</string>
<string name="permdesc_writeSecureSettings">Приложение сможет изменять параметры безопасности системы. Это разрешение не используется обычными приложениями.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">Управление хранилищем ПЗУ</string>
<string name="permdesc_managePersistentStorage">Приложение сможет читать или записывать свойства, которые могут сохраняться после сброса настроек.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">доступ к списку рекомендованных приложений</string>
<string name="permdesc_accessAppSuggestions">Приложение сможет получать доступ к списку рекомендованных приложений.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">upraviť zabezpečené systémové nastavenia Lineage</string>
<string name="permdesc_writeSecureSettings">Umožňuje aplikácii zmeniť zabezpečené systémové nastavenia Lineage. Nie je určené pre normálne aplikácie.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">spravovať trvalé úložisko</string>
<string name="permdesc_managePersistentStorage">Umožňuje aplikácii čítanie alebo zápis vlastností, ktoré môžu pretrvávať po obnove továrenských nastavení.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">prístup k návrhom aplikácií</string>
<string name="permdesc_accessAppSuggestions">Umožní aplikácii prístup k návrhom aplikácií.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">spreminjanje varnih sistemskih nastavitev Lineage</string>
<string name="permdesc_writeSecureSettings">Dovoli aplikaciji spreminjanje varnih sistemskih nastavitev Lineage. Običajne aplikacije tega ne uporabljajo.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">upravljanje vztrajne pom. naprave</string>
<string name="permdesc_managePersistentStorage">Dovoli aplikaciji branje ali pisanje lastnosti, ki se ohranijo po ponastavitvi na tovarniške vrednosti.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">dostop do predlogov aplikacij</string>
<string name="permdesc_accessAppSuggestions">Dovoli aplikaciji dostop do predlogov aplikacij.</string>

View File

@@ -40,7 +40,6 @@
<string name="permlab_writeSettings">modifiko parametrat e sistemit Lineage</string>
<string name="permdesc_writeSettings">Lejon një aplikacion që të modifikojë parametrat e sistemit Lineage.</string>
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">akseso aplikacionet e sygjeruara</string>
<string name="permdesc_accessAppSuggestions">Lejon një aplikacion të aksesojë listën e aplikacioneve të sygjeruara.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">мењање подешавања безбедности система</string>
<string name="permdesc_writeSecureSettings">Апликација може да мења подешавања безбедности система. Ова дозвола није потребна нормалним апликацијама.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">управљање непрекидном меморијом</string>
<string name="permdesc_managePersistentStorage">Апликација може да чита и пише својства која могу остати након враћања фабричких подешавања.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">приступ предложеним апликацијама</string>
<string name="permdesc_accessAppSuggestions">Апликација може да приступа предложеним апликацијама.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">ändra Lineage säkra systeminställningar</string>
<string name="permdesc_writeSecureSettings">Tillåt att en app ändrar Lineage säkra systeminställningar. Inte för användning av normala appar.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">hantera beständig lagring</string>
<string name="permdesc_managePersistentStorage">Tillåt att en app läser och skriver egenskaper som kan kvarstå efter en fabriksåterställning.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">komma åt appförslag</string>
<string name="permdesc_accessAppSuggestions">Ger en app åtkomst till appförslag.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage பாதுகாப்பான கணினி அமைப்புகளை மாற்றியமை</string>
<string name="permdesc_writeSecureSettings">ஒரு பயன்பாடானது Lineage பாதுகாப்பான கணினி அமைப்புகளை மாற்றியமைக்க அனுமதிக்கிறது. இயல்பான பயன்பாடுகளின் பயன்பாட்டிற்காக அல்ல</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">விடாப்பிடியான சேமிப்பகத்தை நிர்வகி</string>
<string name="permdesc_managePersistentStorage">ஒரு பயன்பாடானது ஒரு தொழிற்சாலை மீட்டமைத்தலின் மூலம் தொடர்கின்ற பண்புகளை படிக்க அல்லது எழுத அனுமதிக்கிறது</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">பயன்பாட்டு பரிந்துரைகளை அணுகு</string>
<string name="permdesc_accessAppSuggestions">ஒரு பயன்பாடானது பயன்பாட்டு பரிந்துரைர்களை அணுக அனுமதிக்கிறது.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage సురక్షిత సిస్టమ్ సెట్టింగులను సవరించుము</string>
<string name="permdesc_writeSecureSettings">Lineage సురక్షిత సిస్టమ్ సెట్టింగులను సవరించడానికి ప్రోగ్రాంకి అనుమతినిస్తుంది. సాధారణ ప్రోగ్రాంలచే ఉపయోగించబడటానికి కాదు.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">నిరంతర నిల్వను నిర్వహించుము</string>
<string name="permdesc_managePersistentStorage">ఫ్యాక్టరీ రీసెట్ ద్వారా కొనసాగే అవకాశం ఉన్న లక్షణాలను చదవడానికి లేదా వ్రాయడానికి ప్రోగ్రాంకి అనుమతినిస్తుంది.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ప్రోగ్రాం సూచనలను ప్రాప్తి చేయుము</string>
<string name="permdesc_accessAppSuggestions">ప్రోగ్రాం సూచనలకు ప్రాప్తి పొందేందుకు ప్రోగ్రాంకి అనుమతిస్తుంది</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">ปรับแต่งการตั้งค่าระบบความปลอดภัยของ Lineage</string>
<string name="permdesc_writeSecureSettings">อนุญาตให้แอปปรับแต่งการตั้งค่าระบบความปลอดภัยของ Lineage ไม่ใช่เพื่อให้แอปปกตินำไปใช้</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">จัดการพื้นที่จัดเก็บถาวร</string>
<string name="permdesc_managePersistentStorage">อนุญาตให้แอปอ่านหรือเขียนคุณสมบัติซึ่งอาจยังมีอยู่จากการรีเซ็ตของโรงงาน</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">เข้าถึงคำแนะนำแอป</string>
<string name="permdesc_accessAppSuggestions">อรนุญาตให้แอปเข้าถึงคำแนะนำแอป</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">Lineage güvenli sistem ayarlarını değiştir</string>
<string name="permdesc_writeSecureSettings">Uygulamalara Lineage güvenli sistem ayarlarını değiştirme izni verir. Normal uygulamalar için değildir.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">kalıcı depolama alanını yönet</string>
<string name="permdesc_managePersistentStorage">Uygulamalara fabrika ayarlarına dönüldüğünde kalıcı özellikleri okuma ve yazma izni verir.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">uygulama önerilerine eriş</string>
<string name="permdesc_accessAppSuggestions">Bir uygulamanın uygulama önerilerine erişiminine izin verir.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">سىستېما Lineageنىڭ بىخەتەرلىك تەڭشىكىنى ئۆزگەرتىش</string>
<string name="permdesc_writeSecureSettings">ئەپنىڭ سىستېما Lineageنىڭ بىخەتەرلىك تەڭشىكىنى ئۆزگەرتىشگە يول قويۇش.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">ئەبەدى ساقلىغۇچنى باشقۇرۇش</string>
<string name="permdesc_managePersistentStorage">ئەپنىڭ زاۋۇت ئەسلىگە قايتۇرغاندىن كىيىن ئۆزگەرمەيدىغان خۇسۇسىيىتىنى ئوقۇپ ۋە يېزىشىغا يول قويۇش.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ئەپنىڭ چۈشەندۈرۈلىشىگە ئېرىشىش</string>
<string name="permdesc_accessAppSuggestions">بىرەر ئەپنىڭ ئەپ چۈشەندۈرۈشىگە ئېرىشىشگە رۇخسەت قىلىش.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">змінювати налаштування безпеки</string>
<string name="permdesc_writeSecureSettings">Дозволяє додатку змінювати системні налаштування безпеки. Непотрібно звичайним додаткам.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">керування постійною пам\'яттю даних</string>
<string name="permdesc_managePersistentStorage">Дозволяє додатку зчитувати і записувати властивості, які можуть зберігатися навіть після відновлення заводських налаштувань.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">Доступ до рекомендованих додатків</string>
<string name="permdesc_accessAppSuggestions">Додаток зможе отримувати доступ до списку рекомендованих додатків.</string>

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -27,7 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">sửa đổi cài đặt hệ thống an toàn Lineage</string>
<string name="permdesc_writeSecureSettings">Cho phép ứng dụng sửa đổi cài đặt hệ thống an toàn Lineage. Không cho ứng dụng bình thường sử dụng.</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">quản lý bộ lưu trữ vĩnh viễn</string>
<string name="permdesc_managePersistentStorage">Cho phép ứng dụng đọc hoặc ghi thuộc tính có thể vẫn tồn tại sau khi đặt lại mặc định nhà sản xuất.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">truy cập các đề xuất ứng dụng</string>
<string name="permdesc_accessAppSuggestions">Cho phép ứng dụng truy cập đề xuất ứng dụng.</string>

View File

@@ -54,9 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">修改 Lineage 系统安全设置</string>
<string name="permdesc_writeSecureSettings">允许应用修改 Lineage 系统安全设置。不供正常应用使用。</string>
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<string name="permlab_managePersistentStorage">管理永久存储</string>
<string name="permdesc_managePersistentStorage">允许应用读取或写入出厂设置后仍可保持的属性。</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">访问应用建议</string>
<string name="permdesc_accessAppSuggestions">允许应用访问应用建议。</string>

View File

@@ -30,7 +30,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<!-- Labels for the MANAGE_PERSISTENT_STORAGE permission. -->
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->

Some files were not shown because too many files have changed in this diff Show More