lineage-sdk: Remove lineage telephony service

* Used for old MSIM API which is non-functional since a while

Change-Id: Ica2b9ae119d5972e425082433df3a7b099ae404a
This commit is contained in:
Michael Bestas
2018-01-23 21:23:04 +02:00
parent 7c69dc97d8
commit 861ba2d874
108 changed files with 0 additions and 1331 deletions

View File

@@ -66,19 +66,6 @@ package lineageos.alarmclock {
package lineageos.app {
public class LineageTelephonyManager {
method public static lineageos.app.LineageTelephonyManager getInstance(android.content.Context);
method public java.util.List<android.telephony.SubscriptionInfo> getSubInformation();
method public boolean isDataConnectionEnabled();
method public boolean isDataConnectionSelectedOnSub(int);
method public boolean isSubActive(int);
method public void setDataConnectionState(boolean);
method public void setDefaultPhoneSub(int);
method public void setDefaultSmsSub(int);
method public void setSubState(int, boolean);
field public static final int ASK_FOR_SUBSCRIPTION_ID = 0; // 0x0
}
public final class Profile implements java.lang.Comparable android.os.Parcelable {
ctor public Profile(java.lang.String);
method public void addSecondaryUuid(java.util.UUID);

View File

@@ -1,354 +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 com.android.server.SystemService;
import android.content.Context;
import android.os.IBinder;
import android.telephony.SubscriptionInfo;
import android.telephony.SubscriptionManager;
import android.telephony.TelephonyManager;
import android.util.Log;
import java.util.List;
import lineageos.app.LineageContextConstants;
import lineageos.app.LineageTelephonyManager;
import lineageos.app.ILineageTelephonyManager;
/**
* Internal service which manages interactions with the phone and data connection
*
* @hide
*/
public class LineageTelephonyManagerService extends LineageSystemService {
private static final String TAG = "LineageTelephonyManagerSrv";
private static boolean localLOGD = Log.isLoggable(TAG, Log.DEBUG);
private TelephonyManager mTelephonyManager;
private Context mContext;
private final IBinder mService = new ILineageTelephonyManager.Stub() {
/**
* Returns the available SIM subscription information.
*
* @return The list of SIM subscriptions. The returning list can be null or empty.
* @hide
*/
@Override
public List<SubscriptionInfo> getSubInformation() {
enforceTelephonyReadPermission();
return getActiveSubscriptionInfoList();
}
/**
* Returns the state of the SIM by subscription ID.
*
* If the subscription ID is not valid the method will return {@code false}.
*
* @param subId The subscription ID to query.
* @return {@code true} if the SIM is activated (even without signal or requesting the
* PIN/PUK), {@code false} otherwise.
* @hide
*/
@Override
public boolean isSubActive(int subId) {
enforceTelephonyReadPermission();
return LineageTelephonyManagerService.this.isSubActive(subId);
}
/**
* Sets the state of one of the SIMs by subscription ID.
*
* If the subscription ID is not valid or the SIM already
* is in the desired state the method will do nothing.
*
* @param subId The subscription ID to set.
* @param state {@code true} to activate the SIM, {@code false} to disable.
* @hide
*/
@Override
public void setSubState(int subId, boolean state) {
enforceTelephonyModifyPermission();
LineageTelephonyManagerService.this.setSubState(subId, state);
}
/**
* Checks if the received subscription received has the data
* connection enabled.
*
* This method will return {@code true} (or {@code false} if inactive on the SIM)
* even when an internet connection is active through Wifi/BT.
*
* If the subscription ID is not valid the method will return {@code false}.
*
* @param subId The subscription ID to query.
* @return {@code true} if the data connection is enabled on the SIM, {@code false} otherwise.
* @hide
*/
public boolean isDataConnectionSelectedOnSub(int subId) {
enforceTelephonyReadPermission();
return LineageTelephonyManagerService.this.isDataConnectionSelectedOnSub(subId);
}
/**
* Checks if the network data connection is enabled.
*
* This method will return {@code true} (or {@code false} if inactive)
* even when an internet connection is active through Wifi/BT.
*
* @return {@code true} if the network data connection is enabled, {@code false} otherwise.
* @hide
*/
public boolean isDataConnectionEnabled() {
enforceTelephonyReadPermission();
return LineageTelephonyManagerService.this.isDataConnectionEnabled();
}
/**
* Sets the network data conection active or inactive.
*
* @param state If {@code true} enables the network data connection, if {@code false} disables it.
* @hide
*/
public void setDataConnectionState(boolean state) {
enforceTelephonyModifyPermission();
LineageTelephonyManagerService.this.setDataConnectionState(state);
}
/**
* Sets the data connection state on one of the SIMs by subscription ID.
*
* If the subscription ID is not valid or the data connection is already
* enabled on the SIM the method will do nothing.
*
* @param subId The subscription ID to set the network data connection.
* @hide
*/
public void setDataConnectionSelectedOnSub(int subId) {
enforceTelephonyModifyPermission();
LineageTelephonyManagerService.this.setDataConnectionSelectedOnSub(subId);
}
/**
* Sets the default phone used to make phone calls as the one received on subId.
*
* If 0 is used as a parameter, then the option to choose what SIM to use is
* selected.
*
* @param subId The subscription to set as default for phone calls.
* To select SIM when calling use 0.
* @hide
*/
public void setDefaultPhoneSub(int subId) {
enforceTelephonyModifyPermission();
LineageTelephonyManagerService.this.setDefaultPhoneSub(subId);
}
/**
* Sets the default phone used to send SMS as the one received on subId.
*
* If 0 is used as a parameter, then the option to choose what SIM to use is
* selected.
*
* @param subId The subscription to set as default for sending SMS.
* To select SIM when sending SMS use 0.
* @hide
*/
public void setDefaultSmsSub(int subId) {
enforceTelephonyModifyPermission();
LineageTelephonyManagerService.this.setDefaultSmsSub(subId);
}
};
public LineageTelephonyManagerService(Context context) {
super(context);
mContext = context;
}
@Override
public String getFeatureDeclaration() {
return LineageContextConstants.Features.TELEPHONY;
}
@Override
public void onStart() {
if (localLOGD) {
Log.d(TAG, "Lineage telephony manager service start: " + this);
}
publishBinderService(LineageContextConstants.LINEAGE_TELEPHONY_MANAGER_SERVICE, mService);
mTelephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
}
private List<SubscriptionInfo> getActiveSubscriptionInfoList() {
SubscriptionManager subscriptionManager = SubscriptionManager.from(mContext);
List<SubscriptionInfo> subInfoList = subscriptionManager.getActiveSubscriptionInfoList();
if (localLOGD) {
Log.d(TAG, "The active subscriptions where obtained from the subscription manager.");
}
return subInfoList;
}
private boolean isSubActive(int subId) {
boolean validSubscriptionId = SubscriptionManager.isValidSubscriptionId(subId);
if (validSubscriptionId) {
int simState = SubscriptionManager.getSimStateForSlotIndex(
SubscriptionManager.getSlotIndex(subId));
switch (simState) {
case TelephonyManager.SIM_STATE_ABSENT:
case TelephonyManager.SIM_STATE_CARD_IO_ERROR:
case TelephonyManager.SIM_STATE_PERM_DISABLED:
case TelephonyManager.SIM_STATE_NOT_READY:
if (localLOGD) {
Log.d(TAG, "The subscription " + subId + " is NOT active: " + simState);
}
return false;
default:
if (localLOGD) {
Log.d(TAG, "The subscription " + subId + " is active: " + simState);
}
return true;
}
} else {
Log.w(TAG, "Invalid subscription identifier: " + subId);
return false;
}
}
private void setSubState(int subId, boolean state) {
if (localLOGD) {
Log.d(TAG, "Setting the subscription " + subId + " to inactive (false) or active (true): " + state);
}
/*
if (state) {
SubscriptionManager.activateSubId(subId);
} else {
SubscriptionManager.deactivateSubId(subId);
}
*/
}
private boolean isDataConnectionSelectedOnSub(int subId) {
boolean validSubscriptionId = SubscriptionManager.isValidSubscriptionId(subId);
if (validSubscriptionId) {
/*
if (subId == SubscriptionManager.getDefaultDataSubId()) {
if (localLOGD) {
Log.d(TAG, "Data connection selected for subscription " + subId);
}
return true;
} else {
if (localLOGD) {
Log.d(TAG, "Data connection not selected for subscription " + subId);
}
return false;
}
*/
return true;
} else {
Log.w(TAG, "Invalid subscription identifier: " + subId);
return false;
}
}
private boolean isDataConnectionEnabled() {
if (localLOGD) {
Log.d(TAG, "Checking if the network data connection is active");
}
boolean dataEnabled = mTelephonyManager.getDataEnabled();
if (localLOGD) {
Log.d(TAG, "Data network connection is inactive (false) or active (true): " + dataEnabled);
}
return dataEnabled;
}
private void setDataConnectionState(boolean state) {
if (localLOGD) {
Log.d(TAG, "Setting the network data connection inactive (false) or active (true): " + state);
}
if (state) {
mTelephonyManager.enableDataConnectivity();
} else {
mTelephonyManager.disableDataConnectivity();
}
}
private void setDataConnectionSelectedOnSub(int subId) {
if (localLOGD) {
Log.d(TAG, "Setting the network data connection for subscription " + subId);
}
SubscriptionManager subscriptionManager = SubscriptionManager.from(mContext);
subscriptionManager.setDefaultDataSubId(subId);
}
private void setDefaultPhoneSub(int subId) {
if (localLOGD) {
Log.d(TAG, "Setting the SIM for phone calls on subscription " + subId);
}
SubscriptionManager subscriptionManager = SubscriptionManager.from(mContext);
/*if (subId == LineageTelephonyManager.ASK_FOR_SUBSCRIPTION_ID) {
if (localLOGD) {
Log.d(TAG, "Activates the prompt for phone calls");
}
SubscriptionManager.setVoicePromptEnabled(true);
} else {
SubscriptionManager.setVoicePromptEnabled(false);
subscriptionManager.setDefaultVoiceSubId(subId);
}*/
subscriptionManager.setDefaultVoiceSubId(subId);
}
private void setDefaultSmsSub(int subId) {
if (localLOGD) {
Log.d(TAG, "Setting the SIM for phone calls on subscription " + subId);
}
SubscriptionManager subscriptionManager = SubscriptionManager.from(mContext);
/*if (subId == LineageTelephonyManager.ASK_FOR_SUBSCRIPTION_ID) {
if (localLOGD) {
Log.d(TAG, "Activates the prompt for SMS");
}
SubscriptionManager.setSMSPromptEnabled(true);
} else {
SubscriptionManager.setSMSPromptEnabled(false);
subscriptionManager.setDefaultSmsSubId(subId);
}*/
subscriptionManager.setDefaultSmsSubId(subId);
}
private void enforceTelephonyReadPermission() {
mContext.enforceCallingOrSelfPermission(
lineageos.platform.Manifest.permission.READ_MSIM_PHONE_STATE,
"LineageTelephonyManagerService");
}
private void enforceTelephonyModifyPermission() {
mContext.enforceCallingOrSelfPermission(
lineageos.platform.Manifest.permission.MODIFY_MSIM_PHONE_STATE,
"LineageTelephonyManagerService");
}
}

View File

@@ -36,20 +36,6 @@
<protected-broadcast android:name="lineageos.platform.intent.action.UPDATE_TWILIGHT_STATE" />
<!-- Allows a 3rd party to view the phone SIM states and data connection -->
<permission android:name="lineageos.permission.READ_MSIM_PHONE_STATE"
android:label="@string/permlab_readMSPhoneState"
android:description="@string/permdesc_readMSPhoneState"
android:icon="@drawable/ic_launcher_lineageos"
android:protectionLevel="normal" />
<!-- Allows a 3rd party to modify the phone SIM states and data connection -->
<permission android:name="lineageos.permission.MODIFY_MSIM_PHONE_STATE"
android:label="@string/permlab_modifyMSPhoneState"
android:description="@string/permdesc_modifyMSPhoneState"
android:icon="@drawable/ic_launcher_lineageos"
android:protectionLevel="normal" />
<!-- Allows an application access to the Lineage hardware abstraction framework
<p>Not for use by third-party applications. -->
<permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS"

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Stelsel</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">kyk na die foon status en data koppeling met ondersteuning na menigvuldige SIMs</string>
<string name="permdesc_readMSPhoneState">Laat \'n toep toe om te kyk na die foon status en data koppeling met ondersteuning van menigvuldige SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">verander die foon status en data koppeling met ondersteuning na menigvuldige SIMs</string>
<string name="permdesc_modifyMSPhoneState">Laat \'n toep toe om veranderinge te maak op jou foon status en data koppeling met ondersteuning van menigvuldige SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">verander stelsel profiele</string>
<string name="permdesc_modifyProfiles">Laat \'n toep toe om stelsel profiele te verander.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">نظام LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">عرض حالة الهاتف واتصال البيانات مع دعم SIMs متعددة</string>
<string name="permdesc_readMSPhoneState">يسمح للتطبيق بعرض حالة الهاتف واتصال البيانات مع دعم SIMs متعددة.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">تعديل حالة الهاتف واتصال البيانات مع دعم شرائح SIM المتعددة</string>
<string name="permdesc_modifyMSPhoneState">يسمح للتطبيق بتعديل حالة الهاتف واتصال البيانات مع دعم شرائح SIM المتعددة.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">تعديل الملفات التعريفية للنظام</string>
<string name="permdesc_modifyProfiles">السماح للتطبيق بتعديل الملفات التعريفية للنظام.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS ছিষ্টেম</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">একাধিক SIMৰ সমৰ্থনত ফোন অৱস্থা আৰু ডাটা সংযোগ চাওক</string>
<string name="permdesc_readMSPhoneState">এটা এপ্প্‌ক একাধিক SIMৰ সমৰ্থনত ফোন অৱস্থা আৰু ডাটা সংযোগ চাবলৈ অনুমতি দিয়ে।</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">একাধিক SIMৰ সমৰ্থনত ফোন অৱস্থা আৰু ডাটা সংযোগ সংশোধন কৰক</string>
<string name="permdesc_modifyMSPhoneState">এটা এপ্প্‌ক একাধিক SIMৰ সমৰ্থনত ফোন ষ্টেট আৰু ডাটা সংযোগ সংশোধন অনুমতি দিয়ে।</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ছিষ্টেম প্ৰ\'ফাইল সংশোধন কৰক</string>
<string name="permdesc_modifyProfiles">এটা এপ্প্‌ক ছিষ্টেম প্ৰ\'ফাইল সংশোধন কৰিবলৈ অনুমতি দিয়ে</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ver l\'estáu\'l teléfonu y conexón de datos con sofitu pa SIMs múltiples</string>
<string name="permdesc_readMSPhoneState">Permite qu\'una aplicación vea l\'estáu\'l teléfonu y la conexón de datos con sofitu pa SIMs múltiples.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar l\'estáu\'l teléfonu y la conexón de datos con sofitu pa SIMs múltiples</string>
<string name="permdesc_modifyMSPhoneState">Permite qu\'una aplicación modifique l\'estáu\'l teléfonu y la conexón de datos con sofitu pa SIMs múltiples.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar perfiles del sistema</string>
<string name="permdesc_modifyProfiles">Permite qu\'una aplicación modifique los perfiles del sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Sistemi</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">telefon durumu və çoxlu SIM dəstəyi ilə verilənlər bağlantısını göstər</string>
<string name="permdesc_readMSPhoneState">Tətbiqetməyə telefon durumunu və çoxlu SIM dəstəyi ilə verilənlər bağlantısını göstərməyə icazə verər.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">telefon durumunu və çoxlu SIM dəstəyi ilə verilənlər bağlantısını dəyişdir</string>
<string name="permdesc_modifyMSPhoneState">Tətbiqetməyə telefon durumunu və çoxlu SIM dəstəyi ilə verilənlər bağlantısını dəyişdirmə icazə verər.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">sistem profillərini dəyişdir</string>
<string name="permdesc_modifyProfiles">Tətbiqetməyə sistem profillərini dəyişdirmə icazəsi verər.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Сістэма LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">прагляд стану тэлефона і перадачы дадзеных з падтрымкай некалькіх SIM-карт</string>
<string name="permdesc_readMSPhoneState">Дазволіць дадатку доступ да інфармацыі пра стан тэлефона і перадачы дадзеных з падтрымкай некалькіх SIM-карт.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">змена стану тэлефона і перадачы дадзеных з падтрымкай некалькіх SIM-карт</string>
<string name="permdesc_modifyMSPhoneState">Дазволяе дадатку зменіць стан тэлефона і перадачы дадзеных з падтрымкай некалькіх SIM-карт.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">змена сістэмных профіляў</string>
<string name="permdesc_modifyProfiles">Дазваляць дадаткам змяняць сістэмныя профілі.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Система</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">Прегледайте състоянието на вашият телефон и мрежовите данни с поддръжка на множество СИМ карти</string>
<string name="permdesc_readMSPhoneState">Разрешаване за достъп на прилажения до информация за състоянието на телефона с поддръжка на множество СИМ карти.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">Промяна в състоянието на вашият телефон и мрежовите данни с поддръжка на множество СИМ карти</string>
<string name="permdesc_modifyMSPhoneState">Разрешаване за достъп на прилажения до информация за състоянието на телефона с поддръжка на множество СИМ карти.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">Модифициране на системни профили</string>
<string name="permdesc_modifyProfiles">Позволява да модифицирате системни профили.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema de LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">mostra l\'estat del telèfon i la connexió de dades amb suport per múltiples SIMs</string>
<string name="permdesc_readMSPhoneState">Permet una aplicació mostrar l\'estat del telèfon i la connexió de dades amb suport per múltiples SIMs.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar l\'estat del telèfon i la connexió de dades amb suport per múltiples SIMs</string>
<string name="permdesc_modifyMSPhoneState">Permet una aplicació modificar l\'estat del telèfon i la connexió de dades amb suport per múltiples SIMs.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modifica els perfils del sistema</string>
<string name="permdesc_modifyProfiles">Permet a una aplicació modificar els perfils del sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Systém LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">zobrazit stav telefonu a datové připojení s podporou více SIM</string>
<string name="permdesc_readMSPhoneState">Umožňuj prohlížet stav telefonu a datového spojení s podporou více SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">změnit stav telefonu a datového spojení s podporou více SIM</string>
<string name="permdesc_modifyMSPhoneState">Umožňuje změnit stav telefonu a datového spojení s podporou více SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">změnit systémové profily</string>
<string name="permdesc_modifyProfiles">Umožňuje upravovat systémové profily.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">se status for forbindelse og data med understøttelse af flere SIM-kort</string>
<string name="permdesc_readMSPhoneState">Gør det muligt for en app at se status for forbindelse og data med understøttelse af flere SIM-kort.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ændre status for forbindelse og data med understøttelse af flere SIM-kort</string>
<string name="permdesc_modifyMSPhoneState">Gør det muligt for en app at ændre status for forbindelse og data med understøttelse af flere SIM-kort.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ændre systemprofiler</string>
<string name="permdesc_modifyProfiles">Tillader en app at ændre systemprofiler.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS-System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">Systemstatus und Datenverbindung auf Unterstützung von mehreren SIM-Karten überprüfen</string>
<string name="permdesc_readMSPhoneState">Ermöglicht der App, den Systemstatus und die Datenverbindung auf Unterstützung von mehreren SIM-Karten zu überprüfen.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">Systemstatus und Datenverbindung zur Unterstützung von mehreren SIM-Karten anpassen</string>
<string name="permdesc_modifyMSPhoneState">Ermöglicht der App, den Systemstatus und die Datenverbindung zur Unterstützung von mehreren SIM-Karten anzupassen.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">Systemprofile ändern</string>
<string name="permdesc_modifyProfiles">Ermöglicht der App, Systemprofile zu ändern.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Σύστημα LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">εμφάνιση κατάστασης του τηλεφώνου και της σύνδεσης δεδομένων με υποστήριξη για πολλαπλές SIM</string>
<string name="permdesc_readMSPhoneState">Επιτρέπει σε μια εφαρμογή να εμφανίζει την κατάσταση του τηλεφώνου και της σύνδεσης δεδομένων με υποστήριξη για πολλαπλές SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">τροποποίηση κατάστασης του τηλεφώνου και της σύνδεσης δεδομένων με υποστήριξη για πολλαπλές SIM</string>
<string name="permdesc_modifyMSPhoneState">Επιτρέπει σε μια εφαρμογή να τροποποιεί την κατάσταση του τηλεφώνου και της σύνδεσης δεδομένων με υποστήριξη για πολλαπλές SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">τροποποίηση προφίλ συστήματος</string>
<string name="permdesc_modifyProfiles">Επιτρέπει σε μια εφαρμογή να τροποποιεί τα προφίλ του συστήματος.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">view the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_readMSPhoneState">Allows an app to view the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modify the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_modifyMSPhoneState">Allows an app to modify the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modify system profiles</string>
<string name="permdesc_modifyProfiles">Allows an app to modify system profiles.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">view the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_readMSPhoneState">Allows an app to view the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modify the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_modifyMSPhoneState">Allows an app to modify the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modify system profiles</string>
<string name="permdesc_modifyProfiles">Allows an app to modify system profiles.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">view the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_readMSPhoneState">Allows an app to view the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">Modify the phone state and data connection with support to multiple SIMs</string>
<string name="permdesc_modifyMSPhoneState">Allows an app to modify the phone state and data connection with support to multiple SIMs.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">Modify system profiles</string>
<string name="permdesc_modifyProfiles">Allows an app to modify system profiles.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema de LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ver el estado del teléfono y la conexión de datos con soporte SIM múltiple</string>
<string name="permdesc_readMSPhoneState">Permite a una aplicación ver el estado del teléfono y la conexión de datos con soporte SIM múltiple.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar el estado del teléfono y la conexión de datos con soporte SIM múltiple</string>
<string name="permdesc_modifyMSPhoneState">Permite a una aplicación modificar el estado del teléfono y la conexión de datos con soporte SIM múltiple.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar los perfiles del sistema</string>
<string name="permdesc_modifyProfiles">Permite que una aplicación modifique los perfiles del sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema de LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ver el estado del teléfono y la conexión de datos con soporte multi SIM</string>
<string name="permdesc_readMSPhoneState">Permite a una aplicación ver el estado del teléfono y la conexión de datos con soporte multi SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar el estado del teléfono y la conexión de datos con soporte multi SIM</string>
<string name="permdesc_modifyMSPhoneState">Permite a una aplicación modificar el estado del teléfono y la conexión de datos con soporte multi SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar los perfiles del sistema</string>
<string name="permdesc_modifyProfiles">Permite que una aplicación modifique los perfiles del sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Süsteem</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">telefoni oleku ja andmeühenduse vaatamine, toetades mitmeid SIMe</string>
<string name="permdesc_readMSPhoneState">Võimaldab rakendusel vaadata telefoni olekut ja andmeühendust, toetades mitmeid SIMe.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">telefoni oleku ja andmeühenduse muutmine, toetades mitmeid SIMe</string>
<string name="permdesc_modifyMSPhoneState">Võimaldab rakendusel muuta telefoni olekut ja andmeühendust, toetades mitmeid SIMe.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<string name="permlab_useHardwareFramework">kasutada riistvara raamistikku</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS sistema</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ikusi telefonoaren egoera eta datu konexioa hainbat SIM txartelentzako euskarriarekin</string>
<string name="permdesc_readMSPhoneState">Telefonoaren egoera eta datu konexioa hainbat SIM txartelentzako euskarriarekin ikustea ahalbidetzen dio aplikazioari.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">aldatu telefonoaren egoera eta datu konexioa hainbat SIM txartelentzako euskarriarekin</string>
<string name="permdesc_modifyMSPhoneState">Telefonoaren egoera eta datu konexioa hainbat SIM txartelentzako euskarriarekin aldatzea ahalbidetzen dio aplikazioari.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">aldatu sistemaren profilak</string>
<string name="permdesc_modifyProfiles">Sistemaren profilak aldatzea ahalbidetzen dio aplikazioari.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">سیستم سایانوژن‌مود</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">مشاهده وضعیت تلفن و اتصال داده با پشتیبانی از چندین سیم کارت</string>
<string name="permdesc_readMSPhoneState">به برنامه اجازه مشاهده وضعیت تلفن و اتصال داده را با پشتیبانی از چندین سیم کارت می‌دهد.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">تغییر وضعیت تلفن و اتصال داده با پشتیبانی از چندین سیم کارت</string>
<string name="permdesc_modifyMSPhoneState">به برنامه اجازه ویرایش وضعیت تلفن و اتصال داده را با پشتیبانی از چندین سیم کارت می‌دهد.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">تغییر پروفایل‌های سیستم</string>
<string name="permdesc_modifyProfiles">به برنامه اجازه می‌دهد تا پروفایل‌های سیستم را تغییر دهد.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Järjestelmä</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">tarkastele puhelimen tilaa ja datayhteyttä useamman SIM-kortin tuella</string>
<string name="permdesc_readMSPhoneState">Sallii sovelluksen tarkastella puhelimen tilaa ja datayhteyden tietoja usean SIM-kortin tuella.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">muokkaa puhelimen tilaa ja datayhteyttä useamman SIM-kortin tuella</string>
<string name="permdesc_modifyMSPhoneState">Sallii sovelluksen muokata puhelimen tilaa ja datayhteyden tietoja usean SIM-kortin tuella.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">muokkaa järjestelmän profiileja</string>
<string name="permdesc_modifyProfiles">Sallii sovelluksen muokata järjestelmäprofiileja.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Système LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">voir l\'état du téléphone et de la connexion de données en gérant le multi-SIM</string>
<string name="permdesc_readMSPhoneState">Autorise une application à voir l\'état du téléphone et la connexion de données en gérant le multi-SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modifier l\'état du téléphone et la connexion de données en gérant le multi-SIM</string>
<string name="permdesc_modifyMSPhoneState">Autorise une application à modifier l\'état du téléphone et la connexion de données en gérant le multi-SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modifier les profils de système</string>
<string name="permdesc_modifyProfiles">Permet à une application de modifier les profils système.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ver o estado do teléfono e a conexión de datos con capacidade para varias tarxetas SIM</string>
<string name="permdesc_readMSPhoneState">Permítelle a unha aplicación ver o estado do teléfono e conexión de datos con capacidade para varias tarxetas SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar o estado do teléfono e a conexión de datos con capacidade para varias tarxetas SIM</string>
<string name="permdesc_modifyMSPhoneState">Permite modificar o estado do teléfono e a conexión de datos con capacidade para varias tarxetas SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar perfís do sistema</string>
<string name="permdesc_modifyProfiles">Permítelle a unha aplicación modificar os perfís do sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS સિસ્ટમ</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">બહુવિધ SIMsના સ‌મર્થન સહ ફોન સ્થિતિ અને ડેટા જોડાણ જુઓ</string>
<string name="permdesc_readMSPhoneState">ઍપને બહુવિધ SIMsના સ‌મર્થન સહ ફોન સ્થિતિ અને ડેટા જોડાણ જોવાની પરવાનગી કરી આપે છે.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">બહુવિધ SIMsના સ‌મર્થન સહ ફોન સ્થિતિ અને ડેટા જોડાણમાં ફેરફાર કરો</string>
<string name="permdesc_modifyMSPhoneState">ઍપને બહુવિધ SIMsના સ‌મર્થન સહ ફોન સ્થિતિ અને ડેટા જોડાણ ફેરફાર કરવાની પરવાનગી કરી આપે છે.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">સિસ્ટમ પ્રોફાઇલ્સમાં ફેરફાર કરો</string>
<string name="permdesc_modifyProfiles">ઍપને સિસ્ટમ પ્રોફાઇલ્સમાં ફેરફાર કરવાની પરવાનગી આપે છે.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS sustav</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">prikaz stanja telefona i veze uz podršku za više SIM-ova</string>
<string name="permdesc_readMSPhoneState">Dopušta aplikaciji prikaz stanja telefona i veze uz podršku za više SIM-ova.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">izmijeni stanje telefona i veze uz podršku za više SIM-ova</string>
<string name="permdesc_modifyMSPhoneState">Dopušta aplikaciji izmijenu stanja telefona i veze uz podršku za više SIM-ova.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">izmijeni profile sustava</string>
<string name="permdesc_modifyProfiles">Dopušta aplikaciji da izmijeni profile sustava.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS rendszer</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">telefon állapotának és adatkapcsolatának megtekintése több SIM támogatásával</string>
<string name="permdesc_readMSPhoneState">Lehetővé teszi az alkalmazás számára, hogy megtekintse a telefon állapotát és az adatkapcsolatot több SIM támogatásával.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">telefon állapotának és adatkapcsolatának módosítása több SIM támogatásával</string>
<string name="permdesc_modifyMSPhoneState">Lehetővé teszi az alkalmazás számára, hogy módosítsa a telefon állapotát és az adatkapcsolatot több SIM támogatásával.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">rendszerprofilok módosítása</string>
<string name="permdesc_modifyProfiles">Lehetővé teszi az alkalmazás számára a rendszerprofilok módosítását.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistem LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">lihat status ponsel dan koneksi data dengan dukungan untuk beberapa SIM</string>
<string name="permdesc_readMSPhoneState">Mengizinkan aplikasi untuk melihat status ponsel dan koneksi data dengan dukungan untuk beberapa SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ubah status ponsel dan koneksi data dengan dukungan untuk beberapa SIM</string>
<string name="permdesc_modifyMSPhoneState">Mengizinkan aplikasi untuk mengubah status ponsel dan koneksi data dengan dukungan untuk beberapa SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">memodifikasi profil sistem</string>
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">vedi stato del dispositivo e connessione con supporto a più SIM</string>
<string name="permdesc_readMSPhoneState">Consenti ad un\'app di vedere lo stato del telefono e della connessione con supporto per SIM multiple.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modifica stato del dispositivo e connessione con supporto a più SIM</string>
<string name="permdesc_modifyMSPhoneState">Consenti ad un\'app di modificare lo stato del telefono e della connessione con supporto per SIM multiple.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modifica profili sistema</string>
<string name="permdesc_modifyProfiles">Consenti ad un\'app di modificare i profili di sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">מערכת LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">הצג את מצב המכשיר ואת חיבור הנתונים עם תמיכה בכרטיסי SIM מרובים</string>
<string name="permdesc_readMSPhoneState">מאפשר ליישום להציג את מצב המכשיר ואת חיבור הנתונים עם תמיכה בכרטיסי SIM מרובים.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">שנה את מצב המכשיר וחיבור הנתונים עם תמיכה בכרטיסי SIM מרובים</string>
<string name="permdesc_modifyMSPhoneState">מאפשר ליישום לשנות את מצב המכשיר ואת חיבור הנתונים עם תמיכה בכרטיסי SIM מרובים.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">שנה פרופילי מערכת</string>
<string name="permdesc_modifyProfiles">מאפשר ליישום לשנות פרופילי מערכת.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS システム</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">マルチSIMをサポートする端末の状態とデータ接続の表示</string>
<string name="permdesc_readMSPhoneState">マルチSIMをサポートする端末の状態とデータ接続の表示をアプリに許可します。</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">マルチSIMをサポートする端末の状態とデータ接続の変更</string>
<string name="permdesc_modifyMSPhoneState">マルチSIMをサポートする端末の状態とデータ接続の変更をアプリに許可します。</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">システムプロファイルの変更</string>
<string name="permdesc_modifyProfiles">システムプロファイルの変更をアプリに許可します。</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS ಸಿಸ್ಟಂ</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ಬಹು ಸಿಮ್‍ಗಳ ಬೆಂಬಲದ ಜೊತೆ ಫೋನ್ ಸ್ಥಿತಿ ಮತ್ತು ಡೇಟಾ ಸಂಪರ್ಕವನ್ನು ವೀಕ್ಷಿಸುವಿಕೆ</string>
<string name="permdesc_readMSPhoneState">ಒಂದು ಆಪ್‍ಗೆ ಬಹು ಸಿಮ್‍ಗಳ ಬೆಂಬಲದ ಜೊತೆ ಫೋನ್ ಸ್ಥಿತಿ ಮತ್ತು ಡೇಟಾ ಸಂಪರ್ಕವನ್ನು ವೀಕ್ಷಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ಬಹು ಸಿಮ್‍ಗಳ ಬೆಂಬಲದ ಜೊತೆ ಫೋನ್ ಸ್ಥಿತಿ ಮತ್ತು ಡೇಟಾ ಸಂಪರ್ಕವನ್ನು ಮಾರ್ಪಡಿಸುವಿಕೆ</string>
<string name="permdesc_modifyMSPhoneState">ಒಂದು ಆಪ್‍ಗೆ ಬಹು ಸಿಮ್‍ಗಳ ಬೆಂಬಲದ ಜೊತೆ ಫೋನ್ ಸ್ಥಿತಿ ಮತ್ತು ಡೇಟಾ ಸಂಪರ್ಕವನ್ನು ಮಾರ್ಪಡಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ಸಿಸ್ಟಂ ಪ್ರೋಫೈಲ್‍ಗಳನ್ನು ಮಾರ್ಪಡಿಸು</string>
<string name="permdesc_modifyProfiles">ಒಂದು ಆಪ್‍ಗೆ ಸಿಸ್ಟಂ ಪ್ರೊಫೈಲ್‍ಗಳನ್ನು ಮಾರ್ಪಡಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS 시스템</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">여러 개의 SIM 카드를 지원하면서 휴대전화의 상태와 데이터 연결 상태를 확인</string>
<string name="permdesc_readMSPhoneState">앱이 여러 개의 SIM 카드를 지원하면서 휴대전화의 상태와 데이터 연결 상태를 확인하도록 허용합니다.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">여러 개의 SIM 카드를 지원하면서 휴대전화의 상태와 데이터 연결 상태를 수정</string>
<string name="permdesc_modifyMSPhoneState">앱이 여러 개의 SIM 카드를 지원하면서 휴대전화의 상태와 데이터 연결 상태를 수정하도록 허용합니다.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">시스템 프로필 수정</string>
<string name="permdesc_modifyProfiles">앱이 시스템 프로필을 수정할 수 있도록 허용합니다.</string>

View File

@@ -19,8 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">سیستەمی ساینەجنمۆد</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS-System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">Systemstatus an Dateconnectioun op Ënnerstëtzung vu méi SIM-Kaarten iwwerpréiwen</string>
<string name="permdesc_readMSPhoneState">Erlaabt der App, de Systemstatus an d\'Dateconnectioun op Ënnerstëtzung vu méi SIM-Kaarten z\'iwwerpréiwen.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">Telefonsstatus an Dateconnectioun op Ënnerstëtzung vu méi SIM-Kaarten iwwerpréiwen</string>
<string name="permdesc_modifyMSPhoneState">Erlaabt der App, den Telefonsstatus an d\'Dateconnectioun op Ënnerstëtzung vu méi SIM-Kaarten z\'iwwerpréiwen.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<string name="permlab_useHardwareFramework">Hardware-Framework benotzen</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">„LineageOS“ sistema</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">pažiūrėti telefono būseną ir duomenų ryšį su kelių SIM palaikymu</string>
<string name="permdesc_readMSPhoneState">Leidžia programai pažiūrėti telefono būseną ir duomenų ryšį su kelių SIM palaikymu.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">keisti telefono būseną ir duomenų ryšį su kelių SIM palaikymu</string>
<string name="permdesc_modifyMSPhoneState">Leidžia programai keisti telefono būseną ir duomenų ryšį su kelių SIM palaikymu.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">keisti sistemos profilius</string>
<string name="permdesc_modifyProfiles">Leidžia programai keisti sistemos profilius.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS സിസ്റ്റം</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ഒന്നിലധികം SIM കളുടെ പിന്തുണയോടെ ഫോൺ സ്ഥിതിയും ഡാറ്റ കണക്ഷനും കാണുക</string>
<string name="permdesc_readMSPhoneState">ഒന്നിലധികം SIM കളുടെ പിന്തുണയോടെ ഫോൺ സ്ഥിതിയും ഡാറ്റ കണക്ഷനും കാണുവാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ഒന്നിലധികം SIM കളുടെ പിന്തുണയോടെ ഫോൺ സ്ഥിതിയും ഡാറ്റ കണക്ഷനും പരിഷ്കരിക്കുക</string>
<string name="permdesc_modifyMSPhoneState">ഒന്നിലധികം SIM കളുടെ പിന്തുണയോടെ ഫോൺ സ്ഥിതിയും ഡാറ്റ കണക്ഷനും പരിഷ്കരിക്കുവാന്‍ ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">സിസ്റ്റം പ്രൊഫൈലുകൾ പരിഷ്ക്കരിക്കുക</string>
<string name="permdesc_modifyProfiles">സിസ്റ്റം പ്രൊഫൈലുകൾ പരിഷ്കരിക്കുന്നതിന് ഒരു ആപ്ലിക്കേഷനെ അനുവദിക്കുന്നു.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS सिस्टिम</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">फोन स्थिती आणि डेटा कनेक्शन अनेक सिम च्या सहयोगाने पाहा</string>
<string name="permdesc_readMSPhoneState">अॅपला फोन स्थिती आणि डेटा कनेक्शन अनेक सिम च्या सहयोगाने पाहू देते.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">फोन स्थिती आणि डेटा कनेक्शन अनेक सिम च्या सहयोगाने सुधारित करा</string>
<string name="permdesc_modifyMSPhoneState">अॅपला फोन स्थिती आणि डेटा कनेक्शन अनेक सिम च्या सहयोगाने सुधारित करण्याची परवानगी देते.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">सिस्टिम प्रोफाइल्स सुधारित करा</string>
<string name="permdesc_modifyProfiles">अॅपला सिस्टिम प्रोफाइल्स सुधारित करण्याची परवानगी देते.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">vis telefonens status og forbindelse med støtte til flere SIM-kort</string>
<string name="permdesc_readMSPhoneState">Gir en app tilgang til å se telefonens status og forbindelse med støtte til flere SIM-kort.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">gjøre endringer til telefonens status og forbindelse med støtte til flere SIM-kort</string>
<string name="permdesc_modifyMSPhoneState">Gir en app tilgang til å gjøre endringer på telefonens status og forbindelse med støtte til flere SIM-kort.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">endre system profiler</string>
<string name="permdesc_modifyProfiles">Tillat en app å endre systemprofiler.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS-systeem</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">telefoonstatus en gegevensverbinding bekijken met ondersteuning voor multi-SIM</string>
<string name="permdesc_readMSPhoneState">Hiermee kan de app de status van de telefoon en de gegevensverbinding weergeven met ondersteuning voor meerdere simkaarten.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">telefoonstatus en gegevensverbinding wijzigen met ondersteuning voor multi-SIM</string>
<string name="permdesc_modifyMSPhoneState">Hiermee kan de app de status van de telefoon en van de gegevensverbinding wijzigen met ondersteuning voor meerdere simkaarten.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">systeemprofielen wijzigen</string>
<string name="permdesc_modifyProfiles">Hiermee kan de app systeemprofielen wijzigen.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">ସିଆନୋଜେନ୍‍ମୋଡ୍‍ ସିଷ୍ଟମ୍‍</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ଏକାଧିକ SIMର ସମଥନ ସହିତ ଫୋନ୍‍ ଥିତି ଓ ଡାଟା ସଂଯୋଗ ଦେଖନ୍ତୁ</string>
<string name="permdesc_readMSPhoneState">ଏକାଧିକ SIMର ସମଥନ ସହିତ ଫୋନ୍‍ ସ୍ଥିତି ଓ ଡାଟା ସଂଯୋଗ ଦେଖିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ଏକାଧିକ SIMର ସମଥନ ସହିତ ଫୋନ୍‍ ସ୍ଥିତି ଓ ଡାଟା ସଂଯୋଗକୁ ସମ୍ପାଦନା କରନ୍ତୁ</string>
<string name="permdesc_modifyMSPhoneState">ଏକାଧିକ SIMର ସମଥନ ସହିତ ଫୋନ୍‍ ସ୍ଥିତି ଓ ଡାଟା ସଂଯୋଗକୁ ସମ୍ପାଦନା କରିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ସିଷ୍ଟମ୍‍ ପ୍ରୋଫାଇଲ୍‍ ସମ୍ପାଦନା କରନ୍ତୁ</string>
<string name="permdesc_modifyProfiles">ସିଷ୍ଟମ୍‍ ପ୍ରୋଫାଇଲ୍‍ ସମ୍ପାଦନା କରିବାକୁ ଆପ୍ଲିକେସନ୍‍କୁ ଅନୁମତି ଦିଏ।</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">System LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">pokaż stanu telefonu i połączenia danych z wsparciem dla wielu kart SIM</string>
<string name="permdesc_readMSPhoneState">Pozwala aplikacji na wyświetlenie stanu telefonu i połączenia danych z wsparciem dla wielu kart SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">zmodyfikuj stan telefonu i połączenia danych z wsparciem dla wielu kart SIM</string>
<string name="permdesc_modifyMSPhoneState">Pozwala aplikacji na modyfikacje stanu telefonu i połączenia danych z wsparciem dla wielu kart SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modyfikuje profile systemowe</string>
<string name="permdesc_modifyProfiles">Umożliwia aplikacji modyfikację profili systemowych.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">veja a conexão de dados e o estado do telefone com suporte para vários SIMs</string>
<string name="permdesc_readMSPhoneState">Permite que um aplicativo exiba a conexão de dados e o estado do telefone com suporte para vários SIMs.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar a conexão de dados e o estado do telefone com suporte para vários SIMs</string>
<string name="permdesc_modifyMSPhoneState">Permite que um aplicativo modifique a conexão de dados e o estado do telefone com suporte para vários SIMs.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar os perfis de sistema</string>
<string name="permdesc_modifyProfiles">Permite que um aplicativo modifique os perfis de sistema.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistema LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ver o estado do telefone e a ligação de dados com suporte para vários cartões SIM</string>
<string name="permdesc_readMSPhoneState">Permite que uma aplicação veja o estado do telefone e a ligação de dados com suporte para vários cartões SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modificar o estado do telefone e a ligação de dados com suporte para vários cartões SIM</string>
<string name="permdesc_modifyMSPhoneState">Permite que uma aplicação modifique o estado do telefone e a ligação de dados com suporte para vários cartões SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modificar os perfis de sistema</string>
<string name="permdesc_modifyProfiles">Permite que uma aplicação modifique os perfis do sistema.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistem LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">citește starea telefonului și a conexiunii de date cu suport pentru SIM-uri multiple</string>
<string name="permdesc_readMSPhoneState">Permite unei aplicații să citească starea telefonului și a conexiunii de date cu suport pentru SIM-uri multiple.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">modifică starea telefonului și a conexiunii de date cu suport pentru SIM-uri multiple</string>
<string name="permdesc_modifyMSPhoneState">Permite unei aplicații să modifice starea telefonului și a conexiunii de date cu suport pentru SIM-uri multiple.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modifică profiluri de sistem</string>
<string name="permdesc_modifyProfiles">Permite unei aplicații să modifice profilurile de sistem.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Система LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">Просмотр состояния телефона и передачи данных с поддержкой нескольких SIM-карт</string>
<string name="permdesc_readMSPhoneState">Приложение сможет получить доступ к информации о состоянии телефона и передаче данных с поддержкой нескольких SIM-карт.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">Изменение состояния телефона и передачи данных с поддержкой нескольких SIM-карт</string>
<string name="permdesc_modifyMSPhoneState">Приложение сможет изменять состояние телефона и передачу данных с поддержкой нескольких SIM-карт.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">Изменение профилей системы</string>
<string name="permdesc_modifyProfiles">Приложение сможет изменять настройки системных профилей.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Systém LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">zobraziť stav telefónu a dátového pripojenia s podporou viacerých SIM</string>
<string name="permdesc_readMSPhoneState">Umožňuje aplikácii zobraziť stav telefónu a dátového pripojenia s podporou viacerých SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">meniť stav telefónu a dátového pripojenia s podporou viacerých SIM</string>
<string name="permdesc_modifyMSPhoneState">Umožňuje aplikácii meniť stav telefónu a dátového pripojenia s podporou viacerých SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">upraviť systémové profily</string>
<string name="permdesc_modifyProfiles">Umožňuje aplikácii upraviť systémové profily.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistem LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ogled stanja telefona in podatkovnih povezav s podporo za več kartic SIM</string>
<string name="permdesc_readMSPhoneState">Dovoli aplikaciji ogled stanja telefona in podatkovnih povezav s podporo za več kartic SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">spreminjanje stanja telefona in podatkovnih povezav s podporo za več kartic SIM</string>
<string name="permdesc_modifyMSPhoneState">Dovoli aplikaciji spreminjanje stanja telefona in podatkovnih povezav s podporo za več kartic SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">spreminjanje sistemskih profilov</string>
<string name="permdesc_modifyProfiles">Dovoli aplikaciji spreminjanje sistemskih profilov.</string>

View File

@@ -19,8 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Sistemi LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">modifiko profilet e sistemit</string>
<string name="permdesc_modifyProfiles">Lejon një aplikacion që të modifikojë profilet e sistemit.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Систем LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">преглед стања телефона и преноса података са подршком за више SIM картица</string>
<string name="permdesc_readMSPhoneState">Апликација може да приступа информацијама о стању телефона и преносу података са подршком за више SIM картица.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">мењање стања телефона и преноса података са подршком за више SIM картица</string>
<string name="permdesc_modifyMSPhoneState">Апликација може да мења стање телефона и пренос података са подршком за више SIM картица.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">мењање профила система</string>
<string name="permdesc_modifyProfiles">Апликација може да мења подешавања системских профила.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS System</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">visa telefonens status och dataförbindelsestöd med flera SIM-kort</string>
<string name="permdesc_readMSPhoneState">Tillåter att en app visar telefonens status och dataförbindelsestöd med flera SIM-kort.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ändra telefonens status och dataförbindelsestöd med flera SIM-kort</string>
<string name="permdesc_modifyMSPhoneState">Tillåter att en app ändrar telefonens status och dataförbindelsestöd med flera SIM-kort.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ändra systemprofiler</string>
<string name="permdesc_modifyProfiles">Tillåter att en app ändrar systemprofiler.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS அமைப்பு</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">தொலைப்பேசி நிலை மற்றும் தரவு இணைப்பை பல SIMகளுக்கான ஆதரவுடன் காண்க</string>
<string name="permdesc_readMSPhoneState">பயன்பாடானது தொலைப்பேசி நிலை மற்றும் தரவு இணைப்பை பல SIMகளுக்கான ஆதரவுடன் காண அனுமதிக்கிறது.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">தொலைப்பேசி நிலை மற்றும் தரவு இணைப்பை பல SIMகளுக்கான ஆதரவுடன் மாற்றியமை.</string>
<string name="permdesc_modifyMSPhoneState">பயன்பாடானது தொலைப்பேசி நிலை மற்றும் தரவு இணைப்பை பல SIMகளுக்கான ஆதரவுடன் மாற்றியமைக்க அனுமதிக்கிறது.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">கணினி சுயவிவரங்களை மாற்றியமை.</string>
<string name="permdesc_modifyProfiles">ஒரு பயன்பாடானது கணினி சுயவிவரங்களை மாற்றியமைக்க அனுமதிக்கிறது.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">సయనోజెన్ మోడ్ సిస్టమ్</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">బహుళ SIMలకు మద్దతు అందిస్తూ ఫోన్ స్థితి మరియు డేటా అనుసంధానాన్ని వీక్షించుము</string>
<string name="permdesc_readMSPhoneState">బహుళ SIMలకు మద్దతు అందిస్తూ ఫోన్ స్థితి మరియు డేటా అనుసంధానాన్ని వీక్షించేందుకు ప్రోగ్రాంకి అనుమతినిస్తుంది.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">బహుళ SIMలకు సహకారం అందిస్తూ ఫోన్ స్థితి మరియు డేటా అనుసంధానాన్ని సవరించుము</string>
<string name="permdesc_modifyMSPhoneState">బహుళ SIMలకు సహకారం అందిస్తూ ఫోన్ స్థితి మరియు డేటా అనుసంధానాన్ని సవరించేందుకు ప్రోగ్రాంకి అనుమతినిస్తుంది.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">సిస్టమ్ ప్రొఫైళ్ళను సవరించుము</string>
<string name="permdesc_modifyProfiles">సిస్టమ్ ప్రొఫైళ్ళను సవరించేందుకు ప్రోగ్రాంకి అనుమతినిస్తుంది.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">ระบบ LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">ดูสถานะและการเชื่อมต่อข้อมูลของโทรศัพท์ด้วยการให้ความช่วยเหลือกับ SIM หลายอัน</string>
<string name="permdesc_readMSPhoneState">อนุญาตให้แอปดูสถานะและการเชื่อมต่อข้อมูลของโทรศัพท์ด้วยการให้ความช่วยเหลือกับ SIM หลายอัน</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">ปรับแต่งสถานะและการเชื่อมต่อข้อมูลของโทรศัพท์ด้วยการให้ความช่วยเหลือกับ SIM หลายอัน</string>
<string name="permdesc_modifyMSPhoneState">อนุญาตให้แอพปรับแต่งสถานะและการเชื่อมต่อข้อมูลของโทรศัพท์ด้วยการให้ความช่วยเหลือกับ SIM หลายอัน</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">ปรับแต่งโปรไฟล์ระบบ</string>
<string name="permdesc_modifyProfiles">อนุญาตให้แอปปรับแต่งโปรไฟล์ระบบ</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS Sistemi</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">telefon durumunu ve çoklu SIMler ile veri bağlantısı desteğini görüntüle</string>
<string name="permdesc_readMSPhoneState">Uygulamalara telefon durumunu ve çoklu SIMler ile veri bağlantısı desteğini görüntüleme imkanı verir.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">telefon durumunu ve çoklu SIMler ile veri bağlantısı desteğini değiştir</string>
<string name="permdesc_modifyMSPhoneState">Uygulamalara telefon durumunu ve çoklu SIMler ile veri bağlantısı desteğini değiştirme imkanı verir.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">sistem profillerini değiştir</string>
<string name="permdesc_modifyProfiles">Uygulamaya sistem profillerini değiştirme izni verir.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS سىستېمىسى</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">كۆپ SIM كارتا قوللايدىغان تېلېفون ھالىتى ۋە تور ئۇلىنىشىنى كۆرۈش</string>
<string name="permdesc_readMSPhoneState">ئەپنىڭ كۆپ SIM كارتا قوللايدىغان تېلېفون ھالىتى ۋە تور ئۇلىنىشىنى كۆرۈشگە يول قويۇش.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">كۆپ SIM كارتا قوللايدىغان تېلېفون ھالىتى ۋە تور ئۇلىنىشىنى ئۆزگەرتىش</string>
<string name="permdesc_modifyMSPhoneState">ئەپنىڭ كۆپ SIM كارتا قوللايدىغان تېلېفون ھالىتى ۋە تور ئۇلىنىشىنى كۆرۈشگە يول قويۇش.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">سىستېما سەپلەنمىسىنى ئۆزگەرتىش</string>
<string name="permdesc_modifyProfiles">ئەپنىڭ سىستېما سەپلەنمىسىنى ئۆزگەرتىشىگە يول قويۇش.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Система LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">переглядати стан телефону і з\'єднання даних з підтримкою до декількох SIM</string>
<string name="permdesc_readMSPhoneState">Дозволяє програмі переглядати стану телефону і з\'єднання даних з підтримкою до декількох SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">змінювати стан телефону і з’єднання даних з підтримкою до декількох SIM</string>
<string name="permdesc_modifyMSPhoneState">Дозволяє програмі змінювати стан телефону і з’єднання даних з підтримкою до декількох SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">зміна системних профілів</string>
<string name="permdesc_modifyProfiles">Дозволяє додатку змінювати системні профілі.</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<!-- Labels for the WRITE_ALARMS permission. -->

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">Hệ thống LineageOS</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">xem tình trạng điện thoại và kết nối dữ liệu với hỗ trợ đa SIM</string>
<string name="permdesc_readMSPhoneState">Cho phép ứng dụng xem tình trạng điện thoại và kết nối dữ liệu với hỗ trợ đa SIM.</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">thay đổi tình trạng điện thoại và kết nối dữ liệu với hỗ trợ đa SIM</string>
<string name="permdesc_modifyMSPhoneState">Cho phép ứng dụng thay đổi tình trạng điện thoại và kết nối dữ liệu với hỗ trợ đa SIM.</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">sửa đổi cấu hình hệ thống</string>
<string name="permdesc_modifyProfiles">Cho phép một ứng dụng sửa đổi cấu hình hệ thống.</string>

View File

@@ -19,12 +19,6 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<string name="lineageos_system_label">LineageOS 系统</string>
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<string name="permlab_readMSPhoneState">查看支持多 SIM 卡的手机状态和数据连接</string>
<string name="permdesc_readMSPhoneState">允许应用查看基于多 SIM 卡的手机状态和数据连接情况。</string>
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<string name="permlab_modifyMSPhoneState">修改基于多 SIM 卡的手机状态和数据连接。</string>
<string name="permdesc_modifyMSPhoneState">允许应用修改基于多 SIM 卡的手机状态和数据连接。</string>
<!-- Labels for the MODIFY_PROFILES permission. -->
<string name="permlab_modifyProfiles">修改系统配置</string>
<string name="permdesc_modifyProfiles">允许应用修改系统配置文件。</string>

View File

@@ -18,8 +18,6 @@
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label for the LineageOS system components when they are shown to the user. -->
<!-- Labels for the READ_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_MSIM_PHONE_STATE permission. -->
<!-- Labels for the MODIFY_PROFILES permission. -->
<!-- Labels for the HARDWARE_ABSTRACTION_ACCESS permission. -->
<string name="permlab_useHardwareFramework">使用硬件框架</string>

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