Compare commits
30 Commits
lineage-20
...
lineage-21
Author | SHA1 | Date | |
---|---|---|---|
|
efa2e7368b | ||
|
265e4eb4f5 | ||
|
fcaa14bcd6 | ||
|
82510e9cb8 | ||
|
d0f28cbaa9 | ||
|
7a1952fc4c | ||
|
c53d68a223 | ||
|
be1f0d3668 | ||
|
aa18c4320b | ||
|
0ccd216aef | ||
|
589762cef6 | ||
|
d66cf2d224 | ||
|
3cb130d40a | ||
|
e6edfaab94 | ||
|
34535a83fb | ||
|
8d0b616fec | ||
|
6ef2ee7a34 | ||
|
7c5230326f | ||
|
0d1c94fe5a | ||
|
8b6c6728ac | ||
|
4a536da4be | ||
|
a6ce04aefc | ||
|
36c5333f2d | ||
|
93adf96d12 | ||
|
ddbb843309 | ||
|
d1d28de8e7 | ||
|
c9eada5848 | ||
|
76c126c8af | ||
|
27af047c21 | ||
|
7d9b6c0c64 |
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// Copyright (C) 2022-2023 The LineageOS Project
|
||||
// Copyright (C) 2022-2024 The LineageOS Project
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
@@ -19,6 +19,10 @@ android_app {
|
||||
certificate: "platform",
|
||||
system_ext_specific: true,
|
||||
|
||||
overrides: [
|
||||
"SystemUpdater",
|
||||
],
|
||||
|
||||
static_libs: [
|
||||
// DO NOT EDIT THIS SECTION MANUALLY
|
||||
"androidx.core_core-ktx",
|
||||
|
@@ -5,6 +5,7 @@
|
||||
<uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||
<uses-permission android:name="android.permission.REBOOT" />
|
||||
@@ -43,8 +44,18 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<service android:name=".controller.UpdaterService" />
|
||||
<service android:name=".ExportUpdateService" />
|
||||
<service
|
||||
android:name=".controller.UpdaterService"
|
||||
android:foregroundServiceType="specialUse">
|
||||
<property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
||||
android:value="updater"/>
|
||||
</service>
|
||||
<service
|
||||
android:name=".ExportUpdateService"
|
||||
android:foregroundServiceType="specialUse">
|
||||
<property android:name="android.app.PROPERTY_SPECIAL_USE_FGS_SUBTYPE"
|
||||
android:value="updater"/>
|
||||
</service>
|
||||
|
||||
<receiver android:name=".UpdaterReceiver" android:exported="false">
|
||||
<intent-filter>
|
||||
|
@@ -20,6 +20,7 @@ import android.app.NotificationManager;
|
||||
import android.app.Service;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.ServiceInfo;
|
||||
import android.net.Uri;
|
||||
import android.os.IBinder;
|
||||
import android.os.SystemClock;
|
||||
@@ -156,7 +157,8 @@ public class ExportUpdateService extends Service {
|
||||
}
|
||||
};
|
||||
|
||||
startForeground(NOTIFICATION_ID, notificationBuilder.build());
|
||||
startForeground(NOTIFICATION_ID, notificationBuilder.build(),
|
||||
ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE);
|
||||
notificationManager.notify(NOTIFICATION_ID, notificationBuilder.build());
|
||||
|
||||
Runnable runnableComplete = () -> {
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2023 The LineageOS Project
|
||||
* Copyright (C) 2017-2024 The LineageOS Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -63,10 +63,13 @@ import org.lineageos.updater.model.UpdateInfo;
|
||||
import org.lineageos.updater.model.UpdateStatus;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.text.DateFormat;
|
||||
import java.text.NumberFormat;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
public class UpdatesListAdapter extends RecyclerView.Adapter<UpdatesListAdapter.ViewHolder> {
|
||||
|
||||
@@ -475,6 +478,12 @@ public class UpdatesListAdapter extends RecyclerView.Adapter<UpdatesListAdapter.
|
||||
.setMessage(message)
|
||||
.setPositiveButton(android.R.string.ok, null);
|
||||
}
|
||||
if (isScratchMounted()) {
|
||||
return new AlertDialog.Builder(mActivity)
|
||||
.setTitle(R.string.dialog_scratch_mounted_title)
|
||||
.setMessage(R.string.dialog_scratch_mounted_message)
|
||||
.setPositiveButton(android.R.string.ok, null);
|
||||
}
|
||||
UpdateInfo update = mUpdaterController.getUpdate(downloadId);
|
||||
int resId;
|
||||
try {
|
||||
@@ -609,4 +618,12 @@ public class UpdatesListAdapter extends RecyclerView.Adapter<UpdatesListAdapter.
|
||||
mActivity.getResources().getInteger(R.integer.battery_ok_percentage_discharging);
|
||||
return percent >= required;
|
||||
}
|
||||
|
||||
private static boolean isScratchMounted() {
|
||||
try (Stream<String> lines = Files.lines(Path.of("/proc/mounts"))) {
|
||||
return lines.anyMatch(x -> x.split(" ")[1].equals("/mnt/scratch"));
|
||||
} catch (IOException e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2022 The LineageOS Project
|
||||
* Copyright (C) 2017-2024 The LineageOS Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -17,6 +17,7 @@ package org.lineageos.updater.controller;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.ServiceSpecificException;
|
||||
import android.os.UpdateEngine;
|
||||
import android.os.UpdateEngineCallback;
|
||||
import android.text.TextUtils;
|
||||
@@ -212,7 +213,17 @@ class ABUpdateInstaller {
|
||||
mUpdateEngine.setPerformanceMode(enableABPerfMode);
|
||||
|
||||
String zipFileUri = "file://" + file.getAbsolutePath();
|
||||
try {
|
||||
mUpdateEngine.applyPayload(zipFileUri, offset, 0, headerKeyValuePairs);
|
||||
} catch (ServiceSpecificException e) {
|
||||
if (e.errorCode == 66 /* kUpdateAlreadyInstalled */) {
|
||||
installationDone(true);
|
||||
mUpdaterController.getActualUpdate(mDownloadId).setStatus(UpdateStatus.INSTALLED);
|
||||
mUpdaterController.notifyUpdateChange(mDownloadId);
|
||||
return;
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
|
||||
mUpdaterController.getActualUpdate(mDownloadId).setStatus(UpdateStatus.INSTALLING);
|
||||
mUpdaterController.notifyUpdateChange(mDownloadId);
|
||||
@@ -246,7 +257,7 @@ class ABUpdateInstaller {
|
||||
|
||||
private void installationDone(boolean needsReboot) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);
|
||||
String id = needsReboot ? prefs.getString(PREF_INSTALLING_AB_ID, null) : null;
|
||||
String id = needsReboot ? mDownloadId : null;
|
||||
PreferenceManager.getDefaultSharedPreferences(mContext).edit()
|
||||
.putString(Constants.PREF_NEEDS_REBOOT_ID, id)
|
||||
.remove(PREF_INSTALLING_AB_ID)
|
||||
|
@@ -24,6 +24,7 @@ import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.content.SharedPreferences;
|
||||
import android.content.pm.ServiceInfo;
|
||||
import android.os.Binder;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
@@ -275,7 +276,8 @@ public class UpdaterService extends Service {
|
||||
mNotificationBuilder.setTicker(text);
|
||||
mNotificationBuilder.setOngoing(true);
|
||||
mNotificationBuilder.setAutoCancel(false);
|
||||
startForeground(NOTIFICATION_ID, mNotificationBuilder.build());
|
||||
startForeground(NOTIFICATION_ID, mNotificationBuilder.build(),
|
||||
ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE);
|
||||
mNotificationManager.notify(NOTIFICATION_ID, mNotificationBuilder.build());
|
||||
break;
|
||||
}
|
||||
@@ -390,7 +392,8 @@ public class UpdaterService extends Service {
|
||||
mNotificationBuilder.setTicker(text);
|
||||
mNotificationBuilder.setOngoing(true);
|
||||
mNotificationBuilder.setAutoCancel(false);
|
||||
startForeground(NOTIFICATION_ID, mNotificationBuilder.build());
|
||||
startForeground(NOTIFICATION_ID, mNotificationBuilder.build(),
|
||||
ServiceInfo.FOREGROUND_SERVICE_TYPE_SPECIAL_USE);
|
||||
mNotificationManager.notify(NOTIFICATION_ID, mNotificationBuilder.build());
|
||||
break;
|
||||
}
|
||||
|
@@ -282,7 +282,7 @@ public class HttpURLConnectionClient implements DownloadClient {
|
||||
InputStream inputStream = mClient.getInputStream();
|
||||
OutputStream outputStream = new FileOutputStream(mDestination, mResume)
|
||||
) {
|
||||
mTotalBytes = mClient.getContentLength() + mTotalBytesRead;
|
||||
mTotalBytes = mClient.getContentLengthLong() + mTotalBytesRead;
|
||||
byte[] b = new byte[8192];
|
||||
int count;
|
||||
while (!isInterrupted() && (count = inputStream.read(b)) > 0) {
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,13 +39,19 @@
|
||||
<string name="dialog_prepare_zip_message">Tresnáu preliminar del anovamientu</string>
|
||||
<string name="dialog_battery_low_title">Queda poca batería</string>
|
||||
<string name="dialog_battery_low_message_pct">El nivel de batería ye perbaxu, tien d\'haber polo menos un <xliff:g id="percent_discharging">%1$d</xliff:g>%% de batería pa siguir, <xliff:g id="percent_charging">%2$d</xliff:g>%% si ta en carga.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Executa los comandos siguientes y volvi probar l\'anovamientu:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Nun se pue instalar l\'anovamientu con OverlayFS montáu</string>
|
||||
<string name="reboot">Reaniciar</string>
|
||||
<string name="menu_refresh">Anovar</string>
|
||||
<string name="menu_preferences">Preferencies</string>
|
||||
<string name="menu_auto_updates_check">Comprobación d\'anovamientos</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Caldía</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Selmanalmente</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Mensualmente</string>
|
||||
<string name="menu_auto_updates_check">Busca d\'anovamientos</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Diaria</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Selmanal</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Mensual</string>
|
||||
<string name="menu_auto_updates_check_interval_never">Enxamás</string>
|
||||
<string name="menu_auto_delete_updates">Desaniciar los anovamientos al instalalos</string>
|
||||
<string name="menu_delete_update">Desaniciar</string>
|
||||
@@ -106,7 +112,7 @@
|
||||
<string name="update_over_metered_network_title">Alvertencia</string>
|
||||
<string name="update_over_metered_network_message">Tas a piques de baxar un paquete d\'anovamientu pente una rede midida, lo que probablemente vaiga xenerar un usu altu de datos. ¿Quies siguir?</string>
|
||||
<string name="checkbox_metered_network_warning">Nun volver amosar</string>
|
||||
<string name="menu_metered_network_warning">Alvertencia pa redes midíes</string>
|
||||
<string name="menu_metered_network_warning">Alvertir al tar nuna rede midida</string>
|
||||
<string name="blocked_update_dialog_title">Bloquióse l\'anovamientu</string>
|
||||
<string name="blocked_update_dialog_message">Esti anovamientu nun se pue instalar con «Anovador». Llei <xliff:g id="info_url">%1$s</xliff:g> pa consiguir más información.</string>
|
||||
<string name="export_channel_title">Esportación completada</string>
|
||||
@@ -114,11 +120,12 @@
|
||||
<string name="ongoing_channel_title">Descargues en cursu</string>
|
||||
<string name="update_failed_channel_title">Anovamientu fallíu</string>
|
||||
<string name="info_dialog_title">¿Sabíeslo?</string>
|
||||
<string name="info_dialog_message">Los anovamientos de LineageOS son paquetes d\'instalación completos. Esto significa que siempres pues instalar l\'últimu anovamientu, ¡magar que saltares dalgún intermediu!</string>
|
||||
<string name="info_dialog_message">Los anovamientos de LineageOS son paquetes d\'instalación completos. Esto significa que siempre pues instalar l\'últimu anovamientu, ¡magar que saltares dalgún intermediu!</string>
|
||||
<string name="info_dialog_ok">¡Gracies!</string>
|
||||
<string name="local_update_import">Anovamientu llocal</string>
|
||||
<string name="local_update_import_progress">Importando l\'anovamientu llocal\u2026</string>
|
||||
<string name="local_update_import_success">Importóse «%1$s». ¿Quies instalar l\'anovamientu?</string>
|
||||
<string name="local_update_import_failure">Hebo un fallu al importar l\'anovamientu llocal</string>
|
||||
<string name="local_update_import_install">Instalar</string>
|
||||
<string name="local_update_name">Anovamientu llocal</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -38,7 +38,13 @@
|
||||
<string name="preparing_ota_first_boot">İlk yükləmə üçün hazırlanır</string>
|
||||
<string name="dialog_prepare_zip_message">Güncəlləməyə ilkin hazırlıq</string>
|
||||
<string name="dialog_battery_low_title">Zəif batareya</string>
|
||||
<string name="dialog_battery_low_message_pct">Batereya səviyyəsi çox aşağıdır, davam etmək üçün ən az batereya səviyyəsi <xliff:g id="percent_discharging">%1$d</xliff:g>%% olmalıdır, <xliff:g id="percent_charging">%2$d</xliff:g>%% enerji yığır.</string>
|
||||
<string name="dialog_battery_low_message_pct">Batareya səviyyəsi çox aşağıdır, davam etmək üçün ən az <xliff:g id="percent_discharging">%1$d</xliff:g>%% olmalıdır, <xliff:g id="percent_charging">%2$d</xliff:g>%% dolur.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Lütfən aşağıdakı əmrləri işə salın və yenidən güncəlləməyə çalışın:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS taxılı ikən güncəlləmə quraşdırıla bilmir</string>
|
||||
<string name="reboot">Yenidən başlat</string>
|
||||
<string name="menu_refresh">Təzələ</string>
|
||||
<string name="menu_preferences">Tərcihlər</string>
|
||||
@@ -81,7 +87,7 @@
|
||||
<string name="confirm_delete_dialog_title">Faylı sil</string>
|
||||
<string name="confirm_delete_dialog_message">Seçilmiş güncəlləmə faylı silinsin?</string>
|
||||
<string name="apply_update_dialog_title">Güncəlləməni tətbiq et</string>
|
||||
<string name="apply_update_dialog_message"><xliff:g id="update_name">%1$s</xliff:g> quraşdırırsınız.\n\n<xliff:g id="ok">%2$s</xliff:g> bassanız, cihaz yeniləməni quraşdırmaq üçün geri qaytarma rejimində yenidən başlayacaq.\n\nQeyd: Bu özəlliyin uyğun bir Geri qaytarma mühitinə ehtiyacı var və ya yeniləmələr əllə quraşdırılmalıdır.</string>
|
||||
<string name="apply_update_dialog_message"><xliff:g id="update_name">%1$s</xliff:g> quraşdırırsınız.\n\n<xliff:g id="ok">%2$s</xliff:g> bassanız, cihaz güncəlləməni quraşdırmaq üçün geri qaytarma rejimində yenidən başlayacaq.\n\nQeyd: Bu özəlliyin uyumlu bir Geri qaytarma mühitinə ehtiyacı var və ya güncəlləmələr əllə quraşdırılmalıdır.</string>
|
||||
<string name="apply_update_dialog_message_ab"><xliff:g id="update_name">%1$s</xliff:g> quraşdırırsınız.\n\n<xliff:g id="ok">%2$s</xliff:g> düyməsinə bassanız, cihaz arxaplanda quraşdırılmağa başlıyacaq.\n\nƏməliyyat bitəndə, yenidən başladılmalıdır.</string>
|
||||
<string name="cancel_installation_dialog_message">Quraşdırmadan imtina edilsin?</string>
|
||||
<string name="label_download_url">Endirmə bağlantısı</string>
|
||||
@@ -104,7 +110,7 @@
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> saat qaldı</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Xəbərdarlıq</string>
|
||||
<string name="update_over_metered_network_message">Ölçülən bir şəbəkə üzərindən böyük ehtimalla yüksək data istifadəsinə səbəb olacaq bir güncəlləmə paketi endirmək üzrəsiniz. Davam etmək istəyirsiniz?</string>
|
||||
<string name="update_over_metered_network_message">Ölçülən bir şəbəkə üzərindən böyük ehtimalla yüksək veri istifadəsinə səbəb olacaq bir güncəlləmə paketi endirmək üzrəsiniz. Davam etmək istəyirsiniz?</string>
|
||||
<string name="checkbox_metered_network_warning">Təkrar göstərmə</string>
|
||||
<string name="menu_metered_network_warning">Ölçülən şəbəkə xəbərdarlığı</string>
|
||||
<string name="blocked_update_dialog_title">Güncəlləmə əngəlləndi</string>
|
||||
@@ -114,7 +120,7 @@
|
||||
<string name="ongoing_channel_title">Davam edən endirmələr</string>
|
||||
<string name="update_failed_channel_title">Güncəlləmə uğursuz oldu</string>
|
||||
<string name="info_dialog_title">Bilirdiniz?</string>
|
||||
<string name="info_dialog_message">LineageOS yeniləmələri tam quraşdırma paketləridir. Yəni, yeniləməni ötürsəniz belə, hər zaman yalnız son yeniləməni quraşdıra bilərsiniz!</string>
|
||||
<string name="info_dialog_message">LineageOS güncəlləmələri tam quraşdırma paketləridir. Yəni, güncəlləməni ötürsəniz belə, hər zaman yalnız son güncəlləməni quraşdıra bilərsiniz!</string>
|
||||
<string name="info_dialog_ok">Məlumat üçün təşəkkürlər!</string>
|
||||
<string name="local_update_import">Yerli güncəlləmə</string>
|
||||
<string name="local_update_import_progress">Yerli güncəlləmə daxilə köçürülür\u2026</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -23,7 +23,6 @@
|
||||
<string name="installing_update_error">Памылка ўсталявання</string>
|
||||
<string name="preparing_ota_first_boot">Падрыхтоўка да першага запуску</string>
|
||||
<string name="dialog_prepare_zip_message">Падрыхтоўка абнаўлення</string>
|
||||
<string name="reboot">Перазапуск</string>
|
||||
<string name="menu_refresh">Абнавiць</string>
|
||||
<string name="menu_auto_updates_check">Аўтаматычная праверка абнаўленняў</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Штомесяц</string>
|
||||
@@ -38,10 +37,8 @@
|
||||
<string name="header_last_updates_check">Апошняя праверка: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_no_updates">Новыя абнаўленні не знойдзены. Каб праверыць абнаўленні ўручную, націсніце кнопку Абнавіць.</string>
|
||||
<string name="action_download">Спампаваць</string>
|
||||
<string name="action_install">Усталяваць</string>
|
||||
<string name="action_info">Інфармацыя</string>
|
||||
<string name="action_delete">Выдаліць</string>
|
||||
<string name="confirm_delete_dialog_title">Выдаліць файл</string>
|
||||
<string name="confirm_delete_dialog_message">Выдаліць выбраны файл абнаўлення?</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -24,13 +24,13 @@
|
||||
<string name="download_paused_error_notification">Грешка при изтегляне</string>
|
||||
<string name="download_completed_notification">Изтеглянето приключи</string>
|
||||
<string name="download_starting_notification">Започни сваляне</string>
|
||||
<string name="update_failed_notification">Актуализацията прекратена</string>
|
||||
<string name="update_failed_notification">Актуализацията е неуспешна</string>
|
||||
<string name="installation_suspended_notification">Инсталацията е прекратена</string>
|
||||
<string name="new_updates_found_title">Нови актуализации</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Пауза</string>
|
||||
<string name="resume_button">Възобнови</string>
|
||||
<string name="suspend_button">Прекратено</string>
|
||||
<string name="suspend_button">Прекрати</string>
|
||||
<string name="installing_update">Инсталиране на пакета за актуализация</string>
|
||||
<string name="installing_update_error">Грешка при инсталиране</string>
|
||||
<string name="installing_update_finished">Актуализацията е инсталирана</string>
|
||||
@@ -39,10 +39,16 @@
|
||||
<string name="dialog_prepare_zip_message">Предварителна подготовка на актуализацията</string>
|
||||
<string name="dialog_battery_low_title">Изтощена батерия</string>
|
||||
<string name="dialog_battery_low_message_pct">Нивото на батерията е прекалено ниско, необходимо е най-малко <xliff:g id="percent_discharging">%1$d</xliff:g>%% за да продължите, <xliff:g id="percent_charging">%2$d</xliff:g>%%.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Моля, изпълнeте следните команди и опитайте отново\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Актулизацията не може да се инсталира с монтиран OverflayFS</string>
|
||||
<string name="reboot">Рестартиране</string>
|
||||
<string name="menu_refresh">Опресняване</string>
|
||||
<string name="menu_preferences">Настройки</string>
|
||||
<string name="menu_auto_updates_check">Автоматична проверка за актуализациите</string>
|
||||
<string name="menu_auto_updates_check">Автоматична проверка за актуализации</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Ежедневно</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Ежеседмично</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Ежемесечно</string>
|
||||
@@ -67,6 +73,8 @@
|
||||
<string name="header_last_updates_check">Последна проверка: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> от <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> от <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">Проверка на актуализацията</string>
|
||||
<string name="list_no_updates">Не са намерени нови актуализации. За да проверите ръчно за нови актуализации, използвайте бутона за обновяване.</string>
|
||||
<string name="action_download">Изтегли</string>
|
||||
@@ -79,6 +87,8 @@
|
||||
<string name="confirm_delete_dialog_title">Изтриване на файл</string>
|
||||
<string name="confirm_delete_dialog_message">Да бъде ли изтрит файлът на избраната актуализация?</string>
|
||||
<string name="apply_update_dialog_title">Приложи актуализацията</string>
|
||||
<string name="apply_update_dialog_message">На път сте да актуализирате до <xliff:g id="update_name">%1$s</xliff:g>.\n\nАко натиснете <xliff:g id="ok">%2$s</xliff:g>, устройството ще се рестартира в режим на възстановяване, за да инсталира актуализацията.\n\nЗабележка: Тази функция се нуждае от съвместим режим на възстановяване или актулизациите ще трябва да се инсталират ръчно.</string>
|
||||
<string name="apply_update_dialog_message_ab">На път сте да актуализирате до <xliff:g id="update_name">%1$s</xliff:g>.\n\nАко натиснете <xliff:g id="ok">%2$s</xliff:g>, устройството ще започне инсталацията на заден фон.\n\nКогато е готово ще бъдете попитани за рестартиране.</string>
|
||||
<string name="cancel_installation_dialog_message">Анулиране на инсталирането?</string>
|
||||
<string name="label_download_url">Изтеглете URL</string>
|
||||
<string name="toast_download_url_copied">URL Копиран</string>
|
||||
@@ -86,6 +96,7 @@
|
||||
<string name="notification_export_success">Актуализацията е експортирана</string>
|
||||
<string name="notification_export_fail">Грешка при експортиране</string>
|
||||
<string name="toast_already_exporting">Вече изнася актуализация</string>
|
||||
<string name="toast_export_started">Експортирането започна</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">остава 1 секунда</item>
|
||||
<item quantity="other">остават <xliff:g id="count">%d</xliff:g> секунди</item>
|
||||
@@ -99,11 +110,22 @@
|
||||
<item quantity="other">остават <xliff:g id="count">%d</xliff:g> часа</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Внимание</string>
|
||||
<string name="update_over_metered_network_message">На път сте да изтеглите пакет за актуализиране, използвайки мобилна връзка, което може ще доведе до прекомерно използване на мобилни данни. Искате ли да продължите?</string>
|
||||
<string name="checkbox_metered_network_warning">Не показвай отново</string>
|
||||
<string name="menu_metered_network_warning">Платена / ограничена мрежа</string>
|
||||
<string name="blocked_update_dialog_title">Актуализацията е блокирана</string>
|
||||
<string name="blocked_update_dialog_message">Тази актуализация не може да бъде инсталирана посредством приложението за актуализации. Моля прочетете <xliff:g id="info_url">%1$s</xliff:g> за повече информация.</string>
|
||||
<string name="export_channel_title">Експортирането приключи</string>
|
||||
<string name="new_updates_channel_title">Нови актуализации</string>
|
||||
<string name="ongoing_channel_title">Текущи изтегляния</string>
|
||||
<string name="update_failed_channel_title">Актуализацията прекратена</string>
|
||||
<string name="info_dialog_title">Знаете ли че?</string>
|
||||
<string name="info_dialog_message">LineageOS актуализациите са цялостни инсталационни пакети, което означава че можеш да инсталираш само последната актулизация, дори ако си пропуснал някоя междувременно!</string>
|
||||
<string name="info_dialog_ok">Благодаря Ви за информацията!</string>
|
||||
<string name="local_update_import">Локална актуализация</string>
|
||||
<string name="local_update_import_progress">Импортиране на локална актуализация</string>
|
||||
<string name="local_update_import_success">%1$s беше импортирано. Искате ли да продължите с инсталацията?</string>
|
||||
<string name="local_update_import_failure">Неуспешно импортиране на локална актуализация</string>
|
||||
<string name="local_update_import_install">Инсталирай</string>
|
||||
<string name="local_update_name">Локална актуализация</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preparació preliminar de l\'actualització</string>
|
||||
<string name="dialog_battery_low_title">Bateria baixa</string>
|
||||
<string name="dialog_battery_low_message_pct">El nivell de la bateria és massa baix, necessiteu com a mínim <xliff:g id="percent_discharging">%1$d</xliff:g>%% de bateria per continuar, <xliff:g id="percent_charging">%2$d</xliff:g>%% si el dispositiu s\'està carregant.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Executeu les ordres següents i torneu a provar l\'actualització:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">No es pot instal·lar l\'actualització amb l\'OverlayFS muntat</string>
|
||||
<string name="reboot">Reinicia</string>
|
||||
<string name="menu_refresh">Recarrega</string>
|
||||
<string name="menu_preferences">Preferències</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Update wird vorbereitet</string>
|
||||
<string name="dialog_battery_low_title">Niedriger Akkustand</string>
|
||||
<string name="dialog_battery_low_message_pct">Dein Akkustand ist zu niedrig. Es werden mindestens <xliff:g id="percent_discharging">%1$d</xliff:g>%% Restkapazität (oder <xliff:g id="percent_charging">%2$d</xliff:g>%% mit angeschlossenem Ladegerät) benötigt, um fortzufahren.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Bitte führe die folgenden Befehle aus und versuche anschließend das Update erneut durchzuführen:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Update kann nicht installiert werden, wenn OverlayFS eingebunden ist</string>
|
||||
<string name="reboot">Neustart</string>
|
||||
<string name="menu_refresh">Aktualisieren</string>
|
||||
<string name="menu_preferences">Einstellungen</string>
|
||||
@@ -106,7 +112,7 @@
|
||||
<string name="update_over_metered_network_title">Achtung</string>
|
||||
<string name="update_over_metered_network_message">Du bist dabei ein Software-Update über ein getaktetes Netzwerk herunterzuladen, was zu einem hohen Datenverbrauch führen kann. Möchtest du fortfahren?</string>
|
||||
<string name="checkbox_metered_network_warning">Nicht wieder anzeigen</string>
|
||||
<string name="menu_metered_network_warning">Achtung getaktetes Netzwerk</string>
|
||||
<string name="menu_metered_network_warning">Warnen bei getakteter Verbindung</string>
|
||||
<string name="blocked_update_dialog_title">Update blockiert</string>
|
||||
<string name="blocked_update_dialog_message">Dieses Update kann mit der Updater-App nicht installiert werden. Für weitere Informationen lies bitte <xliff:g id="info_url">%1$s </xliff:g>.</string>
|
||||
<string name="export_channel_title">Export abgeschlossen</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Προκαταρκτική προετοιμασία ενημέρωσης</string>
|
||||
<string name="dialog_battery_low_title">Χαμηλή μπαταρία</string>
|
||||
<string name="dialog_battery_low_message_pct">Η στάθμη της μπαταρίας είναι πολύ χαμηλή, χρειάζεστε τουλάχιστον <xliff:g id="percent_discharging">%1$d</xliff:g>%% της μπαταρίας για να συνεχίσετε ή <xliff:g id="percent_charging">%2$d</xliff:g>%% κατά την φόρτιση.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Παρακαλώ εκτελέστε τις ακόλουθες εντολές και δοκιμάστε ξανά την ενημέρωση:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Αδυναμία εγκατάστασης ενημέρωσης με το OverlayFS προσαρτημένο</string>
|
||||
<string name="reboot">Επανεκκίνηση</string>
|
||||
<string name="menu_refresh">Ανανέωση</string>
|
||||
<string name="menu_preferences">Προτιμήσεις</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||
<string name="dialog_battery_low_title">Low battery</string>
|
||||
<string name="dialog_battery_low_message_pct">The battery level is too low, you need at least <xliff:g id="percent_discharging">%1$d</xliff:g>%% of the battery to continue, <xliff:g id="percent_charging">%2$d</xliff:g>%% if charging.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Please run the following commands and retry the update:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Cannot install update with OverlayFS mounted</string>
|
||||
<string name="reboot">Reboot</string>
|
||||
<string name="menu_refresh">Refresh</string>
|
||||
<string name="menu_preferences">Preferences</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||
<string name="dialog_battery_low_title">Low battery</string>
|
||||
<string name="dialog_battery_low_message_pct">The battery level is too low, you need at least <xliff:g id="percent_discharging">%1$d</xliff:g>%% of the battery to continue, <xliff:g id="percent_charging">%2$d</xliff:g>%% if charging.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Please run the following commands and retry the update:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Cannot install update with OverlayFS mounted</string>
|
||||
<string name="reboot">Reboot</string>
|
||||
<string name="menu_refresh">Refresh</string>
|
||||
<string name="menu_preferences">Preferences</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||
<string name="dialog_battery_low_title">Low battery</string>
|
||||
<string name="dialog_battery_low_message_pct">The battery level is too low, you need at least <xliff:g id="percent_discharging">%1$d</xliff:g>%% of the battery to continue, <xliff:g id="percent_charging">%2$d</xliff:g>%% if charging.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Please run the following commands and retry the update:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Cannot install update with OverlayFS mounted</string>
|
||||
<string name="reboot">Reboot</string>
|
||||
<string name="menu_refresh">Refresh</string>
|
||||
<string name="menu_preferences">Preferences</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||
<string name="dialog_battery_low_title">Low battery</string>
|
||||
<string name="dialog_battery_low_message_pct">The battery level is too low, you need at least <xliff:g id="percent_discharging">%1$d</xliff:g>%% of the battery to continue, <xliff:g id="percent_charging">%2$d</xliff:g>%% if charging.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Please run the following commands and retry the update:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Cannot install update with OverlayFS mounted</string>
|
||||
<string name="reboot">Reboot</string>
|
||||
<string name="menu_refresh">Refresh</string>
|
||||
<string name="menu_preferences">Preferences</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -24,10 +24,13 @@
|
||||
<string name="download_paused_error_notification">Error de descarga</string>
|
||||
<string name="download_completed_notification">Descarga completada</string>
|
||||
<string name="download_starting_notification">Iniciando descarga</string>
|
||||
<string name="update_failed_notification">Se produjo un error en la actualización</string>
|
||||
<string name="installation_suspended_notification">Instalación suspendida</string>
|
||||
<string name="new_updates_found_title">Nuevas actualizaciones</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Pausar</string>
|
||||
<string name="resume_button">Reanudar</string>
|
||||
<string name="suspend_button">Suspender</string>
|
||||
<string name="installing_update">Instalando paquete de actualización</string>
|
||||
<string name="installing_update_error">Error de instalación</string>
|
||||
<string name="installing_update_finished">Actualización instalada</string>
|
||||
@@ -35,28 +38,43 @@
|
||||
<string name="preparing_ota_first_boot">Preparando para el primer arranque</string>
|
||||
<string name="dialog_prepare_zip_message">Preparación preliminar de la actualización</string>
|
||||
<string name="dialog_battery_low_title">Batería baja</string>
|
||||
<string name="dialog_battery_low_message_pct">El nivel de la batería es demasiado bajo, se necesita al menos <xliff:g id="percent_discharging">%1$d</xliff:g>%% de batería para continuar, <xliff:g id="percent_charging">%2$d</xliff:g>%% si el dispositivo se está cargando.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Por favor, ejecuta los siguientes comandos y vuelve a intentar la actualización:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">No se puede instalar la actualización con OverlayFS montado</string>
|
||||
<string name="reboot">Reiniciar</string>
|
||||
<string name="menu_refresh">Actualizar</string>
|
||||
<string name="menu_preferences">Preferencias</string>
|
||||
<string name="menu_auto_updates_check">Comprobación de actualizaciones automática</string>
|
||||
<string name="menu_auto_delete_updates">Borrar actualizaciones luego de instalar</string>
|
||||
<string name="menu_auto_updates_check">Comprobación automática de actualizaciones</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Diaria</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Semanal</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Mensual</string>
|
||||
<string name="menu_auto_updates_check_interval_never">Nunca</string>
|
||||
<string name="menu_auto_delete_updates">Borrar las actualizaciones una vez instaladas</string>
|
||||
<string name="menu_delete_update">Borrar</string>
|
||||
<string name="menu_copy_url">Copiar URL</string>
|
||||
<string name="menu_export_update">Exportar actualización</string>
|
||||
<string name="menu_show_changelog">Mostrar registro de cambios</string>
|
||||
<string name="toast_forced_update_recovery">Es imposible desactivar en este dispositivo las actualizaciones del Modo de Recuperación («Recovery») de Lineage.</string>
|
||||
<string name="menu_ab_perf_mode">Priorizar el proceso de actualización</string>
|
||||
<string name="menu_update_recovery">Actualizar partición de recuperación (recovery)</string>
|
||||
<string name="toast_forced_update_recovery">Es imposible desactivar las actualizaciones del modo de recuperación («Recovery») de Lineage en este dispositivo.</string>
|
||||
<string name="snack_updates_found">Se encontraron nuevas actualizaciones</string>
|
||||
<string name="snack_no_updates_found">No se encontraron nuevas actualizaciones</string>
|
||||
<string name="snack_updates_check_failed">Error en la comprobación de actualizaciones. Por favor, verifique la conexión a Internet e inténtalo nuevamente.</string>
|
||||
<string name="snack_updates_check_failed">Error en la comprobación de actualizaciones. Por favor, verifica la conexión a Internet e inténtalo más tarde.</string>
|
||||
<string name="snack_download_failed">Descarga fallida. Compruebe la conexión a Internet e inténtelo nuevamente.</string>
|
||||
<string name="snack_download_verification_failed">La verificación de la actualización falló.</string>
|
||||
<string name="snack_download_verification_failed">Ha fallado la verificación de la actualización.</string>
|
||||
<string name="snack_download_verified">Descarga completada.</string>
|
||||
<string name="snack_update_not_installable">Esta actualización no puede instalarse encima de la versión actual.</string>
|
||||
<string name="snack_update_not_installable">Esta actualización no puede instalarse sobre la versión actual.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">Android <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">Última comprobación: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> de <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> de <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">Verificando actualización</string>
|
||||
<string name="list_no_updates">Sin nuevas actualizaciones disponibles. Para comprobar manualmente, pulsa el botón «Actualizar».</string>
|
||||
<string name="action_download">Descargar</string>
|
||||
@@ -69,6 +87,8 @@
|
||||
<string name="confirm_delete_dialog_title">Borrar archivo</string>
|
||||
<string name="confirm_delete_dialog_message">¿Borrar el archivo de actualización seleccionado?</string>
|
||||
<string name="apply_update_dialog_title">Aplicar actualización</string>
|
||||
<string name="apply_update_dialog_message">Estás a punto de instalar <xliff:g id="update_name">%1$s</xliff:g>.\n\nSi pulsas <xliff:g id="ok">%2$s</xliff:g>, el dispositivo se reiniciará en modo de recuperación para instalar la actualización.\n\nNota: esta característica requiere una partición de recuperación compatible o las actualizaciones tendrán que ser instaladas manualmente.</string>
|
||||
<string name="apply_update_dialog_message_ab">Actualizarás a <xliff:g id="filename">%1$s</xliff:g>.\n\nAl pulsar en <xliff:g id="ok">%2$s</xliff:g>, el dispositivo comenzará a instalar en segundo plano.\n\nUna vez terminado el proceso, se te pedirá que reinicies.</string>
|
||||
<string name="cancel_installation_dialog_message">¿Cancelar la instalación?</string>
|
||||
<string name="label_download_url">URL de descarga</string>
|
||||
<string name="toast_download_url_copied">URL copiada</string>
|
||||
@@ -76,19 +96,36 @@
|
||||
<string name="notification_export_success">Actualización exportada</string>
|
||||
<string name="notification_export_fail">Error de exportación</string>
|
||||
<string name="toast_already_exporting">Ya se está exportando una actualización</string>
|
||||
<string name="toast_export_started">Exportación iniciada</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">Falta 1 segundo</item>
|
||||
<item quantity="other">Faltan <xliff:g id="count">%d</xliff:g> segundos</item>
|
||||
<item quantity="one">Queda 1 segundo</item>
|
||||
<item quantity="other">Quedan <xliff:g id="count">%d</xliff:g> segundos</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">Falta 1 minuto</item>
|
||||
<item quantity="other">Faltan <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||
<item quantity="one">Queda 1 minuto</item>
|
||||
<item quantity="other">Quedan <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">Queda 1 hora</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas restantes</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Advertencia</string>
|
||||
<string name="update_over_metered_network_message">Estás a punto de descargar un paquete de actualización utilizando datos móviles, lo que probablemente va a causar un alto consumo de datos. ¿Deseas continuar?</string>
|
||||
<string name="checkbox_metered_network_warning">No mostrar de nuevo</string>
|
||||
<string name="menu_metered_network_warning">Aviso de consumo de datos</string>
|
||||
<string name="blocked_update_dialog_title">Actualización bloqueada</string>
|
||||
<string name="blocked_update_dialog_message">Esta actualización no puede instalarse usando la aplicación «Actualizador». Lea <xliff:g id="info_url">%1$s</xliff:g> para más información.</string>
|
||||
<string name="blocked_update_dialog_message">Esta actualización no puede instalarse usando la aplicación «Actualizador». Lee <xliff:g id="info_url">%1$s</xliff:g> para más información.</string>
|
||||
<string name="export_channel_title">Exportación finalizada</string>
|
||||
<string name="new_updates_channel_title">Nuevas actualizaciones</string>
|
||||
<string name="ongoing_channel_title">Descargas en curso</string>
|
||||
<string name="update_failed_channel_title">Se produjo un error en la actualización</string>
|
||||
<string name="info_dialog_title">¿Sabías que...</string>
|
||||
<string name="info_dialog_message">Las actualizaciones de LineageOS son paquetes de instalación completos, lo que significa que siempre puedes instalar la última actualización, ¡incluso si has saltado algunas de las intermedias!</string>
|
||||
<string name="info_dialog_ok">¡Gracias por la información!</string>
|
||||
<string name="local_update_import">Actualización local</string>
|
||||
<string name="local_update_import_progress">Importando actualización local\u2026</string>
|
||||
<string name="local_update_import_success">%1$s ha sido importado. ¿Deseas instalarlo?</string>
|
||||
<string name="local_update_import_failure">Error al importar actualización local</string>
|
||||
<string name="local_update_import_install">Instalar</string>
|
||||
<string name="local_update_name">Actualización local</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -18,6 +18,7 @@
|
||||
<string name="app_name">Uuendaja</string>
|
||||
<string name="display_name">Uuendaja</string>
|
||||
<string name="installation_suspended_notification">Installimine peatati</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="suspend_button">Peata</string>
|
||||
<string name="dialog_battery_low_title">Madal akutase</string>
|
||||
<string name="dialog_battery_low_message_pct">Akutase on liiga madal, jätkamiseks on vaja akut vähemalt <xliff:g id="percent_discharging">%1$d</xliff:g>%%, laadimise korral <xliff:g id="percent_charging">%2$d</xliff:g>%%.</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
131
app/src/main/res/values-fa/strings.xml
Normal file
131
app/src/main/res/values-fa/strings.xml
Normal file
@@ -0,0 +1,131 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2024 The LineageOS 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">بهروز کننده</string>
|
||||
<string name="display_name">بهروز کننده</string>
|
||||
<string name="verification_failed_notification">تایید با خطا مواجه شد</string>
|
||||
<string name="verifying_download_notification">در حال تایید بهروزرسانی</string>
|
||||
<string name="downloading_notification">در حال بارگیری</string>
|
||||
<string name="download_paused_notification">بارگیری متوقف شد</string>
|
||||
<string name="download_paused_error_notification">خطای بارگیری</string>
|
||||
<string name="download_completed_notification">بارگیری کامل شد</string>
|
||||
<string name="download_starting_notification">در حال آغاز بارگیری</string>
|
||||
<string name="update_failed_notification">بهروز رسانی شکست خورد</string>
|
||||
<string name="installation_suspended_notification">فرآیند نصب متوقف شد</string>
|
||||
<string name="new_updates_found_title">بهروز رسانی جدید</string>
|
||||
<string name="text_download_speed">%1$s، %2$s/ث</string>
|
||||
<string name="pause_button">مکث</string>
|
||||
<string name="resume_button">ادامه</string>
|
||||
<string name="suspend_button">معلق</string>
|
||||
<string name="installing_update">در حال نصب بسته به روز</string>
|
||||
<string name="installing_update_error">خطا در نصب</string>
|
||||
<string name="installing_update_finished">بهروزرسانی نصب شد</string>
|
||||
<string name="finalizing_package">در حال نهایی شدن نصب بسته</string>
|
||||
<string name="preparing_ota_first_boot">آمادهسازی برای روشن شدن اولیه</string>
|
||||
<string name="dialog_prepare_zip_message">آمادهسازی اولیه به روز رسانی</string>
|
||||
<string name="dialog_battery_low_title">باتری کم</string>
|
||||
<string name="dialog_battery_low_message_pct">سطح باتری بسیار کم است، شما نیاز به حداقل <xliff:g id="percent_discharging">%1$d</xliff:g>%% باتری برای ادامه دارید و <xliff:g id="percent_charging">%2$d</xliff:g>%% اگر در حال شارژ است.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ لطفاً دستورات زیر را اجرا کنید و دوباره بهروز رسانی را امتحان کنید:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">با نصب OverlayFS نمی توان بهروز رسانی را نصب کرد</string>
|
||||
<string name="reboot">راهاندازی مجدد</string>
|
||||
<string name="menu_refresh">تازه سازی</string>
|
||||
<string name="menu_preferences">ترجیحات</string>
|
||||
<string name="menu_auto_updates_check">بررسی خودکار نسخه های به روز</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">روزانه</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">هفتگی</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">ماهانه</string>
|
||||
<string name="menu_auto_updates_check_interval_never">هرگز</string>
|
||||
<string name="menu_auto_delete_updates">حذف نسخه به روز وقتی نصب شد</string>
|
||||
<string name="menu_delete_update">حذف</string>
|
||||
<string name="menu_copy_url">کپی آدرس</string>
|
||||
<string name="menu_export_update">صادر کردن نسخهی بروز</string>
|
||||
<string name="menu_show_changelog">نمایش تغییرات</string>
|
||||
<string name="menu_ab_perf_mode">به روز رسانی با اولویت بالا</string>
|
||||
<string name="menu_update_recovery">بهروز رسانی ریکاوری</string>
|
||||
<string name="toast_forced_update_recovery">غیرفعال کردن به روزرسانی های ریکاوری Lineage در این دستگاه غیرممکن است.</string>
|
||||
<string name="snack_updates_found">نسخه های جدید یافت شد</string>
|
||||
<string name="snack_no_updates_found">بهروزرسانی جدیدی یافت نشد</string>
|
||||
<string name="snack_updates_check_failed">بررسی نسخه به روز انجام نشد. اتصال اینترنت خود را بررسی و دوباره سعی کنید.</string>
|
||||
<string name="snack_download_failed">بارگیری انجام نشد. اتصال اینترنت خود را بررسی و دوباره تلاش کنید.</string>
|
||||
<string name="snack_download_verification_failed">تأیید بهروزرسانی با خطا روبهرو شد.</string>
|
||||
<string name="snack_download_verified">بارگیری کامل شد.</string>
|
||||
<string name="snack_update_not_installable">این نسخه جدید را نمی توان بر روی نسخه کنونی نصب کرد.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">اندروید <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">آخرین بررسی: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> از <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> از <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">در حال تایید بهروزرسانی</string>
|
||||
<string name="list_no_updates">هیچ بهروز رسانی جدیدی پیدا نشد. برای بررسی دستی بهروز رسانیها، از دکمهٔ تازهسازی استفاده کنید.</string>
|
||||
<string name="action_download">بارگیری</string>
|
||||
<string name="action_pause">مکث</string>
|
||||
<string name="action_resume">ادامه</string>
|
||||
<string name="action_install">نصب</string>
|
||||
<string name="action_info">اطلاعات</string>
|
||||
<string name="action_delete">حذف</string>
|
||||
<string name="action_cancel">لغو</string>
|
||||
<string name="confirm_delete_dialog_title">حذف فایل</string>
|
||||
<string name="confirm_delete_dialog_message">آیا فایل نسخه به روز حذف شود؟</string>
|
||||
<string name="apply_update_dialog_title">انجام بهروزرسانی</string>
|
||||
<string name="apply_update_dialog_message">شما در حال نصب <xliff:g id="update_name">%1$s</xliff:g> هستید.\n\nاگر <xliff:g id="ok">%2$s</xliff را فشار دهید: g>، دستگاه برای نصب بهروزرسانی، خود را در حالت بازیابی مجدد راهاندازی میکند.\n\nتوجه: این ویژگی به یک بازیابی سازگار نیاز دارد یا بهروزرسانیها باید به صورت دستی نصب شوند.</string>
|
||||
<string name="apply_update_dialog_message_ab">شما در حال نصب <xliff:g id="update_name">%1$s</xliff:g> هستید.\n\nاگر <xliff:g id="ok">%2$s</xliff را فشار دهید: g>، دستگاه شروع به نصب در پسزمینه میکند.\n\nپس از تکمیل، از شما خواسته میشود راهاندازی مجدد کنید.</string>
|
||||
<string name="cancel_installation_dialog_message">لغو نصب میکنید؟</string>
|
||||
<string name="label_download_url">نشانی بارگیری</string>
|
||||
<string name="toast_download_url_copied">نشانی رونوشت شد</string>
|
||||
<string name="dialog_export_title">صادر کردن نسخه بهروز</string>
|
||||
<string name="notification_export_success">نسخه بهروز صادر شد</string>
|
||||
<string name="notification_export_fail">خطا در صادر کردن</string>
|
||||
<string name="toast_already_exporting">قبلا بهروزرسانی صادر شده</string>
|
||||
<string name="toast_export_started">صادرات آغاز شد</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">۱ ثانیه مانده</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> ثانیه مانده</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">1 دقیقه مانده است</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> دقیقه مانده</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">۱ ساعت مانده</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> ساعت مانده</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">هشدار</string>
|
||||
<string name="update_over_metered_network_message">شما در حال بارگیری یک بسته بروز رسانی بر روی یک شبکه محدود شده یا سیم کارت هستید که احتمالا ممکن است باعث مصرف داده زیاد می شود. آیا می خواهید ادامه بدهید؟</string>
|
||||
<string name="checkbox_metered_network_warning">دوباره نشان داده نشود</string>
|
||||
<string name="menu_metered_network_warning">هشدار شبکه محدود شده</string>
|
||||
<string name="blocked_update_dialog_title">بروز رسانی مسدود شد</string>
|
||||
<string name="blocked_update_dialog_message">این بهروزرسانی با استفاده از برنامه بروز کننده قابل نصب نیست. لطفاً برای اطلاعات بیشتر <xliff:g id="info_url">%1$s</xliff:g> را بخوانید.</string>
|
||||
<string name="export_channel_title">تکمیل صادرات</string>
|
||||
<string name="new_updates_channel_title">بهروزرسانیهای تازه</string>
|
||||
<string name="ongoing_channel_title">بارگیری های جاری</string>
|
||||
<string name="update_failed_channel_title">بهروز رسانی شکست خورد</string>
|
||||
<string name="info_dialog_title">آیا میدانستید؟</string>
|
||||
<string name="info_dialog_message">به روز رسانی های LineageOS بسته های نصب کامل هستند. این بدان معناست که همیشه میتوانید فقط آخرین بهروزرسانی را نصب کنید، حتی اگر برخی از آنها را در این بین رد کرده باشید!</string>
|
||||
<string name="info_dialog_ok">از اطلاعات شما سپاسگذاریم!</string>
|
||||
<string name="local_update_import">بهروزرسانی داخلی</string>
|
||||
<string name="local_update_import_progress">وارد کردن بهروزرسانی محلی\u2026</string>
|
||||
<string name="local_update_import_success">%1$s وارد شد. آیا مایل به نصب هستید؟</string>
|
||||
<string name="local_update_import_failure">بهروزرسانی داخلی با شکست مواجه شد</string>
|
||||
<string name="local_update_import_install">نصب</string>
|
||||
<string name="local_update_name">بهروزرسانی داخلی</string>
|
||||
</resources>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Préparation de la mise à jour préliminaire</string>
|
||||
<string name="dialog_battery_low_title">Batterie faible</string>
|
||||
<string name="dialog_battery_low_message_pct">Le niveau de batterie est trop faible. Pour continuer, vous devez avoir au moins <xliff:g id="percent_discharging">%1$d</xliff:g> %% de batterie restante, ou <xliff:g id="percent_charging">%2$d</xliff:g> %% si l\'appareil est en charge.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Merci d\'exécuter les commandes suivantes et de retenter la mise à jour :\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Impossible d\'installer la mise à jour avec OverlayFS monté</string>
|
||||
<string name="reboot">Redémarrer</string>
|
||||
<string name="menu_refresh">Actualiser</string>
|
||||
<string name="menu_preferences">Préférences</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preparazion dal inzornament preliminâr</string>
|
||||
<string name="dialog_battery_low_title">Batarie basse</string>
|
||||
<string name="dialog_battery_low_message_pct">Il nivel de batarie al è masse bas, tu scugnis vê almancul il <xliff:g id="percent_discharging">%1$d</xliff:g>%% par continuâ, <xliff:g id="percent_charging">%2$d</xliff:g>%% se e je in cjame.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Eseguìs chescj comants e torne prove l\'inzornament:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Impussibil instalâ l\'inzornament cun OverlayFS montât</string>
|
||||
<string name="reboot">Torne invie</string>
|
||||
<string name="menu_refresh">Torne cjame</string>
|
||||
<string name="menu_preferences">Preferencis</string>
|
||||
@@ -67,7 +73,7 @@
|
||||
<string name="header_last_updates_check">Ultime verifiche: <xliff:g id="date" example="2 di Zenâr dal 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="Lui 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> di <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> • <xliff:g id="percentage" example="56">%3$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> di <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> di <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">Verifiche inzornament</string>
|
||||
<string name="list_no_updates">Nissun gnûf inzornament cjatât. Par controlâ a man i gnûfs inzornaments, tocje il boton Inzorne.</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
140
app/src/main/res/values-ga-rIE/strings.xml
Normal file
140
app/src/main/res/values-ga-rIE/strings.xml
Normal file
@@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2024 The LineageOS 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Nuashonróir</string>
|
||||
<string name="display_name">Nuashonróir</string>
|
||||
<string name="verification_failed_notification">Theip ar an bhfíorú</string>
|
||||
<string name="verifying_download_notification">Nuashonrú á fhíorú</string>
|
||||
<string name="downloading_notification">Ag íosluchtú</string>
|
||||
<string name="download_paused_notification">Íoslódáil ar sos</string>
|
||||
<string name="download_paused_error_notification">Earráid íoslódáil</string>
|
||||
<string name="download_completed_notification">Íoslódáil críochnaithe</string>
|
||||
<string name="download_starting_notification">Ag tosú íoslódáil</string>
|
||||
<string name="update_failed_notification">Theip ar an nuashonrú</string>
|
||||
<string name="installation_suspended_notification">Suiteáil ar fionraí</string>
|
||||
<string name="new_updates_found_title">Nuashonruithe nua</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Sos</string>
|
||||
<string name="resume_button">Tosaigh arís</string>
|
||||
<string name="suspend_button">Fionraí</string>
|
||||
<string name="installing_update">Ag suiteáil pacáiste nuashonraithe</string>
|
||||
<string name="installing_update_error">Earráid a shuiteáil</string>
|
||||
<string name="installing_update_finished">Nuashonrú suiteáilte</string>
|
||||
<string name="finalizing_package">Ag suiteáil pacáiste a thabhairt chun críche</string>
|
||||
<string name="preparing_ota_first_boot">Ag ullmhú don chéad tosaithe</string>
|
||||
<string name="dialog_prepare_zip_message">Réamh-ullmhúchán nuashonraithe</string>
|
||||
<string name="dialog_battery_low_title">Ceallraí íseal</string>
|
||||
<string name="dialog_battery_low_message_pct">Tá leibhéal an cheallraí ró-íseal, ní mór duit ar a laghad <xliff:g id="percent_discharging">%1$d</xliff:g> %% den cheallraí chun leanúint ar aghaidh, <xliff:g id="percent_charging">%2$d</xliff:g>%% má tá tú ag muirearú.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[Rith na horduithe seo a leanas agus bain triail eile as an nuashonrú:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Ní féidir an nuashonrú a shuiteáil le OverlayFS suite</string>
|
||||
<string name="reboot">Atosaigh</string>
|
||||
<string name="menu_refresh">Athnuaigh</string>
|
||||
<string name="menu_preferences">Roghanna</string>
|
||||
<string name="menu_auto_updates_check">Seiceáil nuashonruithe uathoibríoch</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Uair sa lá</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Uair sa tseachtain</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Uair sa mhí</string>
|
||||
<string name="menu_auto_updates_check_interval_never">Riamh</string>
|
||||
<string name="menu_auto_delete_updates">Scrios nuashonruithe nuair a shuiteáiltear iad</string>
|
||||
<string name="menu_delete_update">Scrios</string>
|
||||
<string name="menu_copy_url">Cóipeáil URL</string>
|
||||
<string name="menu_export_update">Easpórtáil nuashonrú</string>
|
||||
<string name="menu_show_changelog">Taispeáin loga na n-athruithe</string>
|
||||
<string name="menu_ab_perf_mode">Tabhair tosaíocht don phróiseas nuashonraithe</string>
|
||||
<string name="menu_update_recovery">Nuashonraigh aisghabháil</string>
|
||||
<string name="toast_forced_update_recovery">Tá sé dodhéanta nuashonruithe Lineage Recovery a dhíchumasú ar an ngléas seo.</string>
|
||||
<string name="snack_updates_found">Nuashonruithe nua aimsithe</string>
|
||||
<string name="snack_no_updates_found">Níor aimsíodh aon nuashonruithe nua</string>
|
||||
<string name="snack_updates_check_failed">Theip ar an tseiceáil nuashonraithe. Seiceáil do cheangal idirlín agus bain triail eile as ar ball.</string>
|
||||
<string name="snack_download_failed">Theip ar an íoslódáil. Seiceáil do cheangal idirlín agus bain triail eile as ar ball.</string>
|
||||
<string name="snack_download_verification_failed">Theip ar fhíorú an nuashonraithe.</string>
|
||||
<string name="snack_download_verified">Íoslódáil críochnaithe.</string>
|
||||
<string name="snack_update_not_installable">Ní féidir an nuashonrú seo a shuiteáil ar bharr an leagan reatha.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">Android <xliff:g id="version" sampla="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">Seiceáladh seo caite: <xliff:g id="date" example="1 Eanáir 1970">%1$s</xliff:g> (<xliff:g id="time" sampla="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> of <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> of <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">Nuashonrú á fhíorú</string>
|
||||
<string name="list_no_updates">Níor aimsíodh aon nuashonruithe nua. Chun seiceáil de láimh le haghaidh nuashonruithe nua, úsáid an cnaipe Athnuaigh.</string>
|
||||
<string name="action_download">Íosluchtaigh</string>
|
||||
<string name="action_pause">Sos</string>
|
||||
<string name="action_resume">Tosaigh arís</string>
|
||||
<string name="action_install">Suiteáil</string>
|
||||
<string name="action_info">Eolas</string>
|
||||
<string name="action_delete">Scrios</string>
|
||||
<string name="action_cancel">Cealaigh</string>
|
||||
<string name="confirm_delete_dialog_title">Scrios an comhad</string>
|
||||
<string name="confirm_delete_dialog_message">Scrios comhad uasdátaigh ?</string>
|
||||
<string name="apply_update_dialog_title">Cuir nuashonrú</string>
|
||||
<string name="apply_update_dialog_message">Tá tú ar tí <xliff:g id="update_name">%1$s</xliff:g> a shuiteáil.\n\nMá bhrúíonn tú <xliff:g id="ok">%2$s</xliff: g>, atosóidh an gléas é féin sa mhodh athshlánaithe chun an nuashonrú a shuiteáil.\n\nNóta: Teastaíonn Aisghabháil comhoiriúnach don ghné seo nó beidh gá le nuashonruithe a shuiteáil de láimh.</string>
|
||||
<string name="apply_update_dialog_message_ab">Tá tú ar tí <xliff:g id="update_name">%1$s</xliff:g> a shuiteáil.\n\nMá bhrúíonn tú <xliff:g id="ok">%2$s</xliff: g>, cuirfear tús leis an ngléas a shuiteáil sa chúlra.\n\nNuair a bheidh sé críochnaithe, tabharfar leid duit é a atosú.</string>
|
||||
<string name="cancel_installation_dialog_message">Cealaigh an tsuiteáil?</string>
|
||||
<string name="label_download_url">Íoslódáil URL</string>
|
||||
<string name="toast_download_url_copied">URL Chóipeáil</string>
|
||||
<string name="dialog_export_title">Nuashonrú easpórtála</string>
|
||||
<string name="notification_export_success">Easpórtáil an nuashonrú</string>
|
||||
<string name="notification_export_fail">Earráid easpórtála</string>
|
||||
<string name="toast_already_exporting">Ag easpórtáil nuashonrú cheana féin</string>
|
||||
<string name="toast_export_started">Thosaigh easpórtáil</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">1 soicind fágtha</item>
|
||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> soicind fágtha</item>
|
||||
<item quantity="few"><xliff:g id="count">%d</xliff:g> soicind fágtha</item>
|
||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> soicind fágtha</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> soicind fágtha</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">1 nóiméad fágtha</item>
|
||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> nóiméad fágtha</item>
|
||||
<item quantity="few"><xliff:g id="count">%d</xliff:g> nóiméad fágtha</item>
|
||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> nóiméad fágtha</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> nóiméad fágtha</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">1 uair fágtha</item>
|
||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> uair fágtha</item>
|
||||
<item quantity="few"><xliff:g id="count">%d</xliff:g> uair fágtha</item>
|
||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> uair fágtha</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> uair fágtha</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Rabhadh</string>
|
||||
<string name="update_over_metered_network_message">Tá tú ar tí pacáiste nuashonraithe a íoslódáil thar líonra méadraithe agus is dócha go mbeidh sé ina chúis le húsáid ard sonraí. Ar mhaith leat dul ar aghaidh?</string>
|
||||
<string name="checkbox_metered_network_warning">Ná taispeáin arís</string>
|
||||
<string name="menu_metered_network_warning">Rabhadh líonra méadraithe</string>
|
||||
<string name="blocked_update_dialog_title">Nuashonrú bactha</string>
|
||||
<string name="blocked_update_dialog_message">Ní féidir an nuashonrú seo a shuiteáil leis an aip nuashonraithe. Léigh <xliff:g id="info_url">%1$s</xliff:g> le haghaidh tuilleadh eolais.</string>
|
||||
<string name="export_channel_title">Críochnú onnmhairithe</string>
|
||||
<string name="new_updates_channel_title">Nuashonruithe nua</string>
|
||||
<string name="ongoing_channel_title">Íoslódálacha leanúnacha</string>
|
||||
<string name="update_failed_channel_title">Theip ar an nuashonrú</string>
|
||||
<string name="info_dialog_title">An raibh a fhios agat?</string>
|
||||
<string name="info_dialog_message">Is pacáistí suiteála iomlána iad nuashonruithe LineageOS. Ciallaíonn sé sin nach féidir leat ach an nuashonrú is déanaí a shuiteáil i gcónaí, fiú mura ndearna tú roinnt eatarthu!</string>
|
||||
<string name="info_dialog_ok">Go raibh maith agat as an eolas!</string>
|
||||
<string name="local_update_import">Nuashonrú áitiúil</string>
|
||||
<string name="local_update_import_progress">Nuashonrú logánta á iompórtáil\u2026</string>
|
||||
<string name="local_update_import_success">Iompórtáladh %1$s. Ar mhaith leat é a shuiteáil?</string>
|
||||
<string name="local_update_import_failure">Theip ar iompórtáil an nuashonrú áitiúil</string>
|
||||
<string name="local_update_import_install">Suiteáil</string>
|
||||
<string name="local_update_name">Nuashonrú áitiúil</string>
|
||||
</resources>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -40,6 +40,12 @@
|
||||
<string name="dialog_battery_low_title">Alacsony akkumulátorszint</string>
|
||||
<string name="dialog_battery_low_message_pct">Az akkumulátortöltöttség túl alacsony, szüksége van legalább <xliff:g id="percent_discharging">%1$d</xliff:g>%% töltöttségre a folytatáshoz,
|
||||
illetve, ha éppen tölt, akkor még <xliff:g id="percent_charging">%2$d</xliff:g>%% töltés szükséges.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Futtassa az alábbi parancsokat, majd próbálja újra a frissítést:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Nem telepíthet frissítést a felcsatlakoztatott OverlayFS miatt</string>
|
||||
<string name="reboot">Újraindítás</string>
|
||||
<string name="menu_refresh">Frissítés</string>
|
||||
<string name="menu_preferences">Testreszabás</string>
|
||||
@@ -105,7 +111,9 @@ illetve, ha éppen tölt, akkor még <xliff:g id="percent_charging">%2$d</xliff:
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> óra van hátra</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Figyelmeztetés</string>
|
||||
<string name="update_over_metered_network_message">Úgy tűnik mobiladat-forgalmat használva kíván letölteni egy nagyméretű frissítési csomagot, ami nagy költséggel járhat. Biztos benne hogy engedélyezi ezt?</string>
|
||||
<string name="checkbox_metered_network_warning">Ne jelenjen meg többet</string>
|
||||
<string name="menu_metered_network_warning">Mobiladat-költség figyelmeztetés</string>
|
||||
<string name="blocked_update_dialog_title">A frissítés blokkolva</string>
|
||||
<string name="blocked_update_dialog_message">Ez a frissítés nem telepíthető a Frissítés alkalmazással. További információért olvassa el a következőt: <xliff:g id="info_url">%1$s</xliff:g></string>
|
||||
<string name="export_channel_title">Exportálás-véglegesítés</string>
|
||||
@@ -115,4 +123,10 @@ illetve, ha éppen tölt, akkor még <xliff:g id="percent_charging">%2$d</xliff:
|
||||
<string name="info_dialog_title">Tudta Ön?</string>
|
||||
<string name="info_dialog_message">A LineageOS frissítései teljes telepítőcsomagok. Ez azt jelenti, hogy mindig elég a legfrissebb csomagot telepítenie, nem baj ha korábban kihagyott párat!</string>
|
||||
<string name="info_dialog_ok">Köszönet az információért!</string>
|
||||
<string name="local_update_import">Helyi frissítés</string>
|
||||
<string name="local_update_import_progress">Helyi frissítés importálása\u2026</string>
|
||||
<string name="local_update_import_success">%1$s importálva lett. Kívánja telepíteni?</string>
|
||||
<string name="local_update_import_failure">Nem sikerült importálni a helyi frissítést</string>
|
||||
<string name="local_update_import_install">Telepítés</string>
|
||||
<string name="local_update_name">Helyi frissítés</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -101,7 +101,9 @@
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> jam tersisa</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Peringatan</string>
|
||||
<string name="update_over_metered_network_message">Anda akan mengunduh paket pembaruan melalui jaringan terukur yang kemungkinan besar akan menyebabkan penggunaan data yang tinggi. Apakah Anda ingin melanjutkan?</string>
|
||||
<string name="checkbox_metered_network_warning">Jangan tampilkan lagi</string>
|
||||
<string name="menu_metered_network_warning">Peringatan jaringan terukur</string>
|
||||
<string name="blocked_update_dialog_title">Pembaruan diblokir</string>
|
||||
<string name="blocked_update_dialog_message">Pembaruan ini tidak dapat dipasang menggunakan aplikasi pembaruan. Baca <xliff:g id="info_url">%1$s</xliff:g> untuk informasi lebih lanjut.</string>
|
||||
<string name="export_channel_title">Penyelesaian ekspor</string>
|
||||
@@ -111,4 +113,10 @@
|
||||
<string name="info_dialog_title">Tahukah Anda?</string>
|
||||
<string name="info_dialog_message">Pembaruan LineageOS adalah paket instalasi lengkap. Itu berarti Anda selalu dapat menginstal hanya pembaruan terbaru, bahkan jika Anda melewatkan beberapa di antaranya!</string>
|
||||
<string name="info_dialog_ok">Terima kasih atas infonya!</string>
|
||||
<string name="local_update_import">Pembaruan lokal</string>
|
||||
<string name="local_update_import_progress">Mengimpor pembaruan lokal\u2026</string>
|
||||
<string name="local_update_import_success">%1$s telah diimpor. Apakah Anda ingin menginstalnya?</string>
|
||||
<string name="local_update_import_failure">Gagal mengimpor pembaruan lokal</string>
|
||||
<string name="local_update_import_install">Instal</string>
|
||||
<string name="local_update_name">Pembaruan lokal</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -28,7 +28,6 @@
|
||||
<string name="installation_suspended_notification">Uppsetning sett í bið</string>
|
||||
<string name="new_updates_found_title">Nýjar uppfærslur</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Í bið</string>
|
||||
<string name="resume_button">Halda áfram</string>
|
||||
<string name="suspend_button">Setja í bið</string>
|
||||
<string name="installing_update">Set inn uppfærslupakka</string>
|
||||
@@ -73,7 +72,6 @@
|
||||
<string name="list_verifying_update">Yfirfer uppfærslu</string>
|
||||
<string name="list_no_updates">Engar nýjar uppfærslur fundust. Til að athuga handvirkt með nýjar uppfærslur, notaðu Endurlesa-hnappinn.</string>
|
||||
<string name="action_download">Sækja</string>
|
||||
<string name="action_pause">Í bið</string>
|
||||
<string name="action_resume">Halda áfram</string>
|
||||
<string name="action_install">Setja upp</string>
|
||||
<string name="action_info">Upplýsingar</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preparazione preliminare dell\'aggiornamento</string>
|
||||
<string name="dialog_battery_low_title">Batteria scarica</string>
|
||||
<string name="dialog_battery_low_message_pct">Il livello della batteria è troppo basso, è necessario almeno il <xliff:g id="percent_discharging">%1$d</xliff:g>%% di batteria per continuare, oppure il <xliff:g id="percent_charging">%2$d</xliff:g>%% se il dispositivo è in carica.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Esegui i seguenti comandi e ritenta l\'aggiornamento:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Impossibile installare l\'aggiornamento con OverlayFS montato</string>
|
||||
<string name="reboot">Riavvia</string>
|
||||
<string name="menu_refresh">Ricarica</string>
|
||||
<string name="menu_preferences">Preferenze</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">予備のアップデート準備</string>
|
||||
<string name="dialog_battery_low_title">バッテリー残量少</string>
|
||||
<string name="dialog_battery_low_message_pct">バッテリー残量が不足しています。続行するには<xliff:g id="percent_discharging">%1$d</xliff:g>%%、充電時は<xliff:g id="percent_charging">%2$d</xliff:g>%%のバッテリー残量が必要です。</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ 以下のコマンドを実行し、アップデートを再試行してください:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS マウント済みの場合アップデートはインストールできません</string>
|
||||
<string name="reboot">再起動</string>
|
||||
<string name="menu_refresh">再読み込み</string>
|
||||
<string name="menu_preferences">設定</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -38,7 +38,7 @@
|
||||
<string name="preparing_ota_first_boot">მზადდება პირველი ჩატვირთვისთვის</string>
|
||||
<string name="dialog_prepare_zip_message">წინასწარი მომზადება განახლებისთვის</string>
|
||||
<string name="dialog_battery_low_title">ბატარეა ჯდება</string>
|
||||
<string name="dialog_battery_low_message_pct">ელემენტის მუხტი მეტად მცირეა, გასაგრძელებლად საჭიროა დამუხტული იყოს სულ მცირე <xliff:g id="percent_discharging">%1$d</xliff:g>%% ან <xliff:g id="percent_charging">%2$d</xliff:g>%% თუ იმუხტება.</string>
|
||||
<string name="dialog_battery_low_message_pct">მუხტის დონე მეტად მცირეა, საჭიროა დამუხტული იყოს არანაკლებ <xliff:g id="percent_discharging">%1$d</xliff:g>%% ან <xliff:g id="percent_charging">%2$d</xliff:g>%% შეერთდეს სატენზე.</string>
|
||||
<string name="reboot">გადატვირთვა</string>
|
||||
<string name="menu_refresh">განახლება</string>
|
||||
<string name="menu_preferences">პარამეტრები</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">예비 업데이트 준비</string>
|
||||
<string name="dialog_battery_low_title">배터리 부족</string>
|
||||
<string name="dialog_battery_low_message_pct">배터리 수준이 너무 낮습니다. 계속하려면 방전 중일 경우 <xliff:g id="percent_discharging">%1$d</xliff:g>%% 이상, 충전 중일 경우 <xliff:g id="percent_charging">%2$d</xliff:g>%% 이상의 배터리 수준이 필요합니다.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ 다음 명령어를 실행한 뒤 업데이트를 다시 시도해 주세요:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS 마운트 상태에서는 업데이트를 설치할 수 없음</string>
|
||||
<string name="reboot">다시 시작</string>
|
||||
<string name="menu_refresh">새로고침</string>
|
||||
<string name="menu_preferences">설정</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,11 @@
|
||||
<string name="dialog_prepare_zip_message">Update voorbereiden</string>
|
||||
<string name="dialog_battery_low_title">Batterij bijna leeg</string>
|
||||
<string name="dialog_battery_low_message_pct">Uw batterijniveau is te laag, u moet op zijn minst <xliff:g id="percent_discharging">%1$d</xliff:g>%% batterijcapaciteit hebben om door te gaan of <xliff:g id="percent_charging">%2$d</xliff:g>%% tijdens het opladen.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[Voer deze opdrachten uit en probeer opnieuw te updaten:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Kan update niet installeren met OverlayFS gekoppeld</string>
|
||||
<string name="reboot">Herstarten</string>
|
||||
<string name="menu_refresh">Vernieuwen</string>
|
||||
<string name="menu_preferences">Instellingen</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Przygotowanie wstępne aktualizacji</string>
|
||||
<string name="dialog_battery_low_title">Niskim poziom baterii</string>
|
||||
<string name="dialog_battery_low_message_pct">Poziom naładowania baterii jest zbyt niski, musisz mieć co najmniej <xliff:g id="percent_discharging">%1$d</xliff:g>%% baterii lub <xliff:g id="percent_charging">%2$d</xliff:g>%% w trakcie ładowania.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Uruchom następujące polecenia i dokonaj ponownej aktualizacji:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Nie można zainstalować aktualizacji z zamontowanym \"OverlayFS\"</string>
|
||||
<string name="reboot">Uruchom ponownie</string>
|
||||
<string name="menu_refresh">Odśwież</string>
|
||||
<string name="menu_preferences">Ustawienia</string>
|
||||
@@ -74,7 +80,7 @@
|
||||
<string name="action_download">Pobierz</string>
|
||||
<string name="action_pause">Wstrzymaj</string>
|
||||
<string name="action_resume">Wznów</string>
|
||||
<string name="action_install">Instaluj</string>
|
||||
<string name="action_install">Zainstaluj</string>
|
||||
<string name="action_info">Informacje</string>
|
||||
<string name="action_delete">Usuń</string>
|
||||
<string name="action_cancel">Anuluj</string>
|
||||
@@ -114,7 +120,7 @@
|
||||
<string name="checkbox_metered_network_warning">Nie pokazuj ponownie</string>
|
||||
<string name="menu_metered_network_warning">Ostrzeżenie o sieci z pomiarem</string>
|
||||
<string name="blocked_update_dialog_title">Aktualizacja zablokowana</string>
|
||||
<string name="blocked_update_dialog_message">Tej aktualizacji nie można zainstalować przy użyciu aplikacji aktualizacji. Zapoznaj się z <xliff:g id="info_url">%1$s </xliff:g> aby uzyskać więcej informacji.</string>
|
||||
<string name="blocked_update_dialog_message">Tej aktualizacji nie można zainstalować przy użyciu aplikacji \"Aktualizator\". Zapoznaj się z <xliff:g id="info_url">%1$s </xliff:g>, aby uzyskać więcej informacji.</string>
|
||||
<string name="export_channel_title">Eksport zakończony</string>
|
||||
<string name="new_updates_channel_title">Nowe aktualizacje</string>
|
||||
<string name="ongoing_channel_title">Trwające pobieranie</string>
|
||||
@@ -126,6 +132,6 @@
|
||||
<string name="local_update_import_progress">Importowanie aktualizacji lokalnej\u2026</string>
|
||||
<string name="local_update_import_success">Zaimportowano %1$s. Czy chcesz to zainstalować?</string>
|
||||
<string name="local_update_import_failure">Nie udało się zaimportować aktualizacji lokalnej</string>
|
||||
<string name="local_update_import_install">Instaluj</string>
|
||||
<string name="local_update_import_install">Zainstaluj</string>
|
||||
<string name="local_update_name">Aktualizacja lokalna</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -19,17 +19,17 @@
|
||||
<string name="display_name">Atualizador</string>
|
||||
<string name="verification_failed_notification">Falha na verificação</string>
|
||||
<string name="verifying_download_notification">Verificando atualização</string>
|
||||
<string name="downloading_notification">Baixando</string>
|
||||
<string name="downloading_notification">Download</string>
|
||||
<string name="download_paused_notification">Download pausado</string>
|
||||
<string name="download_paused_error_notification">Erro ao baixar</string>
|
||||
<string name="download_completed_notification">Download concluído</string>
|
||||
<string name="download_starting_notification">Iniciando download</string>
|
||||
<string name="update_failed_notification">Falha ao atualizar</string>
|
||||
<string name="update_failed_notification">Falha na atualização</string>
|
||||
<string name="installation_suspended_notification">Instalação suspensa</string>
|
||||
<string name="new_updates_found_title">Novas atualizações</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Pausar</string>
|
||||
<string name="resume_button">Continuar</string>
|
||||
<string name="resume_button">Retomar</string>
|
||||
<string name="suspend_button">Suspender</string>
|
||||
<string name="installing_update">Instalando o pacote de atualização</string>
|
||||
<string name="installing_update_error">Erro de instalação</string>
|
||||
@@ -38,52 +38,65 @@
|
||||
<string name="preparing_ota_first_boot">Preparando-se para a primeira inicialização</string>
|
||||
<string name="dialog_prepare_zip_message">Preparação preliminar de atualização</string>
|
||||
<string name="dialog_battery_low_title">Bateria fraca</string>
|
||||
<string name="dialog_battery_low_message_pct">O nível da bateria está muito baixo, precisando de, pelo menos, <xliff:g id="percent_discharging">%1$d</xliff:g>%% de bateria para continuar, ou <xliff:g id="percent_charging">%2$d</xliff:g>%% se estiver carregando.</string>
|
||||
<string name="dialog_battery_low_message_pct">O nível da bateria está muito baixo, é preciso de pelo menos <xliff:g id="percent_discharging">%1$d</xliff:g>%% de bateria para continuar, ou <xliff:g id="percent_charging">%2$d</xliff:g>%% se estiver carregando.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Execute os seguintes comandos e tente atualizar novamente:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Não é possível instalar a atualização com o OverlayFS montado</string>
|
||||
<string name="reboot">Reiniciar</string>
|
||||
<string name="menu_refresh">Atualizar</string>
|
||||
<string name="menu_preferences">Preferências</string>
|
||||
<string name="menu_auto_updates_check">Autoverificar por atualizações</string>
|
||||
<string name="menu_auto_updates_check">Automaticamente buscar atualizações</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">Diariamente</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">Semanalmente</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">Mensalmente</string>
|
||||
<string name="menu_auto_updates_check_interval_never">Nunca</string>
|
||||
<string name="menu_auto_delete_updates">Excluir pacotes instalados</string>
|
||||
<string name="menu_delete_update">Excluir</string>
|
||||
<string name="menu_auto_delete_updates">Apagar pacotes já instalados</string>
|
||||
<string name="menu_delete_update">Apagar</string>
|
||||
<string name="menu_copy_url">Copiar URL</string>
|
||||
<string name="menu_export_update">Exportar atualização</string>
|
||||
<string name="menu_show_changelog">Mostrar alterações</string>
|
||||
<string name="menu_ab_perf_mode">Priorizar o processo de atualização</string>
|
||||
<string name="snack_updates_found">Nova atualização disponível</string>
|
||||
<string name="menu_update_recovery">Atualizar recuperação</string>
|
||||
<string name="toast_forced_update_recovery">Não é possível desativar as atualizações do Lineage Recovery neste dispositivo.</string>
|
||||
<string name="snack_updates_found">Novas atualizações disponíveis</string>
|
||||
<string name="snack_no_updates_found">Não foram encontradas novas atualizações</string>
|
||||
<string name="snack_updates_check_failed">Falha ao procurar por atualizações. Verifique sua conexão com a internet e tente novamente.</string>
|
||||
<string name="snack_updates_check_failed">Falha ao buscar atualizações. Verifique sua conexão com a internet e tente novamente.</string>
|
||||
<string name="snack_download_failed">Falha ao baixar a atualização. Verifique sua conexão com a internet e tente novamente.</string>
|
||||
<string name="snack_download_verification_failed">Falha na verificação da atualização.</string>
|
||||
<string name="snack_download_verified">Download concluído.</string>
|
||||
<string name="snack_update_not_installable">Esta atualização não pode ser instalada por cima da versão atual.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">Android <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">Última verificação: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> às <xliff:g id="time" example="01:23">%2$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">Última busca: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> às <xliff:g id="time" example="01:23">%2$s</xliff:g></string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> de <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> de <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">Verificando atualização</string>
|
||||
<string name="list_no_updates">Não foram encontradas novas atualizações. Use o botão Atualizar para buscar por novas atualizações manualmente.</string>
|
||||
<string name="action_download">Baixar</string>
|
||||
<string name="action_pause">Pausar</string>
|
||||
<string name="action_resume">Continuar</string>
|
||||
<string name="action_resume">Retomar</string>
|
||||
<string name="action_install">Instalar</string>
|
||||
<string name="action_info">Informações</string>
|
||||
<string name="action_delete">Excluir</string>
|
||||
<string name="action_delete">Apagar</string>
|
||||
<string name="action_cancel">Cancelar</string>
|
||||
<string name="confirm_delete_dialog_title">Excluir arquivo</string>
|
||||
<string name="confirm_delete_dialog_message">Excluir o arquivo de atualização selecionado?</string>
|
||||
<string name="confirm_delete_dialog_title">Apagar arquivo</string>
|
||||
<string name="confirm_delete_dialog_message">Apagar o arquivo de atualização selecionado?</string>
|
||||
<string name="apply_update_dialog_title">Instalar atualização</string>
|
||||
<string name="apply_update_dialog_message">Você está prestes a instalar <xliff:g id="update_name">%1$s</xliff:g>.\n\nSe você pressionar <xliff:g id="ok">%2$s</xliff:g>, o dispositivo será reiniciado no modo de recuperação para instalar a atualização.\n\nObservação: Esse recurso requer uma recuperação compatível ou as atualizações precisarão ser instaladas manualmente.</string>
|
||||
<string name="apply_update_dialog_message_ab">Você está prestes a instalar <xliff:g id="update_name">%1$s</xliff:g>.\n\nSe você pressionar <xliff:g id="ok">%2$s</xliff:g>, a instalação do dispositivo começará em segundo plano.\n\nDepois de concluído, você será solicitado a reiniciar o dispositivo.</string>
|
||||
<string name="cancel_installation_dialog_message">Deseja cancelar a instalação?</string>
|
||||
<string name="label_download_url">URL de Download</string>
|
||||
<string name="toast_download_url_copied">URL copiado</string>
|
||||
<string name="label_download_url">URL de download </string>
|
||||
<string name="toast_download_url_copied">URL copiada</string>
|
||||
<string name="dialog_export_title">Exportando atualização</string>
|
||||
<string name="notification_export_success">Atualização exportada</string>
|
||||
<string name="notification_export_fail">Falha ao exportar</string>
|
||||
<string name="toast_already_exporting">Uma atualização já está sendo exportada</string>
|
||||
<string name="toast_export_started">Exportação iniciada</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">1 segundo restante</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> segundos restantes</item>
|
||||
@@ -96,15 +109,23 @@
|
||||
<item quantity="one">1 hora restante</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas restantes</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Aviso</string>
|
||||
<string name="update_over_metered_network_title">Alerta</string>
|
||||
<string name="update_over_metered_network_message">Você está prestes a baixar um pacote de atualização em uma rede medida, o que provavelmente causará um alto consumo de dados. Deseja continuar?</string>
|
||||
<string name="checkbox_metered_network_warning">Não mostrar novamente</string>
|
||||
<string name="menu_metered_network_warning">Aviso de rede limitada</string>
|
||||
<string name="menu_metered_network_warning">Alerta de rede limitada</string>
|
||||
<string name="blocked_update_dialog_title">Atualização bloqueada</string>
|
||||
<string name="blocked_update_dialog_message">Esta atualização não pode ser instalada pelo Atualizador. Leia <xliff:g id="info_url">%1$s</xliff:g> para obter mais informações.</string>
|
||||
<string name="blocked_update_dialog_message">Esta atualização não pode ser instalada pelo app Atualizador. Leia <xliff:g id="info_url">%1$s</xliff:g> para mais informações.</string>
|
||||
<string name="export_channel_title">Exportação concluída</string>
|
||||
<string name="new_updates_channel_title">Novas atualizações</string>
|
||||
<string name="ongoing_channel_title">Downloads em andamento</string>
|
||||
<string name="update_failed_channel_title">Falha ao atualizar</string>
|
||||
<string name="info_dialog_title">Você sabia?</string>
|
||||
<string name="info_dialog_ok">Agradecemos o seu comentário!</string>
|
||||
<string name="info_dialog_message">As atualizações do LineageOS são pacotes de instalação completos. Isso significa que você sempre pode instalar apenas a atualização mais recente, mesmo que você tenha ignorado versões anteriores!</string>
|
||||
<string name="info_dialog_ok">Obrigado pela dica!</string>
|
||||
<string name="local_update_import">Atualização local</string>
|
||||
<string name="local_update_import_progress">Importando atualização local\u2026</string>
|
||||
<string name="local_update_import_success">%1$s foi importado. Você quer instalá-lo?</string>
|
||||
<string name="local_update_import_failure">Falha ao importar a atualização local</string>
|
||||
<string name="local_update_import_install">Instalar</string>
|
||||
<string name="local_update_name">Atualização local</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Preparação preliminar de atualização</string>
|
||||
<string name="dialog_battery_low_title">Bateria fraca</string>
|
||||
<string name="dialog_battery_low_message_pct">O nível da bateria está demasiado baixo. Precisa de, pelo menos, <xliff:g id="percent_discharging">%1$d</xliff:g>%% de bateria para continuar, <xliff:g id="percent_charging">%2$d</xliff:g>%% se estiver a carregar.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Por favor, execute os seguintes comandos e tente novamente a atualização:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Não é possível instalar a atualização com OverlayFS montado</string>
|
||||
<string name="reboot">Reiniciar</string>
|
||||
<string name="menu_refresh">Atualizar</string>
|
||||
<string name="menu_preferences">Preferências</string>
|
||||
@@ -104,7 +110,9 @@
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas restantes</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Aviso</string>
|
||||
<string name="update_over_metered_network_message">Está prestes a transferir uma atualização através de uma rede de acesso limitado, o que provavelmente irá resultar num elevado consumo de dados. Pretende continuar?</string>
|
||||
<string name="checkbox_metered_network_warning">Não mostrar novamente</string>
|
||||
<string name="menu_metered_network_warning">Aviso de rede de acesso limitado</string>
|
||||
<string name="blocked_update_dialog_title">Atualização bloqueada</string>
|
||||
<string name="blocked_update_dialog_message">Esta atualização não pode ser instalada usando a aplicação do atualizador. Por favor, leia <xliff:g id="info_url">%1$s </xliff:g> para mais informações.</string>
|
||||
<string name="export_channel_title">Conclusão da exportação</string>
|
||||
@@ -114,4 +122,10 @@
|
||||
<string name="info_dialog_title">Sabias que?</string>
|
||||
<string name="info_dialog_message">As atualizações do LineageOS são pacotes de instalação completa. Isso significa que podes instalar apenas a última atualização, mesmo que tenhas ignorado alguns deles!</string>
|
||||
<string name="info_dialog_ok">Obrigado pela informação!</string>
|
||||
<string name="local_update_import">Atualização local</string>
|
||||
<string name="local_update_import_progress">A importar a atualização local\u2026</string>
|
||||
<string name="local_update_import_success">%1$s foi importada. Pretende instalar?</string>
|
||||
<string name="local_update_import_failure">Falha ao importar a atualização local</string>
|
||||
<string name="local_update_import_install">Instalar</string>
|
||||
<string name="local_update_name">Atualização local</string>
|
||||
</resources>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Pregătire preliminară pentru actualizare</string>
|
||||
<string name="dialog_battery_low_title">Baterie slabă</string>
|
||||
<string name="dialog_battery_low_message_pct">Nivelul bateriei este prea scăzut. Aveți nevoie de cel puțin<xliff:g id="percent_discharging">%1$d</xliff:g>%% pentru a continua, <xliff:g id="percent_charging">%2$d</xliff:g>%% dacă telefonul este la încărcat.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Vă rugăm să rulați următoarele și să reîncărcați actualizarea:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Nu se poate instala actualizarea cu OverlayFS montat</string>
|
||||
<string name="reboot">Repornire</string>
|
||||
<string name="menu_refresh">Reîmprospătare</string>
|
||||
<string name="menu_preferences">Preferințe</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Подготовка обновления</string>
|
||||
<string name="dialog_battery_low_title">Низкий заряд батареи</string>
|
||||
<string name="dialog_battery_low_message_pct">Заряд батареи слишком мал. Для продолжения требуется не менее <xliff:g id="percent_discharging">%1$d</xliff:g>%% или более <xliff:g id="percent_charging">%2$d</xliff:g>%% при подключенном зарядном устройстве.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Выполните следующие команды и повторите попытку обновления:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Невозможно установить обновление при примонтированной OverlayFS</string>
|
||||
<string name="reboot">Перезапуск</string>
|
||||
<string name="menu_refresh">Обновить</string>
|
||||
<string name="menu_preferences">Настройки</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -20,6 +20,12 @@
|
||||
<string name="pause_button">Pàusa</string>
|
||||
<string name="resume_button">Sighi</string>
|
||||
<string name="installing_update_finished">Agiornamentu installadu</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Esecuta is cumandos imbenientes e torra a atualizare:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Impossìbile installare s\'atualizatzione cun su OverlayFS montadu</string>
|
||||
<string name="reboot">Torra a allùghere</string>
|
||||
<string name="menu_preferences">Preferèntzias</string>
|
||||
<string name="menu_delete_update">Iscantzella</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Predhodna priprava posodobitve</string>
|
||||
<string name="dialog_battery_low_title">Nizko stanje baterije</string>
|
||||
<string name="dialog_battery_low_message_pct">Raven napolnjenosti baterije je prenizka, potrebnih je vsaj <xliff:g id="percent_discharging">%1$d</xliff:g>%% baterije za nadaljevanje, <xliff:g id="percent_charging">%2$d</xliff:g>%% med polnjenjem.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Izvedite naslednje ukaze in poskusite ponovno posodobiti:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Posodobitve ni mogoče namestiti s priklopljenim OverlayFS</string>
|
||||
<string name="reboot">Vnovično zaženi</string>
|
||||
<string name="menu_refresh">Osveži</string>
|
||||
<string name="menu_preferences">Nastavitve</string>
|
||||
@@ -81,7 +87,7 @@
|
||||
<string name="confirm_delete_dialog_title">Izbriši datoteko</string>
|
||||
<string name="confirm_delete_dialog_message">Izbriši izbrano posodobitveno datoteko?</string>
|
||||
<string name="apply_update_dialog_title">Uveljavi posodobitev</string>
|
||||
<string name="apply_update_dialog_message">Ste pred namestitvijo <xliff:g id="update_name">%1$s</xliff:g>.\n\nČe pritisnete <xliff:g id="ok">%2$s</xliff:g>, se bo naprava vnovično zagnala v obnovitveni način, da namesti posodobitev.\n\nOpomba: Ta značilnost zahteva združljivo Obnovitev ali pa bodo morale posodobitve biti nameščene ročno.</string>
|
||||
<string name="apply_update_dialog_message">Ste pred namestitvijo <xliff:g id="update_name">%1$s</xliff:g>.\n\nČe pritisnete <xliff:g id="ok">%2$s</xliff:g>, se bo naprava vnovično zagnala v obnovitveni način, da namesti posodobitev.\n\nOpomba: Ta funkcija zahteva združljivo Obnovitev ali pa bodo morale posodobitve biti nameščene ročno.</string>
|
||||
<string name="apply_update_dialog_message_ab">Ste pred namestitvijo <xliff:g id="update_name">%1$s</xliff:g>.\n\nČe pritisnete <xliff:g id="ok">%2$s</xliff:g>, bo naprava začela nameščanje v ozadju.\n\nOb zaključku boste pozvani k vnovičnemu zagonu.</string>
|
||||
<string name="cancel_installation_dialog_message">Prekliči nameščanje?</string>
|
||||
<string name="label_download_url">URL prenosa</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -28,7 +28,7 @@
|
||||
<string name="installation_suspended_notification">Instalimi u pezullua</string>
|
||||
<string name="new_updates_found_title">Përditësime të reja</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Pusho</string>
|
||||
<string name="pause_button">Ndalo</string>
|
||||
<string name="resume_button">Rinis</string>
|
||||
<string name="suspend_button">Pezullu</string>
|
||||
<string name="installing_update">Duke instaluar paketën e përditësimit</string>
|
||||
@@ -39,6 +39,11 @@
|
||||
<string name="dialog_prepare_zip_message">Parapërgatitje për përditësimin</string>
|
||||
<string name="dialog_battery_low_title">Bateria e ulët</string>
|
||||
<string name="dialog_battery_low_message_pct">Niveli i baterië është shumë i ulët, për të vazhduar duhet të jetë të paktën <xliff:g id="percent_discharging">%1$d</xliff:g>%% e baterisë, ose <xliff:g id="percent_charging">%2$d</xliff:g>%% nëse po karikohet.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[Ju lutemi ekzekutoni komandat e mëposhtme dhe riprovoni përditësimin:\n
|
||||
• rrënjë adb\n
|
||||
• adb enable-verity\n
|
||||
• rindezje adb]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Përditësimi nuk mund të instalohet me OverlayFS të montuar</string>
|
||||
<string name="reboot">Rindiz</string>
|
||||
<string name="menu_refresh">Rifresko</string>
|
||||
<string name="menu_preferences">Preferencat</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -15,6 +15,8 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">Uppdaterare</string>
|
||||
<string name="display_name">Uppdaterare</string>
|
||||
<string name="verification_failed_notification">Verifieringen misslyckades</string>
|
||||
<string name="verifying_download_notification">Verifierar uppdateringen</string>
|
||||
<string name="downloading_notification">Laddar ner</string>
|
||||
@@ -22,6 +24,7 @@
|
||||
<string name="download_paused_error_notification">Nedladdningsfel</string>
|
||||
<string name="download_completed_notification">Nedladdning slutförd</string>
|
||||
<string name="download_starting_notification">Påbörjar nedladdning</string>
|
||||
<string name="update_failed_notification">Uppdateringen misslyckades</string>
|
||||
<string name="new_updates_found_title">Nya uppdateringar</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">Pausa</string>
|
||||
@@ -32,6 +35,7 @@
|
||||
<string name="dialog_battery_low_title">Låg batterinivå</string>
|
||||
<string name="reboot">Starta om</string>
|
||||
<string name="menu_refresh">Uppdatera</string>
|
||||
<string name="menu_preferences">Egenskaper</string>
|
||||
<string name="menu_auto_updates_check">Sök efter uppdateringar automatiskt</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">En gång om dagen</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">En gång i veckan</string>
|
||||
@@ -67,10 +71,23 @@
|
||||
<string name="notification_export_success">Uppdatering exporterad</string>
|
||||
<string name="notification_export_fail">Exporteringsfel</string>
|
||||
<string name="toast_export_started">Exportering startad</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">1 sekund kvar</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> sekunder kvar</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">1 minut kvar</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuter kvar</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">1 timme kvar</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> timmar kvar</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Varning</string>
|
||||
<string name="update_over_metered_network_message">Du är på väg att ladda ner en uppdatering över mobilnätet vilket troligtvis kommer att orsaka hög dataanvändning. Vill du fortsätta?</string>
|
||||
<string name="checkbox_metered_network_warning">Visa inte igen</string>
|
||||
<string name="menu_metered_network_warning">Mobildatavarning</string>
|
||||
<string name="blocked_update_dialog_title">Uppdateringen blockerades</string>
|
||||
<string name="export_channel_title">Export slutförd</string>
|
||||
<string name="new_updates_channel_title">Nya uppdateringar</string>
|
||||
<string name="ongoing_channel_title">Pågående nedladdningar</string>
|
||||
|
131
app/src/main/res/values-ta/strings.xml
Normal file
131
app/src/main/res/values-ta/strings.xml
Normal file
@@ -0,0 +1,131 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2024 The LineageOS 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">இற்றையம்</string>
|
||||
<string name="display_name">இற்றையம்</string>
|
||||
<string name="verification_failed_notification">சரிபார்த்தல் தோல்வியுற்றது</string>
|
||||
<string name="verifying_download_notification">இற்றையைச் சரிபார்க்கிறது</string>
|
||||
<string name="downloading_notification">பதிவிறக்குகிறது</string>
|
||||
<string name="download_paused_notification">பதிவிறக்கம் இடைநிறுத்தப்பட்டது</string>
|
||||
<string name="download_paused_error_notification">பதிவிறக்கப் பிழை</string>
|
||||
<string name="download_completed_notification">பதிவிறக்கம் முடிவுற்றது</string>
|
||||
<string name="download_starting_notification">பதிவிறக்கம் தொடங்குகிறது</string>
|
||||
<string name="update_failed_notification">இற்றை தோல்வியுற்றது</string>
|
||||
<string name="installation_suspended_notification">நிறுவல் இடைநீக்கப்பட்டது</string>
|
||||
<string name="new_updates_found_title">புதிய இற்றைகள்</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">இடைநிறுத்துக</string>
|
||||
<string name="resume_button">தொடர்க</string>
|
||||
<string name="suspend_button">நிறுத்திவைக்க</string>
|
||||
<string name="installing_update">இற்றைத் தொகுப்பு நிறுவுகிறது</string>
|
||||
<string name="installing_update_error">நிறுவு பிழை</string>
|
||||
<string name="installing_update_finished">இற்றை நிறுவப்பட்டது</string>
|
||||
<string name="finalizing_package">தொகுப்பு நிறுவலை இறுதிப்படுத்துகிறது</string>
|
||||
<string name="preparing_ota_first_boot">முதற்தொடக்கத்திற்கு ஏற்படுத்துகிறது</string>
|
||||
<string name="dialog_prepare_zip_message">முதற்நிலை இற்றை ஏற்படுத்துதல்</string>
|
||||
<string name="dialog_battery_low_title">குறைந்த மின்கலம்</string>
|
||||
<string name="dialog_battery_low_message_pct">மின்கல நிலை மிகக்குறைவு; தொடர குறைந்தது <xliff:g id="percent_discharging">%1$d</xliff:g>%% மின்கலமாவது தேவை, மின்னூட்டலெனில், <xliff:g id="percent_charging">%2$d</xliff:g>%% மின்கலம் தேவை.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ பின்வரும் கட்டளைகளை இயக்கிய அப்புறம், இற்றையை மீண்டும் முயலவும்:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS ஏற்றப்பட்ட இற்றையை நிறுவ முடியாது</string>
|
||||
<string name="reboot">மறு இயக்கம்</string>
|
||||
<string name="menu_refresh">புதுக்குக</string>
|
||||
<string name="menu_preferences">முன்விருப்பம்</string>
|
||||
<string name="menu_auto_updates_check">தன்னியக்க இற்றைச் சரிபார்ப்பு</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">நாள் ஒரு முறை</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">கிழமை ஒரு முறை</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">திங்கள் ஒரு முறை</string>
|
||||
<string name="menu_auto_updates_check_interval_never">என்றுமில்லை</string>
|
||||
<string name="menu_auto_delete_updates">நிறுவப்பட்டபோது இற்றைகளை நீக்குக</string>
|
||||
<string name="menu_delete_update">நீக்குக</string>
|
||||
<string name="menu_copy_url">உரலியை நகலெடுக்க</string>
|
||||
<string name="menu_export_update">இற்றையை ஏற்றுமதி செய்க</string>
|
||||
<string name="menu_show_changelog">மாற்றுக்குறிப்பைக் காட்டுக</string>
|
||||
<string name="menu_ab_perf_mode">இற்றைச் செயற்முறையை முன்னுரிமை அளிக்க</string>
|
||||
<string name="menu_update_recovery">மீட்டெடுப்பை இற்றைப்படுத்துக</string>
|
||||
<string name="toast_forced_update_recovery">Lineage மீட்டெடுப்பு இற்றைகளை முடக்குவது, இக்கருவியில் இயலாது.</string>
|
||||
<string name="snack_updates_found">புதிய இற்றைகள் கிடைத்தன</string>
|
||||
<string name="snack_no_updates_found">புதிய இற்றைகள் எவையும் கிடைக்கவில்லை</string>
|
||||
<string name="snack_updates_check_failed">இற்றைச் சோதனை தோல்வியுற்றது. உங்கள் இணைய இணைப்பைச் சரிபார்த்த பிறகு, மீண்டும் முயற்சி செய்யவும்.</string>
|
||||
<string name="snack_download_failed">பதிவிறக்கம் தோல்வியுற்றது. உங்கள் இணைய இணைப்பைச் சரிபார்த்த பிறகு, மீண்டும் முயற்சி செய்யவும்.</string>
|
||||
<string name="snack_download_verification_failed">இற்றை சரிபார்ப்பு தோல்வியுற்றது.</string>
|
||||
<string name="snack_download_verified">பதிவிறக்கம் முடிவுற்றது.</string>
|
||||
<string name="snack_update_not_installable">தற்போதைய கட்டமைப்பின் மீது, இந்த இற்றையை நிறுவ முடியாது.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">Android <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">கடைசியாகச் சரிபார்க்கப்பட்டது: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> இல் <xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> இல் <xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">இற்றையைச் சரிபார்க்கிறது</string>
|
||||
<string name="list_no_updates">புதிய இற்றைகள் எவையும் கிடைக்கவில்லை; அவற்றைக் கைமுறையாகச் சரிபார்க்க, புதுப்பிப்பு விசையைப் பயன்படுத்துக.</string>
|
||||
<string name="action_download">பதிவிறக்குக</string>
|
||||
<string name="action_pause">இடைநிறுத்துக</string>
|
||||
<string name="action_resume">தொடர்க</string>
|
||||
<string name="action_install">நிறுவுக</string>
|
||||
<string name="action_info">செய்தி</string>
|
||||
<string name="action_delete">அழிக்க</string>
|
||||
<string name="action_cancel">விலக்குக</string>
|
||||
<string name="confirm_delete_dialog_title">கோப்பை நீக்குக</string>
|
||||
<string name="confirm_delete_dialog_message">தேர்ந்தெடுக்கப்பட்ட இற்றைக் கோப்பை நீக்கவா?</string>
|
||||
<string name="apply_update_dialog_title">இற்றையைச் செயற்படுத்துக</string>
|
||||
<string name="apply_update_dialog_message"> <xliff:g id="update_name">%1$s</xliff:g>, என்பதை நீங்கள் நிறுவ உள்ளீர்; \n\nநீங்கள் <xliff:g id="ok">%2$s</xliff:g> என்பதை அழுத்தினால், இற்றையை நிறுவ கருவி தானாகவே மீட்டெடுப்பு முறையில் மறுதொடங்கும்.\n\nகுறிப்பு: இப்பண்புக்கூறுக்கு இணக்கமான மீட்டெடுப்பு தேவை. இல்லையெனில், இற்றைகளை கைமுறையாக நிறுவ வேண்டும்.</string>
|
||||
<string name="apply_update_dialog_message_ab"><xliff:g id="update_name">%1$s</xliff:g>, என்பதை நீங்கள் நிறுவ உள்ளீர்; \n\nநீங்கள் <xliff:g id="ok">%2$s</xliff:g> என்பதை அழுத்தினால், பின்னணியில் கருவி நிறுவலைத் தொடங்கும்.\n\nமுடிந்ததும், மறு இயக்கம் செய்யும்படித் தூண்டப்படுவீர்.</string>
|
||||
<string name="cancel_installation_dialog_message">நிறுவலை விலக்கவா?</string>
|
||||
<string name="label_download_url">பதிவிறக்க உரலி</string>
|
||||
<string name="toast_download_url_copied">உரலி நகலெடுக்கப்பட்டது</string>
|
||||
<string name="dialog_export_title">இற்றை ஏற்றுமதி செய்தல்</string>
|
||||
<string name="notification_export_success">இற்றை ஏற்றுமதி செய்யப்பட்டது</string>
|
||||
<string name="notification_export_fail">ஏற்றுமதிப் பிழை</string>
|
||||
<string name="toast_already_exporting">ஏற்கெனவே, ஒர் இற்றையை ஏற்றுமதி செய்கிறது</string>
|
||||
<string name="toast_export_started">ஏற்றுமதி தொடங்கியது</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">இன்னும் ஒரு நொடி</item>
|
||||
<item quantity="other">இன்னும் <xliff:g id="count">%d</xliff:g> நொடி</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">இன்னும் ஒரு நிமிடம்</item>
|
||||
<item quantity="other">இன்னும் <xliff:g id="count">%d</xliff:g> நிமிடம்</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">இன்னும் ஒரு மணிநேரம்</item>
|
||||
<item quantity="other">இன்னும் <xliff:g id="count">%d</xliff:g> மணிநேரம்</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">எச்சரிக்கை</string>
|
||||
<string name="update_over_metered_network_message">வரம்பிட்ட பிணையத்தில் இற்றைத் தொகுப்பைப் பதிவிறக்க உள்ளீர்; இஃது உயர்ந்த தரவுப் பயன்பாட்டை ஏற்படுத்தக்கூடும்; நீங்கள் தொடர விரும்புகிறீரா?</string>
|
||||
<string name="checkbox_metered_network_warning">மீண்டும் காட்ட வேண்டாம்</string>
|
||||
<string name="menu_metered_network_warning">வரம்பிட்ட பிணைய எச்சரிக்கை</string>
|
||||
<string name="blocked_update_dialog_title">இற்றை தடுக்கப்பட்டது</string>
|
||||
<string name="blocked_update_dialog_message">இற்றைநர் செயலியைப் பயன்படுத்தி இவ்விற்றையை நிறுவ முடியாது. மேலும், தெரிவிப்புக்கு <xliff:g id="info_url">%1$s</xliff:g> இதைப் படிக்கவும்.</string>
|
||||
<string name="export_channel_title">ஏற்றுமதி நிறைவுறல்</string>
|
||||
<string name="new_updates_channel_title">புதிய இற்றைகள்</string>
|
||||
<string name="ongoing_channel_title">நடப்புப் பதிவிறக்கங்கள்</string>
|
||||
<string name="update_failed_channel_title">இற்றை தோல்வியுற்றது</string>
|
||||
<string name="info_dialog_title">நீங்கள், அறிந்தீரா?</string>
|
||||
<string name="info_dialog_message">LineageOS இற்றைகள் முழு நிறுவல் தொகுப்புகளாகும். அஃதாவது, நீங்கள் இடையில் சிலவற்றைத் தவிர்த்தாலும், எப்போதும் அண்மை இற்றையை மட்டுமே நிறுவ முடியும்!</string>
|
||||
<string name="info_dialog_ok">தெரிவித்தலுக்கு நன்றி!</string>
|
||||
<string name="local_update_import">உள்ளக இற்றை</string>
|
||||
<string name="local_update_import_progress">உள்ளக இற்றையை இறக்குதல் \u2026</string>
|
||||
<string name="local_update_import_success">%1$s என்பது இறக்கப்பட்டது; அதை நிறுவ வேண்டுமா?</string>
|
||||
<string name="local_update_import_failure">உள்ளக இற்றை இறக்கல் தோல்வியுற்றது</string>
|
||||
<string name="local_update_import_install">நிறுவுக</string>
|
||||
<string name="local_update_name">உற்றிட இற்றை</string>
|
||||
</resources>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Güncelleme ön hazırlığı</string>
|
||||
<string name="dialog_battery_low_title">Düşük pil</string>
|
||||
<string name="dialog_battery_low_message_pct">Pil seviyesi çok düşük, devam etmek için en az <xliff:g id="percent_discharging">%1$d</xliff:g>%% pil gereklidir, <xliff:g id="percent_charging">%2$d</xliff:g>%% şarj ediliyor.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Lütfen aşağıdaki komutları çalıştırıp güncelleştirmeyi tekrar deneyin:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS bağlı iken güncelleştirme yüklenemiyor</string>
|
||||
<string name="reboot">Yeniden başlat</string>
|
||||
<string name="menu_refresh">Yenile</string>
|
||||
<string name="menu_preferences">Tercihler</string>
|
||||
@@ -104,7 +110,9 @@
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> saat kaldı</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">Uyarı</string>
|
||||
<string name="update_over_metered_network_message">Mobil veri kullanarak, büyük olasılıkla yüksek veri kullanımına yol açacak bir güncelleme paketi indirmek üzeresiniz. Devam etmek ister misiniz?</string>
|
||||
<string name="checkbox_metered_network_warning">Tekrar gösterme</string>
|
||||
<string name="menu_metered_network_warning">Mobil veri uyarısı</string>
|
||||
<string name="blocked_update_dialog_title">Güncelleme engellendi</string>
|
||||
<string name="blocked_update_dialog_message">Bu güncelleme, güncelleyici uygulaması kullanılarak kurulamaz. Daha fazla bilgi için lütfen <xliff:g id="info_url">%1$s</xliff:g> adresini okuyun.</string>
|
||||
<string name="export_channel_title">Dışa aktarma tamamlandı</string>
|
||||
@@ -114,4 +122,10 @@
|
||||
<string name="info_dialog_title">Biliyor musun?</string>
|
||||
<string name="info_dialog_message">LineageOS güncellemeleri tam yükleme paketleridir. Bu demektir ki güncelleme atlamış olsanız bile her zaman sadece son güncellemeyi kurabilirsiniz!</string>
|
||||
<string name="info_dialog_ok">Bilgi için teşekkürler!</string>
|
||||
<string name="local_update_import">Yerel güncelleme</string>
|
||||
<string name="local_update_import_progress">Yerel güncelleme içe aktarılıyor</string>
|
||||
<string name="local_update_import_success">%1$s içe aktarıldı. Yüklemek istiyor musunuz?</string>
|
||||
<string name="local_update_import_failure">Yerel güncelleme içe aktarılamadı</string>
|
||||
<string name="local_update_import_install">Yükle</string>
|
||||
<string name="local_update_name">Yerel güncelleme</string>
|
||||
</resources>
|
||||
|
131
app/src/main/res/values-ug/strings.xml
Normal file
131
app/src/main/res/values-ug/strings.xml
Normal file
@@ -0,0 +1,131 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2024 The LineageOS 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="app_name">يېڭىلىغۇچ</string>
|
||||
<string name="display_name">يېڭىلىغۇچ</string>
|
||||
<string name="verification_failed_notification">دەلىللىيەلمىدى</string>
|
||||
<string name="verifying_download_notification">يېڭىلاشنى دەلىللەۋاتىدۇ</string>
|
||||
<string name="downloading_notification">چۈشۈرۈۋاتىدۇ</string>
|
||||
<string name="download_paused_notification">چۈشۈرۈش ۋاقىتلىق توختىتىلدى</string>
|
||||
<string name="download_paused_error_notification">چۈشۈرۈش خاتالىقى</string>
|
||||
<string name="download_completed_notification">چۈشۈرۈش تامام</string>
|
||||
<string name="download_starting_notification">چۈشۈرۈشنى باشلاۋاتىدۇ</string>
|
||||
<string name="update_failed_notification">يېڭىلىيالمىدى</string>
|
||||
<string name="installation_suspended_notification">ئورنىتىش كېچىكتۈرۈلدى</string>
|
||||
<string name="new_updates_found_title">يېڭى نەشرى</string>
|
||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||
<string name="pause_button">ۋاقىتلىق توختا</string>
|
||||
<string name="resume_button">داۋاملاشتۇر</string>
|
||||
<string name="suspend_button">كېچىكتۈر</string>
|
||||
<string name="installing_update">يېڭىلاش بولىقىنى ئورنىتىۋاتىدۇ</string>
|
||||
<string name="installing_update_error">ئورنىتىش خاتالىقى</string>
|
||||
<string name="installing_update_finished">يېڭىلاش ئورنىتىلدى</string>
|
||||
<string name="finalizing_package">بولاق ئورنىتىشنى ئاخىرلاشتۇرۇۋاتىدۇ</string>
|
||||
<string name="preparing_ota_first_boot">تۇنجى قوزغىتىشقا تەييارلاۋاتىدۇ</string>
|
||||
<string name="dialog_prepare_zip_message">دەسلەپكى يېڭىلاش تەييارلىقى</string>
|
||||
<string name="dialog_battery_low_title">توكدان توكى تۆۋەن</string>
|
||||
<string name="dialog_battery_low_message_pct">توكدان توكى بەك ئاز، كەم دېگەندە %% <xliff:g id="percent_discharging">%1$d</xliff:g> توكى بولسا ئاندىن داۋاملاشتۇرالايسىز، ئۇنداق بولمىسا <xliff:g id="percent_charging">%2$d</xliff:g> توكى بولسا ئاندىن داۋاملاشتۇرالايسىز.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ تۆۋەندىكى بۇيرۇقنى ئىجرا قىلىپ يېڭىلانمىنى قايتا ئورنىتىڭ:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">OverlayFS ئېگەرلەنگەندە يېڭىلاشنى ئورنىتالمايدۇ</string>
|
||||
<string name="reboot">قايتا قوزغات</string>
|
||||
<string name="menu_refresh">يېڭىلا</string>
|
||||
<string name="menu_preferences">مايىللىق</string>
|
||||
<string name="menu_auto_updates_check">ئۆزلۈكىدىن يېڭىلاشنى تەكشۈرىدۇ</string>
|
||||
<string name="menu_auto_updates_check_interval_daily">كۈندە بىر قېتىم</string>
|
||||
<string name="menu_auto_updates_check_interval_weekly">ھەپتىدە بىر قېتىم</string>
|
||||
<string name="menu_auto_updates_check_interval_monthly">ئايدا بىر قېتىم</string>
|
||||
<string name="menu_auto_updates_check_interval_never">ھەرگىز</string>
|
||||
<string name="menu_auto_delete_updates">ئورنىتىلغاندىن كېيىن يېڭىلانمىنى ئۆچۈرىدۇ</string>
|
||||
<string name="menu_delete_update">ئۆچۈر</string>
|
||||
<string name="menu_copy_url">تور ئادرېس كۆچۈر</string>
|
||||
<string name="menu_export_update">يېڭىلاشنى چىقار</string>
|
||||
<string name="menu_show_changelog">ئۆزگىرىش خاتىرىسىنى كۆرسەت</string>
|
||||
<string name="menu_ab_perf_mode">يېڭىلاش جەريانىنى ئەلالاشتۇرىدۇ</string>
|
||||
<string name="menu_update_recovery">ئەسلىگە كەلتۈرگۈچنى يېڭىلايدۇ</string>
|
||||
<string name="toast_forced_update_recovery">بۇ ئۈسكۈنىدە Lineage ئەسلىگە كەلتۈرگۈچ يېڭىلانمىسىنى چەكلەش مۇمكىن ئەمەس.</string>
|
||||
<string name="snack_updates_found">يېڭى نەشرى تېپىلدى</string>
|
||||
<string name="snack_no_updates_found">يېڭى نەشرى تېپىلمىدى</string>
|
||||
<string name="snack_updates_check_failed">يېڭىلانمىنى تەكشۈرەلمىدى. ئىنتېرنېت باغلىنىشىنى تەكشۈرۈپ، ئاندىن قايتا سىناڭ.</string>
|
||||
<string name="snack_download_failed">چۈشۈرەلمىدى. ئىنتېرنېت باغلىنىشىنى تەكشۈرۈپ، ئاندىن قايتا سىناڭ.</string>
|
||||
<string name="snack_download_verification_failed">يېڭىلاشنى دەلىللىيەلمىدى.</string>
|
||||
<string name="snack_download_verified">چۈشۈرۈش تامام.</string>
|
||||
<string name="snack_update_not_installable">بۇ يېڭىلاشنى نۆۋەتتىكى نەشرىنىڭ ئۈستىگە ئورناتقىلى بولمايدۇ.</string>
|
||||
<string name="header_title_text">LineageOS\n%1$s</string>
|
||||
<string name="header_android_version">Android <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||
<string name="header_last_updates_check">ئاخىرقى تەكشۈرۈش: <xliff:g id="date" example="1 January 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
||||
<string name="list_build_version">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g></string>
|
||||
<string name="list_build_version_date">LineageOS <xliff:g id="version" example="14.1">%1$s</xliff:g> - <xliff:g id="date" example="July 11, 2017">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> / <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
||||
<string name="list_download_progress_eta_newer"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> / <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>)</string>
|
||||
<string name="list_verifying_update">يېڭىلاشنى دەلىللەۋاتىدۇ</string>
|
||||
<string name="list_no_updates">يېڭى نەشرى تېپىلمىدى. يېڭى يېڭىلاشلارنى قولدا تەكشۈرۈش ئۈچۈن يېڭىلا توپچىنى چېكىڭ.</string>
|
||||
<string name="action_download">چۈشۈر</string>
|
||||
<string name="action_pause">ۋاقىتلىق توختا</string>
|
||||
<string name="action_resume">داۋاملاشتۇر</string>
|
||||
<string name="action_install">ئورنات</string>
|
||||
<string name="action_info">ئۇچۇر</string>
|
||||
<string name="action_delete">ئۆچۈر</string>
|
||||
<string name="action_cancel">ۋاز كەچ</string>
|
||||
<string name="confirm_delete_dialog_title">ھۆججەت ئۆچۈر</string>
|
||||
<string name="confirm_delete_dialog_message">تاللانغان يېڭىلاش ھۆججىتىنى ئۆچۈرەمدۇ؟</string>
|
||||
<string name="apply_update_dialog_title">يېڭىلاشنى قوللان</string>
|
||||
<string name="apply_update_dialog_message">سىز <xliff:g id="update_name">%1$s</xliff:g> نى ئورناتماقچى بولۇۋاتىسىز.\n\nئەگەر<xliff:g id="ok">%2$s</xliff:g> نى باسسىڭىز، ئۈسكۈنە ئۆزلۈكىدىن قايتا قوزغىلىپ ئەسلىگە كەلتۈرۈش ھالىتىگە كىرىپ يېڭىلاشنى ئورنىتىدۇ.\n \nدىققەت: بۇ ئىقتىدار ئۈچۈن ماسلىشىدىغان ئەسلىگە كەلتۈرگۈچ بولۇشى كېرەك ياكى يېڭىلاشنى قولدا ئورنىتىش كېرەك.</string>
|
||||
<string name="apply_update_dialog_message_ab">سىز <xliff:g id="update_name">%1$s</xliff:g> نى ئورناتماقچى بولۇۋاتىسىز.\n\nئەگەر<xliff:g id="ok">%2$s</xliff:g> نى باسسىڭىز، ئۈسكۈنە زاپاستىكىنى ئورنىتىشقا باشلايدۇ.\n \nتاماملانغاندا، سىزگە قايتا قوزغىتىشنى ئەسكەرتىدۇ.</string>
|
||||
<string name="cancel_installation_dialog_message">ئورنىتىشتىن ۋاز كېچەمدۇ؟</string>
|
||||
<string name="label_download_url">چۈشۈرۈش تور ئادرېسى</string>
|
||||
<string name="toast_download_url_copied">تور ئادرېسى كۆچۈرۈلدى</string>
|
||||
<string name="dialog_export_title">يېڭىلاشنى چىقار</string>
|
||||
<string name="notification_export_success">يېڭىلاش چىقىرىلدى</string>
|
||||
<string name="notification_export_fail">چىقىرىش خاتالىقى</string>
|
||||
<string name="toast_already_exporting">يېڭىلاشنى چىقاردى</string>
|
||||
<string name="toast_export_started">چىقىرىش باشلاندى</string>
|
||||
<plurals name="eta_seconds">
|
||||
<item quantity="one">1 سېكۇنت قالدى</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> سېكۇنت قالدى</item>
|
||||
</plurals>
|
||||
<plurals name="eta_minutes">
|
||||
<item quantity="one">1 مىنۇت قالدى</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> مىنۇت قالدى</item>
|
||||
</plurals>
|
||||
<plurals name="eta_hours">
|
||||
<item quantity="one">1 سائەت قالدى</item>
|
||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> سائەت قالدى</item>
|
||||
</plurals>
|
||||
<string name="update_over_metered_network_title">ئاگاھلاندۇرۇش</string>
|
||||
<string name="update_over_metered_network_message">كۆچمە سانلىق مەلۇمات تورىنىڭ ئېقىمىنى ئىشلىتىپ يېڭىلاشنى چۈشۈرمەكچى بولۇۋاتىسىز، بۇنىڭغا كۆپ سانلىق مەلۇمات ئېقىمى سەرپ بولۇشى مۇمكىن. داۋاملاشتۇرامسىز؟</string>
|
||||
<string name="checkbox_metered_network_warning">قايتا كۆرسەتمە</string>
|
||||
<string name="menu_metered_network_warning">ئېقىم ھېسابلىنىدىغان تور ئاگاھلاندۇرۇشى</string>
|
||||
<string name="blocked_update_dialog_title">يېڭىلانما توسۇلدى</string>
|
||||
<string name="blocked_update_dialog_message">يېڭىلاش ئەپى بىلەن بۇ يېڭىلاشنى ئورنىتالمايدۇ. تەپسىلاتىنى <xliff:g id="info_url">%1$s</xliff:g> دىن ئوقۇڭ.</string>
|
||||
<string name="export_channel_title">چىقىرىش تاماملاندى</string>
|
||||
<string name="new_updates_channel_title">يېڭى نەشرى</string>
|
||||
<string name="ongoing_channel_title">داۋاملىشىۋاتقان چۈشۈرۈش</string>
|
||||
<string name="update_failed_channel_title">يېڭىلىيالمىدى</string>
|
||||
<string name="info_dialog_title">بىلەمسىز؟</string>
|
||||
<string name="info_dialog_message">LineageOS يېڭىلاش تولۇق ئورنىتىش بولىقى. دېمەك، ئەگەر ئارىلىقتا بىرەر نەشرىدىن ئاتلاپ كەتسىڭىزمۇ، پەقەت ئاخىرقى يېڭىلاشنىلا ئورنىتالايسىز!</string>
|
||||
<string name="info_dialog_ok">ئۇچۇر ئۈچۈن رەھمەت!</string>
|
||||
<string name="local_update_import">يەرلىك يېڭىلاش</string>
|
||||
<string name="local_update_import_progress">يەرلىك يېڭىلاشنى ئەكىرىۋاتىدۇ\u2026</string>
|
||||
<string name="local_update_import_success">%1$s ئەكىرىلگەن. ئۇنى ئورنىتامسىز؟</string>
|
||||
<string name="local_update_import_failure">يەرلىك يېڭىلاشنى ئەكىرەلمىدى</string>
|
||||
<string name="local_update_import_install">ئورنات</string>
|
||||
<string name="local_update_name">يەرلىك يېڭىلاش</string>
|
||||
</resources>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">Chuẩn bị cập nhật sơ bộ</string>
|
||||
<string name="dialog_battery_low_title">Pin yếu</string>
|
||||
<string name="dialog_battery_low_message_pct">Mức pin quá thấp, bạn cần tối thiểu <xliff:g id="percent_discharging">%1$d</xliff:g>%% pin để tiếp tục, <xliff:g id="percent_charging">%2$d</xliff:g>%% nếu đang sạc.</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ Vui lòng chạy các lệnh sau và thử cập nhật lại:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">Không thể cài đặt cập nhật khi OverlayFS được gắn kết</string>
|
||||
<string name="reboot">Khởi động lại</string>
|
||||
<string name="menu_refresh">Làm mới</string>
|
||||
<string name="menu_preferences">Tùy chỉnh</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">预备更新准备</string>
|
||||
<string name="dialog_battery_low_title">低电量</string>
|
||||
<string name="dialog_battery_low_message_pct">电量过低,您需要至少 <xliff:g id="percent_discharging">%1$d</xliff:g>%% 的电量才能继续;如果正在充电,则需要 <xliff:g id="percent_charging">%2$d</xliff:g>%% 的电量才能继续。</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ 请运行以下命令来重新安装更新:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">无法在使用OverlayFS挂载的情况下安装更新</string>
|
||||
<string name="reboot">重新启动</string>
|
||||
<string name="menu_refresh">刷新</string>
|
||||
<string name="menu_preferences">首选项</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -39,6 +39,12 @@
|
||||
<string name="dialog_prepare_zip_message">正在準備更新</string>
|
||||
<string name="dialog_battery_low_title">電量不足</string>
|
||||
<string name="dialog_battery_low_message_pct">電池電量過低,您需要至少 <xliff:g id="percent_discharging">%1$d</xliff:g>%% 的電量才能繼續;如果正在充電,則需要 <xliff:g id="percent_charging">%2$d</xliff:g>%% 的電量才能繼續。</string>
|
||||
<string name="dialog_scratch_mounted_message"><![CDATA[ 請執行以下指令,然後重試更新:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]></string>
|
||||
<string name="dialog_scratch_mounted_title">無法在掛載 OverlayFS 的情況下安裝更新</string>
|
||||
<string name="reboot">重新啟動</string>
|
||||
<string name="menu_refresh">重新整理</string>
|
||||
<string name="menu_preferences">使用偏好</string>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2017-2023 The LineageOS Project
|
||||
Copyright (C) 2017-2024 The LineageOS Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@@ -60,6 +60,15 @@
|
||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||
<string name="dialog_battery_low_title">Low battery</string>
|
||||
<string name="dialog_battery_low_message_pct">The battery level is too low, you need at least <xliff:g id="percent_discharging">%1$d</xliff:g>%% of the battery to continue, <xliff:g id="percent_charging">%2$d</xliff:g>%% if charging.</string>
|
||||
<string name="dialog_scratch_mounted_message">
|
||||
<![CDATA[
|
||||
Please run the following commands and retry the update:\n
|
||||
• adb root\n
|
||||
• adb enable-verity\n
|
||||
• adb reboot
|
||||
]]>
|
||||
</string>
|
||||
<string name="dialog_scratch_mounted_title">Cannot install update with OverlayFS mounted</string>
|
||||
|
||||
<string name="reboot">Reboot</string>
|
||||
|
||||
@@ -147,7 +156,7 @@
|
||||
|
||||
<string name="blocked_update_dialog_title">Update blocked</string>
|
||||
<string name="blocked_update_dialog_message">This update cannot be installed using the updater app. Please read <xliff:g id="info_url">%1$s</xliff:g> for more information.</string>
|
||||
<string name="blocked_update_info_url" translatable="false">http://wiki.lineageos.org/devices/<xliff:g id="device_name">%1$s</xliff:g>/upgrade</string>
|
||||
<string name="blocked_update_info_url" translatable="false">https://wiki.lineageos.org/devices/<xliff:g id="device_name">%1$s</xliff:g>/upgrade/</string>
|
||||
|
||||
<string name="export_channel_title">Export completion</string>
|
||||
<string name="new_updates_channel_title">New updates</string>
|
||||
|
@@ -8,6 +8,7 @@
|
||||
<item name="android:windowLightStatusBar">@bool/theme_is_light</item>
|
||||
<item name="android:windowLightNavigationBar">@bool/theme_is_light</item>
|
||||
<item name="android:windowBackground">@color/background</item>
|
||||
<item name="alertDialogTheme">@style/AppTheme.AlertDialogTheme</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.NoActionBar">
|
||||
@@ -32,4 +33,8 @@
|
||||
<item name="android:dropDownVerticalOffset">8dp</item>
|
||||
<item name="android:dropDownHorizontalOffset">-16dp</item>
|
||||
</style>
|
||||
|
||||
<style name="AppTheme.AlertDialogTheme" parent="Theme.AppCompat.DayNight.Dialog.Alert">
|
||||
<item name="dialogCornerRadius">16dp</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user