Compare commits
95 Commits
lineage-15
...
lineage-15
Author | SHA1 | Date | |
---|---|---|---|
|
422d1aa228 | ||
|
17a7e95d97 | ||
|
bc3ce51fe8 | ||
|
425bcc3812 | ||
|
122377db5f | ||
|
9a13b2dc0c | ||
|
fb8be5bf41 | ||
|
308f4b1aca | ||
|
7f0a8938ab | ||
|
5a16c239b2 | ||
|
cacc3e88d0 | ||
|
83a0e68555 | ||
|
5dbe9195ab | ||
|
629ba11641 | ||
|
425515af9c | ||
|
6ba5645d01 | ||
|
7ad6b6153a | ||
|
c548bdf138 | ||
|
1022c6bcd1 | ||
|
09e6fcab06 | ||
|
e46f532c8c | ||
|
412810e0b7 | ||
|
5648b3cd27 | ||
|
4ec02fd780 | ||
|
74d7a3e78b | ||
|
460cb87510 | ||
|
608789ff36 | ||
|
5a93f3f91a | ||
|
599ed80201 | ||
|
67cb2626a9 | ||
|
f9463c3770 | ||
|
0332be5ec7 | ||
|
ce4b02697f | ||
|
f4b3729426 | ||
|
4bacd24da4 | ||
|
78e69c05d8 | ||
|
9285b1c1a6 | ||
|
8b300f0d05 | ||
|
4f7db45fa6 | ||
|
907486ad4f | ||
|
8a8f1d98f0 | ||
|
fd096a564a | ||
|
cc1ad0e827 | ||
|
dc9890f09c | ||
|
75c31f3274 | ||
|
569d9a2c51 | ||
|
6aa0a04fbb | ||
|
e198389bd5 | ||
|
6c0aa8118e | ||
|
d5f4c1bcec | ||
|
af9b4adbe0 | ||
|
17db209f13 | ||
|
ec4f3146d6 | ||
|
862e913590 | ||
|
6d24b010f7 | ||
|
a64eae5fc0 | ||
|
a72b78c31e | ||
|
6fd45962c1 | ||
|
bf2e25d400 | ||
|
548f515a48 | ||
|
5252d60671 | ||
|
4fa7ba910a | ||
|
4d5e82b885 | ||
|
8d0471effc | ||
|
3aabbc7ed5 | ||
|
2ec8fc6cec | ||
|
a409a4a03d | ||
|
eecdf389ef | ||
|
28644b3491 | ||
|
69e65ca4bf | ||
|
a0bdd6abba | ||
|
37524ad0fa | ||
|
14d522818c | ||
|
31057295dc | ||
|
f183b58b09 | ||
|
d44eb7c414 | ||
|
76b9f49684 | ||
|
f62a57c463 | ||
|
2a9c85e675 | ||
|
ff53035537 | ||
|
0e79b791f0 | ||
|
3fc17494eb | ||
|
7005b005d9 | ||
|
e50edf0811 | ||
|
63f6fd1a70 | ||
|
e02b8a0b00 | ||
|
e66a8fa53a | ||
|
c5f36ee047 | ||
|
8e369117bf | ||
|
f3d9b3f1b2 | ||
|
6088f26f53 | ||
|
02f52108d9 | ||
|
2c41ae392c | ||
|
d4a65e455e | ||
|
cbe6bd69fd |
13
.gitignore
vendored
Normal file
13
.gitignore
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
*.iml
|
||||||
|
.gradle
|
||||||
|
/local.properties
|
||||||
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
||||||
|
/gradle
|
||||||
|
/gradlew
|
||||||
|
/gradlew.bat
|
||||||
|
/system_libs/*.jar
|
||||||
|
/keystore.properties
|
||||||
|
*.jks
|
39
Android.mk
39
Android.mk
@@ -6,8 +6,11 @@ LOCAL_MODULE_TAGS := optional
|
|||||||
|
|
||||||
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||||||
|
|
||||||
LOCAL_STATIC_JAVA_LIBRARIES := \
|
LOCAL_USE_AAPT2 := true
|
||||||
|
|
||||||
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
||||||
android-support-design \
|
android-support-design \
|
||||||
|
android-support-transition \
|
||||||
android-support-v4 \
|
android-support-v4 \
|
||||||
android-support-v7-appcompat \
|
android-support-v7-appcompat \
|
||||||
android-support-v7-cardview \
|
android-support-v7-cardview \
|
||||||
@@ -15,23 +18,31 @@ LOCAL_STATIC_JAVA_LIBRARIES := \
|
|||||||
android-support-v7-recyclerview
|
android-support-v7-recyclerview
|
||||||
|
|
||||||
LOCAL_RESOURCE_DIR := \
|
LOCAL_RESOURCE_DIR := \
|
||||||
$(TOP)/frameworks/support/design/res \
|
|
||||||
$(TOP)/frameworks/support/v7/appcompat/res \
|
|
||||||
$(TOP)/frameworks/support/v7/cardview/res \
|
|
||||||
$(TOP)/frameworks/support/v7/preference/res \
|
|
||||||
$(TOP)/frameworks/support/v7/recyclerview/res \
|
|
||||||
$(LOCAL_PATH)/res
|
$(LOCAL_PATH)/res
|
||||||
|
|
||||||
LOCAL_AAPT_FLAGS := \
|
|
||||||
--auto-add-overlay \
|
|
||||||
--extra-packages android.support.design \
|
|
||||||
--extra-packages android.support.v7.appcompat \
|
|
||||||
--extra-packages android.support.v7.cardview \
|
|
||||||
--extra-packages android.support.v7.preference \
|
|
||||||
--extra-packages android.support.v7.recyclerview
|
|
||||||
|
|
||||||
LOCAL_PACKAGE_NAME := Updater
|
LOCAL_PACKAGE_NAME := Updater
|
||||||
LOCAL_PRIVILEGED_MODULE := true
|
LOCAL_PRIVILEGED_MODULE := true
|
||||||
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
||||||
|
|
||||||
include $(BUILD_PACKAGE)
|
include $(BUILD_PACKAGE)
|
||||||
|
|
||||||
|
|
||||||
|
include $(CLEAR_VARS)
|
||||||
|
LOCAL_MODULE := UpdaterStudio
|
||||||
|
LOCAL_MODULE_CLASS := FAKE
|
||||||
|
LOCAL_MODULE_SUFFIX := -timestamp
|
||||||
|
updater_system_deps := $(call java-lib-deps,framework)
|
||||||
|
updater_system_libs_path := $(abspath $(LOCAL_PATH))/system_libs
|
||||||
|
|
||||||
|
include $(BUILD_SYSTEM)/base_rules.mk
|
||||||
|
|
||||||
|
.PHONY: copy_updater_system_deps
|
||||||
|
copy_updater_system_deps: $(updater_system_deps)
|
||||||
|
$(hide) mkdir -p $(updater_system_libs_path)
|
||||||
|
$(hide) rm -rf $(updater_system_libs_path)/*.jar
|
||||||
|
$(hide) cp $(updater_system_deps) $(updater_system_libs_path)/framework.jar
|
||||||
|
|
||||||
|
$(LOCAL_BUILT_MODULE): copy_updater_system_deps
|
||||||
|
$(hide) echo "Fake: $@"
|
||||||
|
$(hide) mkdir -p $(dir $@)
|
||||||
|
$(hide) touch $@
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.lineageos.updater">
|
package="org.lineageos.updater"
|
||||||
|
android:versionCode="1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
|
<uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
@@ -7,13 +8,12 @@
|
|||||||
<uses-permission android:name="android.permission.REBOOT" />
|
<uses-permission android:name="android.permission.REBOOT" />
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
<uses-permission android:name="android.permission.RECOVERY" />
|
<uses-permission android:name="android.permission.RECOVERY" />
|
||||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
android:icon="@drawable/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/AppTheme">
|
android:theme="@style/AppTheme">
|
||||||
@@ -33,8 +33,13 @@
|
|||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<service android:name=".controller.UpdaterService" />
|
<service android:name=".controller.UpdaterService" />
|
||||||
|
<service android:name=".ExportUpdateService" />
|
||||||
|
|
||||||
<receiver android:name=".UpdaterReceiver" android:exported="false" />
|
<receiver android:name=".UpdaterReceiver" android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
|
|
||||||
<receiver android:name=".UpdatesCheckReceiver">
|
<receiver android:name=".UpdatesCheckReceiver">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
52
README.md
Normal file
52
README.md
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
Updater
|
||||||
|
=======
|
||||||
|
Simple application to download and apply OTA packages.
|
||||||
|
|
||||||
|
|
||||||
|
Server requirements
|
||||||
|
-------------------
|
||||||
|
The app sends `GET` requests to the URL defined by the `updater_server_url`
|
||||||
|
resource (or the `lineage.updater.uri` system property) and expects as response
|
||||||
|
a JSON with the following structure:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"response": [
|
||||||
|
{
|
||||||
|
"datetime": 1230764400,
|
||||||
|
"filename": "ota-package.zip",
|
||||||
|
"id": "5eb63bbbe01eeed093cb22bb8f5acdc3",
|
||||||
|
"romtype": "nightly",
|
||||||
|
"size": 314572800,
|
||||||
|
"url": "https://example.com/ota-package.zip",
|
||||||
|
"version": "15.1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The `datetime` attribute is the build date expressed as UNIX timestamp.
|
||||||
|
The `filename` attribute is the name of the file to be downloaded.
|
||||||
|
The `id` attribute is a string that uniquely identifies the update.
|
||||||
|
The `romtype` attribute is the string to be compared with the `ro.lineage.releasetype` property.
|
||||||
|
The `size` attribute is the size of the update expressed in bytes.
|
||||||
|
The `url` attribute is the URL of the file to be downloaded.
|
||||||
|
The `version` attribute is the string to be compared with the `ro.lineage.build.version` property.
|
||||||
|
|
||||||
|
Additional attributes are ignored.
|
||||||
|
|
||||||
|
|
||||||
|
Build with Android Studio
|
||||||
|
-------------------------
|
||||||
|
Updater needs access to the system API, therefore it can't be built only using
|
||||||
|
the public SDK. You first need to generate the libraries with all the needed
|
||||||
|
classes. The application also needs elevated privileges, so you need to sign
|
||||||
|
it with the right key to update the one in the system partition. To do this:
|
||||||
|
|
||||||
|
- Place this directory anywhere in the Android source tree
|
||||||
|
- Generate a keystore and keystore.properties using `gen-keystore.sh`
|
||||||
|
- Build the dependencies running `make UpdaterStudio` from the root of the
|
||||||
|
Android source tree. This command will add the needed libraries in
|
||||||
|
`system_libraries/`.
|
||||||
|
|
||||||
|
You need to do the above once, unless Android Studio can't find some symbol.
|
||||||
|
In this case, rebuild the system libraries with `make UpdaterStudio`.
|
70
build.gradle
Normal file
70
build.gradle
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
classpath 'com.android.tools.build:gradle:3.1.0'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||||
|
def keystoreProperties = new Properties()
|
||||||
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||||
|
|
||||||
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 27
|
||||||
|
buildToolsVersion '27.0.3'
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion 27
|
||||||
|
targetSdkVersion 27
|
||||||
|
}
|
||||||
|
|
||||||
|
lintOptions {
|
||||||
|
ignore 'ProtectedPermissions'
|
||||||
|
// These depend on translations
|
||||||
|
ignore 'ExtraTranslation', 'ImpliedQuantity', 'MissingQuantity', 'MissingTranslation'
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
res.srcDirs = ['res']
|
||||||
|
java.srcDirs = ['src']
|
||||||
|
manifest.srcFile 'AndroidManifest.xml'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
debug {
|
||||||
|
keyAlias keystoreProperties['keyAlias']
|
||||||
|
keyPassword keystoreProperties['keyPassword']
|
||||||
|
storeFile file(keystoreProperties['storeFile'])
|
||||||
|
storePassword keystoreProperties['storePassword']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compileOnly fileTree(dir: 'system_libs/', include: ['*.jar'])
|
||||||
|
|
||||||
|
def supportLibVersion = "27.1.0"
|
||||||
|
implementation "com.android.support:appcompat-v7:${supportLibVersion}"
|
||||||
|
implementation "com.android.support:cardview-v7:${supportLibVersion}"
|
||||||
|
implementation "com.android.support:design:${supportLibVersion}"
|
||||||
|
implementation "com.android.support:preference-v7:${supportLibVersion}"
|
||||||
|
implementation "com.android.support:recyclerview-v7:${supportLibVersion}"
|
||||||
|
}
|
70
gen-keystore.sh
Executable file
70
gen-keystore.sh
Executable file
@@ -0,0 +1,70 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ $# -ne 4 ]; then
|
||||||
|
echo "Usage: `basename $0` PRIVATE_KEY CERTIFICATE \\"
|
||||||
|
echo " KEY_ALIAS OUTPUT_KEYSTORE_PATH"
|
||||||
|
echo
|
||||||
|
echo "Example:"
|
||||||
|
echo " `basename $0` \\"
|
||||||
|
echo " ../../../build/target/product/security/testkey.pk8 \\"
|
||||||
|
echo " ../../../build/target/product/security/testkey.x509.pem \\"
|
||||||
|
echo " android testkey.jks"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
PRIVATE_KEY="$1"
|
||||||
|
CERTIFICATE="$2"
|
||||||
|
KEY_ALIAS="$3"
|
||||||
|
KEYSTORE_PATH="$4"
|
||||||
|
|
||||||
|
if [ -f "$KEYSTORE_PATH" ]; then
|
||||||
|
echo "$KEYSTORE_PATH already exists"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "The passwords will be stored in clear text"
|
||||||
|
read -p "Enter new keystore password: " -s KEYSTORE_PASSWORD
|
||||||
|
echo
|
||||||
|
read -p "Enter new key password: " -s KEY_PASSWORD
|
||||||
|
echo
|
||||||
|
|
||||||
|
tmpdir=`mktemp -d`
|
||||||
|
trap 'rm -rf $tmpdir;' 0
|
||||||
|
|
||||||
|
key="$tmpdir/platform.key"
|
||||||
|
pk12="$tmpdir/platform.pk12"
|
||||||
|
openssl pkcs8 -in "$PRIVATE_KEY" -inform DER -outform PEM -nocrypt -out "$key"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
openssl pkcs12 -export -in "$CERTIFICATE" -inkey "$key" -name "$KEY_ALIAS" \
|
||||||
|
-out "$pk12" -password pass:"$KEY_PASSWORD"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
keytool -importkeystore \
|
||||||
|
-srckeystore "$pk12" -srcstoretype pkcs12 -srcstorepass "$KEY_PASSWORD" \
|
||||||
|
-destkeystore "$KEYSTORE_PATH" -deststorepass "$KEYSTORE_PASSWORD" \
|
||||||
|
-destkeypass "$KEY_PASSWORD"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Generating keystore.properties..."
|
||||||
|
if [ -f keystore.properties ]; then
|
||||||
|
echo "keystore.properties already exists, overwrite it? [Y/n]"
|
||||||
|
read reply
|
||||||
|
if [ "$reply" = "n" -o "$reply" = "N" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat > keystore.properties <<EOF
|
||||||
|
keyAlias=$KEY_ALIAS
|
||||||
|
keyPassword=$KEY_PASSWORD
|
||||||
|
storeFile=$KEYSTORE_PATH
|
||||||
|
storePassword=$KEYSTORE_PASSWORD
|
||||||
|
EOF
|
4
keystore.properties.sample
Normal file
4
keystore.properties.sample
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
keyAlias=android
|
||||||
|
keyPassword=android
|
||||||
|
storeFile=testkey.jks
|
||||||
|
storePassword=android
|
56
push-update.sh
Executable file
56
push-update.sh
Executable file
@@ -0,0 +1,56 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
updates_dir=/data/lineageos_updates
|
||||||
|
|
||||||
|
if [ ! -f "$1" ]; then
|
||||||
|
echo "Usage: $0 ZIP [UNVERIFIED]"
|
||||||
|
echo "Push ZIP to $updates_dir and add it to Updater"
|
||||||
|
echo
|
||||||
|
echo "The name of ZIP is assumed to have lineage-VERSION-DATE-TYPE-* as format"
|
||||||
|
echo "If UNVERIFIED is set, the app will verify the update"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
zip_path=`realpath "$1"`
|
||||||
|
|
||||||
|
if [ "`adb get-state 2>/dev/null`" != "device" ]; then
|
||||||
|
echo "No device found. Waiting for one..."
|
||||||
|
adb wait-for-device
|
||||||
|
fi
|
||||||
|
if ! adb root; then
|
||||||
|
echo "Could not run adbd as root"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
zip_path_device=$updates_dir/`basename "$zip_path"`
|
||||||
|
if adb shell test -f "$zip_path_device"; then
|
||||||
|
echo "$zip_path_device exists already"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$2" ]; then
|
||||||
|
status=1
|
||||||
|
else
|
||||||
|
status=2
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Assume lineage-VERSION-DATE-TYPE-*.zip
|
||||||
|
zip_name=`basename "$zip_path"`
|
||||||
|
id=`echo "$zip_name" | sha1sum | cut -d' ' -f1`
|
||||||
|
version=`echo "$zip_name" | cut -d'-' -f2`
|
||||||
|
type=`echo "$zip_name" | cut -d'-' -f4`
|
||||||
|
build_date=`echo "$zip_name" | cut -d'-' -f3 | cut -d'_' -f1`
|
||||||
|
timestamp=`date --date="$build_date 23:59:59" +%s`
|
||||||
|
size=`stat -c "%s" "$zip_path"`
|
||||||
|
|
||||||
|
adb push "$zip_path" "$zip_path_device"
|
||||||
|
adb shell chgrp cache "$zip_path_device"
|
||||||
|
adb shell chmod 664 "$zip_path_device"
|
||||||
|
|
||||||
|
# Kill the app before updating the database
|
||||||
|
adb shell "killall org.lineageos.updater 2>/dev/null"
|
||||||
|
adb shell "sqlite3 /data/data/org.lineageos.updater/databases/updates.db" \
|
||||||
|
"\"INSERT INTO updates (status, path, download_id, timestamp, type, version, size)" \
|
||||||
|
" VALUES ($status, '$zip_path_device', '$id', $timestamp, '$type', '$version', $size)\""
|
||||||
|
|
||||||
|
# Exit root mode
|
||||||
|
adb unroot
|
Binary file not shown.
Before Width: | Height: | Size: 1010 B |
Binary file not shown.
Before Width: | Height: | Size: 670 B |
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.1 KiB |
@@ -1,9 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
|
|
||||||
</vector>
|
|
@@ -1,9 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#000000"
|
|
||||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
|
|
||||||
</vector>
|
|
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FF000000"
|
|
||||||
android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
|
|
||||||
</vector>
|
|
13
res/drawable/ic_foreground.xml
Normal file
13
res/drawable/ic_foreground.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="72.72727"
|
||||||
|
android:viewportHeight="72.72727">
|
||||||
|
<group android:translateX="24.363636"
|
||||||
|
android:translateY="24.363636">
|
||||||
|
<path
|
||||||
|
android:fillColor="#FAFAFA"
|
||||||
|
android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
|
||||||
|
</group>
|
||||||
|
</vector>
|
||||||
|
|
@@ -1,9 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FF000000"
|
|
||||||
android:pathData="M11,17h2v-6h-2v6zM12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,20c-4.41,0 -8,-3.59 -8,-8s3.59,-8 8,-8 8,3.59 8,8 -3.59,8 -8,8zM11,9h2L13,7h-2v2z"/>
|
|
||||||
</vector>
|
|
@@ -6,6 +6,6 @@
|
|||||||
android:viewportHeight="24">
|
android:viewportHeight="24">
|
||||||
|
|
||||||
<path
|
<path
|
||||||
android:fillColor="@android:color/white"
|
android:fillColor="@color/inverted"
|
||||||
android:pathData="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" />
|
android:pathData="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" />
|
||||||
</vector>
|
</vector>
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:width="24dp"
|
android:width="24dp"
|
||||||
android:height="24dp"
|
android:height="24dp"
|
||||||
android:viewportWidth="24.0"
|
android:viewportHeight="24.0"
|
||||||
android:viewportHeight="24.0">
|
android:viewportWidth="24.0">
|
||||||
<path
|
<path
|
||||||
android:fillColor="#FF000000"
|
android:fillColor="#FF000000"
|
||||||
android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"/>
|
android:pathData="M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z" />
|
||||||
</vector>
|
</vector>
|
||||||
|
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FF000000"
|
|
||||||
android:pathData="M8,5v14l11,-7z"/>
|
|
||||||
</vector>
|
|
@@ -1,9 +0,0 @@
|
|||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:width="24dp"
|
|
||||||
android:height="24dp"
|
|
||||||
android:viewportWidth="24.0"
|
|
||||||
android:viewportHeight="24.0">
|
|
||||||
<path
|
|
||||||
android:fillColor="#FFFFFFFF"
|
|
||||||
android:pathData="M17,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7l-4,-4zM12,19c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM15,9L5,9L5,5h10v4z"/>
|
|
||||||
</vector>
|
|
@@ -5,6 +5,6 @@
|
|||||||
android:viewportWidth="24.0"
|
android:viewportWidth="24.0"
|
||||||
android:viewportHeight="24.0">
|
android:viewportHeight="24.0">
|
||||||
<path
|
<path
|
||||||
android:fillColor="#FF000000"
|
android:fillColor="@color/inverted"
|
||||||
android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
|
android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
|
||||||
</vector>
|
</vector>
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<item android:drawable="@color/background_selected" android:state_selected="true" />
|
|
||||||
<item android:drawable="@color/cardview_light_background" android:state_selected="false" />
|
|
||||||
</selector>
|
|
@@ -19,7 +19,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:theme="@style/AppTheme.AppBarOverlay"
|
android:theme="@style/AppTheme.AppBarOverlay"
|
||||||
app:collapsedTitleTextAppearance="@style/TextAppearanceWhite"
|
app:collapsedTitleTextAppearance="@style/TextAppearanceInverted"
|
||||||
app:contentScrim="?attr/colorPrimary"
|
app:contentScrim="?attr/colorPrimary"
|
||||||
app:expandedTitleTextAppearance="@style/TextAppearanceTransparent"
|
app:expandedTitleTextAppearance="@style/TextAppearanceTransparent"
|
||||||
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
||||||
@@ -39,31 +39,31 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="sans-serif-light"
|
android:fontFamily="sans-serif-light"
|
||||||
android:paddingBottom="16dp"
|
android:paddingBottom="16dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
android:textSize="56sp" />
|
android:textSize="56sp" />
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/header_build_date"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_below="@id/header_title"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
android:textSize="12sp" />
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/header_build_version"
|
android:id="@+id/header_build_version"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/header_build_date"
|
android:layout_below="@id/header_title"
|
||||||
android:textColor="@color/white"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
|
android:textSize="12sp" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/header_build_date"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_below="@id/header_build_version"
|
||||||
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/header_last_check"
|
android:id="@+id/header_last_check"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/header_build_version"
|
android:layout_below="@id/header_build_date"
|
||||||
android:textColor="@color/white"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="?attr/actionBarSize"
|
android:layout_height="?attr/actionBarSize"
|
||||||
android:titleTextColor="@color/white"
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
app:layout_collapseMode="pin" />
|
app:layout_collapseMode="pin" />
|
||||||
</android.support.design.widget.CollapsingToolbarLayout>
|
</android.support.design.widget.CollapsingToolbarLayout>
|
||||||
</android.support.design.widget.AppBarLayout>
|
</android.support.design.widget.AppBarLayout>
|
||||||
|
55
res/layout/preferences_dialog.xml
Normal file
55
res/layout/preferences_dialog.xml
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingEnd="24dp"
|
||||||
|
android:paddingStart="24dp"
|
||||||
|
android:paddingTop="16dp">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="@string/menu_auto_updates_check"
|
||||||
|
android:textColor="@color/inverted"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
|
||||||
|
<Spinner
|
||||||
|
android:id="@+id/preferences_auto_updates_check_interval"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:entries="@array/menu_auto_updates_check_interval_entries" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<Switch
|
||||||
|
android:id="@+id/preferences_auto_delete_updates"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:text="@string/menu_auto_delete_updates"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
|
||||||
|
<Switch
|
||||||
|
android:id="@+id/preferences_mobile_data_warning"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:text="@string/menu_mobile_data_warning"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
|
||||||
|
<Switch
|
||||||
|
android:id="@+id/preferences_ab_perf_mode"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:text="@string/menu_ab_perf_mode"
|
||||||
|
android:textSize="16sp" />
|
||||||
|
</LinearLayout>
|
@@ -1,105 +1,90 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<android.support.v7.widget.CardView
|
<android.support.v7.widget.CardView
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/card_view"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5dp"
|
|
||||||
android:focusable="true"
|
android:focusable="true"
|
||||||
android:foreground="?attr/selectableItemBackground"
|
android:foreground="?attr/selectableItemBackground"
|
||||||
android:nextFocusRight="@+id/update_action">
|
android:nextFocusRight="@+id/update_action"
|
||||||
|
app:cardCornerRadius="0dp"
|
||||||
|
app:contentPadding="16dp">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:baselineAligned="false"
|
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:paddingBottom="16dp"
|
|
||||||
android:paddingStart="16dp"
|
|
||||||
android:paddingTop="16dp"
|
|
||||||
android:weightSum="1">
|
android:weightSum="1">
|
||||||
|
|
||||||
<RelativeLayout
|
<LinearLayout
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1">
|
android:layout_weight="1"
|
||||||
|
android:orientation="vertical">
|
||||||
<RelativeLayout
|
|
||||||
android:id="@+id/build_layout_not_active"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_centerVertical="true">
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/build_version"
|
android:id="@+id/build_version"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:paddingBottom="8sp" />
|
android:alpha="0.87"
|
||||||
|
android:drawablePadding="8dp"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:paddingBottom="8sp"
|
||||||
|
android:textColor="?android:attr/textColorPrimary"
|
||||||
|
android:textSize="16sp"
|
||||||
|
tools:text="LineageOS 15.1" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/build_date"
|
android:id="@+id/build_date"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/build_version" />
|
android:maxLines="1"
|
||||||
</RelativeLayout>
|
android:textSize="14sp"
|
||||||
|
tools:text="29 February 2018" />
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:id="@+id/build_layout_active"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_centerVertical="true"
|
|
||||||
android:visibility="invisible">
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/build_info"
|
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content" />
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
<RelativeLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_below="@id/build_info"
|
|
||||||
android:layout_gravity="center">
|
|
||||||
|
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
android:id="@+id/progress_bar"
|
android:id="@+id/progress_bar"
|
||||||
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:progress="30" />
|
android:paddingTop="4sp"
|
||||||
|
android:visibility="invisible"
|
||||||
|
tools:progress="65"
|
||||||
|
tools:visibility="visible" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/progress_text"
|
android:id="@+id/progress_text"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/progress_bar"
|
android:layout_below="@id/progress_bar"
|
||||||
android:textSize="12sp" />
|
android:ellipsize="marquee"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:visibility="invisible"
|
||||||
|
tools:text="162 of 300 MB (3 minutes left) • 65%"
|
||||||
|
tools:visibility="visible" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/progress_percentage"
|
android:id="@+id/build_size"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentEnd="true"
|
android:paddingTop="8sp"
|
||||||
android:layout_below="@id/progress_bar"
|
android:singleLine="true"
|
||||||
android:textSize="12sp" />
|
tools:text="300 MB"
|
||||||
</RelativeLayout>
|
tools:visibility="invisible" />
|
||||||
</RelativeLayout>
|
|
||||||
</RelativeLayout>
|
|
||||||
|
|
||||||
<RelativeLayout
|
|
||||||
android:layout_width="80dp"
|
|
||||||
android:layout_height="match_parent">
|
|
||||||
|
|
||||||
<ImageButton
|
|
||||||
android:id="@id/update_action"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_centerInParent="true"
|
|
||||||
android:background="?attr/selectableItemBackgroundBorderless"
|
|
||||||
android:contentDescription="@string/action_description_download"
|
|
||||||
android:nextFocusLeft="@id/card_view"
|
|
||||||
android:src="@drawable/ic_download" />
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@id/update_action"
|
||||||
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:padding="8dp"
|
||||||
|
tools:text="Pause" />
|
||||||
|
</LinearLayout>
|
||||||
</android.support.v7.widget.CardView>
|
</android.support.v7.widget.CardView>
|
||||||
|
@@ -3,19 +3,11 @@
|
|||||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_export_update"
|
android:id="@+id/menu_export_update"
|
||||||
android:icon="@drawable/ic_save"
|
android:title="@string/menu_export_update" />
|
||||||
android:title="@string/menu_export_update"
|
|
||||||
android:visible="false"
|
|
||||||
app:showAsAction="ifRoom" />
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_delete_action"
|
android:id="@+id/menu_delete_action"
|
||||||
android:icon="@drawable/ic_delete"
|
android:title="@string/menu_delete_update" />
|
||||||
android:title="@string/menu_delete_update"
|
|
||||||
android:visible="false"
|
|
||||||
app:showAsAction="ifRoom" />
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_copy_url"
|
android:id="@+id/menu_copy_url"
|
||||||
android:title="@string/menu_copy_url"
|
android:title="@string/menu_copy_url" />
|
||||||
android:visible="false"
|
|
||||||
app:showAsAction="never" />
|
|
||||||
</menu>
|
</menu>
|
||||||
|
@@ -5,21 +5,13 @@
|
|||||||
android:id="@+id/menu_refresh"
|
android:id="@+id/menu_refresh"
|
||||||
android:icon="@drawable/ic_menu_refresh"
|
android:icon="@drawable/ic_menu_refresh"
|
||||||
android:title="@string/menu_refresh"
|
android:title="@string/menu_refresh"
|
||||||
app:showAsAction="always" />
|
app:showAsAction="ifRoom" />
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_auto_updates_check"
|
android:id="@+id/menu_preferences"
|
||||||
android:checkable="true"
|
android:title="@string/menu_preferences"
|
||||||
android:checked="true"
|
|
||||||
android:title="@string/menu_auto_updates_check"
|
|
||||||
app:showAsAction="never" />
|
app:showAsAction="never" />
|
||||||
<item
|
<item
|
||||||
android:id="@+id/menu_auto_delete_updates"
|
android:id="@+id/menu_show_changelog"
|
||||||
android:checkable="true"
|
android:title="@string/menu_show_changelog"
|
||||||
android:title="@string/menu_auto_delete_updates"
|
|
||||||
app:showAsAction="never" />
|
|
||||||
<item
|
|
||||||
android:id="@+id/menu_mobile_data_warning"
|
|
||||||
android:checkable="true"
|
|
||||||
android:title="@string/menu_mobile_data_warning"
|
|
||||||
app:showAsAction="never" />
|
app:showAsAction="never" />
|
||||||
</menu>
|
</menu>
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
<!-- Copyright (c) 2018 The LineageOS Project
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 The LineageOS Project
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@@ -15,9 +13,8 @@
|
|||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<background android:drawable="@color/ic_background"/>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<foreground android:drawable="@drawable/ic_foreground"/>
|
||||||
<!-- Directory where the downloads will be exported to.
|
</adaptive-icon>
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,109 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">المُحدث</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">المُحدث</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">فشل التحقق</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<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="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="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="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="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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$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>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> ثانية متبقية</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> دقائق متبقية</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> دقيقة متبقية</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> دقيقة متبقية</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> دقيقة متبقية</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> دقيقة متبقية</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> دقيقة متبقية</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> ساعات متبقية</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">تنبيه</string>
|
||||||
|
<string name="update_on_mobile_data_message">أنت على وشك أن تقوم بتنزيل حزمة تحديث باستخدام البيانات مما سيتسبب في استخدام عالي للبيانات. هل تريد المتابعة؟</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">لا تظهر هذا مجدداً</string>
|
||||||
|
<string name="menu_mobile_data_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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,57 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Anovador</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Anovador</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="new_updates_found_title">Hai anovamientos</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Posar</string>
|
||||||
|
<string name="resume_button">Siguir</string>
|
||||||
|
<string name="finalizing_package">Finando la instalación del paquete</string>
|
||||||
|
<string name="preparing_ota_first_boot">Tresnando\'l primer arrinque</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="menu_preferences">Preferencies</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Caldía</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Una vegada per selmana</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Una vegada per mes</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Enxamás</string>
|
||||||
|
<string name="menu_show_changelog">Amosar el rexistru de cambeos</string>
|
||||||
|
<string name="menu_ab_perf_mode">Priorizar el procesu d\'anovamientu</string>
|
||||||
|
<string name="snack_updates_found">Atopáronse anovamientos</string>
|
||||||
|
<string name="snack_no_updates_found">Nun s\'atopó nengún anovamientu</string>
|
||||||
|
<string name="snack_update_not_installable">Esti anovamientu nun se pue instalar 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="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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="action_download">Baxar</string>
|
||||||
|
<string name="action_pause">Posar</string>
|
||||||
|
<string name="action_resume">Siguir</string>
|
||||||
|
<string name="action_install">Instalar</string>
|
||||||
|
<string name="action_info">Información</string>
|
||||||
|
<string name="action_delete">Desaniciar</string>
|
||||||
|
<string name="action_cancel">Encaboxar</string>
|
||||||
|
<string name="confirm_delete_dialog_message">¿Quies desaniciar l\'anovamientu esbilláu?</string>
|
||||||
|
<string name="cancel_installation_dialog_message">¿Quies encaboxar la instalación?</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">Queda 1 segundu</item>
|
||||||
|
<item quantity="other">Queden <xliff:g id="count">%d</xliff:g> segundos</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">Queda un 1 minutu</item>
|
||||||
|
<item quantity="other">Queden <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">Queda 1 hora</item>
|
||||||
|
<item quantity="other">Queden <xliff:g id="count">%d</xliff:g> hores</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Alvertencia</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Nun volver amosar</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>
|
||||||
|
<string name="new_updates_channel_title">Hai anovamientos</string>
|
||||||
|
<string name="ongoing_channel_title">Descargues en cursu</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
111
res/values-az/strings.xml
Normal file
111
res/values-az/strings.xml
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">Yeniləyici</string>
|
||||||
|
<string name="display_name">Yeniləyici</string>
|
||||||
|
<string name="verification_failed_notification">Təsdiqləmə uğursuz oldu</string>
|
||||||
|
<string name="verifying_download_notification">Yeniləmə təsdiqlənir</string>
|
||||||
|
<string name="downloading_notification">Endirilir</string>
|
||||||
|
<string name="download_paused_notification">Endirməyə fasilə verildi</string>
|
||||||
|
<string name="download_paused_error_notification">Endirmə xətası</string>
|
||||||
|
<string name="download_completed_notification">Endirmə tamamlandı</string>
|
||||||
|
<string name="download_starting_notification">Endirmə başladılır</string>
|
||||||
|
<string name="update_failed_notification">Yeniləmə uğursuz oldu</string>
|
||||||
|
<string name="new_updates_found_title">Ən son yeniləmələr</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Fasilə ver</string>
|
||||||
|
<string name="resume_button">Davam etdir</string>
|
||||||
|
<string name="installing_update">Yeniləmə paketi quraşdırılır</string>
|
||||||
|
<string name="installing_update_error">Quraşdırma xətası</string>
|
||||||
|
<string name="installing_update_finished">Yeniləmə quraşdırıldı</string>
|
||||||
|
<string name="finalizing_package">Paket quraşdırma tamamlanır</string>
|
||||||
|
<string name="preparing_ota_first_boot">İlk yükləmə üçün hazırlanır</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Yeniləmə ilkin hazırlığı</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="reboot">Yenidən başlat</string>
|
||||||
|
<string name="menu_refresh">Təzələ</string>
|
||||||
|
<string name="menu_preferences">Tərcihlər</string>
|
||||||
|
<string name="menu_auto_updates_check">Avtomatik yeniləmə yoxlanışı</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Gündə bir dəfə</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Həftədə bir dəfə</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Ayda bir dəfə</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Heç vaxt</string>
|
||||||
|
<string name="menu_auto_delete_updates">Quraşdırılanda yeniləmələri sil</string>
|
||||||
|
<string name="menu_delete_update">Sil</string>
|
||||||
|
<string name="menu_copy_url">URL-ni Kopyala</string>
|
||||||
|
<string name="menu_export_update">Yeniləməni köçür</string>
|
||||||
|
<string name="menu_show_changelog">Dəyişiklik jurnalını göstər</string>
|
||||||
|
<string name="menu_ab_perf_mode">Üstünlüyü yeniləmə prosesinə ver</string>
|
||||||
|
<string name="snack_updates_found">Yeniləmə tapıldı</string>
|
||||||
|
<string name="snack_no_updates_found">Yeniləmə yoxdur</string>
|
||||||
|
<string name="snack_updates_check_failed">Yeniləmə yoxlanışı uğursuz oldu. Zəhmət olmasa internet bağlantısını yoxlayıb yenidən cəhd edin.</string>
|
||||||
|
<string name="snack_download_failed">Endirmə uğursuz oldu. Zəhmət olmasa internet bağlantısını yoxlayıb yenidən cəhd edin.</string>
|
||||||
|
<string name="snack_download_verification_failed">Yeniləmə təsdiqləməsi uğursuz oldu.</string>
|
||||||
|
<string name="snack_download_verified">Endirmə tamamlandı.</string>
|
||||||
|
<string name="snack_update_not_installable">Bu yeniləmə hazırki quruluşun üzərində quraşdırıla bilməz.</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">Son yoxlama: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Yeniləmə təsdiqlənir</string>
|
||||||
|
<string name="list_no_updates">Yeniləmə tapılmadı. Yeniləmələri əllə yoxlamaq üçün Təzələ düyməsindən istifadə edin.</string>
|
||||||
|
<string name="action_download">Endir</string>
|
||||||
|
<string name="action_pause">Fasilə ver</string>
|
||||||
|
<string name="action_resume">Davam etdir</string>
|
||||||
|
<string name="action_install">Quraşdır</string>
|
||||||
|
<string name="action_info">Məlumat</string>
|
||||||
|
<string name="action_delete">Sil</string>
|
||||||
|
<string name="action_cancel">İmtina</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Faylı sil</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Seçilmiş yeniləmə faylı silinsin?</string>
|
||||||
|
<string name="apply_update_dialog_title">Yeniləməni tətbiq et</string>
|
||||||
|
<string name="apply_update_dialog_message"><xliff:g id="update_name">%1$s</xliff:g> yüksəldirsiniz.\n\n<xliff:g id="ok">%2$s</xliff:g> bassanız, cihaz yeniləməni quraşdırmaq üçün bərpa rejimində yenidən başlayacaq.\n\nQeyd: Bu özəlliyin uyğun bir Bərpa mühitinə ehtiyacı var və ya yenilə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> yüksəldirsiniz.\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>
|
||||||
|
<string name="toast_download_url_copied">Bağlantı kopyalandı</string>
|
||||||
|
<string name="dialog_export_title">Yeniləmə köçürülür</string>
|
||||||
|
<string name="notification_export_success">Yeniləmə köçürüldü</string>
|
||||||
|
<string name="notification_export_fail">Köçürmə xətası</string>
|
||||||
|
<string name="toast_already_exporting">Artıq bir yeniləmə köçürülür</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 saniyə qaldı</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> saniyə qaldı</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 dəqiqə qaldı</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> dəqiqə qaldı</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 saat qaldı</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> saat qaldı</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Xəbərdarlıq</string>
|
||||||
|
<string name="update_on_mobile_data_message">Böyük ehtimalla mobil verilənlərdən istifadə edərək yüksək verilənlər istifadəsinə səbəb olacaq yeniləmə paketi endirirsiniz. Davam etmək istəyirsiniz?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Təkrar göstərmə</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobil verilənlər xəbərdarlığı</string>
|
||||||
|
<string name="blocked_update_dialog_title">Yeniləmə əngəlləndi</string>
|
||||||
|
<string name="blocked_update_dialog_message">Bu yeniləmə, tətbiq yeniləyici istifadə edilərək quraşdırıla bilməz. Ətraflı məlumat üçün zəhmət olmasa <xliff:g id="info_url">%1$s</xliff:g> ünvanını oxuyun.</string>
|
||||||
|
<string name="export_channel_title">Köçürmə tamamlandı</string>
|
||||||
|
<string name="new_updates_channel_title">Ən son yeniləmələr</string>
|
||||||
|
<string name="ongoing_channel_title">Davam edən endirmələr</string>
|
||||||
|
<string name="update_failed_channel_title">Yeniləmə uğursuz oldu</string>
|
||||||
|
</resources>
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Актуализатор</string>
|
<string name="app_name">Актуализатор</string>
|
||||||
<string name="display_name">Актуализатор</string>
|
<string name="display_name">Актуализатор</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Неуспешна проверка</string>
|
<string name="verification_failed_notification">Неуспешна проверка</string>
|
||||||
<string name="verifying_download_notification">Проверено обновяване</string>
|
<string name="verifying_download_notification">Проверено обновяване</string>
|
||||||
<string name="downloading_notification">Сваляне</string>
|
<string name="downloading_notification">Сваляне</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Грешка при изтегляне</string>
|
<string name="download_paused_error_notification">Грешка при изтегляне</string>
|
||||||
<string name="download_completed_notification">Изтеглянето приключи</string>
|
<string name="download_completed_notification">Изтеглянето приключи</string>
|
||||||
<string name="download_starting_notification">Започни сваляне</string>
|
<string name="download_starting_notification">Започни сваляне</string>
|
||||||
|
<string name="update_failed_notification">Актуализацията прекратена</string>
|
||||||
<string name="new_updates_found_title">Нови актуализации</string>
|
<string name="new_updates_found_title">Нови актуализации</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Пауза</string>
|
<string name="pause_button">Пауза</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">Финализиране на пакетната инсталация</string>
|
<string name="finalizing_package">Финализиране на пакетната инсталация</string>
|
||||||
<string name="preparing_ota_first_boot">Подготовка за първо зареждане</string>
|
<string name="preparing_ota_first_boot">Подготовка за първо зареждане</string>
|
||||||
<string name="dialog_prepare_zip_message">Предварителна подготовка на актуализацията</string>
|
<string name="dialog_prepare_zip_message">Предварителна подготовка на актуализацията</string>
|
||||||
<string name="notification_prepare_zip_error_title">Актуализацията не можа да бъде подготвена</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="reboot">Рестартиране</string>
|
<string name="reboot">Рестартиране</string>
|
||||||
<string name="menu_refresh">Опресняване</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>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Никога</string>
|
||||||
<string name="menu_auto_delete_updates">Изтриване на актуализациите след инсталиране</string>
|
<string name="menu_auto_delete_updates">Изтриване на актуализациите след инсталиране</string>
|
||||||
<string name="menu_delete_update">Изтриване</string>
|
<string name="menu_delete_update">Изтриване</string>
|
||||||
<string name="menu_copy_url">Копирай адреса</string>
|
<string name="menu_copy_url">Копирай адреса</string>
|
||||||
<string name="menu_export_update">Експортиране на актуализация</string>
|
<string name="menu_export_update">Експортиране на актуализация</string>
|
||||||
<string name="dialog_checking_for_updates">Проверка за актуализации</string>
|
<string name="menu_show_changelog">Покажи промените</string>
|
||||||
|
<string name="menu_ab_perf_mode">Приоритет на процеса на актуализиране</string>
|
||||||
<string name="snack_updates_found">Намерена е нова актуализация</string>
|
<string name="snack_updates_found">Намерена е нова актуализация</string>
|
||||||
<string name="snack_no_updates_found">Няма нови актуализации</string>
|
<string name="snack_no_updates_found">Няма нови актуализации</string>
|
||||||
<string name="snack_updates_check_failed">Проверката за актуализации се провали. Моля проверете връзката с интернет и опитайте отново по-късно.</string>
|
<string name="snack_updates_check_failed">Проверката за актуализации се провали. Моля проверете връзката с интернет и опитайте отново по-късно.</string>
|
||||||
@@ -60,39 +63,40 @@
|
|||||||
<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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> left</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Инсталиране на актуализация</string>
|
|
||||||
<string name="list_verifying_update">Проверка на актуализацията</string>
|
<string name="list_verifying_update">Проверка на актуализацията</string>
|
||||||
<string name="list_no_updates">Не са намерени нови актуализации. За да проверите ръчно за нови актуализации, използвайте бутона за обновяване.</string>
|
<string name="list_no_updates">Не са намерени нови актуализации. За да проверите ръчно за нови актуализации, използвайте бутона за обновяване.</string>
|
||||||
<string name="action_description_download">Изтегли</string>
|
<string name="action_download">Изтегли</string>
|
||||||
<string name="action_description_pause">Пауза на изтеглянето</string>
|
<string name="action_pause">Пауза</string>
|
||||||
<string name="action_description_resume">Възобнови изтеглянето</string>
|
<string name="action_resume">Възобнови</string>
|
||||||
<string name="action_description_install">Инсталиране на актуализация</string>
|
<string name="action_install">Инсталиране</string>
|
||||||
<string name="action_description_info">Показване на информация</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_title">Изтриване на файл</string>
|
||||||
<string name="confirm_delete_dialog_message">Да бъде ли изтрит файлът на избраната актуализация?</string>
|
<string name="confirm_delete_dialog_message">Да бъде ли изтрит файлът на избраната актуализация?</string>
|
||||||
<string name="apply_update_dialog_title">Приложи актуализацията</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Забележка: Тази функция изисква съвместимо Recovery или актуализации трябва да бъдат инсталирани ръчно.</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Забележка: Тази функция изисква съвместимо Recovery или актуализации трябва да бъдат инсталирани ръчно.</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="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="label_download_url">Изтеглете URL</string>
|
||||||
<string name="toast_download_url_copied">URL Копиран</string>
|
<string name="toast_download_url_copied">URL Копиран</string>
|
||||||
<string name="snack_export_failed">Изтеглянето не можа да се експортира</string>
|
|
||||||
<string name="dialog_export_title">Експортиране на актуализация</string>
|
<string name="dialog_export_title">Експортиране на актуализация</string>
|
||||||
<string name="dialog_export_message">Експортиране на актуализация <xliff:g id="filename">%1$s</xliff:g> във външно хранилище.</string>
|
|
||||||
<string name="notification_export_success">Актуализацията е експортирана</string>
|
<string name="notification_export_success">Актуализацията е експортирана</string>
|
||||||
<string name="notification_export_fail">Грешка при експортиране</string>
|
<string name="notification_export_fail">Грешка при експортиране</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Вече изнася актуализация</string>
|
||||||
<item quantity="one">1 секунда</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> секунди</item>
|
<item quantity="one">остава 1 секунда</item>
|
||||||
|
<item quantity="other">остават <xliff:g id="count">%d</xliff:g> секунди</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 минута</item>
|
<item quantity="one">остава 1 минута</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> минути</item>
|
<item quantity="other">остават <xliff:g id="count">%d</xliff:g> минути</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 час</item>
|
<item quantity="one">остава 1 час</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> часа</item>
|
<item quantity="other">остават <xliff:g id="count">%d</xliff:g> часа</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Внимание</string>
|
<string name="update_on_mobile_data_title">Внимание</string>
|
||||||
<string name="update_on_mobile_data_message">На път сте да изтеглите пакет за актуализиране, използвайки мобилни данни, което вероятно ще доведе до високо използване на данните. Искате ли да продължите?</string>
|
<string name="update_on_mobile_data_message">На път сте да изтеглите пакет за актуализиране, използвайки мобилни данни, което вероятно ще доведе до високо използване на данните. Искате ли да продължите?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Предупреждение за мобилни данни</string>
|
<string name="menu_mobile_data_warning">Предупреждение за мобилни данни</string>
|
||||||
<string name="blocked_update_dialog_title">Актуализацията е блокирана</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="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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
33
res/values-bn/strings.xml
Normal file
33
res/values-bn/strings.xml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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="verification_failed_notification">যাচাইকরণ ব্যর্থ হয়েছে</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">বিরাম</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>
|
||||||
|
</resources>
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
41
res/values-bs/strings.xml
Normal file
41
res/values-bs/strings.xml
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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="dialog_battery_low_title">Slaba baterija</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Baterija je slaba, potrebno je barem <xliff:g id="percent_discharging">%1$d</xliff:g>%% baterije za nastavak, <xliff:g id="percent_charging">%2$d</xliff:g>%% ukoliko se puni.</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Jednom dnevno</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Jednom sedmično</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Jednom mjesečno</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Nikada</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 sekunda preostala</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> sekunde preostale</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> sekundi preostalo</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minuta preostala</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> minute preostale</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuta preostalo</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 sat preostao</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> sata preostalo</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> sati preostalo</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="export_channel_title">Izvoz završen</string>
|
||||||
|
<string name="ongoing_channel_title">Preuzimanja u toku</string>
|
||||||
|
</resources>
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Actualitzador</string>
|
<string name="app_name">Actualitzador</string>
|
||||||
<string name="display_name">Actualitzador</string>
|
<string name="display_name">Actualitzador</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Ha fallat la verificació</string>
|
<string name="verification_failed_notification">Ha fallat la verificació</string>
|
||||||
<string name="verifying_download_notification">S\'està verificant l\'actualització</string>
|
<string name="verifying_download_notification">S\'està verificant l\'actualització</string>
|
||||||
<string name="downloading_notification">S\'està baixant</string>
|
<string name="downloading_notification">S\'està baixant</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Baixada fallida</string>
|
<string name="download_paused_error_notification">Baixada fallida</string>
|
||||||
<string name="download_completed_notification">Baixada completada</string>
|
<string name="download_completed_notification">Baixada completada</string>
|
||||||
<string name="download_starting_notification">S\'està iniciant la baixada</string>
|
<string name="download_starting_notification">S\'està iniciant la baixada</string>
|
||||||
|
<string name="update_failed_notification">Actualització fallida</string>
|
||||||
<string name="new_updates_found_title">Noves actualitzacions</string>
|
<string name="new_updates_found_title">Noves actualitzacions</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pausa</string>
|
<string name="pause_button">Pausa</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">S\'està finalitzant la instal·lació del paquet</string>
|
<string name="finalizing_package">S\'està finalitzant la instal·lació del paquet</string>
|
||||||
<string name="preparing_ota_first_boot">S\'està preparant el primer inici</string>
|
<string name="preparing_ota_first_boot">S\'està preparant el primer inici</string>
|
||||||
<string name="dialog_prepare_zip_message">Preparació preliminar de l\'actualització</string>
|
<string name="dialog_prepare_zip_message">Preparació preliminar de l\'actualització</string>
|
||||||
<string name="notification_prepare_zip_error_title">No s\'ha pogut preparar 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="reboot">Reinicia</string>
|
<string name="reboot">Reinicia</string>
|
||||||
<string name="menu_refresh">Recarrega</string>
|
<string name="menu_refresh">Recarrega</string>
|
||||||
|
<string name="menu_preferences">Preferències</string>
|
||||||
<string name="menu_auto_updates_check">Comprova automàticament les actualitzacions</string>
|
<string name="menu_auto_updates_check">Comprova automàticament les actualitzacions</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Un cop al dia</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Un cop per setmana</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Un cop al mes</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Mai</string>
|
||||||
<string name="menu_auto_delete_updates">Elimina les actualitzacions una vegada s\'hagin instal·lat</string>
|
<string name="menu_auto_delete_updates">Elimina les actualitzacions una vegada s\'hagin instal·lat</string>
|
||||||
<string name="menu_delete_update">Elimina</string>
|
<string name="menu_delete_update">Elimina</string>
|
||||||
<string name="menu_copy_url">Copia l\'URL</string>
|
<string name="menu_copy_url">Copia l\'URL</string>
|
||||||
<string name="menu_export_update">Exporta l\'actualització</string>
|
<string name="menu_export_update">Exporta l\'actualització</string>
|
||||||
<string name="dialog_checking_for_updates">S\'està cercant actualitzacions</string>
|
<string name="menu_show_changelog">Mostra el registre de canvis</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritza el procés d\'actualització</string>
|
||||||
<string name="snack_updates_found">No s\'han trobat noves actualitzacions</string>
|
<string name="snack_updates_found">No s\'han trobat noves actualitzacions</string>
|
||||||
<string name="snack_no_updates_found">No s\'han trobat noves actualitzacions</string>
|
<string name="snack_no_updates_found">No s\'han trobat noves actualitzacions</string>
|
||||||
<string name="snack_updates_check_failed">Ha fallat la comprovació d\'actualització. Verifiqueu la connexió a Internet i tomeu-ho a provar més tard.</string>
|
<string name="snack_updates_check_failed">Ha fallat la comprovació d\'actualització. Verifiqueu la connexió a Internet i tomeu-ho a provar més tard.</string>
|
||||||
@@ -60,39 +63,40 @@
|
|||||||
<string name="header_last_updates_check">Darrera comprovació: <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="header_last_updates_check">Darrera comprovació: <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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> left</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">S\'està instal·lant l\'actualització</string>
|
|
||||||
<string name="list_verifying_update">S\'està verificant l\'actualització</string>
|
<string name="list_verifying_update">S\'està verificant l\'actualització</string>
|
||||||
<string name="list_no_updates">No s\'han trobat noves actualitzacions. Per comprovar manualment si hi ha noves actualitzacions, utilitzeu el botó Refresca.</string>
|
<string name="list_no_updates">No s\'han trobat noves actualitzacions. Per comprovar manualment si hi ha noves actualitzacions, utilitzeu el botó Refresca.</string>
|
||||||
<string name="action_description_download">Baixa</string>
|
<string name="action_download">Baixa</string>
|
||||||
<string name="action_description_pause">Pausa la baixada</string>
|
<string name="action_pause">Pausa</string>
|
||||||
<string name="action_description_resume">Reprèn la baixada</string>
|
<string name="action_resume">Reprèn</string>
|
||||||
<string name="action_description_install">Instal·la l\'actualització</string>
|
<string name="action_install">Instal·la</string>
|
||||||
<string name="action_description_info">Mostrar informació</string>
|
<string name="action_info">Informació</string>
|
||||||
|
<string name="action_delete">Suprimeix</string>
|
||||||
|
<string name="action_cancel">Cancel·la</string>
|
||||||
<string name="confirm_delete_dialog_title">Esborra el fitxer</string>
|
<string name="confirm_delete_dialog_title">Esborra el fitxer</string>
|
||||||
<string name="confirm_delete_dialog_message">Vols esborrar el fitxer d\'actualització seleccionat?</string>
|
<string name="confirm_delete_dialog_message">Vols esborrar el fitxer d\'actualització seleccionat?</string>
|
||||||
<string name="apply_update_dialog_title">Aplica l\'actualització</string>
|
<string name="apply_update_dialog_title">Aplica l\'actualització</string>
|
||||||
<string name="apply_update_dialog_message">Estàs a punt d\'actualitzar a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSi prems <xliff:g id="ok">%2$s</xliff:g>, el dispositiu es reiniciarà en mode recuperació per instal·lar l\'actualització.\n\nNota: Aquesta funció requereix un «Recovery» compatible o les actualitzacions s\'hauran d\'instal·lar manualment.</string>
|
<string name="apply_update_dialog_message">Estàs a punt d\'actualitzar a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSi prems <xliff:g id="ok">%2$s</xliff:g>, el dispositiu es reiniciarà en mode recuperació per instal·lar l\'actualització.\n\nNota: Aquesta funció requereix un «Recovery» compatible o les actualitzacions s\'hauran d\'instal·lar manualment.</string>
|
||||||
<string name="apply_update_dialog_message_ab">Estàs a punt d\'actualitzar a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSi prems <xliff:g id="ok">%2$s</xliff:g>, el dispositiu començarà a instal·lar en segon pla.\n\nUn cop completat, se\'t demanarà reiniciar.</string>
|
<string name="apply_update_dialog_message_ab">Estàs a punt d\'actualitzar a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSi prems <xliff:g id="ok">%2$s</xliff:g>, el dispositiu començarà a instal·lar en segon pla.\n\nUn cop completat, se\'t demanarà reiniciar.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Voleu cancel·lar la instal·lació?</string>
|
||||||
<string name="label_download_url">URL de baixada</string>
|
<string name="label_download_url">URL de baixada</string>
|
||||||
<string name="toast_download_url_copied">URL copiada</string>
|
<string name="toast_download_url_copied">URL copiada</string>
|
||||||
<string name="snack_export_failed">No s\'ha pogut exportar la baixada</string>
|
|
||||||
<string name="dialog_export_title">S\'està exportant l\'actualització</string>
|
<string name="dialog_export_title">S\'està exportant l\'actualització</string>
|
||||||
<string name="dialog_export_message">S\'està exportant l\'actualització com a <xliff:g id="filename">%1$s</xliff:g> a l\'emmagatzematge extern.</string>
|
|
||||||
<string name="notification_export_success">Actualització exportada</string>
|
<string name="notification_export_success">Actualització exportada</string>
|
||||||
<string name="notification_export_fail">Ha fallat l\'exportació</string>
|
<string name="notification_export_fail">Ha fallat l\'exportació</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Ja s\'està exportant una actualització</string>
|
||||||
<item quantity="one">1 segon</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> segons</item>
|
<item quantity="one">Falta 1 segon</item>
|
||||||
|
<item quantity="other">Falten <xliff:g id="count">%d</xliff:g> segons</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minut</item>
|
<item quantity="one">Falta 1 minut</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuts</item>
|
<item quantity="other">Falten <xliff:g id="count">%d</xliff:g> minuts</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 hora</item>
|
<item quantity="one">Falta 1 hora</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> hores</item>
|
<item quantity="other">Falten <xliff:g id="count">%d</xliff:g> hores</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Advertència</string>
|
<string name="update_on_mobile_data_title">Advertència</string>
|
||||||
<string name="update_on_mobile_data_message">Estàs a punt de baixar un paquet d\'actualització amb dades mòbils que probablement generarà un alt ús de dades. Voleu continuar?</string>
|
<string name="update_on_mobile_data_message">Estàs a punt de baixar un paquet d\'actualització amb dades mòbils que probablement generarà un alt ús de dades. Voleu continuar?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Avís d\'ús de dades</string>
|
<string name="menu_mobile_data_warning">Avís d\'ús de dades</string>
|
||||||
<string name="blocked_update_dialog_title">Actualització bloquejada</string>
|
<string name="blocked_update_dialog_title">Actualització bloquejada</string>
|
||||||
<string name="blocked_update_dialog_message">Aquesta actualització no es pot instal·lar mitjançant l\'aplicació actualitzador. Per obtenir més informació, llegiu <xliff:g id="info_url">%1$s</xliff:g>.</string>
|
<string name="blocked_update_dialog_message">Aquesta actualització no es pot instal·lar mitjançant l\'aplicació actualitzador. Per obtenir més informació, llegiu <xliff:g id="info_url">%1$s</xliff:g>.</string>
|
||||||
|
<string name="export_channel_title">Exportació completada</string>
|
||||||
|
<string name="new_updates_channel_title">Noves actualitzacions</string>
|
||||||
|
<string name="ongoing_channel_title">Baixades en curs</string>
|
||||||
|
<string name="update_failed_channel_title">Actualització fallida</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Aktualizace</string>
|
<string name="app_name">Aktualizace</string>
|
||||||
<string name="display_name">Aktualizace</string>
|
<string name="display_name">Aktualizace</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Ověření selhalo</string>
|
<string name="verification_failed_notification">Ověření selhalo</string>
|
||||||
<string name="verifying_download_notification">Ověření aktualizace</string>
|
<string name="verifying_download_notification">Ověření aktualizace</string>
|
||||||
<string name="downloading_notification">Stahování</string>
|
<string name="downloading_notification">Stahování</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Chyba při stahování</string>
|
<string name="download_paused_error_notification">Chyba při stahování</string>
|
||||||
<string name="download_completed_notification">Stahování úspěšné</string>
|
<string name="download_completed_notification">Stahování úspěšné</string>
|
||||||
<string name="download_starting_notification">Zahajování stahování</string>
|
<string name="download_starting_notification">Zahajování stahování</string>
|
||||||
|
<string name="update_failed_notification">Aktualizace se nezdařila</string>
|
||||||
<string name="new_updates_found_title">Nové aktualizace</string>
|
<string name="new_updates_found_title">Nové aktualizace</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pozastavit</string>
|
<string name="pause_button">Pozastavit</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">Dokončování instalace balíčku</string>
|
<string name="finalizing_package">Dokončování instalace balíčku</string>
|
||||||
<string name="preparing_ota_first_boot">Příprava na první spuštění</string>
|
<string name="preparing_ota_first_boot">Příprava na první spuštění</string>
|
||||||
<string name="dialog_prepare_zip_message">Příprava předběžné aktualizace</string>
|
<string name="dialog_prepare_zip_message">Příprava předběžné aktualizace</string>
|
||||||
<string name="notification_prepare_zip_error_title">Aktualizaci nelze připravit</string>
|
<string name="dialog_battery_low_title">Slabá baterie</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Úroveň nabití baterie je příliš nízká, potřebujete alespoň <xliff:g id="percent_discharging">%1$d</xliff:g>%% baterie pro pokračování, <xliff:g id="percent_charging">%2$d</xliff:g>%% při nabíjení.</string>
|
||||||
<string name="reboot">Reboot</string>
|
<string name="reboot">Reboot</string>
|
||||||
<string name="menu_refresh">Obnovit</string>
|
<string name="menu_refresh">Obnovit</string>
|
||||||
|
<string name="menu_preferences">Předvolby</string>
|
||||||
<string name="menu_auto_updates_check">Automatická kontrola aktualizací</string>
|
<string name="menu_auto_updates_check">Automatická kontrola aktualizací</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Jednou denně</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Jednou týdně</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Jednou měsíčně</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Nikdy</string>
|
||||||
<string name="menu_auto_delete_updates">Odstranit aktualizace po instalaci</string>
|
<string name="menu_auto_delete_updates">Odstranit aktualizace po instalaci</string>
|
||||||
<string name="menu_delete_update">Odstranit</string>
|
<string name="menu_delete_update">Odstranit</string>
|
||||||
<string name="menu_copy_url">Kopírovat URL</string>
|
<string name="menu_copy_url">Kopírovat URL</string>
|
||||||
<string name="menu_export_update">Export aktualizace</string>
|
<string name="menu_export_update">Export aktualizace</string>
|
||||||
<string name="dialog_checking_for_updates">Vyhledávání aktualizací</string>
|
<string name="menu_show_changelog">Zobrazit seznam změn</string>
|
||||||
|
<string name="menu_ab_perf_mode">Upřednostňovat proces aktualizace</string>
|
||||||
<string name="snack_updates_found">Nalezeny nové aktualizace</string>
|
<string name="snack_updates_found">Nalezeny nové aktualizace</string>
|
||||||
<string name="snack_no_updates_found">Nové aktualizace nenalezeny</string>
|
<string name="snack_no_updates_found">Nové aktualizace nenalezeny</string>
|
||||||
<string name="snack_updates_check_failed">Zjištění nové verze selhalo. Prosím zkontrolujte připojení k internetu a pokus opakujte.</string>
|
<string name="snack_updates_check_failed">Zjištění nové verze selhalo. Prosím zkontrolujte připojení k internetu a pokus opakujte.</string>
|
||||||
@@ -60,42 +63,46 @@
|
|||||||
<string name="header_last_updates_check">Poslední kontrola: <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="header_last_updates_check">Poslední kontrola: <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">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_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"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> z <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
<string name="list_download_progress_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> z <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_eta"><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="duration" example="3 minutes">%3$s</xliff:g> zbývá</string>
|
<string name="list_download_progress_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> z <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Instalace aktualizace</string>
|
|
||||||
<string name="list_verifying_update">Ověření aktualizace</string>
|
<string name="list_verifying_update">Ověření aktualizace</string>
|
||||||
<string name="list_no_updates">Nebyly nalezeny žádné nové aktualizace. Chcete-li ručně vyhledat nové aktualizace, použijte tlačítko „Obnovit“.</string>
|
<string name="list_no_updates">Nebyly nalezeny žádné nové aktualizace. Chcete-li ručně vyhledat nové aktualizace, použijte tlačítko „Obnovit“.</string>
|
||||||
<string name="action_description_download">Stáhnout</string>
|
<string name="action_download">Stáhnout</string>
|
||||||
<string name="action_description_pause">Pozastavit stahování</string>
|
<string name="action_pause">Pozastavit</string>
|
||||||
<string name="action_description_resume">Obnovit stahování</string>
|
<string name="action_resume">Pokračovat</string>
|
||||||
<string name="action_description_install">Instalovat aktualizaci</string>
|
<string name="action_install">Instalovat</string>
|
||||||
<string name="action_description_info">Zobrazit informace</string>
|
<string name="action_info">Informace</string>
|
||||||
|
<string name="action_delete">Odstranit</string>
|
||||||
|
<string name="action_cancel">Zrušit</string>
|
||||||
<string name="confirm_delete_dialog_title">Smazat soubor</string>
|
<string name="confirm_delete_dialog_title">Smazat soubor</string>
|
||||||
<string name="confirm_delete_dialog_message">Smazat zvolený soubor aktualizace?</string>
|
<string name="confirm_delete_dialog_message">Smazat zvolený soubor aktualizace?</string>
|
||||||
<string name="apply_update_dialog_title">Použít aktualizaci</string>
|
<string name="apply_update_dialog_title">Použít aktualizaci</string>
|
||||||
<string name="apply_update_dialog_message">Chystáte se aktualizovat na <xliff:g id="update_name">%1$s</xliff:g>.\n\nPokud stisknete <xliff:g id="ok">%2$s</xliff:g>, telefon se restartuje do režimu Recovery, kde budete pokračovat v instalaci aktualizace.\n\nPoznámka: tato funkce vyžaduje nainstalovaný kompatibilní režim Recovery nebo je nutné instalaci provést ručně.</string>
|
<string name="apply_update_dialog_message">Chystáte se aktualizovat na <xliff:g id="update_name">%1$s</xliff:g>.\n\nPokud stisknete <xliff:g id="ok">%2$s</xliff:g>, telefon se restartuje do režimu Recovery, kde budete pokračovat v instalaci aktualizace.\n\nPoznámka: tato funkce vyžaduje nainstalovaný kompatibilní režim Recovery nebo je nutné instalaci provést ručně.</string>
|
||||||
<string name="apply_update_dialog_message_ab">Chystáte se aktualizovat na <xliff:g id="update_name">%1$s</xliff:g>.\n\nPokud stisknete <xliff:g id="ok">%2$s</xliff:g>, spustí se instalace na pozadí.\n\nPo dokončení budete vyzváni k restartu.</string>
|
<string name="apply_update_dialog_message_ab">Chystáte se aktualizovat na <xliff:g id="update_name">%1$s</xliff:g>.\n\nPokud stisknete <xliff:g id="ok">%2$s</xliff:g>, spustí se instalace na pozadí.\n\nPo dokončení budete vyzváni k restartu.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Zrušit instalaci?</string>
|
||||||
<string name="label_download_url">URL stažení</string>
|
<string name="label_download_url">URL stažení</string>
|
||||||
<string name="toast_download_url_copied">URL zkopírována</string>
|
<string name="toast_download_url_copied">URL zkopírována</string>
|
||||||
<string name="snack_export_failed">Stažení nelze exportovat</string>
|
|
||||||
<string name="dialog_export_title">Export aktualizace</string>
|
<string name="dialog_export_title">Export aktualizace</string>
|
||||||
<string name="dialog_export_message">Export aktualizací jako <xliff:g id="filename">%1$s </xliff:g> do externího úložiště.</string>
|
|
||||||
<string name="notification_export_success">Aktualizace exportována</string>
|
<string name="notification_export_success">Aktualizace exportována</string>
|
||||||
<string name="notification_export_fail">Chyba exportu</string>
|
<string name="notification_export_fail">Chyba exportu</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Aktualizace se již exportuje</string>
|
||||||
<item quantity="one">1 sekunda</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="few"><xliff:g id="COUNT">%d</xliff:g> sekundy</item>
|
<item quantity="one">Zbývá 1 sekunda</item>
|
||||||
<item quantity="other"><xliff:g id="COUNT">%d</xliff:g> sekund</item>
|
<item quantity="few">Zbývají <xliff:g id="count">%d</xliff:g> sekundy</item>
|
||||||
|
<item quantity="many">Zbývá <xliff:g id="count">%d</xliff:g> sekund</item>
|
||||||
|
<item quantity="other">Zbývá <xliff:g id="count">%d</xliff:g> sekund</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minuta</item>
|
<item quantity="one">Zbývá 1 minuta</item>
|
||||||
<item quantity="few"><xliff:g id="COUNT">%d</xliff:g> minuty</item>
|
<item quantity="few">Zbývají <xliff:g id="count">%d</xliff:g> minuty</item>
|
||||||
<item quantity="other"><xliff:g id="COUNT">%d</xliff:g> minut</item>
|
<item quantity="many">Zbývá <xliff:g id="count">%d</xliff:g> minut</item>
|
||||||
|
<item quantity="other">Zbývá <xliff:g id="count">%d</xliff:g> minut</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 hodina</item>
|
<item quantity="one">Zbývá 1 hodina</item>
|
||||||
<item quantity="few"><xliff:g id="COUNT">%d</xliff:g> hodiny</item>
|
<item quantity="few">Zbývají <xliff:g id="count">%d</xliff:g> hodiny</item>
|
||||||
<item quantity="other"><xliff:g id="COUNT">%d</xliff:g> hodin</item>
|
<item quantity="many">Zbývá <xliff:g id="count">%d</xliff:g> hodin</item>
|
||||||
|
<item quantity="other">Zbývá <xliff:g id="count">%d</xliff:g> hodin</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Varování</string>
|
<string name="update_on_mobile_data_title">Varování</string>
|
||||||
<string name="update_on_mobile_data_message">Chystáte se stáhnout aktualizaci pomocí mobilních dat, což pravděpodobně zapříčiní vysoké využití dat. Přejete si pokračovat?</string>
|
<string name="update_on_mobile_data_message">Chystáte se stáhnout aktualizaci pomocí mobilních dat, což pravděpodobně zapříčiní vysoké využití dat. Přejete si pokračovat?</string>
|
||||||
@@ -103,4 +110,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Upozornění mobilních dat</string>
|
<string name="menu_mobile_data_warning">Upozornění mobilních dat</string>
|
||||||
<string name="blocked_update_dialog_title">Aktualizace zablokována</string>
|
<string name="blocked_update_dialog_title">Aktualizace zablokována</string>
|
||||||
<string name="blocked_update_dialog_message">Tuto aktualizaci nelze nainstalovat pomocí aplikace aktualizace. Přečtěte si <xliff:g id="info_url">%1$s </xliff:g> pro další informace.</string>
|
<string name="blocked_update_dialog_message">Tuto aktualizaci nelze nainstalovat pomocí aplikace aktualizace. Přečtěte si <xliff:g id="info_url">%1$s </xliff:g> pro další informace.</string>
|
||||||
|
<string name="export_channel_title">Dokončení exportu</string>
|
||||||
|
<string name="new_updates_channel_title">Nové aktualizace</string>
|
||||||
|
<string name="ongoing_channel_title">Probíhající stahování</string>
|
||||||
|
<string name="update_failed_channel_title">Aktualizace se nezdařila</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,109 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Diweddarydd</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Diweddarydd</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Methodd y dilysiad</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Yn dilysu\'r diweddariad</string>
|
||||||
|
<string name="downloading_notification">Yn lawrlwytho</string>
|
||||||
|
<string name="download_paused_notification">Lawrlwytho wedi seibio</string>
|
||||||
|
<string name="download_paused_error_notification">Gwall lawrlwytho</string>
|
||||||
|
<string name="download_completed_notification">Lawrlwytho wedi cwblhau</string>
|
||||||
|
<string name="download_starting_notification">Yn dechrau lawrlwytho</string>
|
||||||
|
<string name="update_failed_notification">Methodd y diweddariad</string>
|
||||||
|
<string name="new_updates_found_title">Diweddariadau newydd</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/e</string>
|
||||||
|
<string name="pause_button">Seibio</string>
|
||||||
|
<string name="resume_button">Parhau</string>
|
||||||
|
<string name="installing_update">Yn gosod pecyn diweddaru</string>
|
||||||
|
<string name="installing_update_error">Gwall gosod</string>
|
||||||
|
<string name="installing_update_finished">Gosodwyd y diweddariad</string>
|
||||||
|
<string name="finalizing_package">Yn cwblhau gosod y pecyn</string>
|
||||||
|
<string name="preparing_ota_first_boot">Yn paratoi i lwytho a rhedeg am y tro cyntaf</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Paratoi diweddaru rhagbaratoawl</string>
|
||||||
|
<string name="dialog_battery_low_title">Batri isel</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Does dim digon o bŵer yn y batri. Rhaid cael o leiaf <xliff:g id="percent_discharging">%1$d</xliff:g>%% o fatri er mwyn parhau, <xliff:g id="percent_charging">%2$d</xliff:g>%% os yn gwefru.</string>
|
||||||
|
<string name="reboot">Ailgychwyn</string>
|
||||||
|
<string name="menu_refresh">Ail-lwytho</string>
|
||||||
|
<string name="menu_preferences">Dewisiadau</string>
|
||||||
|
<string name="menu_auto_updates_check">Gwirio yn awtomatig</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Unwaith y dydd</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Unwaith yr wythnos</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Unwaith y mis</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Byth</string>
|
||||||
|
<string name="menu_auto_delete_updates">Dileu diweddariadau ar ôl eu gosod</string>
|
||||||
|
<string name="menu_delete_update">Dileu</string>
|
||||||
|
<string name="menu_copy_url">Copïo\'r URL</string>
|
||||||
|
<string name="menu_export_update">Allforio\'r diweddariad</string>
|
||||||
|
<string name="menu_show_changelog">Dangos log newid</string>
|
||||||
|
<string name="menu_ab_perf_mode">Blaenoriaethu\'r broses diweddaru</string>
|
||||||
|
<string name="snack_updates_found">Mae yna ddiweddariad(au) newydd</string>
|
||||||
|
<string name="snack_no_updates_found">Ni chanfuwyd diweddariadau newydd</string>
|
||||||
|
<string name="snack_updates_check_failed">Methodd gwiriad y diweddariad. Gwiria dy gysylltiad â\'r rhwydwaith a rhoi cynnig arall arni.</string>
|
||||||
|
<string name="snack_download_failed">Methodd y lawrlwytho. Gwiria dy gysylltiad â\'r rhwydwaith a rhoi cynnig arall arni.</string>
|
||||||
|
<string name="snack_download_verification_failed">Methodd dilysiad y diweddariad.</string>
|
||||||
|
<string name="snack_download_verified">Lawrlwytho wedi cwblhau.</string>
|
||||||
|
<string name="snack_update_not_installable">Ni ellir gosod y diweddariad hwn ar ben yr adeiledd cyfredol.</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">Gwiriwyd diwethaf: <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_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> o <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_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> o <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Yn dilysu\'r diweddariad</string>
|
||||||
|
<string name="list_no_updates">Ni chanfuwyd diweddariadau newydd. I wirio am ddiweddariadau newydd dy hun, defnyddia\'r botwm ail-lwytho.</string>
|
||||||
|
<string name="action_download">Lawrlwytho</string>
|
||||||
|
<string name="action_pause">Seibio</string>
|
||||||
|
<string name="action_resume">Parhau</string>
|
||||||
|
<string name="action_install">Gosod</string>
|
||||||
|
<string name="action_info">Gwybodaeth</string>
|
||||||
|
<string name="action_delete">Dileu</string>
|
||||||
|
<string name="action_cancel">Diddymu</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Dileu ffeil</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Dileu\'r ffeil diweddariad a ddewiswyd?</string>
|
||||||
|
<string name="apply_update_dialog_title">Gosod diweddariad</string>
|
||||||
|
<string name="apply_update_dialog_message">Rwyt ar fin uwchraddio i <xliff:g id="update_name">%1$s</xliff:g>.\n\nOs wyt yn gwasgu <xliff:g id="ok">%2$s</xliff:g>, bydd y ddyfais yn ail-ddechrau ei hun i\'r modd adfer er mwyn gosod y diweddariad.\n\nNodyn: Mae ar y nodwedd hon angen Dull Adfer (recovery) cydnaws er mwyn gosod diweddariadau yn awtomatig.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Rwyt ar fin uwchraddio i <xliff:g id="update_name">%1$s</xliff:g>.\n\nOs wyt yn gwasgu <xliff:g id="ok">%2$s</xliff:g>, bydd y ddyfais yn dechrau\'r gosod yn y cefndir.\n\nPan fydd wedi\'i gwblhau, cei dy hysbysu i ailddechrau\'r system.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Diddymu\'r gosod?</string>
|
||||||
|
<string name="label_download_url">URL lawrlwytho</string>
|
||||||
|
<string name="toast_download_url_copied">Copïwyd yr URL</string>
|
||||||
|
<string name="dialog_export_title">Yn allforio\'r diweddariad</string>
|
||||||
|
<string name="notification_export_success">Allforiwyd y diweddariad</string>
|
||||||
|
<string name="notification_export_fail">Gwall allforio</string>
|
||||||
|
<string name="toast_already_exporting">Eisoes yn allforio diweddariad</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> eiliadau yn weddill</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> eiliad yn weddill</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> eiliad yn weddill</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> eiliad yn weddill</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> eiliad yn weddill</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> eiliad yn weddill</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> munudau yn weddill</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> munud yn weddill</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> funud yn weddill</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> munud yn weddill</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> munud yn weddill</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> munud yn weddill</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="zero"><xliff:g id="count">%d</xliff:g> oriau yn weddill</item>
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> awr yn weddill</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> awr yn weddill</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> awr yn weddill</item>
|
||||||
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> awr yn weddill</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> awr yn weddill</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Rhybudd</string>
|
||||||
|
<string name="update_on_mobile_data_message">Rwyt ar fin lawrlwytho pecyn diweddaru gyda llawer o ddata dros gysylltiad data symudol. Wyt ti am barhau?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Peidio â dangos eto</string>
|
||||||
|
<string name="menu_mobile_data_warning">Rhybudd data symudol</string>
|
||||||
|
<string name="blocked_update_dialog_title">Rhwystrwyd y diweddariad</string>
|
||||||
|
<string name="blocked_update_dialog_message">Ni ellir gosod y diweddariad hwn gyda\'r ap diweddarydd. Gweler <xliff:g id="info_url">%1$s</xliff:g> am wybodaeth bellach.</string>
|
||||||
|
<string name="export_channel_title">Cwblhawyd allforio</string>
|
||||||
|
<string name="new_updates_channel_title">Diweddariadau newydd</string>
|
||||||
|
<string name="ongoing_channel_title">Llwythi sy\'n parhau</string>
|
||||||
|
<string name="update_failed_channel_title">Methodd y diweddariad</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,80 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Opdatering</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Opdatering</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Bekræftelse fejlede</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Bekræfter opdatering</string>
|
||||||
|
<string name="downloading_notification">Henter</string>
|
||||||
|
<string name="download_paused_notification">Overførsel på pause</string>
|
||||||
|
<string name="download_paused_error_notification">Overførselsfejl</string>
|
||||||
|
<string name="download_completed_notification">Overførsel fuldført</string>
|
||||||
|
<string name="download_starting_notification">Starter overførsel</string>
|
||||||
|
<string name="update_failed_notification">Opdatering fejlede</string>
|
||||||
|
<string name="new_updates_found_title">Nye opdateringer</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pause</string>
|
||||||
|
<string name="resume_button">Genoptag</string>
|
||||||
|
<string name="installing_update">Installerer opdateringspakke</string>
|
||||||
|
<string name="installing_update_error">Installeringsfejl</string>
|
||||||
|
<string name="installing_update_finished">Opdatering installeret</string>
|
||||||
|
<string name="finalizing_package">Fuldfører pakkeinstallering</string>
|
||||||
|
<string name="preparing_ota_first_boot">Forbereder på første opstart</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Indledende opdateringsforberedelse</string>
|
||||||
|
<string name="dialog_battery_low_title">Lavt batteriniveau</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Du har for lidt strøm på dit batteri. Du skal mindst bruge <xliff:g id="percent_discharging">%1$d</xliff:g>%% for at installere opdateringen, <xliff:g id="percent_charging">%2$d</xliff:g>%% hvis din enhed oplader.</string>
|
||||||
|
<string name="reboot">Genstart</string>
|
||||||
|
<string name="menu_refresh">Genopfrisk</string>
|
||||||
|
<string name="menu_preferences">Præferencer</string>
|
||||||
|
<string name="menu_auto_updates_check">Auto-opdateringskontrol</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Aldrig</string>
|
||||||
|
<string name="menu_auto_delete_updates">Slet opdateringer, når installeret</string>
|
||||||
|
<string name="menu_delete_update">Slet</string>
|
||||||
|
<string name="menu_copy_url">Kopiér URL</string>
|
||||||
|
<string name="menu_export_update">Eksportér opdatering</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritér opdateringsproces</string>
|
||||||
|
<string name="snack_updates_found">Nye opdateringer fundet</string>
|
||||||
|
<string name="snack_no_updates_found">Ingen nye opdateringer fundet</string>
|
||||||
|
<string name="snack_updates_check_failed">Opdateringskontrollen fejlede. Kontrollér venligst din internetforbindelse og prøv igen senere.</string>
|
||||||
|
<string name="snack_download_failed">Overførslen fejlede. Kontrollér venligst din internetforbindelse og prøv igen senere.</string>
|
||||||
|
<string name="snack_download_verification_failed">Opdateringsbekræftelsen fejlede.</string>
|
||||||
|
<string name="snack_download_verified">Overførsel fuldført.</string>
|
||||||
|
<string name="snack_update_not_installable">Denne opdatering kan ikke installeres ovenpå det nuværende build.</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">Sidst kontrolleret: <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_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> af <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_verifying_update">Bekræfter opdatering</string>
|
||||||
|
<string name="list_no_updates">Ingen nye opdateringer fundet. Brug Genopfrisk-knappen, for manuel kontrol af nye opdateringer.</string>
|
||||||
|
<string name="action_download">Hent</string>
|
||||||
|
<string name="action_pause">Pause</string>
|
||||||
|
<string name="action_resume">Genoptag</string>
|
||||||
|
<string name="action_install">Installér</string>
|
||||||
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Slet</string>
|
||||||
|
<string name="action_cancel">Afbryd</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Slet fil</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Slet den valgte opdateringsfil?</string>
|
||||||
|
<string name="apply_update_dialog_title">Anvend opdatering</string>
|
||||||
|
<string name="apply_update_dialog_message">Du er ved at opgradere til <xliff:g id="update_name">%1$s</xliff:g>.\n\nHvis du trykker på <xliff:g id="ok">%2$s</xliff:g>, vil enheden genstarte sig selv i gendannelsestilstand, for at installere opdateringen.\n\nBemærk: Denne funktion kræver en kompatibel Gendannelse, ellers vil opdateringerne skulle installeres manuelt.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Du er ved at opgradere til <xliff:g id="update_name">%1$s</xliff:g>.\n\nHvis du trykker på <xliff:g id="ok">%2$s</xliff:g>, vil enheden begynde at installere i baggrunden.\n\nSå snart det er fuldført, vil du blive bedt om at genstarte.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Afbryd installeringen?</string>
|
||||||
|
<string name="label_download_url">Hent URL</string>
|
||||||
|
<string name="toast_download_url_copied">URL kopieret</string>
|
||||||
|
<string name="dialog_export_title">Eksporterer opdatering</string>
|
||||||
|
<string name="notification_export_success">Opdatering eksporteret</string>
|
||||||
|
<string name="notification_export_fail">Eksportfejl</string>
|
||||||
|
<string name="toast_already_exporting">Eksporterer allerede en opdatering</string>
|
||||||
|
<string name="update_on_mobile_data_title">Advarsel</string>
|
||||||
|
<string name="update_on_mobile_data_message">Du er ved at hente en opdateringspakke vha. mobildata, hvilket sandsynligvis vil forårsage højt dataforbrug. Ønsker du at fortsætte?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Vis ikke igen</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobildata-advarsel</string>
|
||||||
|
<string name="blocked_update_dialog_title">Opdatering blokeret</string>
|
||||||
|
<string name="blocked_update_dialog_message">Denne opdatering kan ikke installeres over opdatering-app\'en. Læs venligst <xliff:g id="info_url">%1$s</xliff:g> for mere information.</string>
|
||||||
|
<string name="export_channel_title">Eksport fuldførelse</string>
|
||||||
|
<string name="new_updates_channel_title">Nye opdateringer</string>
|
||||||
|
<string name="ongoing_channel_title">Igangværende Downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Opdatering fejlede</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Updater</string>
|
<string name="app_name">Updater</string>
|
||||||
<string name="display_name">Updater</string>
|
<string name="display_name">Updater</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Überprüfung fehlgeschlagen</string>
|
<string name="verification_failed_notification">Überprüfung fehlgeschlagen</string>
|
||||||
<string name="verifying_download_notification">Update wird geprüft</string>
|
<string name="verifying_download_notification">Update wird geprüft</string>
|
||||||
<string name="downloading_notification">Wird heruntergeladen</string>
|
<string name="downloading_notification">Wird heruntergeladen</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Fehler beim Herunterladen</string>
|
<string name="download_paused_error_notification">Fehler beim Herunterladen</string>
|
||||||
<string name="download_completed_notification">Herunterladen abgeschlossen</string>
|
<string name="download_completed_notification">Herunterladen abgeschlossen</string>
|
||||||
<string name="download_starting_notification">Herunterladen wird gestartet</string>
|
<string name="download_starting_notification">Herunterladen wird gestartet</string>
|
||||||
|
<string name="update_failed_notification">Update fehlgeschlagen</string>
|
||||||
<string name="new_updates_found_title">Neue Updates</string>
|
<string name="new_updates_found_title">Neue Updates</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pause</string>
|
<string name="pause_button">Pause</string>
|
||||||
@@ -39,19 +35,26 @@
|
|||||||
<string name="finalizing_package">Die Paketinstallation wird abgeschlossen</string>
|
<string name="finalizing_package">Die Paketinstallation wird abgeschlossen</string>
|
||||||
<string name="preparing_ota_first_boot">Erster Start wird vorbereitet</string>
|
<string name="preparing_ota_first_boot">Erster Start wird vorbereitet</string>
|
||||||
<string name="dialog_prepare_zip_message">Update wird vorbereitet</string>
|
<string name="dialog_prepare_zip_message">Update wird vorbereitet</string>
|
||||||
<string name="notification_prepare_zip_error_title">Update konnte nicht vorbereitet werden</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="reboot">Neustart</string>
|
<string name="reboot">Neustart</string>
|
||||||
<string name="menu_refresh">Aktualisieren</string>
|
<string name="menu_refresh">Aktualisieren</string>
|
||||||
|
<string name="menu_preferences">Voreinstellungen</string>
|
||||||
<string name="menu_auto_updates_check">Automatisch nach Updates suchen</string>
|
<string name="menu_auto_updates_check">Automatisch nach Updates suchen</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Einmal am Tag</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Einmal pro Woche</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Einmal pro Monat</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Niemals</string>
|
||||||
<string name="menu_auto_delete_updates">Updates nach Installation löschen</string>
|
<string name="menu_auto_delete_updates">Updates nach Installation löschen</string>
|
||||||
<string name="menu_delete_update">Löschen</string>
|
<string name="menu_delete_update">Löschen</string>
|
||||||
<string name="menu_copy_url">URL in Zwischenablage kopieren</string>
|
<string name="menu_copy_url">URL in Zwischenablage kopieren</string>
|
||||||
<string name="menu_export_update">Update exportieren</string>
|
<string name="menu_export_update">Update exportieren</string>
|
||||||
<string name="dialog_checking_for_updates">Updates werden gesucht</string>
|
<string name="menu_show_changelog">Changelog anzeigen</string>
|
||||||
|
<string name="menu_ab_perf_mode">Updateprozess priorisieren</string>
|
||||||
<string name="snack_updates_found">Neue Updates gefunden</string>
|
<string name="snack_updates_found">Neue Updates gefunden</string>
|
||||||
<string name="snack_no_updates_found">Keine neuen Updates gefunden</string>
|
<string name="snack_no_updates_found">Keine neuen Updates gefunden</string>
|
||||||
<string name="snack_updates_check_failed">Die Suche nach Updates ist fehlgeschlagen. Bitte überprüfen Sie die Internetverbindung und versuchen Sie es später erneut.</string>
|
<string name="snack_updates_check_failed">Die Suche nach Updates ist fehlgeschlagen. Bitte überprüfe die Internetverbindung und versuche es später erneut.</string>
|
||||||
<string name="snack_download_failed">Das Herunterladen ist fehlgeschlagen. Bitte überpüfen sie die Internetverbindung und versuchen Sie es später erneut.</string>
|
<string name="snack_download_failed">Das Herunterladen ist fehlgeschlagen. Bitte überpüfe die Internetverbindung und versuche es später erneut.</string>
|
||||||
<string name="snack_download_verification_failed">Die Update-Überprüfung ist fehlgeschlagen.</string>
|
<string name="snack_download_verification_failed">Die Update-Überprüfung ist fehlgeschlagen.</string>
|
||||||
<string name="snack_download_verified">Herunterladen abgeschlossen.</string>
|
<string name="snack_download_verified">Herunterladen abgeschlossen.</string>
|
||||||
<string name="snack_update_not_installable">Dieses Update kann nicht auf die bestehende Installation angewendet werden.</string>
|
<string name="snack_update_not_installable">Dieses Update kann nicht auf die bestehende Installation angewendet werden.</string>
|
||||||
@@ -60,44 +63,49 @@
|
|||||||
<string name="header_last_updates_check">Zuletzt geprüft: <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="header_last_updates_check">Zuletzt geprüft: <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">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_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"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> von <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
<string name="list_download_progress_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> von <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_eta"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> von <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> - <xliff:g id="duration" example="3 minutes">%3$s</xliff:g> verbleibend</string>
|
<string name="list_download_progress_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> von <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Update wird installiert</string>
|
|
||||||
<string name="list_verifying_update">Update wird geprüft</string>
|
<string name="list_verifying_update">Update wird geprüft</string>
|
||||||
<string name="list_no_updates">Keine neuen Updates gefunden. Um manuell nach neuen Updates zu suchen, verwenden Sie die Schaltfläche \"Aktualisieren\".</string>
|
<string name="list_no_updates">Keine neuen Updates gefunden. Um manuell nach neuen Updates zu suchen, verwende die Schaltfläche \"Aktualisieren\".</string>
|
||||||
<string name="action_description_download">Herunterladen</string>
|
<string name="action_download">Herunterladen</string>
|
||||||
<string name="action_description_pause">Herunterladen pausieren</string>
|
<string name="action_pause">Anhalten</string>
|
||||||
<string name="action_description_resume">Herunterladen fortsetzen</string>
|
<string name="action_resume">Fortsetzen</string>
|
||||||
<string name="action_description_install">Update installieren</string>
|
<string name="action_install">Installieren</string>
|
||||||
<string name="action_description_info">Informationen anzeigen</string>
|
<string name="action_info">Information</string>
|
||||||
|
<string name="action_delete">Löschen</string>
|
||||||
|
<string name="action_cancel">Abbrechen</string>
|
||||||
<string name="confirm_delete_dialog_title">Datei löschen</string>
|
<string name="confirm_delete_dialog_title">Datei löschen</string>
|
||||||
<string name="confirm_delete_dialog_message">Soll die ausgewählte Update-Datei gelöscht werden?</string>
|
<string name="confirm_delete_dialog_message">Soll die ausgewählte Update-Datei gelöscht werden?</string>
|
||||||
<string name="apply_update_dialog_title">Update installieren</string>
|
<string name="apply_update_dialog_title">Update installieren</string>
|
||||||
<string name="apply_update_dialog_message">Bereit zum Update auf <xliff:g id="update_name">%1$s</xliff:g>\n\nWenn Sie <xliff:g id="ok">%2$s</xliff:g> drücken, wird das Gerät im Recovery-Modus gestartet, um das Update durchzuführen.\n\nHinweis: Diese Funktion erfordert ein kompatibles Recovery-System, anderenfalls muss das Update manuell installiert werden.</string>
|
<string name="apply_update_dialog_message">Bereit zum Update auf <xliff:g id="update_name">%1$s</xliff:g>\n\nWenn du <xliff:g id="ok">%2$s</xliff:g> drückst, wird das Gerät im Recovery-Modus gestartet, um das Update durchzuführen.\n\nHinweis: Diese Funktion erfordert ein kompatibles Recovery-System, anderenfalls muss das Update manuell installiert werden.</string>
|
||||||
<string name="apply_update_dialog_message_ab">Bereit zum Update auf <xliff:g id="update_name">%1$s</xliff:g>\n\nWenn Sie <xliff:g id="ok">%2$s drücken</xliff:g>, beginnt das Gerät im Hintergrund mit der Installation\n\nSobald diese abgeschlossen ist, werden Sie zum Neustart aufgefordert.</string>
|
<string name="apply_update_dialog_message_ab">Bereit zum Update auf <xliff:g id="update_name">%1$s</xliff:g>\n\nWenn du <xliff:g id="ok">%2$s drückst</xliff:g>, beginnt das Gerät im Hintergrund mit der Installation\n\nSobald diese abgeschlossen ist, wirst du zum Neustart aufgefordert.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Installation abbrechen?</string>
|
||||||
<string name="label_download_url">Download URL</string>
|
<string name="label_download_url">Download URL</string>
|
||||||
<string name="toast_download_url_copied">URL wurde kopiert</string>
|
<string name="toast_download_url_copied">URL wurde kopiert</string>
|
||||||
<string name="snack_export_failed">Download konnte nicht exportiert werden</string>
|
|
||||||
<string name="dialog_export_title">Update wird exportiert</string>
|
<string name="dialog_export_title">Update wird exportiert</string>
|
||||||
<string name="dialog_export_message">Update als <xliff:g id="filename">%1$s </xliff:g> in den externen Speicher exportieren.</string>
|
|
||||||
<string name="notification_export_success">Update wurde exportiert</string>
|
<string name="notification_export_success">Update wurde exportiert</string>
|
||||||
<string name="notification_export_fail">Fehler beim Export</string>
|
<string name="notification_export_fail">Fehler beim Export</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Update wird bereits exportiert</string>
|
||||||
<item quantity="one">1 Sekunde</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> Sekunden</item>
|
<item quantity="one">noch 1 Sekunde</item>
|
||||||
|
<item quantity="other">noch <xliff:g id="count">%d</xliff:g> Sekunden</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 Minute</item>
|
<item quantity="one">noch 1 Minute</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> Minuten</item>
|
<item quantity="other">noch <xliff:g id="count">%d</xliff:g> Minuten</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 Stunde</item>
|
<item quantity="one">noch 1 Stunde</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> Stunden</item>
|
<item quantity="other">noch <xliff:g id="count">%d</xliff:g> Stunden</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Achtung</string>
|
<string name="update_on_mobile_data_title">Achtung</string>
|
||||||
<string name="update_on_mobile_data_message">Sie sind dabei ein Software-Update über das Mobilfunknetz herunterzuladen, was zu einem hohen Datenverbrauch führen kann. Möchten Sie fortfahren?</string>
|
<string name="update_on_mobile_data_message">Du bist dabei ein Software-Update über das Mobilfunknetz herunterzuladen, was zu einem hohen Datenverbrauch führen kann. Möchtest du fortfahren?</string>
|
||||||
<string name="checkbox_mobile_data_warning">Nicht wieder anzeigen</string>
|
<string name="checkbox_mobile_data_warning">Nicht wieder anzeigen</string>
|
||||||
<string name="menu_mobile_data_warning">Mobildaten-Warnung</string>
|
<string name="menu_mobile_data_warning">Mobildaten-Warnung</string>
|
||||||
<string name="blocked_update_dialog_title">Update blockiert</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 lesen Sie bitte <xliff:g id="info_url">%1$s </xliff:g>.</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>
|
||||||
|
<string name="new_updates_channel_title">Neue Updates</string>
|
||||||
|
<string name="ongoing_channel_title">Laufende Downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Update fehlgeschlagen</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,97 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Ενημερώσεις</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Ενημερώσεις</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Αποτυχία επαλήθευσης</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<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="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="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="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">Αντιγραφή URL</string>
|
||||||
|
<string name="menu_export_update">Εξαγωγή ενημέρωσης</string>
|
||||||
|
<string name="menu_show_changelog">Εμφάνιση αλλαγών</string>
|
||||||
|
<string name="menu_ab_perf_mode">Επιτάχυνση διαδικασίας ενημέρωσης</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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$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>, η συσκευή θα κάνει επανεκκίνηση σε λειτουργία recovery για να εγκατασταθεί η ενημέρωση.\n\nΣημείωση: Αυτή η λειτουργία απαιτεί μια συμβατή recovery αλλιώς η ενημέρωση θα πρέπει να εγκατασταθεί χειροκίνητα.</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>
|
||||||
|
<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_on_mobile_data_title">Προσοχή</string>
|
||||||
|
<string name="update_on_mobile_data_message">Είστε έτοιμοι να κατεβάσετε ένα πακέτο ενημέρωσης χρησιμοποιώντας δεδομένα κινητής τηλεφωνίας το οποίο είναι πιθανό να προκαλέσει υψηλή χρήση δεδομένων. Θα θέλατε να συνεχίσετε;</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Να μην εμφανιστεί ξανά</string>
|
||||||
|
<string name="menu_mobile_data_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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Updater</string>
|
<string name="app_name">Updater</string>
|
||||||
<string name="display_name">Updater</string>
|
<string name="display_name">Updater</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verification failed</string>
|
<string name="verification_failed_notification">Verification failed</string>
|
||||||
<string name="verifying_download_notification">Verifying update</string>
|
<string name="verifying_download_notification">Verifying update</string>
|
||||||
<string name="downloading_notification">Downloading</string>
|
<string name="downloading_notification">Downloading</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Download error</string>
|
<string name="download_paused_error_notification">Download error</string>
|
||||||
<string name="download_completed_notification">Download completed</string>
|
<string name="download_completed_notification">Download completed</string>
|
||||||
<string name="download_starting_notification">Starting download</string>
|
<string name="download_starting_notification">Starting download</string>
|
||||||
|
<string name="update_failed_notification">Update failed</string>
|
||||||
<string name="new_updates_found_title">New updates</string>
|
<string name="new_updates_found_title">New updates</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pause</string>
|
<string name="pause_button">Pause</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">Finalising package installation</string>
|
<string name="finalizing_package">Finalising package installation</string>
|
||||||
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
||||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||||
<string name="notification_prepare_zip_error_title">Could not prepare update</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="reboot">Reboot</string>
|
<string name="reboot">Reboot</string>
|
||||||
<string name="menu_refresh">Refresh</string>
|
<string name="menu_refresh">Refresh</string>
|
||||||
|
<string name="menu_preferences">Preferences</string>
|
||||||
<string name="menu_auto_updates_check">Auto updates check</string>
|
<string name="menu_auto_updates_check">Auto updates check</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Once a day</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Once a week</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Once a month</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Never</string>
|
||||||
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
||||||
<string name="menu_delete_update">Delete</string>
|
<string name="menu_delete_update">Delete</string>
|
||||||
<string name="menu_copy_url">Copy URL</string>
|
<string name="menu_copy_url">Copy URL</string>
|
||||||
<string name="menu_export_update">Export update</string>
|
<string name="menu_export_update">Export update</string>
|
||||||
<string name="dialog_checking_for_updates">Checking for updates</string>
|
<string name="menu_show_changelog">Show changelog</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritise update process</string>
|
||||||
<string name="snack_updates_found">New updates found</string>
|
<string name="snack_updates_found">New updates found</string>
|
||||||
<string name="snack_no_updates_found">No new updates found</string>
|
<string name="snack_no_updates_found">No new updates found</string>
|
||||||
<string name="snack_updates_check_failed">The update check failed. Please check your Internet connection and try again later.</string>
|
<string name="snack_updates_check_failed">The update check failed. Please check your Internet connection and try again later.</string>
|
||||||
@@ -60,39 +63,40 @@
|
|||||||
<string name="header_last_updates_check">Last checked: <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="header_last_updates_check">Last checked: <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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> left</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Installing update</string>
|
|
||||||
<string name="list_verifying_update">Verifying update</string>
|
<string name="list_verifying_update">Verifying update</string>
|
||||||
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
||||||
<string name="action_description_download">Download</string>
|
<string name="action_download">Download</string>
|
||||||
<string name="action_description_pause">Pause download</string>
|
<string name="action_pause">Pause</string>
|
||||||
<string name="action_description_resume">Resume download</string>
|
<string name="action_resume">Resume</string>
|
||||||
<string name="action_description_install">Install update</string>
|
<string name="action_install">Install</string>
|
||||||
<string name="action_description_info">Show information</string>
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Delete</string>
|
||||||
|
<string name="action_cancel">Cancel</string>
|
||||||
<string name="confirm_delete_dialog_title">Delete file</string>
|
<string name="confirm_delete_dialog_title">Delete file</string>
|
||||||
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
||||||
<string name="apply_update_dialog_title">Apply update</string>
|
<string name="apply_update_dialog_title">Apply update</string>
|
||||||
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
||||||
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Cancel the installation?</string>
|
||||||
<string name="label_download_url">Download URL</string>
|
<string name="label_download_url">Download URL</string>
|
||||||
<string name="toast_download_url_copied">URL Copied</string>
|
<string name="toast_download_url_copied">URL Copied</string>
|
||||||
<string name="snack_export_failed">Could not export download</string>
|
|
||||||
<string name="dialog_export_title">Exporting update</string>
|
<string name="dialog_export_title">Exporting update</string>
|
||||||
<string name="dialog_export_message">Exporting update as <xliff:g id="filename">%1$s</xliff:g> into the external storage.</string>
|
|
||||||
<string name="notification_export_success">Update exported</string>
|
<string name="notification_export_success">Update exported</string>
|
||||||
<string name="notification_export_fail">Export error</string>
|
<string name="notification_export_fail">Export error</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Already exporting an update</string>
|
||||||
<item quantity="one">1 second</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds</item>
|
<item quantity="one">1 second left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minute</item>
|
<item quantity="one">1 minute left</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 hour</item>
|
<item quantity="one">1 hour left</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Warning</string>
|
<string name="update_on_mobile_data_title">Warning</string>
|
||||||
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
||||||
<string name="blocked_update_dialog_title">Update blocked</string>
|
<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_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="export_channel_title">Export completion</string>
|
||||||
|
<string name="new_updates_channel_title">New updates</string>
|
||||||
|
<string name="ongoing_channel_title">Ongoing downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Update failed</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
111
res/values-en-rCA/strings.xml
Normal file
111
res/values-en-rCA/strings.xml
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">Updater</string>
|
||||||
|
<string name="display_name">Updater</string>
|
||||||
|
<string name="verification_failed_notification">Verification failed</string>
|
||||||
|
<string name="verifying_download_notification">Verifying update</string>
|
||||||
|
<string name="downloading_notification">Downloading</string>
|
||||||
|
<string name="download_paused_notification">Download paused</string>
|
||||||
|
<string name="download_paused_error_notification">Download error</string>
|
||||||
|
<string name="download_completed_notification">Download completed</string>
|
||||||
|
<string name="download_starting_notification">Starting download</string>
|
||||||
|
<string name="update_failed_notification">Update failed</string>
|
||||||
|
<string name="new_updates_found_title">New updates</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pause</string>
|
||||||
|
<string name="resume_button">Resume</string>
|
||||||
|
<string name="installing_update">Installing update package</string>
|
||||||
|
<string name="installing_update_error">Install error</string>
|
||||||
|
<string name="installing_update_finished">Update installed</string>
|
||||||
|
<string name="finalizing_package">Finalizing package installation</string>
|
||||||
|
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
||||||
|
<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="reboot">Reboot</string>
|
||||||
|
<string name="menu_refresh">Refresh</string>
|
||||||
|
<string name="menu_preferences">Preferences</string>
|
||||||
|
<string name="menu_auto_updates_check">Auto updates check</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Once a day</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Once a week</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Once a month</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Never</string>
|
||||||
|
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
||||||
|
<string name="menu_delete_update">Delete</string>
|
||||||
|
<string name="menu_copy_url">Copy URL</string>
|
||||||
|
<string name="menu_export_update">Export update</string>
|
||||||
|
<string name="menu_show_changelog">Show changelog</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritize update process</string>
|
||||||
|
<string name="snack_updates_found">New updates found</string>
|
||||||
|
<string name="snack_no_updates_found">No new updates found</string>
|
||||||
|
<string name="snack_updates_check_failed">The update check failed. Please check your internet connection and try again later.</string>
|
||||||
|
<string name="snack_download_failed">The download failed. Please check your internet connection and try again later.</string>
|
||||||
|
<string name="snack_download_verification_failed">The update verification failed.</string>
|
||||||
|
<string name="snack_download_verified">Download completed.</string>
|
||||||
|
<string name="snack_update_not_installable">This update can\'t be installed on top of the current build.</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">Last checked: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Verifying update</string>
|
||||||
|
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
||||||
|
<string name="action_download">Download</string>
|
||||||
|
<string name="action_pause">Pause</string>
|
||||||
|
<string name="action_resume">Resume</string>
|
||||||
|
<string name="action_install">Install</string>
|
||||||
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Delete</string>
|
||||||
|
<string name="action_cancel">Cancel</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Delete file</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
||||||
|
<string name="apply_update_dialog_title">Apply update</string>
|
||||||
|
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Cancel the installation?</string>
|
||||||
|
<string name="label_download_url">Download URL</string>
|
||||||
|
<string name="toast_download_url_copied">URL Copied</string>
|
||||||
|
<string name="dialog_export_title">Exporting update</string>
|
||||||
|
<string name="notification_export_success">Update exported</string>
|
||||||
|
<string name="notification_export_fail">Export error</string>
|
||||||
|
<string name="toast_already_exporting">Already exporting an update</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 second left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds left</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minute left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes left</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 hour left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours left</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Warning</string>
|
||||||
|
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Do not show again</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
||||||
|
<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="export_channel_title">Export completion</string>
|
||||||
|
<string name="new_updates_channel_title">New updates</string>
|
||||||
|
<string name="ongoing_channel_title">Ongoing downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Update failed</string>
|
||||||
|
</resources>
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,97 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Updater</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Updater</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Verification failed</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Verifying update</string>
|
||||||
|
<string name="downloading_notification">Downloading</string>
|
||||||
|
<string name="download_paused_notification">Download paused</string>
|
||||||
|
<string name="download_paused_error_notification">Download error</string>
|
||||||
|
<string name="download_completed_notification">Download completed</string>
|
||||||
|
<string name="download_starting_notification">Starting download</string>
|
||||||
|
<string name="update_failed_notification">Update failed</string>
|
||||||
|
<string name="new_updates_found_title">New updates</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pause</string>
|
||||||
|
<string name="resume_button">Resume</string>
|
||||||
|
<string name="installing_update">Installing update package</string>
|
||||||
|
<string name="installing_update_error">Install error</string>
|
||||||
|
<string name="installing_update_finished">Update installed</string>
|
||||||
|
<string name="finalizing_package">Finalising package installation</string>
|
||||||
|
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
||||||
|
<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="reboot">Reboot</string>
|
||||||
|
<string name="menu_refresh">Refresh</string>
|
||||||
|
<string name="menu_preferences">Preferences</string>
|
||||||
|
<string name="menu_auto_updates_check">Auto updates check</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Once a day</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Once a week</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Once a month</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Never</string>
|
||||||
|
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
||||||
|
<string name="menu_delete_update">Delete</string>
|
||||||
|
<string name="menu_copy_url">Copy URL</string>
|
||||||
|
<string name="menu_export_update">Export update</string>
|
||||||
|
<string name="menu_show_changelog">Show changelog</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritise update process</string>
|
||||||
|
<string name="snack_updates_found">New updates found</string>
|
||||||
|
<string name="snack_no_updates_found">No new updates found</string>
|
||||||
|
<string name="snack_updates_check_failed">The update check failed. Please check your internet connection and try again later.</string>
|
||||||
|
<string name="snack_download_failed">The download failed. Please check your internet connection and try again later.</string>
|
||||||
|
<string name="snack_download_verification_failed">The update verification failed.</string>
|
||||||
|
<string name="snack_download_verified">Download completed.</string>
|
||||||
|
<string name="snack_update_not_installable">This update can\'t be installed on top of the current build.</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">Last checked: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Verifying update</string>
|
||||||
|
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
||||||
|
<string name="action_download">Download</string>
|
||||||
|
<string name="action_pause">Pause</string>
|
||||||
|
<string name="action_resume">Resume</string>
|
||||||
|
<string name="action_install">Install</string>
|
||||||
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Delete</string>
|
||||||
|
<string name="action_cancel">Cancel</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Delete file</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
||||||
|
<string name="apply_update_dialog_title">Apply update</string>
|
||||||
|
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Cancel the installation?</string>
|
||||||
|
<string name="label_download_url">Download URL</string>
|
||||||
|
<string name="toast_download_url_copied">URL Copied</string>
|
||||||
|
<string name="dialog_export_title">Exporting update</string>
|
||||||
|
<string name="notification_export_success">Update exported</string>
|
||||||
|
<string name="notification_export_fail">Export error</string>
|
||||||
|
<string name="toast_already_exporting">Already exporting an update</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 second left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds left</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minute left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes left</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 hour left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours left</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Warning</string>
|
||||||
|
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Do not show again</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
||||||
|
<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="export_channel_title">Export completion</string>
|
||||||
|
<string name="new_updates_channel_title">New updates</string>
|
||||||
|
<string name="ongoing_channel_title">Ongoing downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Update failed</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Updater</string>
|
<string name="app_name">Updater</string>
|
||||||
<string name="display_name">Updater</string>
|
<string name="display_name">Updater</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verification failed</string>
|
<string name="verification_failed_notification">Verification failed</string>
|
||||||
<string name="verifying_download_notification">Verifying update</string>
|
<string name="verifying_download_notification">Verifying update</string>
|
||||||
<string name="downloading_notification">Downloading</string>
|
<string name="downloading_notification">Downloading</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Download error</string>
|
<string name="download_paused_error_notification">Download error</string>
|
||||||
<string name="download_completed_notification">Download completed</string>
|
<string name="download_completed_notification">Download completed</string>
|
||||||
<string name="download_starting_notification">Starting download</string>
|
<string name="download_starting_notification">Starting download</string>
|
||||||
|
<string name="update_failed_notification">Update failed</string>
|
||||||
<string name="new_updates_found_title">New updates</string>
|
<string name="new_updates_found_title">New updates</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pause</string>
|
<string name="pause_button">Pause</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">Finalising package installation</string>
|
<string name="finalizing_package">Finalising package installation</string>
|
||||||
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
<string name="preparing_ota_first_boot">Preparing for first boot</string>
|
||||||
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
<string name="dialog_prepare_zip_message">Preliminary update preparation</string>
|
||||||
<string name="notification_prepare_zip_error_title">Could not prepare update</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="reboot">Reboot</string>
|
<string name="reboot">Reboot</string>
|
||||||
<string name="menu_refresh">Refresh</string>
|
<string name="menu_refresh">Refresh</string>
|
||||||
|
<string name="menu_preferences">Preferences</string>
|
||||||
<string name="menu_auto_updates_check">Auto updates check</string>
|
<string name="menu_auto_updates_check">Auto updates check</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Once a day</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Once a week</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Once a month</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Never</string>
|
||||||
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
<string name="menu_auto_delete_updates">Delete updates when installed</string>
|
||||||
<string name="menu_delete_update">Delete</string>
|
<string name="menu_delete_update">Delete</string>
|
||||||
<string name="menu_copy_url">Copy URL</string>
|
<string name="menu_copy_url">Copy URL</string>
|
||||||
<string name="menu_export_update">Export update</string>
|
<string name="menu_export_update">Export update</string>
|
||||||
<string name="dialog_checking_for_updates">Checking for updates</string>
|
<string name="menu_show_changelog">Show changelog</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritise update process</string>
|
||||||
<string name="snack_updates_found">New updates found</string>
|
<string name="snack_updates_found">New updates found</string>
|
||||||
<string name="snack_no_updates_found">No new updates found</string>
|
<string name="snack_no_updates_found">No new updates found</string>
|
||||||
<string name="snack_updates_check_failed">The update check failed. Please check your internet connection and try again later.</string>
|
<string name="snack_updates_check_failed">The update check failed. Please check your internet connection and try again later.</string>
|
||||||
@@ -60,39 +63,40 @@
|
|||||||
<string name="header_last_updates_check">Last checked: <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="header_last_updates_check">Last checked: <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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> left</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Installing update</string>
|
|
||||||
<string name="list_verifying_update">Verifying update</string>
|
<string name="list_verifying_update">Verifying update</string>
|
||||||
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
<string name="list_no_updates">No new updates found. To manually check for new updates, use the Refresh button.</string>
|
||||||
<string name="action_description_download">Download</string>
|
<string name="action_download">Download</string>
|
||||||
<string name="action_description_pause">Pause download</string>
|
<string name="action_pause">Pause</string>
|
||||||
<string name="action_description_resume">Resume download</string>
|
<string name="action_resume">Resume</string>
|
||||||
<string name="action_description_install">Install update</string>
|
<string name="action_install">Install</string>
|
||||||
<string name="action_description_info">Show information</string>
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Delete</string>
|
||||||
|
<string name="action_cancel">Cancel</string>
|
||||||
<string name="confirm_delete_dialog_title">Delete file</string>
|
<string name="confirm_delete_dialog_title">Delete file</string>
|
||||||
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
<string name="confirm_delete_dialog_message">Delete the selected update file?</string>
|
||||||
<string name="apply_update_dialog_title">Apply update</string>
|
<string name="apply_update_dialog_title">Apply update</string>
|
||||||
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
<string name="apply_update_dialog_message">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will restart itself in recovery mode to install the update.\n\nNote: This feature requires a compatible Recovery or updates will need to be installed manually.</string>
|
||||||
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
<string name="apply_update_dialog_message_ab">You are about to upgrade to <xliff:g id="update_name">%1$s</xliff:g>.\n\nIf you press <xliff:g id="ok">%2$s</xliff:g>, the device will begin installing in the background.\n\nOnce completed, you will be prompted to reboot.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Cancel the installation?</string>
|
||||||
<string name="label_download_url">Download URL</string>
|
<string name="label_download_url">Download URL</string>
|
||||||
<string name="toast_download_url_copied">URL Copied</string>
|
<string name="toast_download_url_copied">URL Copied</string>
|
||||||
<string name="snack_export_failed">Could not export download</string>
|
|
||||||
<string name="dialog_export_title">Exporting update</string>
|
<string name="dialog_export_title">Exporting update</string>
|
||||||
<string name="dialog_export_message">Exporting update as <xliff:g id="filename">%1$s</xliff:g> into the external storage.</string>
|
|
||||||
<string name="notification_export_success">Update exported</string>
|
<string name="notification_export_success">Update exported</string>
|
||||||
<string name="notification_export_fail">Export error</string>
|
<string name="notification_export_fail">Export error</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Already exporting an update</string>
|
||||||
<item quantity="one">1 second</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds</item>
|
<item quantity="one">1 second left</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> seconds left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minute</item>
|
<item quantity="one">1 minute left</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutes left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 hour</item>
|
<item quantity="one">1 hour left</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> hours left</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Warning</string>
|
<string name="update_on_mobile_data_title">Warning</string>
|
||||||
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
<string name="update_on_mobile_data_message">You\'re about to download an update package using mobile data which is likely going to cause high data usage. Would you like to proceed?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
<string name="menu_mobile_data_warning">Mobile data warning</string>
|
||||||
<string name="blocked_update_dialog_title">Update blocked</string>
|
<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_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="export_channel_title">Export completion</string>
|
||||||
|
<string name="new_updates_channel_title">New updates</string>
|
||||||
|
<string name="ongoing_channel_title">Ongoing downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Update failed</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,8 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="menu_auto_updates_check_interval_daily">Una vez al día</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="menu_auto_updates_check_interval_weekly">Una vez a la semana</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="menu_auto_updates_check_interval_monthly">Una vez al mes</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="menu_auto_updates_check_interval_never">Nunca</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Actualizador</string>
|
<string name="app_name">Actualizador</string>
|
||||||
<string name="display_name">Actualizador</string>
|
<string name="display_name">Actualizador</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verificación fallida</string>
|
<string name="verification_failed_notification">Verificación fallida</string>
|
||||||
<string name="verifying_download_notification">Verificando actualización</string>
|
<string name="verifying_download_notification">Verificando actualización</string>
|
||||||
<string name="downloading_notification">Descargando</string>
|
<string name="downloading_notification">Descargando</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Error de descarga</string>
|
<string name="download_paused_error_notification">Error de descarga</string>
|
||||||
<string name="download_completed_notification">Descarga completada</string>
|
<string name="download_completed_notification">Descarga completada</string>
|
||||||
<string name="download_starting_notification">Iniciando descarga</string>
|
<string name="download_starting_notification">Iniciando descarga</string>
|
||||||
|
<string name="update_failed_notification">Error de actualización</string>
|
||||||
<string name="new_updates_found_title">Nuevas actualizaciones</string>
|
<string name="new_updates_found_title">Nuevas actualizaciones</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pausar</string>
|
<string name="pause_button">Pausar</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">Finalizando instalación del paquete</string>
|
<string name="finalizing_package">Finalizando instalación del paquete</string>
|
||||||
<string name="preparing_ota_first_boot">Preparando para el primer arranque</string>
|
<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_prepare_zip_message">Preparación preliminar de la actualización</string>
|
||||||
<string name="notification_prepare_zip_error_title">No se pudo preparar 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, 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="reboot">Reiniciar</string>
|
<string name="reboot">Reiniciar</string>
|
||||||
<string name="menu_refresh">Actualizar</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_updates_check">Comprobación de actualizaciones automática</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Una vez al día</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 actualizaciones luego de instalar</string>
|
<string name="menu_auto_delete_updates">Borrar actualizaciones luego de instalar</string>
|
||||||
<string name="menu_delete_update">Borrar</string>
|
<string name="menu_delete_update">Borrar</string>
|
||||||
<string name="menu_copy_url">Copiar URL</string>
|
<string name="menu_copy_url">Copiar URL</string>
|
||||||
<string name="menu_export_update">Exportar actualización</string>
|
<string name="menu_export_update">Exportar actualización</string>
|
||||||
<string name="dialog_checking_for_updates">Buscando actualizaciones</string>
|
<string name="menu_show_changelog">Mostrar registro de cambios</string>
|
||||||
|
<string name="menu_ab_perf_mode">Priorizar el proceso de actualización</string>
|
||||||
<string name="snack_updates_found">Se encontraron nuevas actualizaciones</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_no_updates_found">No se encontraron nuevas actualizaciones</string>
|
||||||
<string name="snack_updates_check_failed">Error en la búsqueda de actualizaciones. Comprueba la conexión a Internet e intenta de nuevo más tarde.</string>
|
<string name="snack_updates_check_failed">Error en la búsqueda de actualizaciones. Comprueba la conexión a Internet e intenta de nuevo más tarde.</string>
|
||||||
@@ -60,39 +63,40 @@
|
|||||||
<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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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> - Quedan <xliff:g id="duration" example="3 minutes">%3$s</xliff:g></string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Instalando actualización</string>
|
|
||||||
<string name="list_verifying_update">Verificando actualización</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="list_no_updates">Sin nuevas actualizaciones disponibles. Para comprobar manualmente, pulsa el botón «Actualizar».</string>
|
||||||
<string name="action_description_download">Descargar</string>
|
<string name="action_download">Descargar</string>
|
||||||
<string name="action_description_pause">Pausar descarga</string>
|
<string name="action_pause">Pausar</string>
|
||||||
<string name="action_description_resume">Reanudar descarga</string>
|
<string name="action_resume">Reanudar</string>
|
||||||
<string name="action_description_install">Instalar actualización</string>
|
<string name="action_install">Instalar</string>
|
||||||
<string name="action_description_info">Mostrar información</string>
|
<string name="action_info">Información</string>
|
||||||
|
<string name="action_delete">Borrar</string>
|
||||||
|
<string name="action_cancel">Cancelar</string>
|
||||||
<string name="confirm_delete_dialog_title">Borrar archivo</string>
|
<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="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_title">Aplicar actualización</string>
|
||||||
<string name="apply_update_dialog_message">Actualizarás a <xliff:g id="filename">%1$s</xliff:g>.\n\nAl pulsar en <xliff:g id="ok">%2$s</xliff:g>, se reiniciará el dispositivo en modo «Recovery» para instalar la actualización.\n\nNota: Esta función requiere un «Recovery» compatible o las actualizaciones deberán instalarse manualmente.</string>
|
<string name="apply_update_dialog_message">Actualizarás a <xliff:g id="filename">%1$s</xliff:g>.\n\nAl pulsar en <xliff:g id="ok">%2$s</xliff:g>, se reiniciará el dispositivo en modo de recuperación para instalar la actualización.\n\nNota: Esta característica necesita un modo de recuperación compatible o las actualizaciones deberán instalarse 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 le pedirá que reinicie.</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 le pedirá que reinicie.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">¿Cancelar instalación?</string>
|
||||||
<string name="label_download_url">URL de descarga</string>
|
<string name="label_download_url">URL de descarga</string>
|
||||||
<string name="toast_download_url_copied">URL copiada</string>
|
<string name="toast_download_url_copied">URL copiada</string>
|
||||||
<string name="snack_export_failed">Imposible exportar descarga</string>
|
|
||||||
<string name="dialog_export_title">Exportando actualización</string>
|
<string name="dialog_export_title">Exportando actualización</string>
|
||||||
<string name="dialog_export_message">Exportando actualización como <xliff:g id="filename">%1$s</xliff:g> en el almacenamiento externo.</string>
|
|
||||||
<string name="notification_export_success">Actualización exportada</string>
|
<string name="notification_export_success">Actualización exportada</string>
|
||||||
<string name="notification_export_fail">Error de exportación</string>
|
<string name="notification_export_fail">Error de exportación</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Ya se está exportando una actualización</string>
|
||||||
<item quantity="one">1 segundo</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><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>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minuto</item>
|
<item quantity="one">Queda 1 minuto</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutos</item>
|
<item quantity="other">Quedan <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 hora</item>
|
<item quantity="one">Queda 1 hora</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas</item>
|
<item quantity="other">Quedan <xliff:g id="count">%d</xliff:g> horas</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Advertencia</string>
|
<string name="update_on_mobile_data_title">Advertencia</string>
|
||||||
<string name="update_on_mobile_data_message">Se descargará un paquete de actualización usando los datos móviles, que probablemente ocasione un alto consumo de datos. ¿Quieres continuar?</string>
|
<string name="update_on_mobile_data_message">Se descargará un paquete de actualización usando los datos móviles, que probablemente ocasione un alto consumo de datos. ¿Quieres continuar?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Advertencia de datos móviles</string>
|
<string name="menu_mobile_data_warning">Advertencia de datos móviles</string>
|
||||||
<string name="blocked_update_dialog_title">Actualización bloqueada</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». Lea <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">Error de actualización</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Actualizador</string>
|
<string name="app_name">Actualizador</string>
|
||||||
<string name="display_name">Actualizador</string>
|
<string name="display_name">Actualizador</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verificación fallida</string>
|
<string name="verification_failed_notification">Verificación fallida</string>
|
||||||
<string name="verifying_download_notification">Verificando actualización</string>
|
<string name="verifying_download_notification">Verificando actualización</string>
|
||||||
<string name="downloading_notification">Descargando</string>
|
<string name="downloading_notification">Descargando</string>
|
||||||
@@ -39,15 +34,16 @@
|
|||||||
<string name="finalizing_package">Finalizando instalación del paquete</string>
|
<string name="finalizing_package">Finalizando instalación del paquete</string>
|
||||||
<string name="preparing_ota_first_boot">Preparando para el primer arranque</string>
|
<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_prepare_zip_message">Preparación preliminar de la actualización</string>
|
||||||
<string name="notification_prepare_zip_error_title">No se pudo preparar la actualización</string>
|
<string name="dialog_battery_low_title">Batería baja</string>
|
||||||
<string name="reboot">Reiniciar</string>
|
<string name="reboot">Reiniciar</string>
|
||||||
<string name="menu_refresh">Actualizar</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_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_delete_updates">Borrar actualizaciones luego de instalar</string>
|
||||||
<string name="menu_delete_update">Borrar</string>
|
<string name="menu_delete_update">Borrar</string>
|
||||||
<string name="menu_copy_url">Copiar URL</string>
|
<string name="menu_copy_url">Copiar URL</string>
|
||||||
<string name="menu_export_update">Exportar actualización</string>
|
<string name="menu_export_update">Exportar actualización</string>
|
||||||
<string name="dialog_checking_for_updates">Buscando actualizaciones</string>
|
<string name="menu_show_changelog">Mostrar registro de cambios</string>
|
||||||
<string name="snack_updates_found">Se encontraron nuevas actualizaciones</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_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, verifique la conexión a Internet e inténtalo nuevamente.</string>
|
||||||
@@ -60,39 +56,35 @@
|
|||||||
<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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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> - Quedan <xliff:g id="duration" example="3 minutes">%3$s</xliff:g></string>
|
|
||||||
<string name="list_installing_update">Instalando actualización</string>
|
|
||||||
<string name="list_verifying_update">Verificando actualización</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="list_no_updates">Sin nuevas actualizaciones disponibles. Para comprobar manualmente, pulsa el botón «Actualizar».</string>
|
||||||
<string name="action_description_download">Descargar</string>
|
<string name="action_download">Descargar</string>
|
||||||
<string name="action_description_pause">Pausar descarga</string>
|
<string name="action_pause">Pausar</string>
|
||||||
<string name="action_description_resume">Reanudar descarga</string>
|
<string name="action_resume">Reanudar</string>
|
||||||
<string name="action_description_install">Instalar actualización</string>
|
<string name="action_install">Instalar</string>
|
||||||
<string name="action_description_info">Mostrar información</string>
|
<string name="action_info">Información</string>
|
||||||
|
<string name="action_delete">Borrar</string>
|
||||||
|
<string name="action_cancel">Cancelar</string>
|
||||||
<string name="confirm_delete_dialog_title">Borrar archivo</string>
|
<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="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_title">Aplicar actualización</string>
|
||||||
<string name="apply_update_dialog_message">Actualizarás a <xliff:g id="filename">%1$s</xliff:g>.\n\nAl pulsar en <xliff:g id="ok">%2$s</xliff:g>, se reiniciará el dispositivo en modo «Recovery» para instalar la actualización.\n\nNota: Esta función requiere un «Recovery» compatible o las actualizaciones deberán instalarse manualmente.</string>
|
<string name="apply_update_dialog_message">Actualizarás a <xliff:g id="filename">%1$s</xliff:g>.\n\nAl pulsar en <xliff:g id="ok">%2$s</xliff:g>, se reiniciará el dispositivo en modo «Recovery» para instalar la actualización.\n\nNota: Esta función requiere un «Recovery» compatible o las actualizaciones deberán instalarse 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 le pedirá que reinicie.</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 le pedirá que reinicie.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">¿Cancelar la instalación?</string>
|
||||||
<string name="label_download_url">URL de descarga</string>
|
<string name="label_download_url">URL de descarga</string>
|
||||||
<string name="toast_download_url_copied">URL copiada</string>
|
<string name="toast_download_url_copied">URL copiada</string>
|
||||||
<string name="snack_export_failed">Imposible exportar descarga</string>
|
|
||||||
<string name="dialog_export_title">Exportando actualización</string>
|
<string name="dialog_export_title">Exportando actualización</string>
|
||||||
<string name="dialog_export_message">Exportando actualización como <xliff:g id="filename">%1$s</xliff:g> en el almacenamiento externo.</string>
|
|
||||||
<string name="notification_export_success">Actualización exportada</string>
|
<string name="notification_export_success">Actualización exportada</string>
|
||||||
<string name="notification_export_fail">Error de exportación</string>
|
<string name="notification_export_fail">Error de exportación</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Ya se está exportando una actualización</string>
|
||||||
<item quantity="one">1 segundo</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> segundos</item>
|
<item quantity="one">Falta 1 segundo</item>
|
||||||
|
<item quantity="other">Faltan <xliff:g id="count">%d</xliff:g> segundos</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minuto</item>
|
<item quantity="one">Falta 1 minuto</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutos</item>
|
<item quantity="other">Faltan <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||||
</plurals>
|
|
||||||
<plurals name="duration_hours">
|
|
||||||
<item quantity="one">1 hora</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas</item>
|
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Advertencia</string>
|
<string name="update_on_mobile_data_title">Advertencia</string>
|
||||||
<string name="update_on_mobile_data_message">Se descargará un paquete de actualización usando los datos móviles, que probablemente ocasione un alto consumo de datos. ¿Quieres continuar?</string>
|
<string name="update_on_mobile_data_message">Se descargará un paquete de actualización usando los datos móviles, que probablemente ocasione un alto consumo de datos. ¿Quieres continuar?</string>
|
||||||
@@ -100,4 +92,7 @@
|
|||||||
<string name="menu_mobile_data_warning">Advertencia de datos móviles</string>
|
<string name="menu_mobile_data_warning">Advertencia de datos móviles</string>
|
||||||
<string name="blocked_update_dialog_title">Actualización bloqueada</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». Lea <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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
43
res/values-et/strings.xml
Normal file
43
res/values-et/strings.xml
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">Uuendaja</string>
|
||||||
|
<string name="display_name">Uuendaja</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>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Kord päevas</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Kord nädalas</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Kord kuus</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Mitte kunagi</string>
|
||||||
|
<string name="menu_show_changelog">Näita muutuste nimekirja</string>
|
||||||
|
<string name="menu_ab_perf_mode">Eelista uuendusprotsessi</string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 sekund jäänud</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> sekundit jäänud</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minut jäänud</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutit jäänud</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 tund jäänud</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> tundi jäänud</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="export_channel_title">Ekspordi lõpuleviimine</string>
|
||||||
|
<string name="ongoing_channel_title">Käimasolevad allalaadimised</string>
|
||||||
|
</resources>
|
@@ -1,103 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">Eguneratzailea</string>
|
|
||||||
<string name="display_name">Eguneratzailea</string>
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Egiaztapenak huts egin du</string>
|
|
||||||
<string name="verifying_download_notification">Eguneraketa egiaztatzen</string>
|
|
||||||
<string name="downloading_notification">Deskargatzen</string>
|
|
||||||
<string name="download_paused_notification">Deskarga pausatuta</string>
|
|
||||||
<string name="download_paused_error_notification">Deskarga-errorea</string>
|
|
||||||
<string name="download_completed_notification">Deskarga osatuta</string>
|
|
||||||
<string name="download_starting_notification">Deskarga hasten</string>
|
|
||||||
<string name="new_updates_found_title">Eguneraketa berriak</string>
|
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
|
||||||
<string name="pause_button">Pausatu</string>
|
|
||||||
<string name="resume_button">Berrekin</string>
|
|
||||||
<string name="installing_update">Eguneraketa-paketea instalatzen</string>
|
|
||||||
<string name="installing_update_error">Instalazio-errorea</string>
|
|
||||||
<string name="installing_update_finished">Eguneraketa instalatuta</string>
|
|
||||||
<string name="finalizing_package">Paketearen instalazioarekin bukatzen</string>
|
|
||||||
<string name="preparing_ota_first_boot">Lehen abiorako prestatzen</string>
|
|
||||||
<string name="dialog_prepare_zip_message">Aldez aurreko eguneraketaren prestaketa</string>
|
|
||||||
<string name="notification_prepare_zip_error_title">Ezin izan da eguneraketa prestatu</string>
|
|
||||||
<string name="reboot">Berrabiarazi</string>
|
|
||||||
<string name="menu_refresh">Freskatu</string>
|
|
||||||
<string name="menu_auto_updates_check">Eguneraketen egiaztaketa automatikoa</string>
|
|
||||||
<string name="menu_auto_delete_updates">Ezabatu eguneraketak instalatutakoan</string>
|
|
||||||
<string name="menu_delete_update">Ezabatu</string>
|
|
||||||
<string name="menu_copy_url">Kopiatu URL-a</string>
|
|
||||||
<string name="menu_export_update">Esportatu eguneraketa</string>
|
|
||||||
<string name="dialog_checking_for_updates">Eguneraketak bilatzen</string>
|
|
||||||
<string name="snack_updates_found">Eguneraketa berriak aurkitu dira</string>
|
|
||||||
<string name="snack_no_updates_found">Ez da eguneraketa berririk aurkitu</string>
|
|
||||||
<string name="snack_updates_check_failed">Eguneraketa bilaketak huts egin du. Interneterako konexioa egiaztatu eta berriro saiatu, mesedez.</string>
|
|
||||||
<string name="snack_download_failed">Deskargak huts egin du. Interneterako konexioa egiaztatu eta berriro saiatu, mesedez.</string>
|
|
||||||
<string name="snack_download_verification_failed">Eguneraketaren egiaztaketak huts egin du.</string>
|
|
||||||
<string name="snack_download_verified">Deskarga osatuta.</string>
|
|
||||||
<string name="snack_update_not_installable">Eguneraketa hau ezin da instalatu uneko konpilazioaren gainean.</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">Azken egiaztaketa: <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"><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"><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="duration" example="3 minutes">%3$s</xliff:g> left</string>
|
|
||||||
<string name="list_installing_update">Eguneraketa instalatzen</string>
|
|
||||||
<string name="list_verifying_update">Eguneraketa egiaztatzen</string>
|
|
||||||
<string name="list_no_updates">Ez da eguneraketa berririk aurkitu. Eguneraketak eskuz egiaztatzeko, erabili freskatze botoia.</string>
|
|
||||||
<string name="action_description_download">Deskargatu</string>
|
|
||||||
<string name="action_description_pause">Pausatu deskarga</string>
|
|
||||||
<string name="action_description_resume">Berrekin deskarga</string>
|
|
||||||
<string name="action_description_install">Instalatu eguneraketa</string>
|
|
||||||
<string name="action_description_info">Erakutsi informazioa</string>
|
|
||||||
<string name="confirm_delete_dialog_title">Ezabatu fitxategia</string>
|
|
||||||
<string name="confirm_delete_dialog_message">Ezabatu hautatutako eguneraketa fitxategia?</string>
|
|
||||||
<string name="apply_update_dialog_title">Aplikatu eguneraketa</string>
|
|
||||||
<string name="apply_update_dialog_message"><xliff:g id="update_name">%1$s</xliff:g>. bertsioa instalatzera zoaz.\n\n <xliff:g id="ok">%2$s</xliff:g> sakatzean, gailua berreskuratze moduan berrabiaraziko da eguneraketa instalatzeko.\n\nOharra: Berreskuratze aplikazio bateragarri bat behar du ezaugarri honek, bestela eguneraketak eskuz instalatu beharko dira.</string>
|
|
||||||
<string name="apply_update_dialog_message_ab"><xliff:g id="update_name">%1$s</xliff:g>. bertsioa instalatzera zoaz.\n\n <xliff:g id="ok">%2$s</xliff:g> sakatzean, gailu aatzeko planoan hasiko da eguneratzen.\n\nBehin bukatuta berrabiaraztea eskatuko zaizu.</string>
|
|
||||||
<string name="label_download_url">Deskargaren URL-s</string>
|
|
||||||
<string name="toast_download_url_copied">URL-a kopiatuta</string>
|
|
||||||
<string name="snack_export_failed">Ezion izan da deskarga esportatu</string>
|
|
||||||
<string name="dialog_export_title">Eguneraketa esportatzen</string>
|
|
||||||
<string name="dialog_export_message">Eguneraketa esportatzen <xliff:g id="filename">%1$s</xliff:g> gisa kanpo biltegiratzera.</string>
|
|
||||||
<string name="notification_export_success">Eguneraketa esportatuta</string>
|
|
||||||
<string name="notification_export_fail">Esportazio errorea</string>
|
|
||||||
<plurals name="duration_seconds">
|
|
||||||
<item quantity="one">Segundo 1</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> segundo</item>
|
|
||||||
</plurals>
|
|
||||||
<plurals name="duration_minutes">
|
|
||||||
<item quantity="one">Minutu 1</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutu</item>
|
|
||||||
</plurals>
|
|
||||||
<plurals name="duration_hours">
|
|
||||||
<item quantity="one">Ordu 1</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> ordu</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="update_on_mobile_data_title">Abisua</string>
|
|
||||||
<string name="update_on_mobile_data_message">Eguneratze pakete bat deskargatuko duzu datu mugikorrak erabiliz, honek datuen erabilera handia egingo du. Ziur aurrera jarraitu nahi duzula?</string>
|
|
||||||
<string name="checkbox_mobile_data_warning">Ez erakutsi berriro</string>
|
|
||||||
<string name="menu_mobile_data_warning">Datu mugikorren abisua</string>
|
|
||||||
<string name="blocked_update_dialog_title">Eguneraketa blokeatuta</string>
|
|
||||||
<string name="blocked_update_dialog_message">Eguneraketa hau ezin da eguneratze-aplikazioarekin instalatu. Irakurri <xliff:g id="info_url">%1$s</xliff:g> informazio gehiagorako.</string>
|
|
||||||
</resources>
|
|
111
res/values-eu/strings.xml
Normal file
111
res/values-eu/strings.xml
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">Eguneratzailea</string>
|
||||||
|
<string name="display_name">Eguneratzailea</string>
|
||||||
|
<string name="verification_failed_notification">Egiaztapenak huts egin du</string>
|
||||||
|
<string name="verifying_download_notification">Eguneraketa egiaztatzen</string>
|
||||||
|
<string name="downloading_notification">Deskargatzen</string>
|
||||||
|
<string name="download_paused_notification">Deskarga pausatuta</string>
|
||||||
|
<string name="download_paused_error_notification">Deskarga-errorea</string>
|
||||||
|
<string name="download_completed_notification">Deskarga osatuta</string>
|
||||||
|
<string name="download_starting_notification">Deskarga hasten</string>
|
||||||
|
<string name="update_failed_notification">Eguneraketak huts egin du</string>
|
||||||
|
<string name="new_updates_found_title">Eguneraketa berriak</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pausatu</string>
|
||||||
|
<string name="resume_button">Berrekin</string>
|
||||||
|
<string name="installing_update">Eguneraketa-paketea instalatzen</string>
|
||||||
|
<string name="installing_update_error">Instalazio-errorea</string>
|
||||||
|
<string name="installing_update_finished">Eguneraketa instalatuta</string>
|
||||||
|
<string name="finalizing_package">Paketearen instalazioarekin bukatzen</string>
|
||||||
|
<string name="preparing_ota_first_boot">Lehen abiorako prestatzen</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Aldez aurreko eguneraketaren prestaketa</string>
|
||||||
|
<string name="dialog_battery_low_title">Bateria gutxi</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Bateria maila baxuegia da, gutxienez bateriaren %% <xliff:g id="percent_discharging">%1$d</xliff:g> behar da jarraitzeko, %% <xliff:g id="percent_charging">%2$d</xliff:g> kargatzen badago.</string>
|
||||||
|
<string name="reboot">Berrabiarazi</string>
|
||||||
|
<string name="menu_refresh">Freskatu</string>
|
||||||
|
<string name="menu_preferences">Hobespenak</string>
|
||||||
|
<string name="menu_auto_updates_check">Eguneraketen egiaztaketa automatikoa</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Egunean behin</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Astean behin</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Hilabetean behin</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Inoiz ez</string>
|
||||||
|
<string name="menu_auto_delete_updates">Ezabatu eguneraketak instalatutakoan</string>
|
||||||
|
<string name="menu_delete_update">Ezabatu</string>
|
||||||
|
<string name="menu_copy_url">Kopiatu URL-a</string>
|
||||||
|
<string name="menu_export_update">Esportatu eguneraketa</string>
|
||||||
|
<string name="menu_show_changelog">Erakutsi aldaketa-egunkaria</string>
|
||||||
|
<string name="menu_ab_perf_mode">Eman lehentasuna eguneraketa prozesuari</string>
|
||||||
|
<string name="snack_updates_found">Eguneraketa berriak aurkitu dira</string>
|
||||||
|
<string name="snack_no_updates_found">Ez da eguneraketa berririk aurkitu</string>
|
||||||
|
<string name="snack_updates_check_failed">Eguneraketa bilaketak huts egin du. Interneterako konexioa egiaztatu eta berriro saiatu, mesedez.</string>
|
||||||
|
<string name="snack_download_failed">Deskargak huts egin du. Egiaztatu Interneterako konexioa eta saiatu berriro.</string>
|
||||||
|
<string name="snack_download_verification_failed">Eguneraketaren egiaztaketak huts egin du.</string>
|
||||||
|
<string name="snack_download_verified">Deskarga osatuta.</string>
|
||||||
|
<string name="snack_update_not_installable">Eguneraketa hau ezin da instalatu uneko konpilazioaren gainean.</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">Azken egiaztaketa: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Eguneraketa egiaztatzen</string>
|
||||||
|
<string name="list_no_updates">Ez da eguneraketa berririk aurkitu. Eguneraketak eskuz egiaztatzeko, erabili freskatze botoia.</string>
|
||||||
|
<string name="action_download">Deskargatu</string>
|
||||||
|
<string name="action_pause">Pausatu</string>
|
||||||
|
<string name="action_resume">Berrekin</string>
|
||||||
|
<string name="action_install">Instalatu</string>
|
||||||
|
<string name="action_info">Informazioa</string>
|
||||||
|
<string name="action_delete">Ezabatu</string>
|
||||||
|
<string name="action_cancel">Utzi</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Ezabatu fitxategia</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Ezabatu hautatutako eguneraketa fitxategia?</string>
|
||||||
|
<string name="apply_update_dialog_title">Aplikatu eguneraketa</string>
|
||||||
|
<string name="apply_update_dialog_message"><xliff:g id="update_name">%1$s</xliff:g> bertsioa instalatzera zoaz.\n\n<xliff:g id="ok">%2$s</xliff:g> sakatzean, gailua berreskuratze moduan berrabiaraziko da eguneraketa instalatzeko.\n\nOharra: Berreskuratze aplikazio bateragarri bat behar du ezaugarri honek, bestela eguneraketak eskuz instalatu beharko dira.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab"><xliff:g id="update_name">%1$s</xliff:g> bertsioa instalatzera zoaz.\n\n<xliff:g id="ok">%2$s</xliff:g> sakatzean, gailua atzeko planoan hasiko da eguneratzen.\n\nBehin bukatuta berrabiaraztea eskatuko zaizu.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Ezeztatu instalazioa?</string>
|
||||||
|
<string name="label_download_url">Deskargaren URL-s</string>
|
||||||
|
<string name="toast_download_url_copied">URL-a kopiatuta</string>
|
||||||
|
<string name="dialog_export_title">Eguneraketa esportatzen</string>
|
||||||
|
<string name="notification_export_success">Eguneraketa esportatuta</string>
|
||||||
|
<string name="notification_export_fail">Esportazio errorea</string>
|
||||||
|
<string name="toast_already_exporting">Eguneraketa bat esportatzen dagoeneko</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">Segundo 1 geratzen da</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> segundo geratzen dira</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">Minutu 1 geratzen da</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutu geratzen dira</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">Ordu 1 geratzen da</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> ordu geratzen dira</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Abisua</string>
|
||||||
|
<string name="update_on_mobile_data_message">Eguneratze pakete bat deskargatuko duzu datu mugikorrak erabiliz, honek datuen erabilera handia egingo du. Ziur aurrera jarraitu nahi duzula?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Ez erakutsi berriro</string>
|
||||||
|
<string name="menu_mobile_data_warning">Datu mugikorren abisua</string>
|
||||||
|
<string name="blocked_update_dialog_title">Eguneraketa blokeatuta</string>
|
||||||
|
<string name="blocked_update_dialog_message">Eguneraketa hau ezin da eguneratze-aplikazioarekin instalatu. Irakurri <xliff:g id="info_url">%1$s</xliff:g> informazio gehiagorako.</string>
|
||||||
|
<string name="export_channel_title">Esportazioaren osaketa</string>
|
||||||
|
<string name="new_updates_channel_title">Eguneraketa berriak</string>
|
||||||
|
<string name="ongoing_channel_title">Deskargak abian</string>
|
||||||
|
<string name="update_failed_channel_title">Eguneraketak huts egin du</string>
|
||||||
|
</resources>
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,97 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Päivittäjä</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Päivittäjä</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Vahvistus epäonnistui</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Todentaa päivitystä</string>
|
||||||
|
<string name="downloading_notification">Ladataan</string>
|
||||||
|
<string name="download_paused_notification">Lataus keskeytetty</string>
|
||||||
|
<string name="download_paused_error_notification">Latausvirhe</string>
|
||||||
|
<string name="download_completed_notification">Lataus suoritettu</string>
|
||||||
|
<string name="download_starting_notification">Aloitetaan latausta</string>
|
||||||
|
<string name="update_failed_notification">Päivitys epäonnistui</string>
|
||||||
|
<string name="new_updates_found_title">Uudet päivitykset</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Tauko</string>
|
||||||
|
<string name="resume_button">Jatka</string>
|
||||||
|
<string name="installing_update">Asennetaan päivitystä</string>
|
||||||
|
<string name="installing_update_error">Asennusvirhe</string>
|
||||||
|
<string name="installing_update_finished">Päivitys asennettu</string>
|
||||||
|
<string name="finalizing_package">Viimeistellään päivityksen asennusta</string>
|
||||||
|
<string name="preparing_ota_first_boot">Valmistellaan ensimmäistä käynnistystä</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Alustava päivityksen valmistelu</string>
|
||||||
|
<string name="dialog_battery_low_title">Akku vähissä</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Akun varaus on liian matala, tarvitset vähintään <xliff:g id="percent_discharging">%1$d</xliff:g>%% jatkaaksesi, <xliff:g id="percent_charging">%2$d</xliff:g>%% jos laite on latauksessa.</string>
|
||||||
|
<string name="reboot">Käynnistä uudelleen</string>
|
||||||
|
<string name="menu_refresh">Päivitä</string>
|
||||||
|
<string name="menu_preferences">Ominaisuudet</string>
|
||||||
|
<string name="menu_auto_updates_check">Automaattinen päivitysten tarkistus</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Kerran päivässä</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Kerran viikossa</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Kerran kuukaudessa</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Ei koskaan</string>
|
||||||
|
<string name="menu_auto_delete_updates">Poista päivitykset asennuksen jälkeen</string>
|
||||||
|
<string name="menu_delete_update">Poista</string>
|
||||||
|
<string name="menu_copy_url">Kopioi URL-osoite</string>
|
||||||
|
<string name="menu_export_update">Vie päivitys</string>
|
||||||
|
<string name="menu_show_changelog">Näytä muutosloki</string>
|
||||||
|
<string name="menu_ab_perf_mode">Priorisoi päivitysprosessi</string>
|
||||||
|
<string name="snack_updates_found">Uusia päivityksiä löytyi</string>
|
||||||
|
<string name="snack_no_updates_found">Uusia päivityksiä ei löytynyt</string>
|
||||||
|
<string name="snack_updates_check_failed">Päivitysten tarkistaminen epäonnistui. Tarkista internet-yhteytesi ja yritä uudelleen.</string>
|
||||||
|
<string name="snack_download_failed">Lataaminen epäonnistui. Tarkista internet-yhteytesi ja yritä uudelleen.</string>
|
||||||
|
<string name="snack_download_verification_failed">Päivityksen vahvistaminen epäonnistui.</string>
|
||||||
|
<string name="snack_download_verified">Lataus suoritettu.</string>
|
||||||
|
<string name="snack_update_not_installable">Tätä päivitystä ei voida asentaa nykyisen version päälle.</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">Viimeksi tarkistettu: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Todentaa päivitystä</string>
|
||||||
|
<string name="list_no_updates">Uusia päivityksiä ei löytynyt. Tarkistaaksesi päivitykset manuaalisesti, paina Päivitä-painiketta.</string>
|
||||||
|
<string name="action_download">Lataa</string>
|
||||||
|
<string name="action_pause">Tauko</string>
|
||||||
|
<string name="action_resume">Jatka</string>
|
||||||
|
<string name="action_install">Asenna</string>
|
||||||
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Poista</string>
|
||||||
|
<string name="action_cancel">Peruuta</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Poista tiedosto</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Poista valittu päivitystiedosto?</string>
|
||||||
|
<string name="apply_update_dialog_title">Asenna päivitys</string>
|
||||||
|
<string name="apply_update_dialog_message">Olet päivittämässä versioon <xliff:g id="update_name">%1$s</xliff:g>.\n\nJos painat <xliff:g id="ok">%2$s</xliff:g>, laite käynnistyy Recovery-tilaan. \n\nHuomautus: Tämä toiminto vaatii yhteensopivan Recoveryn tai päivitys pitää asentaa manuaalisesti.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Olet päivittämässä versioon <xliff:g id="update_name">%1$s</xliff:g>.\n\nJos painat <xliff:g id="ok">%2$s</xliff:g>, asennus alkaa taustalla.\n\nKun asennus on valmis, sinua pyydetään käynnistämään laite uudelleen.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Peruuta asennus?</string>
|
||||||
|
<string name="label_download_url">Lataussivun URL-osoite</string>
|
||||||
|
<string name="toast_download_url_copied">URL-osoite kopioitu</string>
|
||||||
|
<string name="dialog_export_title">Viedään päivitystä</string>
|
||||||
|
<string name="notification_export_success">Päivitys viety</string>
|
||||||
|
<string name="notification_export_fail">Vienti epäonnistui</string>
|
||||||
|
<string name="toast_already_exporting">Päivityksen vieminen jo käynnissä</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 sekunti jäljellä</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> sekuntia jäljellä</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minuutti jäljellä</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuuttia jäljellä</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 tunti jäljellä</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> tuntia jäljellä</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Varoitus</string>
|
||||||
|
<string name="update_on_mobile_data_message">Olet lataamassa päivityspakettia käyttämällä mobiilidataa, joka voi aiheuttaa tiedonsiirtokuluja. Haluatko jatkaa?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Älä näytä uudelleen</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobiilidatavaroitus</string>
|
||||||
|
<string name="blocked_update_dialog_title">Päivitys estetty</string>
|
||||||
|
<string name="blocked_update_dialog_message">Tätä päivitystä ei voida asentaa päivitys-sovelluksella. Lue <xliff:g id="info_url">%1$s</xliff:g> saadaksesi lisätietoja.</string>
|
||||||
|
<string name="export_channel_title">Vienti valmis</string>
|
||||||
|
<string name="new_updates_channel_title">Uudet päivitykset</string>
|
||||||
|
<string name="ongoing_channel_title">Käynnissä olevat lataukset</string>
|
||||||
|
<string name="update_failed_channel_title">Päivitys epäonnistui</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,97 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Gestionnaire de mise à jour</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Gestionnaire de mise à jour</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Échec de la vérification</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Vérification de la mise à jour en cours</string>
|
||||||
|
<string name="downloading_notification">Téléchargement en cours</string>
|
||||||
|
<string name="download_paused_notification">Téléchargement mis en pause</string>
|
||||||
|
<string name="download_paused_error_notification">Erreur de téléchargement</string>
|
||||||
|
<string name="download_completed_notification">Téléchargement terminé</string>
|
||||||
|
<string name="download_starting_notification">Début du téléchargement</string>
|
||||||
|
<string name="update_failed_notification">Échec de la mise à jour</string>
|
||||||
|
<string name="new_updates_found_title">Nouvelles mises à jour</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pause</string>
|
||||||
|
<string name="resume_button">Reprendre</string>
|
||||||
|
<string name="installing_update">Installation du paquet de mise à jour en cours</string>
|
||||||
|
<string name="installing_update_error">Erreur d\'installation</string>
|
||||||
|
<string name="installing_update_finished">Mise à jour installée</string>
|
||||||
|
<string name="finalizing_package">Finalisation de l’installation du paquet</string>
|
||||||
|
<string name="preparing_ota_first_boot">Préparation pour le premier démarrage</string>
|
||||||
|
<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="reboot">Redémarrer</string>
|
||||||
|
<string name="menu_refresh">Actualiser</string>
|
||||||
|
<string name="menu_preferences">Préférences</string>
|
||||||
|
<string name="menu_auto_updates_check">Vérification des mises à jour automatique</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Une fois par jour</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Une fois par semaine</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Une fois par mois</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Jamais</string>
|
||||||
|
<string name="menu_auto_delete_updates">Supprimer les mises à jour une fois installées</string>
|
||||||
|
<string name="menu_delete_update">Supprimer</string>
|
||||||
|
<string name="menu_copy_url">Copier l\'URL</string>
|
||||||
|
<string name="menu_export_update">Exporter la mise à jour</string>
|
||||||
|
<string name="menu_show_changelog">Afficher l\'historique des modifications</string>
|
||||||
|
<string name="menu_ab_perf_mode">Privilégier le processus de mise à jour</string>
|
||||||
|
<string name="snack_updates_found">Nouvelles mises à jour disponibles</string>
|
||||||
|
<string name="snack_no_updates_found">Aucune nouvelle mise à jour disponible</string>
|
||||||
|
<string name="snack_updates_check_failed">La vérification de nouvelles mises à jour a échoué. Vérifiez votre connexion internet et réessayez ultérieurement.</string>
|
||||||
|
<string name="snack_download_failed">Le téléchargement a échoué. Vérifiez votre connexion internet et réessayez ultérieurement.</string>
|
||||||
|
<string name="snack_download_verification_failed">La vérification de la mise à jour a échoué.</string>
|
||||||
|
<string name="snack_download_verified">Téléchargement terminé.</string>
|
||||||
|
<string name="snack_update_not_installable">Cette mise à jour ne peut pas être installée sur votre version actuelle.</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">Dernière vérification : <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_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> sur <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_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> sur <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Vérification de la mise à jour en cours</string>
|
||||||
|
<string name="list_no_updates">Aucune nouvelle mise à jour trouvée. Pour vérifier manuellement la présence de mises à jour, utiliser le bouton Actualiser.</string>
|
||||||
|
<string name="action_download">Télécharger</string>
|
||||||
|
<string name="action_pause">Mettre en pause</string>
|
||||||
|
<string name="action_resume">Reprendre</string>
|
||||||
|
<string name="action_install">Installer</string>
|
||||||
|
<string name="action_info">Informations</string>
|
||||||
|
<string name="action_delete">Supprimer</string>
|
||||||
|
<string name="action_cancel">Annuler</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Supprimer le fichier</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Supprimer le fichier de mise à jour sélectionné ?</string>
|
||||||
|
<string name="apply_update_dialog_title">Appliquer la mise à jour</string>
|
||||||
|
<string name="apply_update_dialog_message">Vous êtes sur le point d\'installer <xliff:g id="update_name">%1$s</xliff:g>.\n\nLorsque vous appuierez sur <xliff:g id="ok">%2$s</xliff:g>, votre appareil redémarrera automatiquement en mode recovery pour installer la mise à jour.\n\nRemarque : Cette opération nécessite un recovery compatible, sinon les mises à jour devront être installées manuellement.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Vous êtes sur le point de faire la mise à jour vers <xliff:g id="update_name">%1$s</xliff:g>.\n\nLorsque vous appuierez sur <xliff:g id="ok">%2$s</xliff:g>, l’appareil commencera l\'installation en tâche de fond.\n\nUne fois celle-ci terminée, il vous sera demandé de redémarrer.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Annuler l\'installation ?</string>
|
||||||
|
<string name="label_download_url">URL de téléchargement</string>
|
||||||
|
<string name="toast_download_url_copied">URL copiée</string>
|
||||||
|
<string name="dialog_export_title">Exportation de la mise à jour en cours</string>
|
||||||
|
<string name="notification_export_success">Mise à jour exportée</string>
|
||||||
|
<string name="notification_export_fail">Erreur lors de l\'exportation</string>
|
||||||
|
<string name="toast_already_exporting">Une mise à jour est déjà en cours d\'export</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">temps restant : 1 seconde</item>
|
||||||
|
<item quantity="other">temps restant : <xliff:g id="count">%d</xliff:g> secondes</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">temps restant : 1 minute</item>
|
||||||
|
<item quantity="other">temps restant : <xliff:g id="count">%d</xliff:g> minutes</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">temps restant : 1 heure</item>
|
||||||
|
<item quantity="other">temps restant : <xliff:g id="count">%d</xliff:g> heures</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Avertissement</string>
|
||||||
|
<string name="update_on_mobile_data_message">Vous êtes sur le point de télécharger un paquet de mise à jour via les données mobiles qui pourrait représenter un volume de données important. Voulez-vous tout de même procéder au téléchargement ?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Ne plus afficher</string>
|
||||||
|
<string name="menu_mobile_data_warning">Avertissement d\'usage des données mobiles</string>
|
||||||
|
<string name="blocked_update_dialog_title">Mise à jour bloquée</string>
|
||||||
|
<string name="blocked_update_dialog_message">Cette mise à jour ne peut pas être installée en utilisant le gestionnaire de mise à jour. Veuillez lire <xliff:g id="info_url">%1$s</xliff:g> pour plus d’information.</string>
|
||||||
|
<string name="export_channel_title">Fin de l\'exportation</string>
|
||||||
|
<string name="new_updates_channel_title">Nouvelles mises à jour</string>
|
||||||
|
<string name="ongoing_channel_title">Téléchargements en cours</string>
|
||||||
|
<string name="update_failed_channel_title">Échec de la mise à jour</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,97 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Fernijer</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Fernijer</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Ferifikaasje mislearre</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Fernijing ferifiearje</string>
|
||||||
|
<string name="downloading_notification">Downloade</string>
|
||||||
|
<string name="download_paused_notification">Download pauzearre</string>
|
||||||
|
<string name="download_paused_error_notification">Flater by downloaden</string>
|
||||||
|
<string name="download_completed_notification">Downloaden foltôge</string>
|
||||||
|
<string name="download_starting_notification">Download starte</string>
|
||||||
|
<string name="update_failed_notification">Fernijing mislearre</string>
|
||||||
|
<string name="new_updates_found_title">Nije fernijingen</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pauze</string>
|
||||||
|
<string name="resume_button">Ferfetsje</string>
|
||||||
|
<string name="installing_update">Fernijing ynstallearje</string>
|
||||||
|
<string name="installing_update_error">Ynstallaasjeflater</string>
|
||||||
|
<string name="installing_update_finished">Fernijing ynstallearre</string>
|
||||||
|
<string name="finalizing_package">Ynstallaasje fan het pakket foltôgje</string>
|
||||||
|
<string name="preparing_ota_first_boot">Earste start tariede</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Fernijing tariede</string>
|
||||||
|
<string name="dialog_battery_low_title">Lege batterijspanning</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Jo batterijnivo is te leech, jo moatte op syn minst <xliff:g id="percent_discharging">%1$d</xliff:g>%% batterijkapasiteit hawwe om troch te gean of <xliff:g id="percent_charging">%2$d</xliff:g>%% wylst it opladen.</string>
|
||||||
|
<string name="reboot">Opnij starte</string>
|
||||||
|
<string name="menu_refresh">Fernije</string>
|
||||||
|
<string name="menu_preferences">Foarkarren</string>
|
||||||
|
<string name="menu_auto_updates_check">Automatysk kontrolearje op fernijingen</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Ien kear deis</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Ien kear yn de wike</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Ien kear yn de moanne</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Nea</string>
|
||||||
|
<string name="menu_auto_delete_updates">Fernijingen fuortsmite neidat se ynstallearre binne</string>
|
||||||
|
<string name="menu_delete_update">Fuortsmite</string>
|
||||||
|
<string name="menu_copy_url">URL kopiearje</string>
|
||||||
|
<string name="menu_export_update">Fernijing eksportearje</string>
|
||||||
|
<string name="menu_show_changelog">Changelog toane</string>
|
||||||
|
<string name="menu_ab_perf_mode">Fernijingsproses prioriteit jaan</string>
|
||||||
|
<string name="snack_updates_found">Nije fernijingen fûn</string>
|
||||||
|
<string name="snack_no_updates_found">Gjin nije fernijingen fûn</string>
|
||||||
|
<string name="snack_updates_check_failed">Kin net kontrolearje op fernijingen. Kontrolearje jo ynternetferbining en probearje it letter opnij.</string>
|
||||||
|
<string name="snack_download_failed">Downloaden mislearre. Kontrolearje jo ynternetferbining en probearje it letter opnij.</string>
|
||||||
|
<string name="snack_download_verification_failed">Ferifikaasje fan de fernijing mislearre.</string>
|
||||||
|
<string name="snack_download_verified">Downloaden foltôge.</string>
|
||||||
|
<string name="snack_update_not_installable">Dizze fernijing kin net ynstallearre wurde boppe-op de aktuele ferzje.</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">Lêst kontrolearre: <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_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> fan <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_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> fan <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Fernijing ferifiearje</string>
|
||||||
|
<string name="list_no_updates">Gjin nije fernijingen fûn. Brûk de knop Fernije om hânmjittich te kontrolearjen op nije fernijingen.</string>
|
||||||
|
<string name="action_download">Downloade</string>
|
||||||
|
<string name="action_pause">Pauzeearje</string>
|
||||||
|
<string name="action_resume">Ferfetsje</string>
|
||||||
|
<string name="action_install">Ynstallearje</string>
|
||||||
|
<string name="action_info">Ynformaasje</string>
|
||||||
|
<string name="action_delete">Fuortsmite</string>
|
||||||
|
<string name="action_cancel">Annulearje</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Bestân fuortsmite</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Selektearre fernijingsbestân fuortsmite?</string>
|
||||||
|
<string name="apply_update_dialog_title">Fernijing tapasse</string>
|
||||||
|
<string name="apply_update_dialog_message">Jo systeem wurdt bywurke nei <xliff:g id="update_name">%1$s</xliff:g>.\n\nWannear\'t jo op <xliff:g id="ok">%2$s</xliff:g> tikke, sil it apparaat opnij starte nei recovery om de fernijing te ynstallearjen.\n\nLet op: in compatibele recovery is fereaske, oars moat de fernijing hânmjittich ynstallearre wurde.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Jo systeem wurdt bywurke nei <xliff:g id="update_name">%1$s</xliff:g>.\n\nWannear\'t jo op <xliff:g id="ok">%2$s</xliff:g> tikke, sil it apparaat de fernijing op de eftergrûn útfiere.\n\nWannear\'t de ynstallaasje foltôge is, sil frege wurde it tastel te opnij te starten.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Ynstallaasje annulearje?</string>
|
||||||
|
<string name="label_download_url">Download-URL</string>
|
||||||
|
<string name="toast_download_url_copied">URL kopiearre</string>
|
||||||
|
<string name="dialog_export_title">Fernijing eksportearje</string>
|
||||||
|
<string name="notification_export_success">Fernijing eksportearre</string>
|
||||||
|
<string name="notification_export_fail">Flater by eksportearjen</string>
|
||||||
|
<string name="toast_already_exporting">Der wurdt al in fernijing eksportearre</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 sekonde restearjend</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> sekonden restearjend</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 minút restearjend</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuten restearjend</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 oer restearjend</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> oer restearjend</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Warskôging</string>
|
||||||
|
<string name="update_on_mobile_data_message">Jo stean op it punt in fernijng te downloaden fia mobile gegevens, wat ta in heech gegevensgebrûk liede kin. Wolle jo fierder gean?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Net opnij toane</string>
|
||||||
|
<string name="menu_mobile_data_warning">Warskôging mobile gegevens</string>
|
||||||
|
<string name="blocked_update_dialog_title">Fernijing blokkearre</string>
|
||||||
|
<string name="blocked_update_dialog_message">Dizze fernijing kin net ynstallearre wurde mei heulp fan de fernijings-app. Lês <xliff:g id="info_url">%1$s</xliff:g> foar mear ynformaasje.</string>
|
||||||
|
<string name="export_channel_title">Eksportearjen foltôge</string>
|
||||||
|
<string name="new_updates_channel_title">Nije fernijingen</string>
|
||||||
|
<string name="ongoing_channel_title">Aktuele downloads</string>
|
||||||
|
<string name="update_failed_channel_title">Fernijing mislearre</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
117
res/values-gd/strings.xml
Normal file
117
res/values-gd/strings.xml
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">An t-ùraichear</string>
|
||||||
|
<string name="display_name">An t-ùraichear</string>
|
||||||
|
<string name="verification_failed_notification">Dh’fhàillig an dearbhadh</string>
|
||||||
|
<string name="verifying_download_notification">A’ dearbhadh an ùrachaidh</string>
|
||||||
|
<string name="downloading_notification">’Ga luchdadh a-nuas</string>
|
||||||
|
<string name="download_paused_notification">Tha an luchdadh a-nuas ’na stad</string>
|
||||||
|
<string name="download_paused_error_notification">Mearachd leis an luchdadh a-nuas</string>
|
||||||
|
<string name="download_completed_notification">Tha an luchdadh a-nuas deiseil</string>
|
||||||
|
<string name="download_starting_notification">A’ tòiseachadh air an luchdadh a-nuas</string>
|
||||||
|
<string name="update_failed_notification">Dh’fhàillig leis an ùrachadh</string>
|
||||||
|
<string name="new_updates_found_title">Ùrachaidhean</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Cuir ’na stad</string>
|
||||||
|
<string name="resume_button">Lean air</string>
|
||||||
|
<string name="installing_update">A’ stàladh pacaid ùrachaidh</string>
|
||||||
|
<string name="installing_update_error">Mearachd leis an stàladh</string>
|
||||||
|
<string name="installing_update_finished">Chaidh an t-ùrachadh a stàladh</string>
|
||||||
|
<string name="finalizing_package">A’ crìochnachadh stàladh na pacaid</string>
|
||||||
|
<string name="preparing_ota_first_boot">Ag ullachadh a’ chiad tòiseachaidh</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Ullachadh an ùrachaidh</string>
|
||||||
|
<string name="dialog_battery_low_title">Bataraidh fann</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Tha am bataraidh ro fhann, feumaidh tu co-dhiù <xliff:g id="percent_discharging">%1$d</xliff:g>%% dhen bhataraidh mus lean thu air adhart no <xliff:g id="percent_charging">%2$d</xliff:g>%% fhad ’s a bhios tu ’ga theàirrdseadh.</string>
|
||||||
|
<string name="reboot">Dèan ath-thòiseachadh</string>
|
||||||
|
<string name="menu_refresh">Ath-nuadhaich</string>
|
||||||
|
<string name="menu_preferences">Roghainnean</string>
|
||||||
|
<string name="menu_auto_updates_check">Thoir sùil airson ùrachaidhean gu fèin-obrachail</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Gach latha</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Gach seachdain</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Gach mìos</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Chan ann idir</string>
|
||||||
|
<string name="menu_auto_delete_updates">Sguab às na h-ùrachaidhean às dèidh an stàlaidh</string>
|
||||||
|
<string name="menu_delete_update">Sguab às</string>
|
||||||
|
<string name="menu_copy_url">Dèan lethbhreac dhen URL</string>
|
||||||
|
<string name="menu_export_update">Às-phortaich an t-ùrachadh</string>
|
||||||
|
<string name="menu_show_changelog">Seall loga nan atharraichean</string>
|
||||||
|
<string name="menu_ab_perf_mode">Cuir prìomhachas air pròiseas an ùrachaidh</string>
|
||||||
|
<string name="snack_updates_found">Chaidh ùrachadh a lorg</string>
|
||||||
|
<string name="snack_no_updates_found">Cha deach ùrachadh a lorg</string>
|
||||||
|
<string name="snack_updates_check_failed">Cha b’ urrainn dhuinn sùil a thoirt airson ùrachaidhean. Thoir sùil air a’ cheangal agad ris an eadar-lìon is feuch ris a-rithist an ceann greis.</string>
|
||||||
|
<string name="snack_download_failed">Dh’fhàillig an luchdadh a-nuas. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist an ceann greis.</string>
|
||||||
|
<string name="snack_download_verification_failed">Dh’fhàillig le dearbhadh an ùrachaidh.</string>
|
||||||
|
<string name="snack_download_verified">Tha an luchdadh a-nuas deiseil.</string>
|
||||||
|
<string name="snack_update_not_installable">Chan urrainn dhut an t-ùrachadh seo a’ stàladh air an togail làithreach agad.</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">An sgrùdadh mu dheireadh: <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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">A’ dearbhadh an ùrachaidh</string>
|
||||||
|
<string name="list_no_updates">Cha deach ùrachadh a lorg. Airson sùil a thoirt airson ùrachaidhean a làimh, cleachd am putan “Ath-nuadhaich”.</string>
|
||||||
|
<string name="action_download">Luchdaich a-nuas</string>
|
||||||
|
<string name="action_pause">Cuir ’na stad</string>
|
||||||
|
<string name="action_resume">Lean air</string>
|
||||||
|
<string name="action_install">Stàlaich</string>
|
||||||
|
<string name="action_info">Fiosrachadh</string>
|
||||||
|
<string name="action_delete">Sguab às</string>
|
||||||
|
<string name="action_cancel">Sguir dheth</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Sguab às am faidhle</string>
|
||||||
|
<string name="confirm_delete_dialog_message">A bheil thu airson faidhle an ùrachaidh a thagh thu a sguabadh às?</string>
|
||||||
|
<string name="apply_update_dialog_title">Cuir an t-ùrachadh an sàs</string>
|
||||||
|
<string name="apply_update_dialog_message">Tha thu an impis àrdachadh gu <xliff:g id="update_name">%1$s</xliff:g>.\n\nMa bhrùthas tu <xliff:g id="ok">%2$s</xliff:g>, nì an t-uidheam ath-thòiseachadh sa mhodh aisig airson an t-ùrachadh a stàladh.\n\nAn aire: Tha feum air gleus aisig co-chòrdail no feumaidh tu an t-ùrachadh a stàladh a làimh.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Tha thu an impis àrdachadh gu <xliff:g id="update_name">%1$s</xliff:g>.\n\nMa bhrùthas tu <xliff:g id="ok">%2$s</xliff:g>, tòisichidh an t-uidheam air an stàladh sa chùlaibh.\n\nNuair a bhios e deiseil, thèid ath-thòiseachadh iarraidh ort.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">An sguir thu dhen stàladh?</string>
|
||||||
|
<string name="label_download_url">Luchdaich a-nuas URL</string>
|
||||||
|
<string name="toast_download_url_copied">Chaidh lethbhreac dhen URL a dhèanamh</string>
|
||||||
|
<string name="dialog_export_title">Ag às-phortadh an ùrachaidh</string>
|
||||||
|
<string name="notification_export_success">Chaidh an t-ùrachadh às-phortadh</string>
|
||||||
|
<string name="notification_export_fail">Mearachd leis an às-phortadh</string>
|
||||||
|
<string name="toast_already_exporting">Tha thu ag às-phortadh ùrachadh mu thràth</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> diog air fhàgail</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> dhiog air fhàgail</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> diogan air fhàgail</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> diog air fhàgail</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> mhion. air fhàgail</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> mhion. air fhàgail</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> mion. air fhàgail</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> mion. air fhàgail</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one"><xliff:g id="count">%d</xliff:g> uair a thìde air fhàgail</item>
|
||||||
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> uair a thìde air fhàgail</item>
|
||||||
|
<item quantity="few"><xliff:g id="count">%d</xliff:g> uairean a thìde air fhàgail</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> uair a thìde air fhàgail</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Rabhadh</string>
|
||||||
|
<string name="update_on_mobile_data_message">Tha thu an impis pacaid ùrachaidh a luchdadh a-nuas le dàta mobile agus caithidh sin tòrr dàta gun teagamh. A bheil thu airson leantainn air adhart?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Na seall seo a-rithist</string>
|
||||||
|
<string name="menu_mobile_data_warning">Rabhadh mu dhàta mobile</string>
|
||||||
|
<string name="blocked_update_dialog_title">Chaidh an t-ùrachadh a bhacadh</string>
|
||||||
|
<string name="blocked_update_dialog_message">Cha ghabh an t-ùrachadh seo stàladh le aplacaid an ùraicheir. Leugh <xliff:g id="info_url">%1$s</xliff:g> airson barrachd fiosrachaidh.</string>
|
||||||
|
<string name="export_channel_title">Coileanadh an às-phortaidh</string>
|
||||||
|
<string name="new_updates_channel_title">Ùrachaidhean</string>
|
||||||
|
<string name="ongoing_channel_title">’Ga luchdadh a-nuas</string>
|
||||||
|
<string name="update_failed_channel_title">Dh’fhàillig leis an ùrachadh</string>
|
||||||
|
</resources>
|
@@ -1,103 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">Actualizador</string>
|
|
||||||
<string name="display_name">Actualizador</string>
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Fallou a comprobación</string>
|
|
||||||
<string name="verifying_download_notification">Comprobando actualización</string>
|
|
||||||
<string name="downloading_notification">Descargando</string>
|
|
||||||
<string name="download_paused_notification">Descarga en pausa</string>
|
|
||||||
<string name="download_paused_error_notification">Erro na descarga</string>
|
|
||||||
<string name="download_completed_notification">Descarga completada</string>
|
|
||||||
<string name="download_starting_notification">Iniciando descarga</string>
|
|
||||||
<string name="new_updates_found_title">Novas actualizacións</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="installing_update">Instalando paquete de actualización</string>
|
|
||||||
<string name="installing_update_error">Erro de instalación</string>
|
|
||||||
<string name="installing_update_finished">Actualización instalada</string>
|
|
||||||
<string name="finalizing_package">Rematando a instalación do paquete</string>
|
|
||||||
<string name="preparing_ota_first_boot">Preparando o primeiro arranque</string>
|
|
||||||
<string name="dialog_prepare_zip_message">Preparación preliminar da actualización</string>
|
|
||||||
<string name="notification_prepare_zip_error_title">Non foi posible preparar a actualización</string>
|
|
||||||
<string name="reboot">Reiniciar</string>
|
|
||||||
<string name="menu_refresh">Actualizar</string>
|
|
||||||
<string name="menu_auto_updates_check">Buscar actualizacións automaticamente</string>
|
|
||||||
<string name="menu_auto_delete_updates">Eliminar a actualización cando estea instalada</string>
|
|
||||||
<string name="menu_delete_update">Eliminar</string>
|
|
||||||
<string name="menu_copy_url">Copiar URL</string>
|
|
||||||
<string name="menu_export_update">Exportar actualización</string>
|
|
||||||
<string name="dialog_checking_for_updates">Comprobando actualizacións</string>
|
|
||||||
<string name="snack_updates_found">Atopáronse novas actualizacións</string>
|
|
||||||
<string name="snack_no_updates_found">Non se atoparon novas actualizacións</string>
|
|
||||||
<string name="snack_updates_check_failed">A verificación da descarga fallou. Comproba a túa conexión a internet e téntao de novo.</string>
|
|
||||||
<string name="snack_download_failed">Produciuse un erro na descarga. Comproba a túa conexión a internet e téntao de novo.</string>
|
|
||||||
<string name="snack_download_verification_failed">Fallou a verificación da actualización.</string>
|
|
||||||
<string name="snack_download_verified">Descarga completada.</string>
|
|
||||||
<string name="snack_update_not_installable">Non é posíbel instalar esta actualización sobre a compilació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"><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">restan <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="duration" example="3 minutes">%3$s</xliff:g></string>
|
|
||||||
<string name="list_installing_update">Instalando actualización</string>
|
|
||||||
<string name="list_verifying_update">Comprobando actualización</string>
|
|
||||||
<string name="list_no_updates">Non se atoparon novas actualizacións. Para buscar manualmente, preme no botón Actualizar.</string>
|
|
||||||
<string name="action_description_download">Descarga</string>
|
|
||||||
<string name="action_description_pause">Pausar a descarga</string>
|
|
||||||
<string name="action_description_resume">Continuar a descarga</string>
|
|
||||||
<string name="action_description_install">Instalar actualización</string>
|
|
||||||
<string name="action_description_info">Amosar información</string>
|
|
||||||
<string name="confirm_delete_dialog_title">Eliminar ficheiro</string>
|
|
||||||
<string name="confirm_delete_dialog_message">Eliminar o ficheiro de actualización seleccionado?</string>
|
|
||||||
<string name="apply_update_dialog_title">Aplicar a actualización</string>
|
|
||||||
<string name="apply_update_dialog_message">Procederase a actualizar <xliff:g id="update_name">%1$s</xliff:g>.\n\nAo premer en <xliff:g id="ok">%2$s</xliff:g>, reiniciarase no modo recuperación para instalar a actualización.\n\nAviso: Esta función require dunha recuperación compatible ou as actualizacións precisarán de se instalar manualmente.</string>
|
|
||||||
<string name="apply_update_dialog_message_ab">Actualizaráse a <xliff:g id="update_name">%1$s</xliff:g>.\n\n Se pulsase <xliff:g id="ok">%2$s</xliff:g>, o dispositivo comezará a instalar en segundo plano.\n\nUnha vez terminado o proceso, pediráselle que reinicie.</string>
|
|
||||||
<string name="label_download_url">URL da descarga</string>
|
|
||||||
<string name="toast_download_url_copied">URL copiado</string>
|
|
||||||
<string name="snack_export_failed">Non foi posíbel exportar a descarga</string>
|
|
||||||
<string name="dialog_export_title">Exportando actualización</string>
|
|
||||||
<string name="dialog_export_message">Exportando a actualización como <xliff:g id="filename">%1$s</xliff:g> no almaceamento externo.</string>
|
|
||||||
<string name="notification_export_success">Actualización exportada</string>
|
|
||||||
<string name="notification_export_fail">Exportar erro</string>
|
|
||||||
<plurals name="duration_seconds">
|
|
||||||
<item quantity="one">1 segundo</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> segundos</item>
|
|
||||||
</plurals>
|
|
||||||
<plurals name="duration_minutes">
|
|
||||||
<item quantity="one">1 minuto</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minutos</item>
|
|
||||||
</plurals>
|
|
||||||
<plurals name="duration_hours">
|
|
||||||
<item quantity="one">1 hora</item>
|
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> horas</item>
|
|
||||||
</plurals>
|
|
||||||
<string name="update_on_mobile_data_title">Aviso</string>
|
|
||||||
<string name="update_on_mobile_data_message">Estás a punto de descargar un paquete de actualización a través da conexión de datos móbeis o que xerará un maior consumo de datos. Tes a certeza de querer continuar?</string>
|
|
||||||
<string name="checkbox_mobile_data_warning">Non amosar máis</string>
|
|
||||||
<string name="menu_mobile_data_warning">Aviso de datos móbiles</string>
|
|
||||||
<string name="blocked_update_dialog_title">Actualización bloqueada</string>
|
|
||||||
<string name="blocked_update_dialog_message">Esta actualización non se pode instalar empregando este actualizador. Por favor, le <xliff:g id="info_url">%1$s</xliff:g> para máis información.</string>
|
|
||||||
</resources>
|
|
111
res/values-gl/strings.xml
Normal file
111
res/values-gl/strings.xml
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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">Actualizador</string>
|
||||||
|
<string name="display_name">Actualizador</string>
|
||||||
|
<string name="verification_failed_notification">Fallou a comprobación</string>
|
||||||
|
<string name="verifying_download_notification">Comprobando actualización</string>
|
||||||
|
<string name="downloading_notification">Descargando</string>
|
||||||
|
<string name="download_paused_notification">Descarga en pausa</string>
|
||||||
|
<string name="download_paused_error_notification">Erro na descarga</string>
|
||||||
|
<string name="download_completed_notification">Descarga completada</string>
|
||||||
|
<string name="download_starting_notification">Iniciando descarga</string>
|
||||||
|
<string name="update_failed_notification">Erro ao actualizar</string>
|
||||||
|
<string name="new_updates_found_title">Novas actualizacións</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="installing_update">Instalando paquete de actualización</string>
|
||||||
|
<string name="installing_update_error">Erro de instalación</string>
|
||||||
|
<string name="installing_update_finished">Actualización instalada</string>
|
||||||
|
<string name="finalizing_package">Rematando a instalación do paquete</string>
|
||||||
|
<string name="preparing_ota_first_boot">Preparando o primeiro arranque</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Preparación preliminar da actualización</string>
|
||||||
|
<string name="dialog_battery_low_title">Batería baixa</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">O nivel da batería é demasiado baixo, necesita ao menos <xliff:g id="percent_discharging">%1$d</xliff:g>%% de batería para continuar, <xliff:g id="percent_charging">%2$d</xliff:g>%% se o dispositivo estase a cargar.</string>
|
||||||
|
<string name="reboot">Reiniciar</string>
|
||||||
|
<string name="menu_refresh">Actualizar</string>
|
||||||
|
<string name="menu_preferences">Preferencias</string>
|
||||||
|
<string name="menu_auto_updates_check">Buscar actualizacións automaticamente</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Unha vez ao día</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Unha vez á semana</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Unha vez ao mes</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Nunca</string>
|
||||||
|
<string name="menu_auto_delete_updates">Eliminar a actualización cando estea instalada</string>
|
||||||
|
<string name="menu_delete_update">Eliminar</string>
|
||||||
|
<string name="menu_copy_url">Copiar URL</string>
|
||||||
|
<string name="menu_export_update">Exportar actualización</string>
|
||||||
|
<string name="menu_show_changelog">Amosar o rexistro de cambios</string>
|
||||||
|
<string name="menu_ab_perf_mode">Dar prioridade ao proceso de actualización</string>
|
||||||
|
<string name="snack_updates_found">Atopáronse novas actualizacións</string>
|
||||||
|
<string name="snack_no_updates_found">Non se atoparon novas actualizacións</string>
|
||||||
|
<string name="snack_updates_check_failed">A verificación da descarga fallou. Comproba a túa conexión a internet e téntao de novo.</string>
|
||||||
|
<string name="snack_download_failed">Produciuse un erro na descarga. Comproba a túa conexión a internet e téntao de novo.</string>
|
||||||
|
<string name="snack_download_verification_failed">Fallou a verificación da actualización.</string>
|
||||||
|
<string name="snack_download_verified">Descarga completada.</string>
|
||||||
|
<string name="snack_update_not_installable">Non é posíbel instalar esta actualización sobre a compilació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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new">restan <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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Comprobando actualización</string>
|
||||||
|
<string name="list_no_updates">Non se atoparon novas actualizacións. Para buscar manualmente, preme no botón Actualizar.</string>
|
||||||
|
<string name="action_download">Descarga</string>
|
||||||
|
<string name="action_pause">Pausar</string>
|
||||||
|
<string name="action_resume">Continuar</string>
|
||||||
|
<string name="action_install">Instalar</string>
|
||||||
|
<string name="action_info">Información</string>
|
||||||
|
<string name="action_delete">Borrar</string>
|
||||||
|
<string name="action_cancel">Anular</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Eliminar ficheiro</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Eliminar o ficheiro de actualización seleccionado?</string>
|
||||||
|
<string name="apply_update_dialog_title">Aplicar a actualización</string>
|
||||||
|
<string name="apply_update_dialog_message">Procederase a actualizar <xliff:g id="update_name">%1$s</xliff:g>.\n\nAo premer en <xliff:g id="ok">%2$s</xliff:g>, reiniciarase no modo recuperación para instalar a actualización.\n\nAviso: Esta función require dunha recuperación compatible ou as actualizacións precisarán de se instalar manualmente.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Actualizaráse a <xliff:g id="update_name">%1$s</xliff:g>.\n\n Se pulsase <xliff:g id="ok">%2$s</xliff:g>, o dispositivo comezará a instalar en segundo plano.\n\nUnha vez terminado o proceso, pediráselle que reinicie.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Cancelar a instalación?</string>
|
||||||
|
<string name="label_download_url">URL da descarga</string>
|
||||||
|
<string name="toast_download_url_copied">URL copiado</string>
|
||||||
|
<string name="dialog_export_title">Exportando actualización</string>
|
||||||
|
<string name="notification_export_success">Actualización exportada</string>
|
||||||
|
<string name="notification_export_fail">Exportar erro</string>
|
||||||
|
<string name="toast_already_exporting">Xa se está a exportar unha actualización</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">resta 1 segundo</item>
|
||||||
|
<item quantity="other">restan <xliff:g id="count">%d</xliff:g> segundos</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">resta 1 minuto</item>
|
||||||
|
<item quantity="other">restan <xliff:g id="count">%d</xliff:g> minutos</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">resta 1 hora</item>
|
||||||
|
<item quantity="other">restan <xliff:g id="count">%d</xliff:g> horas</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Aviso</string>
|
||||||
|
<string name="update_on_mobile_data_message">Estás a punto de descargar un paquete de actualización a través da conexión de datos móbeis o que xerará un maior consumo de datos. Tes a certeza de querer continuar?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Non amosar máis</string>
|
||||||
|
<string name="menu_mobile_data_warning">Aviso de datos móbiles</string>
|
||||||
|
<string name="blocked_update_dialog_title">Actualización bloqueada</string>
|
||||||
|
<string name="blocked_update_dialog_message">Esta actualización non se pode instalar empregando este actualizador. Por favor, le <xliff:g id="info_url">%1$s</xliff:g> para máis información.</string>
|
||||||
|
<string name="export_channel_title">Exportación completada</string>
|
||||||
|
<string name="new_updates_channel_title">Novas actualizacións</string>
|
||||||
|
<string name="ongoing_channel_title">Descargas en curso</string>
|
||||||
|
<string name="update_failed_channel_title">Erro ao actualizar</string>
|
||||||
|
</resources>
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,67 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Ažuriranje</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Ažuriranje</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Potvrda neuspješna</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Provjera ažuriranja</string>
|
||||||
|
<string name="downloading_notification">Preuzimanje</string>
|
||||||
|
<string name="download_paused_notification">Preuzimanje pauzirano</string>
|
||||||
|
<string name="download_paused_error_notification">Pogreška preuzimanja</string>
|
||||||
|
<string name="download_completed_notification">Preuzimanje je završeno</string>
|
||||||
|
<string name="download_starting_notification">Početak preuzimanja</string>
|
||||||
|
<string name="new_updates_found_title">Nova ažuriranja</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Pauziraj</string>
|
||||||
|
<string name="resume_button">Nastavi</string>
|
||||||
|
<string name="installing_update">Instaliranje paketa ažuriranja</string>
|
||||||
|
<string name="installing_update_error">Pogreška prilikom instalacije</string>
|
||||||
|
<string name="installing_update_finished">Ažuriranje instalirano</string>
|
||||||
|
<string name="finalizing_package">Finaliziranje paketa instaliranja</string>
|
||||||
|
<string name="preparing_ota_first_boot">Priprema za prvo pokretanje</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Preliminarna priprema ažuriranja</string>
|
||||||
|
<string name="reboot">Ponovno pokreni</string>
|
||||||
|
<string name="menu_refresh">Osvježi</string>
|
||||||
|
<string name="menu_auto_updates_check">Provjeri ažuriranja automatski</string>
|
||||||
|
<string name="menu_auto_delete_updates">Izbriši ažuriranja nakon instalacije</string>
|
||||||
|
<string name="menu_delete_update">Izbriši</string>
|
||||||
|
<string name="menu_copy_url">Kopiraj URL</string>
|
||||||
|
<string name="menu_export_update">Izvezi ažuriranje</string>
|
||||||
|
<string name="menu_show_changelog">Prikaži promjene</string>
|
||||||
|
<string name="snack_updates_found">Pronađena su nova ažuriranja</string>
|
||||||
|
<string name="snack_no_updates_found">Nema pronađenih novih ažuriranja</string>
|
||||||
|
<string name="snack_updates_check_failed">Provjera ažuriranja nije uspjela. Provjerite internetsku vezu i pokušajte ponovo kasnije.</string>
|
||||||
|
<string name="snack_download_failed">Preuzimanje nije uspjelo. Provjerite internetsku vezu i pokušajte ponovo kasnije.</string>
|
||||||
|
<string name="snack_download_verification_failed">Provjera ažuriranja nije uspjela.</string>
|
||||||
|
<string name="snack_download_verified">Preuzimanje je završeno.</string>
|
||||||
|
<string name="snack_update_not_installable">Ovo se ažuriranje ne može instalirati na trenutnu verziju.</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">Zadnja provjera: <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="7.1.2">%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_verifying_update">Provjera ažuriranja</string>
|
||||||
|
<string name="list_no_updates">Nema pronađenih novih ažuriranja. Za ručnu provjeru novih ažuriranja upotrijebite gumb Osvježi.</string>
|
||||||
|
<string name="action_download">Preuzmi</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Izbriši datoteku</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Želite li izbrisati odabranu datoteku ažuriranja?</string>
|
||||||
|
<string name="apply_update_dialog_title">Primjeni ažuriranje</string>
|
||||||
|
<string name="apply_update_dialog_message">Ažurirat ćete svoj sustav na <xliff:g id="filename">%1$s</xliff:g>.\n\nAko pritisnete <xliff:g id="ok">%2$s</xliff:g>, uređaj će se sam ponovno pokrenuti u načinu oporavka kako bi instalirao ažuriranje.\n\nNapomena: ova značajka zahtijeva kompatibilan Oporavak. U suprotnome će se ažuriranja morati instalirati ručno.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">Spremate se ažurirati na <xliff:g id="filename">%1$s </xliff:g>.\n\nAko dodirnete <xliff:g id="ok">%2$s</xliff:g>, uređaj će započeti instalaciju u pozadini.\n\nKad se završi, trebati ćete ponovno pokrenuti uređaj.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Prekinuti instalaciju?</string>
|
||||||
|
<string name="label_download_url">Preuzmi URL</string>
|
||||||
|
<string name="toast_download_url_copied">URL kopiran</string>
|
||||||
|
<string name="dialog_export_title">Izvoz ažuriranja</string>
|
||||||
|
<string name="notification_export_success">Ažuriranje je izvezeno</string>
|
||||||
|
<string name="notification_export_fail">Pogreška izvoza</string>
|
||||||
|
<string name="toast_already_exporting">Ažuriranje se već izvozi</string>
|
||||||
|
<string name="update_on_mobile_data_title">Upozorenje</string>
|
||||||
|
<string name="update_on_mobile_data_message">Upravo ćete preuzeti paket ažuriranja pomoću mobilnih podataka koji će vjerojatno uzrokovati visoku upotrebu podataka. Želite li nastaviti?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Ne prikazuj ponovno</string>
|
||||||
|
<string name="menu_mobile_data_warning">Upozorenje o mobilnim podacima</string>
|
||||||
|
<string name="blocked_update_dialog_title">Ažuriranje je blokirano</string>
|
||||||
|
<string name="blocked_update_dialog_message">Ovo se ažuriranje ne može instalirati pomoću aplikacije za ažuriranje. Molimo pročitajte <xliff:g id="info_url">%1$s</xliff:g> za više informacija.</string>
|
||||||
|
<string name="export_channel_title">Kraj izvoza</string>
|
||||||
|
<string name="new_updates_channel_title">Nova ažuriranja</string>
|
||||||
|
<string name="ongoing_channel_title">Preuzimanja u tijeku</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -16,8 +15,98 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
<string name="app_name">Frissítés</string>
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
<string name="display_name">Frissítés</string>
|
||||||
<!-- Directory where the downloads will be exported to.
|
<string name="verification_failed_notification">Az ellenőrzés sikertelen</string>
|
||||||
The path is relative to the root of the external storage.-->
|
<string name="verifying_download_notification">Frissítésellenőrzés</string>
|
||||||
|
<string name="downloading_notification">Letöltés</string>
|
||||||
|
<string name="download_paused_notification">A letöltés szüneteltetve</string>
|
||||||
|
<string name="download_paused_error_notification">Letöltési hiba</string>
|
||||||
|
<string name="download_completed_notification">A letöltés befejeződött</string>
|
||||||
|
<string name="download_starting_notification">A letöltés indítása</string>
|
||||||
|
<string name="update_failed_notification">A frissítés sikertelen</string>
|
||||||
|
<string name="new_updates_found_title">Új frissítések</string>
|
||||||
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="pause_button">Szüneteltetés</string>
|
||||||
|
<string name="resume_button">Folytatás</string>
|
||||||
|
<string name="installing_update">Frissítőcsomag-telepítés</string>
|
||||||
|
<string name="installing_update_error">Telepítési hiba</string>
|
||||||
|
<string name="installing_update_finished">A frissítés telepítve</string>
|
||||||
|
<string name="finalizing_package">A csomagtelepítés véglegesítése</string>
|
||||||
|
<string name="preparing_ota_first_boot">Felkészülés az első indításra</string>
|
||||||
|
<string name="dialog_prepare_zip_message">A frissítés előzetes előkészítése</string>
|
||||||
|
<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="reboot">Újraindítás</string>
|
||||||
|
<string name="menu_refresh">Frissítés</string>
|
||||||
|
<string name="menu_preferences">Testreszabás</string>
|
||||||
|
<string name="menu_auto_updates_check">Automatikus frissítésellenőrzés</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Naponta egyszer</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Hetente egyszer</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Havonta egyszer</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Soha</string>
|
||||||
|
<string name="menu_auto_delete_updates">A frissítőcsomag törlése telepítés után</string>
|
||||||
|
<string name="menu_delete_update">Törlés</string>
|
||||||
|
<string name="menu_copy_url">A webcím másolása</string>
|
||||||
|
<string name="menu_export_update">A frissítés exportálása</string>
|
||||||
|
<string name="menu_show_changelog">A változások listájának megjelenítése</string>
|
||||||
|
<string name="menu_ab_perf_mode">Állítsa fontossági sorrendbe a frissítési folyamatot</string>
|
||||||
|
<string name="snack_updates_found">Új frissítés érhető el</string>
|
||||||
|
<string name="snack_no_updates_found">Nem található új frissítés</string>
|
||||||
|
<string name="snack_updates_check_failed">Nem sikerült a frissítéskeresés. Ellenőrizze az internetkapcsolatát, majd próbálja újra.</string>
|
||||||
|
<string name="snack_download_failed">A letöltés meghiúsult. Ellenőrizze az internetkapcsolatát, majd próbálja újra.</string>
|
||||||
|
<string name="snack_download_verification_failed">A frissítés ellenőrzése sikertelen.</string>
|
||||||
|
<string name="snack_download_verified">A letöltés befejeződött.</string>
|
||||||
|
<string name="snack_update_not_installable">Ez a frissítés nem telepíthető a jelenlegi verzióra.</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">Utolsó ellenőrzés: <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_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> a <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g>-ból - <xliff:g id="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> a <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g>-ból (<xliff:g id="eta" example="3 minutes left">%3$s</xliff:g>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">Frissítésellenőrzés</string>
|
||||||
|
<string name="list_no_updates">Nem található új frissítés. A manuális ellenőrzéshez használja a Frissítés gombot.</string>
|
||||||
|
<string name="action_download">Letöltés</string>
|
||||||
|
<string name="action_pause">Szüneteltetés</string>
|
||||||
|
<string name="action_resume">Folytatás</string>
|
||||||
|
<string name="action_install">Telepítés</string>
|
||||||
|
<string name="action_info">Információ</string>
|
||||||
|
<string name="action_delete">Törlés</string>
|
||||||
|
<string name="action_cancel">Mégse</string>
|
||||||
|
<string name="confirm_delete_dialog_title">Fájltörlés</string>
|
||||||
|
<string name="confirm_delete_dialog_message">Biztosan törölni szeretné a letöltött frissítőfájlt?</string>
|
||||||
|
<string name="apply_update_dialog_title">A frissítés telepítése</string>
|
||||||
|
<string name="apply_update_dialog_message">A következő frissítésre készül: <xliff:g id="update_name">%1$s</xliff:g>.\n\nHa megnyomja ezt a gombot: <xliff:g id="ok">%2$s</xliff:g>, a készülék újraindul recovery módban a frissítés telepítéséhez.\n\nMegjegyzés: Ehhez a funkcióhoz kompatibilis recovery-re van szükség, ennek hiányában manuálisan kell a telepíteni a frissítéseket.</string>
|
||||||
|
<string name="apply_update_dialog_message_ab">A következő frissítésre készül: <xliff:g id="update_name">%1$s</xliff:g>.\n\nHa megnyomja ezt a gombot: <xliff:g id="ok">%2$s</xliff:g>, a készülék elkezdi a telepítést a háttérben.\n\nAmint kész, újraindításra lesz szükség.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Megszakítja a telepítést?</string>
|
||||||
|
<string name="label_download_url">Az URL letöltése</string>
|
||||||
|
<string name="toast_download_url_copied">Az URL másolva</string>
|
||||||
|
<string name="dialog_export_title">A frissítés exportálása</string>
|
||||||
|
<string name="notification_export_success">A frissítés exportálva</string>
|
||||||
|
<string name="notification_export_fail">Exportálás hiba</string>
|
||||||
|
<string name="toast_already_exporting">Egy frissítés exportálása már folyamatban van</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="one">1 másodperc van hátra</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> másodperc van hátra</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_minutes">
|
||||||
|
<item quantity="one">1 perc van hátra</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> perc van hátra</item>
|
||||||
|
</plurals>
|
||||||
|
<plurals name="eta_hours">
|
||||||
|
<item quantity="one">1 óra van hátra</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> óra van hátra</item>
|
||||||
|
</plurals>
|
||||||
|
<string name="update_on_mobile_data_title">Figyelmeztetés</string>
|
||||||
|
<string name="update_on_mobile_data_message">A frissítés mobiladat-forgalom használatával fog letöltődni, ami magas mobiladat-használatot eredményezhet. Szeretné folytatni?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">Ne jelenjen meg többet</string>
|
||||||
|
<string name="menu_mobile_data_warning">Mobiladat-használati 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>
|
||||||
|
<string name="new_updates_channel_title">Új frissítések</string>
|
||||||
|
<string name="ongoing_channel_title">Folyamatban lévő letöltések</string>
|
||||||
|
<string name="update_failed_channel_title">A frissítés sikertelen</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Pembaruan</string>
|
<string name="app_name">Pembaruan</string>
|
||||||
<string name="display_name">Pembaruan</string>
|
<string name="display_name">Pembaruan</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verifikasi gagal</string>
|
<string name="verification_failed_notification">Verifikasi gagal</string>
|
||||||
<string name="verifying_download_notification">Memverifikasi pembaruan</string>
|
<string name="verifying_download_notification">Memverifikasi pembaruan</string>
|
||||||
<string name="downloading_notification">Mengunduh</string>
|
<string name="downloading_notification">Mengunduh</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Kesalahan pengunduhan</string>
|
<string name="download_paused_error_notification">Kesalahan pengunduhan</string>
|
||||||
<string name="download_completed_notification">Unduhan selesai</string>
|
<string name="download_completed_notification">Unduhan selesai</string>
|
||||||
<string name="download_starting_notification">Memulai unduhan</string>
|
<string name="download_starting_notification">Memulai unduhan</string>
|
||||||
|
<string name="update_failed_notification">Pembaruan gagal</string>
|
||||||
<string name="new_updates_found_title">Pembaruan baru</string>
|
<string name="new_updates_found_title">Pembaruan baru</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/d</string>
|
<string name="text_download_speed">%1$s, %2$s/d</string>
|
||||||
<string name="pause_button">Jeda</string>
|
<string name="pause_button">Jeda</string>
|
||||||
@@ -38,54 +34,75 @@
|
|||||||
<string name="installing_update_finished">Pembaruan dipasang</string>
|
<string name="installing_update_finished">Pembaruan dipasang</string>
|
||||||
<string name="finalizing_package">Menyelesaikan pemasangan paket</string>
|
<string name="finalizing_package">Menyelesaikan pemasangan paket</string>
|
||||||
<string name="preparing_ota_first_boot">Mempersiapkan untuk boot pertama</string>
|
<string name="preparing_ota_first_boot">Mempersiapkan untuk boot pertama</string>
|
||||||
|
<string name="dialog_prepare_zip_message">Persiapan awal pembaruan</string>
|
||||||
|
<string name="dialog_battery_low_title">Baterai lemah</string>
|
||||||
|
<string name="dialog_battery_low_message_pct">Tingkat baterai terlalu rendah, Anda memerlukan setidaknya <xliff:g id="percent_discharging">%1$d</xliff:g>%% baterai untuk melanjutkan, <xliff:g id="percent_charging">%2$d</xliff:g>%% jika saat pengisian.</string>
|
||||||
<string name="reboot">Mulai ulang</string>
|
<string name="reboot">Mulai ulang</string>
|
||||||
<string name="menu_refresh">Segarkan</string>
|
<string name="menu_refresh">Segarkan</string>
|
||||||
|
<string name="menu_preferences">Preferensi</string>
|
||||||
<string name="menu_auto_updates_check">Periksa pembaruan otomatis</string>
|
<string name="menu_auto_updates_check">Periksa pembaruan otomatis</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Sehari sekali</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Seminggu sekali</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Sebulan sekali</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Jangan pernah</string>
|
||||||
|
<string name="menu_auto_delete_updates">Hapus pembaruan saat dipasang</string>
|
||||||
<string name="menu_delete_update">Hapus</string>
|
<string name="menu_delete_update">Hapus</string>
|
||||||
<string name="menu_copy_url">Salin URL</string>
|
<string name="menu_copy_url">Salin URL</string>
|
||||||
<string name="menu_export_update">Ekspor pembaruan</string>
|
<string name="menu_export_update">Ekspor pembaruan</string>
|
||||||
<string name="dialog_checking_for_updates">Memeriksa pembaruan</string>
|
<string name="menu_show_changelog">Tampilkan catatan perubahan</string>
|
||||||
|
<string name="menu_ab_perf_mode">Prioritaskan proses pembaruan</string>
|
||||||
<string name="snack_updates_found">Pembaruan baru ditemukan</string>
|
<string name="snack_updates_found">Pembaruan baru ditemukan</string>
|
||||||
<string name="snack_no_updates_found">Tidak ada pembaruan baru ditemukan</string>
|
<string name="snack_no_updates_found">Tidak ada pembaruan baru ditemukan</string>
|
||||||
<string name="snack_updates_check_failed">Pemeriksaan pembaruan gagal. Silakan periksa koneksi Internet Anda dan coba lagi nanti.</string>
|
<string name="snack_updates_check_failed">Pemeriksaan pembaruan gagal. Silakan periksa koneksi Internet Anda dan coba lagi nanti.</string>
|
||||||
<string name="snack_download_failed">Unduhan gagal. Silakan periksa koneksi Internet Anda dan coba lagi nanti.</string>
|
<string name="snack_download_failed">Unduhan gagal. Silakan periksa koneksi Internet Anda dan coba lagi nanti.</string>
|
||||||
<string name="snack_download_verification_failed">Verifikasi pembaruan gagal.</string>
|
<string name="snack_download_verification_failed">Verifikasi pembaruan gagal.</string>
|
||||||
<string name="snack_download_verified">Unduhan selesai.</string>
|
<string name="snack_download_verified">Unduhan selesai.</string>
|
||||||
|
<string name="snack_update_not_installable">Pembaruan ini tidak dapat dipasang di atas pembuatan saat ini.</string>
|
||||||
<string name="header_title_text">LineageOS\n%1$s</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_android_version">Android <xliff:g id="version" example="7.1.2">%1$s </xliff:g></string>
|
||||||
<string name="header_last_updates_check">Terakhir diperiksa: <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="header_last_updates_check">Terakhir diperiksa: <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">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_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"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> dari <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g></string>
|
<string name="list_download_progress_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> dari <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_eta"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> dari <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> - <xliff:g id="duration" example="3 minutes">%3$s</xliff:g> lagi</string>
|
<string name="list_download_progress_eta_new"><xliff:g id="filesize_without_unit" example="12.2">%1$s</xliff:g> dari <xliff:g id="filesize_without_unit" example="310 MB">%2$s</xliff:g> (<xliff:g id="duration" example="3 minutes">%3$s</xliff:g> lagi) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Memasang pembaruan</string>
|
|
||||||
<string name="list_verifying_update">Memverifikasi pembaruan</string>
|
<string name="list_verifying_update">Memverifikasi pembaruan</string>
|
||||||
<string name="list_no_updates">Pembaruan tidak ditemukan. Untuk memeriksa pembaruan secara manual, gunakan tombol Segarkan.</string>
|
<string name="list_no_updates">Pembaruan tidak ditemukan. Untuk memeriksa pembaruan secara manual, gunakan tombol Segarkan.</string>
|
||||||
<string name="action_description_download">Unduh</string>
|
<string name="action_download">Unduh</string>
|
||||||
<string name="action_description_pause">Jeda unduhan</string>
|
<string name="action_pause">Jeda</string>
|
||||||
<string name="action_description_resume">Lanjutkan unduhan</string>
|
<string name="action_resume">Lanjutkan</string>
|
||||||
<string name="action_description_install">Pasang pembaruan</string>
|
<string name="action_install">Pasang</string>
|
||||||
<string name="action_description_info">Tampilkan informasi</string>
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Hapus</string>
|
||||||
|
<string name="action_cancel">Batal</string>
|
||||||
<string name="confirm_delete_dialog_title">Hapus berkas</string>
|
<string name="confirm_delete_dialog_title">Hapus berkas</string>
|
||||||
<string name="confirm_delete_dialog_message">Hapus berkas pembaruan yang terpilih?</string>
|
<string name="confirm_delete_dialog_message">Hapus berkas pembaruan yang terpilih?</string>
|
||||||
<string name="apply_update_dialog_title">Terapkan pembaruan</string>
|
<string name="apply_update_dialog_title">Terapkan pembaruan</string>
|
||||||
<string name="apply_update_dialog_message">Anda akan meningkatkan ke <xliff:g id="update_name">%1$s</xliff:g>.\n\nJika Anda menekan <xliff:g id="ok">%2$s</xliff:g>, perangkat akan mulai ulang sendiri dalam mode recovery untuk memasang pembaruan.\n\nPerhatian: Fitur ini memerlukan Recovery yang kompatibel atau pembaruan perlu dipasang secara manual.</string>
|
<string name="apply_update_dialog_message">Anda akan meningkatkan ke <xliff:g id="update_name">%1$s</xliff:g>.\n\nJika Anda menekan <xliff:g id="ok">%2$s</xliff:g>, perangkat akan mulai ulang sendiri dalam mode recovery untuk memasang pembaruan.\n\nPerhatian: Fitur ini memerlukan Recovery yang kompatibel atau pembaruan perlu dipasang secara manual.</string>
|
||||||
<string name="apply_update_dialog_message_ab">Anda akan meningkatkan ke <xliff:g id="update_name">%1$s</xliff:g>.\n\nJika Anda menekan <xliff:g id="ok">%2$s</xliff:g>, perangkat akan mulai memasang di latar belakang.\n\nSetelah selesai, Anda akan diminta untuk memulai ulang perangkat.</string>
|
<string name="apply_update_dialog_message_ab">Anda akan meningkatkan ke <xliff:g id="update_name">%1$s</xliff:g>.\n\nJika Anda menekan <xliff:g id="ok">%2$s</xliff:g>, perangkat akan mulai memasang di latar belakang.\n\nSetelah selesai, Anda akan diminta untuk memulai ulang perangkat.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Batalkan pemasangan?</string>
|
||||||
|
<string name="label_download_url">URL Unduh</string>
|
||||||
<string name="toast_download_url_copied">URL disalin</string>
|
<string name="toast_download_url_copied">URL disalin</string>
|
||||||
<string name="dialog_export_title">Mengekspor pembaruan</string>
|
<string name="dialog_export_title">Mengekspor pembaruan</string>
|
||||||
<string name="notification_export_success">Pembaruan diekspor</string>
|
<string name="notification_export_success">Pembaruan diekspor</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="notification_export_fail">Kesalahan saat mengekspor</string>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> detik</item>
|
<string name="toast_already_exporting">Sudah mengekspor pembaruan</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> detik tersisa</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> menit</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> menit tersisa</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> jam</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> jam tersisa</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Peringatan</string>
|
<string name="update_on_mobile_data_title">Peringatan</string>
|
||||||
<string name="update_on_mobile_data_message">Anda akan mengunduh paket pembaruan menggunakan data seluler yang mungkin akan menyebabkan penggunaan data yang tinggi. Apakah Anda ingin melanjutkan?</string>
|
<string name="update_on_mobile_data_message">Anda akan mengunduh paket pembaruan menggunakan data seluler yang mungkin akan menyebabkan penggunaan data yang tinggi. Apakah Anda ingin melanjutkan?</string>
|
||||||
<string name="checkbox_mobile_data_warning">Jangan tampilkan lagi</string>
|
<string name="checkbox_mobile_data_warning">Jangan tampilkan lagi</string>
|
||||||
|
<string name="menu_mobile_data_warning">Peringatan data seluler</string>
|
||||||
<string name="blocked_update_dialog_title">Pembaruan diblokir</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="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>
|
||||||
|
<string name="new_updates_channel_title">Pembaruan baru</string>
|
||||||
|
<string name="ongoing_channel_title">Unduhan sedang berlangsung</string>
|
||||||
|
<string name="update_failed_channel_title">Pembaruan gagal</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">Aggiornamenti</string>
|
<string name="app_name">Aggiornamenti</string>
|
||||||
<string name="display_name">Aggiornamenti</string>
|
<string name="display_name">Aggiornamenti</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">Verifica fallita</string>
|
<string name="verification_failed_notification">Verifica fallita</string>
|
||||||
<string name="verifying_download_notification">Verifica aggiornamenti</string>
|
<string name="verifying_download_notification">Verifica aggiornamenti</string>
|
||||||
<string name="downloading_notification">Download in corso</string>
|
<string name="downloading_notification">Download in corso</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">Errore durante il download</string>
|
<string name="download_paused_error_notification">Errore durante il download</string>
|
||||||
<string name="download_completed_notification">Download completato</string>
|
<string name="download_completed_notification">Download completato</string>
|
||||||
<string name="download_starting_notification">Avvio download</string>
|
<string name="download_starting_notification">Avvio download</string>
|
||||||
|
<string name="update_failed_notification">Aggiornamento fallito</string>
|
||||||
<string name="new_updates_found_title">Nuovi aggiornamenti</string>
|
<string name="new_updates_found_title">Nuovi aggiornamenti</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">Pausa</string>
|
<string name="pause_button">Pausa</string>
|
||||||
@@ -39,60 +35,68 @@
|
|||||||
<string name="finalizing_package">Finalizzalizzazione del pachetto d\'installazione in corso</string>
|
<string name="finalizing_package">Finalizzalizzazione del pachetto d\'installazione in corso</string>
|
||||||
<string name="preparing_ota_first_boot">Preparazione per il primo avvio</string>
|
<string name="preparing_ota_first_boot">Preparazione per il primo avvio</string>
|
||||||
<string name="dialog_prepare_zip_message">Preparazione aggiornamento preliminare</string>
|
<string name="dialog_prepare_zip_message">Preparazione aggiornamento preliminare</string>
|
||||||
<string name="notification_prepare_zip_error_title">Impossibile preparare l\'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="reboot">Riavvia</string>
|
<string name="reboot">Riavvia</string>
|
||||||
<string name="menu_refresh">Ricarica</string>
|
<string name="menu_refresh">Ricarica</string>
|
||||||
<string name="menu_auto_updates_check">Ricerca aggiornamenti automatica</string>
|
<string name="menu_preferences">Preferenze</string>
|
||||||
|
<string name="menu_auto_updates_check">Ricerca aggiornamenti automaticamente</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_daily">Quotidianamente</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">Settimanalmente</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">Mensilmente</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">Mai</string>
|
||||||
<string name="menu_auto_delete_updates">Elimina gli aggiornamenti dopo l\'installazione</string>
|
<string name="menu_auto_delete_updates">Elimina gli aggiornamenti dopo l\'installazione</string>
|
||||||
<string name="menu_delete_update">Elimina</string>
|
<string name="menu_delete_update">Elimina</string>
|
||||||
<string name="menu_copy_url">Copia indirizzo URL</string>
|
<string name="menu_copy_url">Copia indirizzo URL</string>
|
||||||
<string name="menu_export_update">Esporta aggiornamento</string>
|
<string name="menu_export_update">Esporta aggiornamento</string>
|
||||||
<string name="dialog_checking_for_updates">Controllo aggiornamenti</string>
|
<string name="menu_show_changelog">Mostra il changelog</string>
|
||||||
|
<string name="menu_ab_perf_mode">Agg. con priorità</string>
|
||||||
<string name="snack_updates_found">Nessun aggiornamento trovato</string>
|
<string name="snack_updates_found">Nessun aggiornamento trovato</string>
|
||||||
<string name="snack_no_updates_found">Nessun nuovo aggiornamento trovato</string>
|
<string name="snack_no_updates_found">Nessun nuovo aggiornamento trovato</string>
|
||||||
<string name="snack_updates_check_failed">La verifica di aggiornamenti è fallita. Controlla la connessione ad internet e riprova più tardi.</string>
|
<string name="snack_updates_check_failed">La verifica di aggiornamenti è fallita. Controlla la connessione ad internet e riprova più tardi.</string>
|
||||||
<string name="snack_download_failed">Il download dell\'aggiornamento è fallito. Controlla la connessione ad internet e riprova più tardi.</string>
|
<string name="snack_download_failed">Il download dell\'aggiornamento è fallito. Controlla la connessione ad internet e riprova più tardi.</string>
|
||||||
<string name="snack_download_verification_failed">Verifica dell\'aggiornamento fallita.</string>
|
<string name="snack_download_verification_failed">Verifica dell\'aggiornamento fallita.</string>
|
||||||
<string name="snack_download_verified">Download video completato.</string>
|
<string name="snack_download_verified">Download aggiornamento completato.</string>
|
||||||
<string name="snack_update_not_installable">Questo aggiornamento non può essere installato sopra la versione corrente.</string>
|
<string name="snack_update_not_installable">Questo aggiornamento non può essere installato sopra la versione corrente.</string>
|
||||||
<string name="header_title_text">LineageOS\n%1$s</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_android_version">Android <xliff:g id="version" example="7.1.2">%1$s</xliff:g></string>
|
||||||
<string name="header_last_updates_check">Ultima verifica: <xliff:g id="date" example="1 Gennaio 1970">%1$s</xliff:g> (<xliff:g id="time" example="01:23">%2$s</xliff:g>)</string>
|
<string name="header_last_updates_check">Ultima verifica: <xliff:g id="date" example="1 Gennaio 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">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="Luglio 11, 2017">%2$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="Luglio 11, 2017">%2$s</xliff:g></string>
|
||||||
<string name="list_download_progress"><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_new"><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_eta"><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="duration" example="3 minutes">%3$s</xliff:g> rimanenti</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">Installazione aggiornamento</string>
|
|
||||||
<string name="list_verifying_update">Verifica aggiornamento</string>
|
<string name="list_verifying_update">Verifica aggiornamento</string>
|
||||||
<string name="list_no_updates">Nessun nuovo aggiornamento trovato. Per controllare manualmente nuovi aggiornamenti, tocca il pulsante Aggiorna.</string>
|
<string name="list_no_updates">Nessun nuovo aggiornamento trovato. Per controllare manualmente nuovi aggiornamenti, tocca il pulsante Aggiorna.</string>
|
||||||
<string name="action_description_download">Download</string>
|
<string name="action_download">Download</string>
|
||||||
<string name="action_description_pause">Download in pausa</string>
|
<string name="action_pause">Pausa</string>
|
||||||
<string name="action_description_resume">Riprendi il download</string>
|
<string name="action_resume">Riprendi</string>
|
||||||
<string name="action_description_install">Installa l\'aggiornamento</string>
|
<string name="action_install">Installa</string>
|
||||||
<string name="action_description_info">Mostra informazioni</string>
|
<string name="action_info">Info</string>
|
||||||
|
<string name="action_delete">Elimina</string>
|
||||||
|
<string name="action_cancel">Annulla</string>
|
||||||
<string name="confirm_delete_dialog_title">Elimina file</string>
|
<string name="confirm_delete_dialog_title">Elimina file</string>
|
||||||
<string name="confirm_delete_dialog_message">Eliminare il file di aggiornamento selezionato?</string>
|
<string name="confirm_delete_dialog_message">Eliminare il file di aggiornamento selezionato?</string>
|
||||||
<string name="apply_update_dialog_title">Applica aggiornamento</string>
|
<string name="apply_update_dialog_title">Applica aggiornamento</string>
|
||||||
<string name="apply_update_dialog_message">Si sta per aggiornare a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSe si preme <xliff:g id="ok">%2$s</xliff:g>, il dispositivo verrà riavviato in modalità recovery per installare l\'aggiornamento automaticamente.\n\nNota: Questa funzione richiede una recovery compatibile, in caso contrario si dovrà procedere all\'installazione manualmente.</string>
|
<string name="apply_update_dialog_message">Si sta per aggiornare a <xliff:g id="update_name">%1$s</xliff:g>.\n\nSe si preme <xliff:g id="ok">%2$s</xliff:g>, il dispositivo verrà riavviato in modalità recovery per installare l\'aggiornamento automaticamente.\n\nNota: Questa funzione richiede una recovery compatibile, in caso contrario si dovrà procedere all\'installazione manualmente.</string>
|
||||||
<string name="apply_update_dialog_message_ab">Si sta per aggiornare a <xliff:g id="update_name">%1$s</xliff:g>.\n\nPremendo <xliff:g id="ok">%2$s</xliff:g>, il dispositivo inizierà l\'installazione in background.\n\nUna volta completato verrà richiesto di riavviare il dispositivo.</string>
|
<string name="apply_update_dialog_message_ab">Si sta per aggiornare a <xliff:g id="update_name">%1$s</xliff:g>.\n\nPremendo <xliff:g id="ok">%2$s</xliff:g>, il dispositivo inizierà l\'installazione in background.\n\nUna volta completato verrà richiesto di riavviare il dispositivo.</string>
|
||||||
|
<string name="cancel_installation_dialog_message">Annullare l\'installazione?</string>
|
||||||
<string name="label_download_url">Download URL</string>
|
<string name="label_download_url">Download URL</string>
|
||||||
<string name="toast_download_url_copied">URL copiato</string>
|
<string name="toast_download_url_copied">URL copiato</string>
|
||||||
<string name="snack_export_failed">Impossibile esportare il download</string>
|
|
||||||
<string name="dialog_export_title">Esportazione aggiornamento</string>
|
<string name="dialog_export_title">Esportazione aggiornamento</string>
|
||||||
<string name="dialog_export_message">Esportazione di aggiornamento come <xliff:g id="filename">%1$s </xliff:g> nell\'archiviazione esterna.</string>
|
|
||||||
<string name="notification_export_success">Aggiornamento esportato</string>
|
<string name="notification_export_success">Aggiornamento esportato</string>
|
||||||
<string name="notification_export_fail">Errore esportazione</string>
|
<string name="notification_export_fail">Errore esportazione</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">Esportazione aggiornamento già in corso</string>
|
||||||
<item quantity="one">1 secondo</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> secondi</item>
|
<item quantity="one">1 secondo rimanente</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> secondi rimanenti</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">1 minuto</item>
|
<item quantity="one">1 minuto rimanente</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuti</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> minuti rimanenti</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">1 ora</item>
|
<item quantity="one">1 ora rimanente</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> ore</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> ore rimanenti</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">Attenzione</string>
|
<string name="update_on_mobile_data_title">Attenzione</string>
|
||||||
<string name="update_on_mobile_data_message">Stai per scaricare un aggiornamento utilizzando i dati mobili, ciò potrebbe comportare un utilizzo elevato di dati. Vuoi procedere?</string>
|
<string name="update_on_mobile_data_message">Stai per scaricare un aggiornamento utilizzando i dati mobili, ciò potrebbe comportare un utilizzo elevato di dati. Vuoi procedere?</string>
|
||||||
@@ -100,4 +104,8 @@
|
|||||||
<string name="menu_mobile_data_warning">Avviso utilizzo dati mobili</string>
|
<string name="menu_mobile_data_warning">Avviso utilizzo dati mobili</string>
|
||||||
<string name="blocked_update_dialog_title">Aggiornamento bloccato</string>
|
<string name="blocked_update_dialog_title">Aggiornamento bloccato</string>
|
||||||
<string name="blocked_update_dialog_message">Questo aggiornamento non può essere installato usando l\'app updater. Si prega di leggere <xliff:g id="info_url">%1$s</xliff:g> per ulteriori informazioni.</string>
|
<string name="blocked_update_dialog_message">Questo aggiornamento non può essere installato usando l\'app updater. Si prega di leggere <xliff:g id="info_url">%1$s</xliff:g> per ulteriori informazioni.</string>
|
||||||
|
<string name="export_channel_title">Completamento esportazione</string>
|
||||||
|
<string name="new_updates_channel_title">Nuovi aggiornamenti</string>
|
||||||
|
<string name="ongoing_channel_title">Download in corso</string>
|
||||||
|
<string name="update_failed_channel_title">Aggiornamento fallito</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">המעדכן</string>
|
<string name="app_name">המעדכן</string>
|
||||||
<string name="display_name">המעדכן</string>
|
<string name="display_name">המעדכן</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">האימות נכשל</string>
|
<string name="verification_failed_notification">האימות נכשל</string>
|
||||||
<string name="verifying_download_notification">מאמת עדכון</string>
|
<string name="verifying_download_notification">מאמת עדכון</string>
|
||||||
<string name="downloading_notification">מוריד</string>
|
<string name="downloading_notification">מוריד</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">ההורדה נכשלה</string>
|
<string name="download_paused_error_notification">ההורדה נכשלה</string>
|
||||||
<string name="download_completed_notification">ההורדה הושלמה</string>
|
<string name="download_completed_notification">ההורדה הושלמה</string>
|
||||||
<string name="download_starting_notification">מתחיל להוריד</string>
|
<string name="download_starting_notification">מתחיל להוריד</string>
|
||||||
|
<string name="update_failed_notification">העדכון נכשל</string>
|
||||||
<string name="new_updates_found_title">עדכונים חדשים</string>
|
<string name="new_updates_found_title">עדכונים חדשים</string>
|
||||||
<string name="text_download_speed">%2$s,%1$s לשניה</string>
|
<string name="text_download_speed">%2$s,%1$s לשניה</string>
|
||||||
<string name="pause_button">השהה</string>
|
<string name="pause_button">השהה</string>
|
||||||
@@ -39,15 +35,18 @@
|
|||||||
<string name="finalizing_package">משלים את התקנת החבילה</string>
|
<string name="finalizing_package">משלים את התקנת החבילה</string>
|
||||||
<string name="preparing_ota_first_boot">מתכונן להפעלה ראשונה</string>
|
<string name="preparing_ota_first_boot">מתכונן להפעלה ראשונה</string>
|
||||||
<string name="dialog_prepare_zip_message">מתכונן להתקנת העדכון</string>
|
<string name="dialog_prepare_zip_message">מתכונן להתקנת העדכון</string>
|
||||||
<string name="notification_prepare_zip_error_title">הכנת העדכון נכשלה</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="reboot">הפעלה מחדש</string>
|
<string name="reboot">הפעלה מחדש</string>
|
||||||
<string name="menu_refresh">ריענון</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_delete_updates">מחק קובצי עדכון לאחר התקנתם</string>
|
<string name="menu_auto_delete_updates">מחק קובצי עדכון לאחר התקנתם</string>
|
||||||
<string name="menu_delete_update">מחק</string>
|
<string name="menu_delete_update">מחק</string>
|
||||||
<string name="menu_copy_url">העתק כתובת אינטרנט</string>
|
<string name="menu_copy_url">העתק כתובת אינטרנט</string>
|
||||||
<string name="menu_export_update">יצא עדכון</string>
|
<string name="menu_export_update">יצא עדכון</string>
|
||||||
<string name="dialog_checking_for_updates">מחפש עדכונים</string>
|
<string name="menu_show_changelog">הצג רשימת שינויים</string>
|
||||||
|
<string name="menu_ab_perf_mode">תעדף תהליכי עדכון</string>
|
||||||
<string name="snack_updates_found">נמצאו עדכונים חדשים</string>
|
<string name="snack_updates_found">נמצאו עדכונים חדשים</string>
|
||||||
<string name="snack_no_updates_found">לא נמצאו עדכונים חדשים</string>
|
<string name="snack_no_updates_found">לא נמצאו עדכונים חדשים</string>
|
||||||
<string name="snack_updates_check_failed">בדיקת העדכונים נכשלה. בדוק את החיבור שלך לאינטרנט ונסה שוב מאוחר יותר.</string>
|
<string name="snack_updates_check_failed">בדיקת העדכונים נכשלה. בדוק את החיבור שלך לאינטרנט ונסה שוב מאוחר יותר.</string>
|
||||||
@@ -60,45 +59,46 @@
|
|||||||
<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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> נותרו</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">מתקין עדכון</string>
|
|
||||||
<string name="list_verifying_update">מאמת עדכון</string>
|
<string name="list_verifying_update">מאמת עדכון</string>
|
||||||
<string name="list_no_updates">לא נמצאו עדכונים חדשים. בכדי לבדוק אם יש עדכונים חדשים, לחץ על רענון.</string>
|
<string name="list_no_updates">לא נמצאו עדכונים חדשים. בכדי לבדוק אם יש עדכונים חדשים, לחץ על רענון.</string>
|
||||||
<string name="action_description_download">הורד</string>
|
<string name="action_download">הורד</string>
|
||||||
<string name="action_description_pause">השהה הורדה</string>
|
<string name="action_pause">השהה</string>
|
||||||
<string name="action_description_resume">המשך הורדה</string>
|
<string name="action_resume">המשך</string>
|
||||||
<string name="action_description_install">התקן עדכון</string>
|
<string name="action_install">התקן</string>
|
||||||
<string name="action_description_info">הראה מידע</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_title">מחק קובץ</string>
|
||||||
<string name="confirm_delete_dialog_message">למחוק את קבצי העדכון שנבחרו?</string>
|
<string name="confirm_delete_dialog_message">למחוק את קבצי העדכון שנבחרו?</string>
|
||||||
<string name="apply_update_dialog_title">החל עדכון</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>, המכשיר יופעל מחדש למצב שחזור (Recovery) להתקנת העדכון.\n\nשים לב: תכונה זו דורשת ריקוברי תואם או שהעדכון לא יותקן אוטומטית.</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>, המכשיר יופעל מחדש למצב שחזור (Recovery) להתקנת העדכון.\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="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="label_download_url">כתובת ההורדה</string>
|
||||||
<string name="toast_download_url_copied">הכתובת הועתקה</string>
|
<string name="toast_download_url_copied">הכתובת הועתקה</string>
|
||||||
<string name="snack_export_failed">לא ניתן ליצא הורדה</string>
|
|
||||||
<string name="dialog_export_title">מיצא עדכון</string>
|
<string name="dialog_export_title">מיצא עדכון</string>
|
||||||
<string name="dialog_export_message">מיצא עדכון כ־<xliff:g id="filename">%1$s</xliff:g> לאחסון החיצוני.</string>
|
|
||||||
<string name="notification_export_success">העדכון ייוצא בהצלחה</string>
|
<string name="notification_export_success">העדכון ייוצא בהצלחה</string>
|
||||||
<string name="notification_export_fail">שגיאה בייצוא</string>
|
<string name="notification_export_fail">שגיאה בייצוא</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">כבר באמצע ייצוא עדכון</string>
|
||||||
<item quantity="one">שנייה אחת</item>
|
<plurals name="eta_seconds">
|
||||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> שניות</item>
|
<item quantity="one">שניה אחת נותרה</item>
|
||||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> שניות</item>
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> שניות נותרו</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> שניות</item>
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> שניות נותרו</item>
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> שניות נותרו</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="one">דקה אחת</item>
|
<item quantity="one">דקה אחת נותרה</item>
|
||||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> דקות</item>
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> דקות נותרו</item>
|
||||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> דקות</item>
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> דקות נותרו</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> דקות</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> דקות נותרו</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="one">שעה אחת</item>
|
<item quantity="one">שעה אחת נותרה</item>
|
||||||
<item quantity="two"><xliff:g id="count">%d</xliff:g> שעות</item>
|
<item quantity="two"><xliff:g id="count">%d</xliff:g> שעות נותרו</item>
|
||||||
<item quantity="many"><xliff:g id="count">%d</xliff:g> שעות</item>
|
<item quantity="many"><xliff:g id="count">%d</xliff:g> שעות נותרו</item>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> שעות</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g> שעות נותרו</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">אזהרה</string>
|
<string name="update_on_mobile_data_title">אזהרה</string>
|
||||||
<string name="update_on_mobile_data_message">אתה עומד להוריד חבילת עדכונים באמצעות האינטרנט הסלולרי שסביר להניח יגרום לבזבוז חלק גדול מחבילת הגלישה שלך. להמשיך?</string>
|
<string name="update_on_mobile_data_message">אתה עומד להוריד חבילת עדכונים באמצעות האינטרנט הסלולרי שסביר להניח יגרום לבזבוז חלק גדול מחבילת הגלישה שלך. להמשיך?</string>
|
||||||
@@ -106,4 +106,8 @@
|
|||||||
<string name="menu_mobile_data_warning">אזהרת אינטרנט סלולרי</string>
|
<string name="menu_mobile_data_warning">אזהרת אינטרנט סלולרי</string>
|
||||||
<string name="blocked_update_dialog_title">העדכון חסום</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="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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">アップデータ</string>
|
<string name="app_name">アップデータ</string>
|
||||||
<string name="display_name">アップデータ</string>
|
<string name="display_name">アップデータ</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">検証に失敗しました</string>
|
<string name="verification_failed_notification">検証に失敗しました</string>
|
||||||
<string name="verifying_download_notification">アップデートを検証中</string>
|
<string name="verifying_download_notification">アップデートを検証中</string>
|
||||||
<string name="downloading_notification">ダウンロード中</string>
|
<string name="downloading_notification">ダウンロード中</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">ダウンロードエラー</string>
|
<string name="download_paused_error_notification">ダウンロードエラー</string>
|
||||||
<string name="download_completed_notification">ダウンロードが完了しました</string>
|
<string name="download_completed_notification">ダウンロードが完了しました</string>
|
||||||
<string name="download_starting_notification">ダウンロードを開始中</string>
|
<string name="download_starting_notification">ダウンロードを開始中</string>
|
||||||
|
<string name="update_failed_notification">更新に失敗しました</string>
|
||||||
<string name="new_updates_found_title">新しいアップデート</string>
|
<string name="new_updates_found_title">新しいアップデート</string>
|
||||||
<string name="text_download_speed">%1$s、%2$s/s</string>
|
<string name="text_download_speed">%1$s、%2$s/s</string>
|
||||||
<string name="pause_button">一時停止</string>
|
<string name="pause_button">一時停止</string>
|
||||||
@@ -39,15 +35,22 @@
|
|||||||
<string name="finalizing_package">パッケージのインストールを完了中</string>
|
<string name="finalizing_package">パッケージのインストールを完了中</string>
|
||||||
<string name="preparing_ota_first_boot">初回起動を準備中</string>
|
<string name="preparing_ota_first_boot">初回起動を準備中</string>
|
||||||
<string name="dialog_prepare_zip_message">予備のアップデート準備</string>
|
<string name="dialog_prepare_zip_message">予備のアップデート準備</string>
|
||||||
<string name="notification_prepare_zip_error_title">アップデートを準備できませんでした</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="reboot">再起動</string>
|
<string name="reboot">再起動</string>
|
||||||
<string name="menu_refresh">再読み込み</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">1日に1回</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_weekly">1週間に1回</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_monthly">1か月に1回</string>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">なし</string>
|
||||||
<string name="menu_auto_delete_updates">インストール後にアップデートを削除する</string>
|
<string name="menu_auto_delete_updates">インストール後にアップデートを削除する</string>
|
||||||
<string name="menu_delete_update">削除</string>
|
<string name="menu_delete_update">削除</string>
|
||||||
<string name="menu_copy_url">URL のコピー</string>
|
<string name="menu_copy_url">URL のコピー</string>
|
||||||
<string name="menu_export_update">アップデートのエクスポート</string>
|
<string name="menu_export_update">アップデートのエクスポート</string>
|
||||||
<string name="dialog_checking_for_updates">アップデートを確認中</string>
|
<string name="menu_show_changelog">更新履歴の表示</string>
|
||||||
|
<string name="menu_ab_perf_mode">更新プロセスを優先する</string>
|
||||||
<string name="snack_updates_found">アップデートが見つかりました</string>
|
<string name="snack_updates_found">アップデートが見つかりました</string>
|
||||||
<string name="snack_no_updates_found">新しいアップデートはありません</string>
|
<string name="snack_no_updates_found">新しいアップデートはありません</string>
|
||||||
<string name="snack_updates_check_failed">アップデートを確認できませんでした。インターネット接続を確認して、しばらくしてからもう一度お試しください。</string>
|
<string name="snack_updates_check_failed">アップデートを確認できませんでした。インターネット接続を確認して、しばらくしてからもう一度お試しください。</string>
|
||||||
@@ -60,36 +63,37 @@
|
|||||||
<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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g></string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_installing_update">アップデートのインストール</string>
|
|
||||||
<string name="list_verifying_update">アップデートを確認</string>
|
<string name="list_verifying_update">アップデートを確認</string>
|
||||||
<string name="list_no_updates">新しい更新はありません。新しい更新を手動で確認するには、更新ボタンを押してください。</string>
|
<string name="list_no_updates">新しい更新はありません。新しい更新を手動で確認するには、更新ボタンを押してください。</string>
|
||||||
<string name="action_description_download">ダウンロード</string>
|
<string name="action_download">ダウンロード</string>
|
||||||
<string name="action_description_pause">ダウンロードの一時停止</string>
|
<string name="action_pause">一時停止</string>
|
||||||
<string name="action_description_resume">ダウンロードを再開</string>
|
<string name="action_resume">再開</string>
|
||||||
<string name="action_description_install">アップデートをインストール</string>
|
<string name="action_install">インストール</string>
|
||||||
<string name="action_description_info">情報を表示</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_title">ファイルを削除</string>
|
||||||
<string name="confirm_delete_dialog_message">選択したアップデートファイルを削除しますか?</string>
|
<string name="confirm_delete_dialog_message">選択したアップデートファイルを削除しますか?</string>
|
||||||
<string name="apply_update_dialog_title">アップデートを適用</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"><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="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="label_download_url">ダウンロード URL</string>
|
||||||
<string name="toast_download_url_copied">URL をコピーしました</string>
|
<string name="toast_download_url_copied">URL をコピーしました</string>
|
||||||
<string name="snack_export_failed">ダウンロードをエクスポートできませんでした</string>
|
|
||||||
<string name="dialog_export_title">アップデートのエクスポート中</string>
|
<string name="dialog_export_title">アップデートのエクスポート中</string>
|
||||||
<string name="dialog_export_message">アップデートを <xliff:g id="filename">%1$s</xliff:g> として外部ストレージにエクスポート中</string>
|
|
||||||
<string name="notification_export_success">アップデートのエクスポート</string>
|
<string name="notification_export_success">アップデートのエクスポート</string>
|
||||||
<string name="notification_export_fail">エラー出力</string>
|
<string name="notification_export_fail">エラー出力</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="toast_already_exporting">すでにアップデートをエクスポートしています。</string>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> 秒</item>
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="other">残り<xliff:g id="count">%d</xliff:g>秒</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> 分</item>
|
<item quantity="other">残り<xliff:g id="count">%d</xliff:g>分</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g> 時間</item>
|
<item quantity="other">残り<xliff:g id="count">%d</xliff:g>時間</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">警告</string>
|
<string name="update_on_mobile_data_title">警告</string>
|
||||||
<string name="update_on_mobile_data_message">モバイルデータ通信で更新プログラムをダウンロードすると、データ使用量が増加する可能性があります。続行しますか?</string>
|
<string name="update_on_mobile_data_message">モバイルデータ通信で更新プログラムをダウンロードすると、データ使用量が増加する可能性があります。続行しますか?</string>
|
||||||
@@ -97,4 +101,8 @@
|
|||||||
<string name="menu_mobile_data_warning">モバイルデータの警告</string>
|
<string name="menu_mobile_data_warning">モバイルデータの警告</string>
|
||||||
<string name="blocked_update_dialog_title">更新をブロックしました</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="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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
31
res/values-ka/strings.xml
Normal file
31
res/values-ka/strings.xml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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="downloading_notification">ჩამოიტვირთება</string>
|
||||||
|
<string name="new_updates_found_title">ბოლო განახლებები</string>
|
||||||
|
<string name="pause_button">შეჩერება</string>
|
||||||
|
<string name="resume_button">გაგრძელება</string>
|
||||||
|
<string name="dialog_battery_low_title">ბატარეა ჯდება</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="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="new_updates_channel_title">ბოლო განახლებები</string>
|
||||||
|
</resources>
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
78
res/values-kn/strings.xml
Normal file
78
res/values-kn/strings.xml
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2017 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="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="text_download_speed">%1$s, %2$s/s</string>
|
||||||
|
<string name="installing_update">ನವೀಕರಣ ಘಂಟನ್ನು ಸ್ಥಾಪಿಸುತ್ತಿದೆ</string>
|
||||||
|
<string name="installing_update_error">ಸ್ಥಾಪನೆ ದೋಷ</string>
|
||||||
|
<string name="finalizing_package">ಘಂಟು ಸ್ಥಾಪನೆಯನ್ನು ಕೊನೆಗೊಳಿಸುತ್ತಿದೆ</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="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">URL ನಕಲಿಸು</string>
|
||||||
|
<string name="menu_export_update">ನವೀಕರಿಣ ನಿರ್ಯಾತ</string>
|
||||||
|
<string name="menu_show_changelog">ಬದಲಾವಣೆಗಳನ್ನು ತೋರಿಸು</string>
|
||||||
|
<string name="menu_ab_perf_mode">ನವೀಕರಣಕ್ಕೆ ಆದ್ಯತೆ ಕೊಡು</string>
|
||||||
|
<string name="snack_download_verified">ಇಳಿಸುವಿಕೆ ಪೂರ್ಣಗೊಂಡಿದೆ.</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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
|
<string name="list_verifying_update">ನವೀಕರಣ ಪರಿಶೀಲಿಸುತ್ತಿದೆ</string>
|
||||||
|
<string name="action_download">ಇಳಿಸು</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="cancel_installation_dialog_message">ಸ್ಥಾಪನೆ ರದ್ದಿಸಲೇ?</string>
|
||||||
|
<string name="label_download_url">ಇಳಿಸುವ URL</string>
|
||||||
|
<string name="dialog_export_title">ನವೀಕರಿಣ ನಿರ್ಯಾತವಾಗುತ್ತಿದೆ</string>
|
||||||
|
<string name="notification_export_fail">ದೋಷ ನಿರ್ಯಾತ</string>
|
||||||
|
<string name="toast_already_exporting">ಈಗಾಗಲೇ ನವೀಕರಣವನ್ನು ರಫ್ತು ಮಾಡಲಾಗುತ್ತಿದೆ</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_on_mobile_data_title">ಎಚ್ಚರಿಕೆ</string>
|
||||||
|
<string name="update_on_mobile_data_message">ನೀವು ಮೊಬೈಲ್ ದತ್ತಾಂಶವನ್ನು ಹೆಚ್ಚು ಬಳಕೆ ಉಂಟುಮಾಡುವ ನವೀಕರಣ ಘಂಟನ್ನು ಇಳಿಸ ಹೊರಟಿರುವಿರಿ. ಮುಂದುವರಿಸುವುದೇ?</string>
|
||||||
|
<string name="checkbox_mobile_data_warning">ಪುನಃ ತೋರಿಸದಿರು</string>
|
||||||
|
<string name="export_channel_title">ನಿರ್ಯಾತ ಪೂರ್ಣತೆ</string>
|
||||||
|
<string name="ongoing_channel_title">ಪ್ರಗತಿಯಲ್ಲಿರುವ ಕೆಳಭರಿತಗಳು</string>
|
||||||
|
</resources>
|
@@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
<!--
|
||||||
Copyright (C) 2017 The LineageOS Project
|
Copyright (C) 2017 The LineageOS Project
|
||||||
|
|
||||||
@@ -18,10 +17,6 @@
|
|||||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||||
<string name="app_name">업데이터</string>
|
<string name="app_name">업데이터</string>
|
||||||
<string name="display_name">업데이터</string>
|
<string name="display_name">업데이터</string>
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
<string name="verification_failed_notification">검증 실패</string>
|
<string name="verification_failed_notification">검증 실패</string>
|
||||||
<string name="verifying_download_notification">업데이트 검증 중</string>
|
<string name="verifying_download_notification">업데이트 검증 중</string>
|
||||||
<string name="downloading_notification">다운로드 중</string>
|
<string name="downloading_notification">다운로드 중</string>
|
||||||
@@ -29,6 +24,7 @@
|
|||||||
<string name="download_paused_error_notification">다운로드 오류</string>
|
<string name="download_paused_error_notification">다운로드 오류</string>
|
||||||
<string name="download_completed_notification">다운로드 완료</string>
|
<string name="download_completed_notification">다운로드 완료</string>
|
||||||
<string name="download_starting_notification">다운로드 시작</string>
|
<string name="download_starting_notification">다운로드 시작</string>
|
||||||
|
<string name="update_failed_notification">업데이트 실패</string>
|
||||||
<string name="new_updates_found_title">새 업데이트</string>
|
<string name="new_updates_found_title">새 업데이트</string>
|
||||||
<string name="text_download_speed">%1$s, %2$s/s</string>
|
<string name="text_download_speed">%1$s, %2$s/s</string>
|
||||||
<string name="pause_button">일시 중지</string>
|
<string name="pause_button">일시 중지</string>
|
||||||
@@ -39,50 +35,74 @@
|
|||||||
<string name="finalizing_package">패키지 설치 마무리 중</string>
|
<string name="finalizing_package">패키지 설치 마무리 중</string>
|
||||||
<string name="preparing_ota_first_boot">첫 번째 부팅 준비 중</string>
|
<string name="preparing_ota_first_boot">첫 번째 부팅 준비 중</string>
|
||||||
<string name="dialog_prepare_zip_message">예비 업데이트 준비</string>
|
<string name="dialog_prepare_zip_message">예비 업데이트 준비</string>
|
||||||
<string name="notification_prepare_zip_error_title">업데이트 준비 실패</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="reboot">다시 시작</string>
|
<string name="reboot">다시 시작</string>
|
||||||
<string name="menu_refresh">새로고침</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>
|
||||||
|
<string name="menu_auto_updates_check_interval_never">사용 안 함</string>
|
||||||
<string name="menu_auto_delete_updates">설치한 뒤 업데이트 파일 삭제</string>
|
<string name="menu_auto_delete_updates">설치한 뒤 업데이트 파일 삭제</string>
|
||||||
<string name="menu_delete_update">삭제</string>
|
<string name="menu_delete_update">삭제</string>
|
||||||
<string name="menu_copy_url">URL 복사</string>
|
<string name="menu_copy_url">URL 복사</string>
|
||||||
<string name="menu_export_update">업데이트 내보내기</string>
|
<string name="menu_export_update">업데이트 내보내기</string>
|
||||||
|
<string name="menu_show_changelog">변경 사항 보기</string>
|
||||||
|
<string name="menu_ab_perf_mode">우선 업데이트</string>
|
||||||
<string name="snack_updates_found">새 업데이트 발견</string>
|
<string name="snack_updates_found">새 업데이트 발견</string>
|
||||||
|
<string name="snack_no_updates_found">새로운 업데이트 없음</string>
|
||||||
<string name="snack_updates_check_failed">업데이트 확인에 실패했습니다. 인터넷 연결을 확인한 뒤 다시 시도해 주세요.</string>
|
<string name="snack_updates_check_failed">업데이트 확인에 실패했습니다. 인터넷 연결을 확인한 뒤 다시 시도해 주세요.</string>
|
||||||
<string name="snack_download_failed">다운로드에 실패했습니다. 인터넷 연결을 확인한 뒤 다시 시도해 주세요.</string>
|
<string name="snack_download_failed">다운로드에 실패했습니다. 인터넷 연결을 확인한 뒤 다시 시도해 주세요.</string>
|
||||||
<string name="snack_download_verification_failed">업데이트 검증에 실패했습니다.</string>
|
<string name="snack_download_verification_failed">업데이트 검증에 실패했습니다.</string>
|
||||||
<string name="snack_download_verified">다운로드가 완료되었습니다.</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_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_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="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">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_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"><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_new"><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="percentage" example="56">%3$s</xliff:g></string>
|
||||||
<string name="list_download_progress_eta"><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="duration" example="3 minutes">%3$s</xliff:g> 남음</string>
|
<string name="list_download_progress_eta_new"><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>) • <xliff:g id="percentage" example="56">%4$s</xliff:g></string>
|
||||||
<string name="list_verifying_update">업데이트 검증 중</string>
|
<string name="list_verifying_update">업데이트 검증 중</string>
|
||||||
<string name="list_no_updates">새로운 업데이트가 없습니다. 수동으로 새 업데이트를 확인하려면 새로고침 버튼을 누르세요.</string>
|
<string name="list_no_updates">새로운 업데이트가 없습니다. 수동으로 새 업데이트를 확인하려면 새로고침 버튼을 누르세요.</string>
|
||||||
<string name="action_description_download">다운로드</string>
|
<string name="action_download">다운로드</string>
|
||||||
<string name="action_description_pause">다운로드 일시 중지</string>
|
<string name="action_pause">일시 중지</string>
|
||||||
<string name="action_description_resume">다운로드 재개</string>
|
<string name="action_resume">이어 받기</string>
|
||||||
<string name="action_description_install">업데이트 설치</string>
|
<string name="action_install">설치</string>
|
||||||
<string name="action_description_info">정보 보기</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_title">파일 삭제</string>
|
||||||
<string name="confirm_delete_dialog_message">선택한 업데이트 파일을 삭제하시겠습니까?</string>
|
<string name="confirm_delete_dialog_message">선택한 업데이트 파일을 삭제하시겠습니까?</string>
|
||||||
<string name="apply_update_dialog_title">업데이트 적용</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="label_download_url">다운로드 URL</string>
|
||||||
<string name="toast_download_url_copied">URL 복사됨</string>
|
<string name="toast_download_url_copied">URL 복사됨</string>
|
||||||
<plurals name="duration_seconds">
|
<string name="dialog_export_title">업데이트 내보내는 중</string>
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g>초</item>
|
<string name="notification_export_success">업데이트를 내보냈습니다.</string>
|
||||||
|
<string name="notification_export_fail">내보내기 오류</string>
|
||||||
|
<string name="toast_already_exporting">이미 업데이트를 내보내는 중입니다.</string>
|
||||||
|
<plurals name="eta_seconds">
|
||||||
|
<item quantity="other"><xliff:g id="count">%d</xliff:g>초 남음</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_minutes">
|
<plurals name="eta_minutes">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g>분</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g>분 남음</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<plurals name="duration_hours">
|
<plurals name="eta_hours">
|
||||||
<item quantity="other"><xliff:g id="count">%d</xliff:g>시간</item>
|
<item quantity="other"><xliff:g id="count">%d</xliff:g>시간 남음</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="update_on_mobile_data_title">경고</string>
|
<string name="update_on_mobile_data_title">경고</string>
|
||||||
<string name="update_on_mobile_data_message">모바일 데이터를 사용하여 업데이트 패키지를 다운로드하려 합니다. 데이터를 매우 많이 사용하게 될 수 있습니다. 정말 계속하시겠습니까?</string>
|
<string name="update_on_mobile_data_message">모바일 데이터를 사용하여 업데이트 패키지를 다운로드하려 합니다. 데이터를 매우 많이 사용하게 될 수 있습니다. 정말 계속하시겠습니까?</string>
|
||||||
<string name="checkbox_mobile_data_warning">다시 보지 않기</string>
|
<string name="checkbox_mobile_data_warning">다시 보지 않기</string>
|
||||||
<string name="menu_mobile_data_warning">모바일 데이터 경고</string>
|
<string name="menu_mobile_data_warning">모바일 데이터 경고</string>
|
||||||
<string name="blocked_update_dialog_title">업데이트 차단됨</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>
|
||||||
</resources>
|
</resources>
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--Generated by crowdin.com-->
|
|
||||||
<!--
|
|
||||||
Copyright (C) 2017 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">
|
|
||||||
<!-- Directory where the update files will be downloaded and stored.
|
|
||||||
WARNING: The application can and will delete any unknown file. -->
|
|
||||||
<!-- Directory where the downloads will be exported to.
|
|
||||||
The path is relative to the root of the external storage.-->
|
|
||||||
</resources>
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user