lineage-sdk: Remove app suggest feature

Change-Id: I60280aba6694da744e234ff5f2b9fd252da68908
This commit is contained in:
Michael Bestas
2018-01-23 20:39:36 +02:00
parent dc1731e1dd
commit 60aa859cbe
113 changed files with 0 additions and 820 deletions

View File

@@ -586,7 +586,6 @@ package lineageos.platform {
public static final class Manifest.permission {
ctor public Manifest.permission();
field public static final java.lang.String ACCESS_APP_SUGGESTIONS = "lineageos.permission.ACCESS_APP_SUGGESTIONS";
field public static final java.lang.String ACCESS_WEATHER_MANAGER = "lineageos.permission.ACCESS_WEATHER_MANAGER";
field public static final java.lang.String BIND_WEATHER_PROVIDER_SERVICE = "lineageos.permission.BIND_WEATHER_PROVIDER_SERVICE";
field public static final java.lang.String HARDWARE_ABSTRACTION_ACCESS = "lineageos.permission.HARDWARE_ABSTRACTION_ACCESS";

View File

@@ -1,82 +0,0 @@
/**
* Copyright (c) 2015, The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lineageos.platform.internal;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.util.Slog;
import com.android.server.SystemService;
import lineageos.app.LineageContextConstants;
import lineageos.app.suggest.ApplicationSuggestion;
import lineageos.app.suggest.IAppSuggestManager;
import java.util.ArrayList;
import java.util.List;
/** @hide */
public class AppSuggestManagerService extends LineageSystemService {
private static final String TAG = "AppSgstMgrService";
public static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
public static final String NAME = "appsuggest";
public static final String ACTION = "org.lineageos.app.suggest";
private AppSuggestProviderInterface mImpl;
private Context mContext;
private final IBinder mService = new IAppSuggestManager.Stub() {
public boolean handles(Intent intent) {
if (mImpl == null) return false;
return mImpl.handles(intent);
}
public List<ApplicationSuggestion> getSuggestions(Intent intent) {
if (mImpl == null) return new ArrayList<>(0);
return mImpl.getSuggestions(intent);
}
};
public AppSuggestManagerService(Context context) {
super(context);
mContext = context;
}
@Override
public String getFeatureDeclaration() {
return LineageContextConstants.Features.APP_SUGGEST;
}
@Override
public void onStart() {
mImpl = AppSuggestProviderProxy.createAndBind(mContext, TAG, ACTION,
R.bool.config_enableAppSuggestOverlay,
R.string.config_appSuggestProviderPackageName,
R.array.config_appSuggestProviderPackageNames);
if (mImpl == null) {
Slog.e(TAG, "no app suggest provider found");
} else {
Slog.i(TAG, "Bound to to suggest provider");
}
publishBinderService(LineageContextConstants.LINEAGE_APP_SUGGEST_SERVICE, mService);
}
}

View File

@@ -1,32 +0,0 @@
/**
* Copyright (c) 2015, The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lineageos.platform.internal;
import android.content.Intent;
import lineageos.app.suggest.ApplicationSuggestion;
import java.util.List;
/**
* App Suggestion Manager's interface for Applicaiton Suggestion Providers.
*
* @hide
*/
public interface AppSuggestProviderInterface {
boolean handles(Intent intent);
List<ApplicationSuggestion> getSuggestions(Intent intent);
}

View File

@@ -1,102 +0,0 @@
/**
* Copyright (c) 2015, The CyanogenMod Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lineageos.platform.internal;
import android.content.Context;
import android.content.Intent;
import android.os.Handler;
import android.os.RemoteException;
import android.util.Log;
import com.android.server.ServiceWatcher;
import lineageos.app.suggest.ApplicationSuggestion;
import lineageos.app.suggest.IAppSuggestProvider;
import java.util.ArrayList;
import java.util.List;
/**
* @hide
*/
public class AppSuggestProviderProxy implements AppSuggestProviderInterface {
private static final String TAG = AppSuggestProviderProxy.class.getSimpleName();
private static final boolean DEBUG = AppSuggestManagerService.DEBUG;
public static AppSuggestProviderProxy createAndBind(
Context context, String name, String action,
int overlaySwitchResId, int defaultServicePackageNameResId,
int initialPackageNamesResId) {
AppSuggestProviderProxy proxy = new AppSuggestProviderProxy(context, name, action,
overlaySwitchResId, defaultServicePackageNameResId, initialPackageNamesResId);
if (proxy.bind()) {
return proxy;
} else {
return null;
}
}
private Context mContext;
private ServiceWatcher mServiceWatcher;
private AppSuggestProviderProxy(Context context, String name, String action,
int overlaySwitchResId, int defaultServicePackageNameResId,
int initialPackageNamesResId) {
mContext = context;
mServiceWatcher = new ServiceWatcher(mContext, TAG + "-" + name, action, overlaySwitchResId,
defaultServicePackageNameResId, initialPackageNamesResId, null, null);
}
private boolean bind() {
return mServiceWatcher.start();
}
private IAppSuggestProvider getService() {
return IAppSuggestProvider.Stub.asInterface(mServiceWatcher.getBinder());
}
@Override
public boolean handles(Intent intent) {
IAppSuggestProvider service = getService();
if (service == null) return false;
try {
return service.handles(intent);
} catch (RemoteException e) {
Log.w(TAG, e);
} catch (Exception e) {
// never let remote service crash system server
Log.e(TAG, "Exception from " + mServiceWatcher.getBestPackageName(), e);
}
return false;
}
@Override
public List<ApplicationSuggestion> getSuggestions(Intent intent) {
IAppSuggestProvider service = getService();
if (service == null) return new ArrayList<>(0);
try {
return service.getSuggestions(intent);
} catch (RemoteException e) {
Log.w(TAG, e);
} catch (Exception e) {
// never let remote service crash system server
Log.e(TAG, "Exception from " + mServiceWatcher.getBestPackageName(), e);
}
return new ArrayList<>(0);
}
}

View File

@@ -126,13 +126,6 @@
android:label="@string/permlab_read_alarms"
android:description="@string/permdesc_read_alarms"/>
<!-- Permission for accessing a provider of app suggestions
<p>Not for use by third-party applications. -->
<permission android:name="lineageos.permission.ACCESS_APP_SUGGESTIONS"
android:label="@string/permlab_accessAppSuggestions"
android:description="@string/permdesc_accessAppSuggestions"
android:protectionLevel="signature|privileged|development" />
<!-- Permission for adding/removing applications to protected apps
<p>Not for use by third-party applications. -->
<permission

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 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>
<!-- 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">Pasgemaakte teël luisteraar</string>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">الوصول إلى اقتراحات التطبيق</string>
<string name="permdesc_accessAppSuggestions">السماح للتطبيق بالوصول إلى اقتراحات التطبيق.</string>
<!-- 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>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">এপ্প্‌ পৰামৰ্শত প্ৰৱেশ কৰক</string>
<string name="permdesc_accessAppSuggestions">এটা এপ্প্‌ক এপ্প্‌ পৰামৰ্শত প্ৰৱেশ কৰিবলৈ অনুমতি দিয়ে।</string>
<!-- 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->
<string name="permdesc_protectedApp">Permite qu\'una aplicación conseñe a otres como protexíes y blóquiales.</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 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>
<!-- 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">Özəl çərçivə dinləyicisi</string>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">доступ да спіса рэкамендаваных дадаткаў</string>
<string name="permdesc_accessAppSuggestions">Дадатак зможа атрымваць доступ да спісу рэкамендаваных дадаткаў.</string>
<!-- 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>
<!-- 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">Разрешава на проложението да променя системните настройки на сигурността. Това разрешение не се използва от нормални приложения.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">Достъп до съвети от приложения</string>
<string name="permdesc_accessAppSuggestions">Осигурява достъп до съвети от приложения.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Escolta de cel·les personalitzades</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Služba vlastní dlaždice</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Tilpasset fliseservice-lytter</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Listener für benutzerdefinierte Kacheln</string>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">πρόσβαση στις προτάσεις εφαρμογών</string>
<string name="permdesc_accessAppSuggestions">Επιτρέπει σε μια εφαρμογή την πρόσβαση στις προτάσεις εφαρμογών.</string>
<!-- 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">Listener προσαρμοσμένων πλακιδίων</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>
<!-- 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">Custom tile listener</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>
<!-- 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">Custom tile listener</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">access app suggestions</string>
<string name="permdesc_accessAppSuggestions">Allows an app to access app suggestions.</string>
<!-- 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">Custom tile listener</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

View File

@@ -27,9 +27,6 @@
<!-- Labels for the READ_ALARMS permission. -->
<!-- Labels for the WRITE_SETTINGS permission -->
<!-- Labels for the WRITE_SECURE_SETTINGS 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>
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->
<string name="permlab_protectedApp">añadir y quitar aplicaciones a aplicaciones protegidas</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 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>
<!-- 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">Escucha de control personalizado</string>
<!-- 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ó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 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>
<!-- 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">Escucha de control personalizado</string>
<!-- 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 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">aplikazio aholkuak atzitu</string>
<string name="permdesc_accessAppSuggestions">Aplikazio proposamenak atzitzea ahalbidetzen dio aplikazioari.</string>
<!-- 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">Lauza pertsonalizatuaren entzulea</string>
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -54,7 +54,6 @@
<!-- Labels for the WRITE_SECURE_SETTINGS permission -->
<string name="permlab_writeSecureSettings">تغییر تنظیمات امنیت سیستم Lineage</string>
<string name="permdesc_writeSecureSettings">به برنامه اجازه می‌دهد تا تنظیمات امنیت سیستم Lineage را تغییر دهد. برای استفاده برنامه‌های عادی پیشنهاد نمی‌شود.</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>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">käyttää sovellusehdotuksia</string>
<string name="permdesc_accessAppSuggestions">Sallii sovelluksen käyttää sovellusehdotuksia.</string>
<!-- 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">Mukautetun tiilen kuuntelija</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Service d\'écoute d\'un raccourci personnalisé</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Botón de escoita personalizado</string>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ઍક્સેસ એપ્લિકેશન સૂચનો</string>
<string name="permdesc_accessAppSuggestions">ઍપને ઍપ્લિકેશન સૂચનોને ઍક્સેસ કરવાની પરવાનગી આપે છે.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">pristup prijedlozima aplikacije</string>
<string name="permdesc_accessAppSuggestions">Dopusti aplikaciji pristupiti prijedlozima aplikacije.</string>
<!-- 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">Prilagođena pločica nadgledanja</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Egyéni csempe figyelőszolgáltatás</string>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">akses saran aplikasi</string>
<string name="permdesc_accessAppSuggestions">Mengizinkan aplikasi untuk mengakses saran aplikasi.</string>
<!-- 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">Daftar ikon kustom</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Listener tile personalizzato</string>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">גישה להצעות יישומים</string>
<string name="permdesc_accessAppSuggestions">מאפשר ליישום לגשת להצעות יישומים.</string>
<!-- 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">アプリの候補へのアクセス</string>
<string name="permdesc_accessAppSuggestions">アプリの候補へのアクセスをアプリに許可します。</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ಅಪ್ಲಿ‌ ಸಲಹೆಗಳಿಗೆ ಪ್ರವೇಶ ಪಡೆಯಿರಿ</string>
<string name="permdesc_accessAppSuggestions">ಅಪ್ಲಿ‌ ಸಲಹೆಗಳಿಗೆ ಪ್ರವೇಶ ಪಡೆಯಲು ಒಂದು ಅಪ್ಲಿ‌ ಅನುವು ಮಾಡುತ್ತದೆ.</string>
<!-- 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>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">앱 제안 접근</string>
<string name="permdesc_accessAppSuggestions">앱이 앱 제안에 접근하도록 허용합니다.</string>
<!-- 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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 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. -->
<!-- Profiles -->

View File

@@ -54,7 +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 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ആപ്ലിക്കേഷന്‍ നിർദ്ദേശങ്ങളിലേക്ക് പ്രവേശിക്കുക</string>
<string name="permdesc_accessAppSuggestions">ആപ്ലിക്കേഷന്‍ നിർദ്ദേശങ്ങളിലേക്ക് പ്രവേശിക്കുവാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">अनुप्रयोग सूचनांमध्ये ऍक्सेस करा</string>
<string name="permdesc_accessAppSuggestions">अनुप्रयोगाला अनुप्रयोग सूचनांमध्ये ऍक्सेस करण्याची परवानगी देते.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Egendefinerte flis lytter</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Aangepaste tegel-service</string>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ଆପ୍ଲିକେସନ୍‍ ମତାମତ ଆକ୍‍ସେସ୍‍ କରିଥାଏ</string>
<string name="permdesc_accessAppSuggestions">ଆପ୍ଲିକେସନ୍‍ ମତାମତ ଆକ୍‍ସେସ୍ କରିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Niestandardowy odbiornik</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Monitoramento de botão personalizado</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Escuta de mosaicos personalizados</string>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Urmăritor de chenar personalizat</string>
<!-- 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">Приложение сможет изменять параметры безопасности системы. Это разрешение не используется обычными приложениями.</string>
<!-- Labels for the ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">доступ к списку рекомендованных приложений</string>
<string name="permdesc_accessAppSuggestions">Приложение сможет получать доступ к списку рекомендованных приложений.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Zoznam vlastných dlaždíc</string>
<!-- Labels for the PROTECTED_APP permission. -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">dostop do predlogov aplikacij</string>
<string name="permdesc_accessAppSuggestions">Dovoli aplikaciji dostop do predlogov aplikacij.</string>
<!-- 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">Poslušalnik ploščic po meri</string>
<!-- Labels for the PROTECTED_APP permission. -->

View File

@@ -40,9 +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 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>
<!-- Label to show for a service that is running because it is observing the user's custom tiles. -->
<!-- Labels for the PROTECTED_APP permission. -->
<string name="permdesc_protectedApp">Lejon një aplikacion që t\'i etiketojë aplikacionet e tjera si të mbrojtura dhe t\'i bllokojë ato.</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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">приступ предложеним апликацијама</string>
<string name="permdesc_accessAppSuggestions">Апликација може да приступа предложеним апликацијама.</string>
<!-- 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Anpassad tjänst som lyssnar efter brickor</string>
<!-- 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 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. -->
<!-- Profiles -->

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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">பயன்பாட்டு பரிந்துரைகளை அணுகு</string>
<string name="permdesc_accessAppSuggestions">ஒரு பயன்பாடானது பயன்பாட்டு பரிந்துரைர்களை அணுக அனுமதிக்கிறது.</string>
<!-- 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>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ప్రోగ్రాం సూచనలను ప్రాప్తి చేయుము</string>
<string name="permdesc_accessAppSuggestions">ప్రోగ్రాం సూచనలకు ప్రాప్తి పొందేందుకు ప్రోగ్రాంకి అనుమతిస్తుంది</string>
<!-- 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>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">เข้าถึงคำแนะนำแอป</string>
<string name="permdesc_accessAppSuggestions">อรนุญาตให้แอปเข้าถึงคำแนะนำแอป</string>
<!-- 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>
<!-- Labels for the PROTECTED_APP permission. -->

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 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>
<!-- 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">Özel kare takipçisi</string>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">ئەپنىڭ چۈشەندۈرۈلىشىگە ئېرىشىش</string>
<string name="permdesc_accessAppSuggestions">بىرەر ئەپنىڭ ئەپ چۈشەندۈرۈشىگە ئېرىشىشگە رۇخسەت قىلىش.</string>
<!-- 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>
<!-- 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 ACCESS_APP_SUGGESTIONS permission -->
<string name="permlab_accessAppSuggestions">Доступ до рекомендованих додатків</string>
<string name="permdesc_accessAppSuggestions">Додаток зможе отримувати доступ до списку рекомендованих додатків.</string>
<!-- 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>
<!-- 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 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. -->
<!-- Profiles -->

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 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. -->
<!-- Profiles -->

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 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>
<!-- 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">Lắng nghe ô tuỳ chỉnh</string>
<!-- Labels for the PROTECTED_APP permission. -->

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