diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000000..fc3a7908864 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,21 @@ + + + + + + + + + + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 86dc50de48f..5cd6df6f05d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -57,6 +57,7 @@ Here are some contribution tips to help you get started: #### Additional documentation +- The Lawnchair Wiki ([at Github](https://github.com/LawnchairLauncher/lawnchair/wiki)) - Lawnchair Visual Guidelines ([README.md](/docs/assets/README.md)) - Lawnchair Quickstep Compat Lib ([README.md](compatLib/README.md)) - Lawnchair Preferences Components ([README.md](lawnchair/src/app/lawnchair/ui/preferences/components/README.md)) diff --git a/baseline-profile/build.gradle b/baseline-profile/build.gradle index dc3a13602ad..5767016d957 100644 --- a/baseline-profile/build.gradle +++ b/baseline-profile/build.gradle @@ -41,5 +41,5 @@ dependencies { implementation 'androidx.test.ext:junit:1.2.1' implementation 'androidx.test.espresso:espresso-core:3.6.1' implementation 'androidx.test.uiautomator:uiautomator:2.3.0' - implementation 'androidx.benchmark:benchmark-macro-junit4:1.3.0' + implementation 'androidx.benchmark:benchmark-macro-junit4:1.3.1' } diff --git a/build.gradle b/build.gradle index 2ce2f651b8d..9524cb27b20 100644 --- a/build.gradle +++ b/build.gradle @@ -3,15 +3,15 @@ import com.android.build.gradle.api.AndroidBasePlugin import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - id 'com.android.application' version "8.6.0" - id 'com.android.library' version "8.6.0" apply false - id 'com.android.test' version '8.6.0' apply false - id 'androidx.baselineprofile' version '1.3.0' + id 'com.android.application' version "8.6.1" + id 'com.android.library' version "8.6.1" apply false + id 'com.android.test' version '8.6.1' apply false + id 'androidx.baselineprofile' version '1.3.1' id 'org.jetbrains.kotlin.android' version "2.0.20" id 'org.jetbrains.kotlin.plugin.compose' version "2.0.20" id 'org.jetbrains.kotlin.plugin.parcelize' version "2.0.20" id 'org.jetbrains.kotlin.plugin.serialization' version "2.0.20" - id "com.google.devtools.ksp" version "2.0.20-1.0.24" + id "com.google.devtools.ksp" version "2.0.20-1.0.25" id 'com.google.protobuf' version "0.9.4" id 'app.cash.licensee' version "1.11.0" id 'dev.rikka.tools.refine' version "4.4.0" @@ -37,12 +37,11 @@ allprojects { } dependencies { implementation 'androidx.core:core-ktx:1.13.1' - implementation 'androidx.appcompat:appcompat:1.7.0' } } plugins.withId('com.google.protobuf') { - def protocVersion = '4.28.0' + def protocVersion = '4.28.2' protobuf { // Configure the protoc executable protoc { @@ -167,19 +166,6 @@ android { resValues true } - final def keystorePropertiesFile = rootProject.file("keystore.properties") - def releaseSigning = signingConfigs.debug - if (keystorePropertiesFile.exists()) { - final def keystoreProperties = new Properties() - keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) - releaseSigning = signingConfigs.create("release") { - keyAlias keystoreProperties['keyAlias'] - keyPassword keystoreProperties['keyPassword'] - storeFile rootProject.file(keystoreProperties['storeFile']) - storePassword keystoreProperties['storePassword'] - } - } - packagingOptions.resources.excludes += [ "**/*.proto", "**/*.bin", @@ -205,6 +191,20 @@ android { .findAll { it.exists() } .toArray() + def releaseSigning + try { + def keystoreProperties = new Properties() + keystoreProperties.load(rootProject.file("keystore.properties").newInputStream()) + releaseSigning = signingConfigs.create("release") { + keyAlias keystoreProperties['keyAlias'] + keyPassword keystoreProperties['keyPassword'] + storeFile rootProject.file(keystoreProperties['storeFile']) + storePassword keystoreProperties['storePassword'] + } + } catch (Exception ignored) { + releaseSigning = signingConfigs.debug + } + buildTypes { all { signingConfig releaseSigning @@ -318,6 +318,11 @@ androidComponents { } } +composeCompiler { + stabilityConfigurationFile = layout.projectDirectory.file("compose_compiler_config.conf") + reportsDestination = layout.buildDirectory.dir("compose_build_reports") +} + addFrameworkJar('framework-14.jar') dependencies { @@ -349,7 +354,7 @@ dependencies { implementation fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'WindowManager-Shell-14.jar') withQuickstepCompileOnly fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'framework-14.jar') - coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.1' + coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.2' implementation 'androidx.profileinstaller:profileinstaller:1.3.1' baselineProfile projects.baselineProfile @@ -358,13 +363,12 @@ dependencies { implementation "androidx.recyclerview:recyclerview:1.3.2" implementation "androidx.preference:preference-ktx:1.2.1" - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0' implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2' - implementation "org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7" implementation 'com.github.ChickenHook:RestrictionBypass:2.2' implementation 'dev.rikka.tools.refine:runtime:4.4.0' - implementation platform("androidx.compose:compose-bom:2024.08.00") + implementation platform("androidx.compose:compose-bom:2024.09.02") implementation "androidx.compose.ui:ui" implementation "androidx.compose.ui:ui-util" debugImplementation "androidx.compose.ui:ui-tooling" @@ -374,15 +378,15 @@ dependencies { implementation "androidx.compose.material:material-icons-extended" implementation "androidx.compose.material:material" implementation "androidx.compose.runtime:runtime-livedata" - implementation 'androidx.compose.material3:material3:1.3.0-rc01' - implementation 'androidx.compose.material3:material3-window-size-class:1.3.0-rc01' + implementation 'androidx.compose.material3:material3' + implementation 'androidx.compose.material3:material3-window-size-class' + implementation "androidx.activity:activity-compose:1.9.2" + implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.6" + implementation "androidx.navigation:navigation-compose:2.8.1" implementation "androidx.constraintlayout:constraintlayout:2.1.4" - implementation "androidx.activity:activity-compose:1.9.1" - implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.4" - implementation "androidx.navigation:navigation-compose:2.8.0-rc01" implementation "androidx.palette:palette-ktx:1.0.0" implementation "androidx.slice:slice-core:1.1.0-alpha02" - def accompanistVersion = '0.34.0' + def accompanistVersion = '0.36.0' implementation "com.google.accompanist:accompanist-adaptive:$accompanistVersion" implementation "com.google.accompanist:accompanist-drawablepainter:$accompanistVersion" implementation "com.google.accompanist:accompanist-permissions:$accompanistVersion" @@ -410,10 +414,10 @@ dependencies { // Persian Date implementation 'com.github.samanzamani:PersianDate:1.7.1' - implementation 'com.airbnb.android:lottie:6.5.1' + implementation 'com.airbnb.android:lottie:6.5.2' // Compose drag and drop library - implementation 'sh.calvin.reorderable:reorderable:2.3.2' + implementation 'sh.calvin.reorderable:reorderable:2.3.3' // Smartspacer implementation('com.kieronquinn.smartspacer:sdk-client:1.0.11') { @@ -438,7 +442,7 @@ spotless { kotlin { target("lawnchair/src/**/*.kt") ktlint().customRuleSets([ - "io.nlopez.compose.rules:ktlint:0.4.11", + "io.nlopez.compose.rules:ktlint:0.4.12", ]).editorConfigOverride([ "ktlint_compose_compositionlocal-allowlist": "disabled", ]) diff --git a/compose_compiler_config.conf b/compose_compiler_config.conf new file mode 100644 index 00000000000..5bc2b52b45b --- /dev/null +++ b/compose_compiler_config.conf @@ -0,0 +1,8 @@ +androidx.collection.* + +java.nio.file.Path + +kotlin.collections.* +kotlin.time.Duration + +kotlinx.coroutines.CoroutineScope diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2b189974c29..8e876e1c557 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=5b9c5eb3f9fc2c94abaea57d90bd78747ca117ddbbf96c859d3741181a12bf2a -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip +distributionSha256Sum=1541fa36599e12857140465f3c91a97409b4512501c26f9631fb113e392c5bd1 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/lawnchair/res/drawable/ic_firefox.xml b/lawnchair/res/drawable/ic_firefox.xml new file mode 100644 index 00000000000..247d797bcfe --- /dev/null +++ b/lawnchair/res/drawable/ic_firefox.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/lawnchair/res/drawable/ic_firefox_tinted.xml b/lawnchair/res/drawable/ic_firefox_tinted.xml new file mode 100644 index 00000000000..4beb0fdbdac --- /dev/null +++ b/lawnchair/res/drawable/ic_firefox_tinted.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/lawnchair/res/drawable/ic_iceraven.xml b/lawnchair/res/drawable/ic_iceraven.xml new file mode 100644 index 00000000000..7308766f81f --- /dev/null +++ b/lawnchair/res/drawable/ic_iceraven.xml @@ -0,0 +1,14 @@ + + + + diff --git a/lawnchair/res/drawable/ic_iceraven_tinted.xml b/lawnchair/res/drawable/ic_iceraven_tinted.xml new file mode 100644 index 00000000000..72268352ec1 --- /dev/null +++ b/lawnchair/res/drawable/ic_iceraven_tinted.xml @@ -0,0 +1,14 @@ + + + + \ No newline at end of file diff --git a/lawnchair/res/values-af-rZA/strings.xml b/lawnchair/res/values-af-rZA/strings.xml index 27d01d61762..acd2e4d7da0 100644 --- a/lawnchair/res/values-af-rZA/strings.xml +++ b/lawnchair/res/values-af-rZA/strings.xml @@ -71,9 +71,9 @@ What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s ماذا يُعرض - لقفل هاتفك عند تنفيذ إيماءة، يتطلب Lawnchair الوصول إلى إمكانية الوصول.\n\nLawnchair لا يراقب أي إجراء للمستخدم، رغم أن الصلاحية للقيام بذلك مطلوبة لجميع خدمات إمكانية الوصول. يقوم Lawnchair بالتخلص من أي حدث يتم إرساله بواسطة النظام.\n\nلقفل هاتفك، يستخدم Lawnchair خدمة إمكانية الوصول لتنفيذ الإجراء العالمي. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. 18. %1$d x %2$d - 19. %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Informacije za prikaz - Da biste zaključali uređaj pokretom potrebno je da dodelite Lawnchairu pristup usluzi pristupačnosti.\n\nLawnchair ne nadgleda korisničke radnje, ali je privilegija za to potrebna svim uslugama pristupačnosti. Lawnchair odbacuje sve događaje koje pošalje sistem.\n\nKako bi zaključao uređaj, Lawnchair koristi uslugu pristupačnosti performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s i %s + %1$s & %2$s যা দেখাবে - জেসচারের মাধ্যমে ফোন লক করার জন্য Lawnchair এর এক্সেসিবিলিটি এক্সেস প্রয়োজন।\n\nLawnchair ব্যবহারকারীদের কর্মকান্ডে কোন নজরদারি করে না, যদিও এক্সেসিবিলিটি সার্ভিসের জন্য এই ক্ষমতা প্রয়োজন। সিস্টেম কর্তৃক পাঠানো যেকোন কিছু Lawnchair সংরক্ষণ করবে না।\n\nLawnchair ফোন লক করার জন্য performGlobalAction এক্সেসিবিলিটি সার্ভিস ব্যবহার করে। + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s - Georgià + Gregorià Persa %1$s, %2$s @@ -339,6 +339,7 @@ Back button Do nothing Apaga la pantalla + Open Recents Open notification panel Open app Obre %1$s @@ -349,9 +350,10 @@ Admin permissions required To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" \"Toca dos cops per apagar la pantalla\" s\'apagarà. - Turn on accessibility service - To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\" - Open settings + Turn on accessibility service + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Open settings + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. Co Zobrazit - K uzamčení telefonu při provádění gesta vyžaduje Lawnchair přístup k usnadnění.\n\nLawnchair nesleduje žádnou akci uživatele, ačkoli oprávnění k tomu je vyžadováno pro všechny služby usnadnění. Lawnchair zahodí jakoukoli událost odeslanou systémem.\n\nAby byl váš telefon uzamčen, používá Lawnchair službu usnadnění performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Barevný styl Spritz - Tonal Spot + Tónová skvrna Sytá Expressive Rainbow @@ -339,6 +339,7 @@ Tlačítko zpět Nedělat nic Spánek + Open Recents Otevřít panel oznámení Otevřít aplikaci Otevřít %1$s @@ -349,9 +350,10 @@ Vyžaduje oprávnění administrátora To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" Uspání dvojitým poklepáním bude vypnuto. - Zapnout službu usnadnění - To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\" - Otevřít nastavení + Zapnout službu usnadnění + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Otevřít nastavení + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. Forhåndsvisning Opret - Backup + Sikkerhedskopiér Gendan Slet Nulstil @@ -34,16 +34,16 @@ Altid Aldrig Udklipsholder - Copy link + Kopiér link Kopier Indsæt Indlæser… Administreret af Lawnchair Præferencer - Home settings - System settings - Change settings + Indst. for startskærm + Systemindstillinger + Ændr indstillinger Baggrund - Background opacity + Baggrundsgennemsigtighed - Copied to clipboard + Kopieret til udklipsholder Element fjernet - What to show + Hvad der skal vises - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. - %1$d x %2$d - %s & %s + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. + %1$d × %2$d + %1$s & %2$s Indstillinger Generelt - Colors, icon packs, notification dots - Home screen - Feed, grid, icons + Farver, ikonpakker, notifikationsprikker + Startskærm + Feed, gitter, ikoner Dok - Search bar, icon count - App drawer - Hidden apps, column count, icons - Drawer search - Web suggestions, global search + Søgebar, ikonantal + App-skuffe + Skjulte apps, antal kolonner, ikoner + Skuffesøgning + Webforslag, global søgning Mapper - Row and column count + Antal rækker og kolonner Bevægelser - Taps and swipes + Tryk og stryg Recents - Clear All button, corner radius + Ryd alle-knap, hjørneradius Om App info Genstart Lawnchair - Experimental features + Eksperimentelle funktioner - Font customization + Tilpasning af skrifttype Noget tekst forbliver uændret - At a Glance calendar customization + Kalendertilpasning for Overblik Tillad visning af dato i ikke-gregorianske kalendersystemer Increase maximum grid size limit Increase maximum allowed home screen grid size from 10 x 10 to 20 x 20 @@ -339,6 +339,7 @@ Back button Do nothing Sov + Open Recents Open notification panel Open app Åben %1$s @@ -349,9 +350,10 @@ Admin permissions required To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" Dobbelttryk for at sove vil blive slået fra. - Turn on accessibility service - To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\" - Open settings + Turn on accessibility service + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Open settings + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. Was angezeigt werden soll - Um Dein Gerät mit einer Geste zu sperren, benötigt Lawnchair Bedienungshilfen-Zugriff.\n\nLawnchair beobachtet keine Nutzeraktionen, auch wenn die Bedienungshilfen dies ermöglichen würden. Lawnchair verwirft alle vom System gesendeten Ereignisse.\n\nUm Dein Gerät zu sperren, verwendet Lawnchair den performGlobalAction-Dienst. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s & %s + %1$s & %2$s Τι να εμφανίζεται - Για να κλειδώσετε το τηλέφωνό σας όταν εκτελείτε μια χειρονομία, το εκκινητής Lawnchair απαιτεί πρόσβαση στην προσβασιμότητα.\n\nΟ Lawnchair δεν παρακολουθεί καμία ενέργεια χρήστη, αν και το προνόμιο να το κάνει αυτό απαιτείται για όλες τις υπηρεσίες προσβασιμότητας. Ο Lawnchair απορρίπτει οποιοδήποτε συμβάν αποστέλλεται από το σύστημα.\n\nΓια να κλειδώσετε το τηλέφωνό σας, ο εκκινητής Lawnchair χρησιμοποιεί την υπηρεσία προσβασιμότητας performGlobalAction. + Για να κλειδώσετε το τηλέφωνό σας όταν εκτελείτε μια χειρονομία, όπως και για να ανοίξετε τα Πρόσφατα μέσω χειρονομίας, ο εκκινητής Lawnchair χρειάζεται δικαιώματα Προσβασιμότητας.\n\nΟ εκκινητής Lawnchair δεν παρακολουθεί καμία ενέργεια του χρήστη, αν και το δικαίωμα να το κάνει απαιτείται για όλες τις υπηρεσίες προσβασιμότητας. Ο εκκινητής Lawnchair απορρίπτει οποιοδήποτε συμβάν που αποστέλλεται από το σύστημα.\n\nΓια να κλειδώσει το τηλέφωνό σας ή να ανοίξει τις Πρόσφατες εφαρμογές, ο εκκινητής Lawnchair χρησιμοποιεί την υπηρεσία προσβασιμότητας `performanceGlobalAction`. %1$d × %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s - - "" - X - GitHub + + + + Preview + + Create + Backup + Restore + Delete + Reset + + Unlock + Lock + + Apply + Customize + + Always + Never + + Clipboard + Copy link + Copy + Paste + + Loading… + + Managed by Lawnchair + + + Preferences + Home settings + System settings + Change settings + + + + + Dynamic + Presets + Custom + Default + System + + + Columns + Rows + Label + Icons + Grid + Layout + + + Wallpaper + Background opacity + + + Copied to clipboard + Item removed + + + What to show + + + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. + + %1$d x %2$d + %1$s & %2$s + Settings - Home Screen - New Apps, Grid, Icons + General - Notification Dots, Icon Pack - Home Screen Rotation - When device is rotated. - Add New Apps to Home Screen + Colours, icon packs, notification dots + + Home screen + Feed, grid, icons + Dock - Icon Count - App Drawer - Column Count, Icons + Search bar, icon count + + App drawer + Hidden apps, column count, icons + + Drawer search + Web suggestions, global search + Folders - Row and Column Count - App Drawer Columns - Dock Icons - Max. Folder Columns - Max. Folder Rows - Grid - Icons - Icon Size - Label Size - Notification Dots - Preferences + Row and column count + + Gestures + Taps and swipes + + Recents + Clear All button, corner radius + About + + App info + Restart Lawnchair + Experimental features + + + Font customization + Some text remains unchanged + + At a Glance calendar customization + Allow showing date in non-Gregorian calendar systems + + Increase maximum grid size limit + Increase maximum allowed home screen grid size from 10 x 10 to 20 x 20 + + Always reload icons + Avoid using cached icons from icon packs + + Lock/unlock + Prevent selected app from closing when pressing \"Clear all\" + + + + To access shortcuts and additional features, set Lawnchair as your default launcher + + Notification dots + Show notification counter + Notification dot colour + Notification counter colour + Warning: Notification dot and counter colours don\'t have enough contrast with each other + Warning: Notification dot and counter colours might not always have enough contrast with each other + + Notification access needed + To show Notification Dots, turn on app notifications for %1$s + + + + Icon style + Icon shape + Icon size + + Show labels + Label size + Use multiple lines + + + Transparent themed icons + Use transparent background on themed icons + + Auto-adaptive icons + For all non-adaptive icons + + Show shadow behind icons + + Background lightness + Use 100% background lightness for white + + Reset custom icons + All custom icons will be reset. Do you want to continue? + + + Icons + Reset to default + Open external picker + Pick icon from + Couldn\'t load more icons + + + System + Circle + Cylinder + Diamond + Egg + iOS + Octagon + Hexagon + One UI + Rounded square + Sharp square + Square + Squircle + Teardrop + + + Custom icon shape + Create custom icon shape + Edit custom icon shape + Corner shape + Round + Smooth + Cut + Top left + Top right + Bottom left + Bottom right + + Export to clipboard + Import from clipboard + Clipboard doesn\'t contain a valid icon shape + + + Icon pack + Themed icon source + System icons + + Themed icons + Off + Home screen + Home screen & app drawer + No supported icon packs + + + Add fonts + OTF and TTF fonts are supported + + Font not found + + Font (experimental) + General + Headings + Headings (medium) + Body + Body (medium) + + Italic + Thin + Extra light + Light + Regular + Medium + Semibold + Bold + Extra bold + Black + + + + + Theme + Light + Dark + System + Match wallpaper + + + Colour style + Spritz + Tonal Spot + Vibrant + Expressive + Rainbow + Fruit Salad + Content + Monochromatic + + + Colours + Accent colour + + Swatches + + RGB + Red + Green + Blue + + HSB + Hue + Saturation + Brightness + + Hex + + Sliders + Invalid colour + + + + Gregorian + Persian + + %1$s, %2$s + + + Charging + Charged + Battery low + "%1$d%% — Full in %2$s" + + At a Glance + What to show + + + Calendar + Date & time + Date + Time + Time format + Follow system + 12-hour format + 24-hour format + + + Weather + Battery status + Now Playing + + + Maximum number of targets + Open Smartspacer settings + Smartspacer settings + + + Tap to set up + To use %1$s, turn on Notification Dots. + + + Show on home screen + At a Glance can be manually added to the home screen by placing the Lawnchair widget + + + At a Glance provider + Google + Google Search + + + " — " + Page %1$d of %2$d + Fri, Mar 3 + + News Support - Acknowledgements - DevOps - QuickSwitch Maintenance - Search Apps - Home Settings + + Product + Design & development Development - App Info - Item removed. - No apps found matching ‘%1$s’. - Background Opacity - Background Lightness - Use 100% background lightness for white. - Auto Adaptive Icons - For all non-Adaptive icons. + QuickSwitch maintenance + DevOps Support & PR - Design & Development + + Acknowledgements Translate - Product - %1$s %2$s - Page %1$d of %2$d + Donate + + + Create backup + What to back up + Layout and settings + Wallpaper + Backup created + Failed to create backup + Restore backup + What to restore + Backup restored + Failed to restore backup + Invalid backup file + + + Double tap + Swipe up + Swipe down + Home button + Back button + + Do nothing + Sleep + Open Recents + Open notification panel + Open app + Open %1$s + Open app drawer + Open app search + Open search + + Pick app + + Admin permissions required + To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" + Double-Tap to Sleep will be turned off. + + + Turn on accessibility service + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Open settings + +To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + + + Lawnchair bug report + %1$s crashed + Upload crash log + + Upload failed + Uploading… + + Bug reports + Upload status + + %d new reports + Multiple new reports + + + + Home screen rotation + Allow home screen rotation when device is rotated + + Blur wallpaper (experimental) + Blur intensity + Factor threshold + + Add new apps to home screen + + Show feed + No feed apps installed + Feed + Feed provider + + Scroll wallpaper + Wallpaper depth effect + Zoom in and out of the wallpaper when transitioning between areas of the launcher + Top shadow + + Home screen grid + Lock home screen + Unlock home screen + Home screen is locked + Prevent changes to the home screen layout + + Show dot pagination + Use dots instead of lines to show page number + Use new pop-up style + Use Material You\'s bouncy and slightly consolidated pop-up style + + Pop-up menu + Show lock button + Show system settings button + Show edit home screen button + + Status bar + Show status bar + Dark status bar + + Text colour + Light + Dark + + Rounded corners + Allow overlap + + Enforce widget resizing + Allow resizing of widgets that are constrained to a specific size + + Remove size constraints + Remove the minimum and maximum size restrictions of widgets + + + Show dock + + Search bar + Search bar widget + Disabled + Google Search bar + + Background opacity + Outline width + Outline colour + Corner radius + Apply accent colour + Search provider + + Dock icons + Bottom padding + + + App search + + %1$s and Lawnchair have a revenue share agreement.\n\nSearching with %1$s helps support Lawnchair. + + App + Website + App required + + + Search + Google Lens + Voice Search + + + Hidden apps + + Load apps in bulk + Load and display icons in bulk instead of individually + + Remember position + Remember app drawer position after leaving drawer + + Show scrollbar + + App drawer columns + Row height + Horizontal padding + + + Hide from app drawer + Hidden apps (%1$d) + + %1$d app + %1$d apps + + + + Icon preview background opacity + Folder background opacity + Icon background colour + + Maximum folder columns + Maximum folder rows + + + These settings will be ignored as Lawnchair isn\'t set as the Recents provider + + Incompatible system integration + Your device is configured to have system gestures (known as Quickstep) provided by %1$s, but this version of %1$s isn\'t compatible with your Android version. To continue using your device, please uninstall %1$s updates or disable %1$s as a system gesture provider. + + Translucent background + Background opacity + + Quick actions + Share + Lens + Clear all + Force close + + Screen corner radius + Custom screen corner radius + When you swipe up to open Recents, the current app follows your finger, shrinking into a card. Use this slider to adjust the corner radius of the card when it\'s nearly full screen so it matches the corners of your screen. + + Taskbar + Show taskbar (experimental) + + + + Search + Search apps + No apps found matching \"%1$s\" + + From the web + Contacts from device + Files from device + Settings from device + + Search for more apps + Search on %1$s + No app store or browser installed + + Clear search history + Clear search box + + + Search + + Show search bar + Automatically show keyboard + + Fuzzy search + Approximate matching for app searches + + Suggestions + Show suggested apps at the top of the drawer + + Device search + Search your phone contacts, files, and settings + + Show hidden apps in search results + If full name is typed + + Search algorithm + App Search + Global search (on-device) + Global search (via ASI) + + + Show in search results + + Apps & Shortcuts + App shortcuts + People + Pixel tips + Android settings + Files + Web suggestions + Search history + Calculator + + + Media, files, and more + Contacts and more + Via %1$s + + + Maximum number of apps + Maximum number of people + Maximum number of files + Maximum number of settings + Maximum items for search history + Maximum number of suggestions + Maximum web suggestion delay + + + To search for contacts, grant contacts and phone permissions to Lawnchair + To search your files, grant storage permissions to Lawnchair + Grant permissions + + Web suggestion provider + Show web suggestion provider icon in search bar + Match dock search bar actions + Clicking the dock search bar will now open the app drawer search UI diff --git a/lawnchair/res/values-es-rES/strings.xml b/lawnchair/res/values-es-rES/strings.xml index 0c8d35938aa..57f8b28a593 100644 --- a/lawnchair/res/values-es-rES/strings.xml +++ b/lawnchair/res/values-es-rES/strings.xml @@ -23,7 +23,7 @@ --> Vista previa Crear - Respaldo + Copia de seguridad Restaurar Eliminar Restablecer @@ -41,8 +41,8 @@ Gestionado por Lawnchair Preferencias - Configuración inicial - Configuración del sistema + Ajustes del lanzador + Ajustes del sistema Cambiar ajustes - Fondo de Pantalla + Fondo de pantalla Opacidad del fondo Copiado al portapapeles - Elemento eliminado + Se ha borrado el elemento Qué mostrar - Para bloquear su teléfono al realizar un gesto, Lawnchair requiere acceso de accesibilidad.\n\nLawnchair no observará ninguna acción del usuario, aunque se requiere el privilegio de hacerlo para todos los servicios de accesibilidad. Lawnchair descarta cualquier evento enviado por el sistema.\n\nPara bloquear su teléfono, Lawnchair utiliza el servicio de accesibilidad performGlobalAction. + Para bloquear el teléfono al realizar un gesto, y para abrir Recientes mediante un gesto, Lawnchair requiere permiso de accesibilidad. \n\nLawnchair no observa ninguna acción del usuario, aunque el privilegio de hacerlo es necesario para todos los servicios de accesibilidad. Lawnchair descarta cualquier evento enviado por el sistema. \n\nPara bloquear el teléfono, o para abrir recientes, Lawnchair utiliza el servicio de accesibilidad performGlobalAction. - %s & %s + %1$s & %2$s Ajustes General - Colores, paquetes de iconos, punto de notificaciones - Pantalla principal - Feed, cuadrículas, iconos + Colores, paquetes de iconos y puntos de notificaciones + Pantalla de inicio + Proveedores de contenido, cuadrículas e iconos Dock - Barra de búsqueda, número de iconos + Barra de búsqueda y número de iconos Cajón de aplicaciones - Apps Ocultas, número de columnas, iconos - Búsqueda en el Cajón + Aplicaciones ocultas, número de columnas e iconos + Búsqueda en el cajón Sugerencias de la web, búsqueda global Carpetas - Número de filas y de columnas + Número de filas y columnas Gestos - Toques y deslizamientos + Toques y gestos de los dedos Recientes - Botón \"borrar todo\", radio de la esquina + Botón de «borrar todo» y curvatura Acerca de Información de la aplicación Reiniciar Lawnchair @@ -103,28 +103,28 @@ Tipografía personalizada Algunos textos permanecen sin cambios - Personalizar el calendario del \"un vistazo\" - Permitir mostrar fechas en sistemas de calendario no gregorianos + Personalizar calendario en «un vistazo» + Permite que se muestren fechas de calendarios no gregorianos Incrementar el tamaño máximo de la cuadrícula Aumenta el tamaño máximo de la cuadrícula de pantalla de inicio de 10 x 10 a 20 x 20 Recargar siempre los iconos Evitar el uso de iconos en caché de paquetes de iconos Bloqueo/desbloqueo - Evitar que la aplicación seleccionada cierre al presionar \"Borrar todo\" + Evita que la aplicación seleccionada se cierre al presionar «Borrar todo» - Para acceder a atajos y características adicionales, establezca Lawnchair como su lanzador predeterminado - Puntos de Notificación + Para acceder a atajos y más cosas pon a Lawnchair como tu lanzador de aplicaciones predeterminado + Puntos de notificación Mostrar el contador de notificaciones Color del contador de notificaciones Color del punto de notificación - Advertencia: Los puntos de notificación y los contadores de colores no tienen el suficiente contraste requerido - Advertencia: Los puntos de notificación y los contadores de colores no tienen el suficiente contraste entre sí + Cuidado: Los colores de los puntos de notificación y contadores no tienen suficiente contraste para ser legibles + Cuidado: Puede que los colores de los puntos de notificación y contadores no se lean del todo bien al ser tan parecidos Se necesita acceso a las notificaciones - Para ver los puntos de notificación, conceda los permisos para enviar notificaciones + Para ver los puntos de notificación concede los permisos para enviar notificaciones %1$s - Estilo de icono - Forma del icono - Tamaño de iconos + Estilo de los iconos + Forma de los iconos + Tamaño de los iconos Mostrar etiquetas Tamaño de la etiqueta Usar varias líneas Iconos transparentes del tema Usar fondo transparente en iconos temáticos - Iconos adaptativos + Iconos adaptables Para todos los iconos que no se adapten - Mostrar sombra detrás de los iconos + Mostrar sombra tras los iconos Luminosidad del fondo - Usar 100% de luz de fondo para blancos + Usar tono con el brillo al 100% para sustituir el color blanco Restablecer los iconos personalizados - Todos los iconos personalizados se restablecerán. ¿Desea continuar? + Todos los iconos personalizados se restablecerán, ¿seguro que quieres continuar? Iconos Restablecer a lo predeterminado @@ -155,24 +155,24 @@ Elegir icono desde No se pudieron cargar más iconos - Sistema + Del sistema Circular - Cilindro + Cilíndrica Diamante - Huevo + Ovalada iOS - Octágono - Hexágono + Octagonal + Hexagonal One UI - Cuadrado redondo - Cuadrado afilado + Cuadrado redondeado + Cuadrada Cuadrado Círculo Cuadrado Lágrima - Forma de icono personalizada - Crear forma de ícono personalizada - Editar forma de icono personalizada + Forma de icono propia + Crear forma de icono propia + Editar forma de icono propia Forma de esquina Redondo Suavizado @@ -183,21 +183,21 @@ Abajo a la derecha Exportar al portapapeles Importar desde el portapapeles - El portapapeles no contiene una forma de icono válida + El portapapeles no contiene ninguna forma de icono conocida Paquete de iconos Fuente de iconos temáticos Iconos del sistema - Iconos Temáticos - Apagado + Iconos temáticos + Desactivados Pantalla principal - Pantalla de Inicio & Cajón de aplicaciones - No hay packs de iconos compatibles + Pantalla de inicio y cajón de aplicaciones + No hay ningún paquete de iconos compatible - Añadir fuentes - Las fuentes OTF y TTF son compatibles - Fuente no encontrada - Fuente (Experimental) + Añadir tipografías + Solo se permiten tipografías OTF y TTF + No se ha encontrado la tipografía + Tipografía (experimental) General Encabezados Encabezados (mediano) @@ -205,7 +205,7 @@ Cuerpo (mediano) Cursiva Delgada - Luz adicional + Extra fino Claro Regular Media @@ -222,7 +222,7 @@ Tema Claro Oscuro - Sistema + Del sistema Coincidir con el fondo de pantalla Estilo de color @@ -230,10 +230,10 @@ Mezcla de tonalidades Vibrante Expresivo - Arcoiris + Arcoíris Ensalada de frutas Contenido - Monocromático + Monocromo Colores Color de acento @@ -271,7 +271,7 @@ Fecha Hora Formato de hora - Predeterminado del Sistema + Predeterminado del sistema Formato de 12 horas Formato de 24 horas @@ -287,9 +287,9 @@ Para usar %1$s, activa los puntos de notificación. Mostrar en la pantalla de inicio - De un Vistazo puede ser agregado a la pantalla de inicio colocando el widget \"Lawnchair\" + Puedes añadir «de un vistazo» a la pantalla de inicio colocando el widget llamado «Lawnchair» - Mostrar el Widget \"De Un Vistazo\" + Proveedor de contenido para «de un vistazo» Google Búsqueda de Google @@ -306,9 +306,9 @@ Producto Diseño y desarrollo Desarrollo - Rapidez de Mantenimiento + Mantenimiento de QuickSwitch Opciones de desarrollador - Soporte & Relaciones Públicas + Ayuda y relaciones públicas Reconocimientos Traducir Donar @@ -340,30 +340,32 @@ Botón de atrás No hacer nada Modo reposo + Abrir Recientes Abrir panel de notificaciones - Abrir app + Abrir aplicación Abrir %1$s Abrir cajón de aplicaciones Abrir buscador de aplicaciones Abrir búsqueda - Elegir app - Permisos de administrador requeridos + Elegir aplicación + Se necesitan permisos de administrador Para usar el doble toque para apagar la pantalla, establece Lawnchair como una app de administrador de dispositivos. Pulsa en \"Abrir Configuración\", luego en \"Activar esta aplicación de administrador de dispositivos.\" Se desactivará el doble toque para dormir. - Activar el servicio de accesibilidad - Para usar el doble toque para apagar la pantalla, activa el servicio de accesibilidad de Lawnchair. Toca en \"Abrir Configuración\", luego selecciona \"Lawnchair\" y activa \"Usar Lawnchair\". - Abrir configuración + Activar el servicio de accesibilidad + Para utilizar el doble toque para apagar pantalla, Active el servicio de accesibilidad para Lawnchair. Presione \"abrir ajustes\", Seleccione \"Lawnchair\" y active \"Usar Lawnchair\". \n\nLawnchair utiliza el método de Accesibilidad para realizar esta acción. Este es un permiso sensible que permite supervisar otras apps. Sin embargo, Lawnchair no está configurada para esa funcionalidad y no recibe eventos. + Abrir configuración + Para utilizar el doble toque para apagar pantalla, Active el servicio de accesibilidad para Lawnchair. Presione \"abrir ajustes\", Seleccione \"Lawnchair\" y active \"Usar Lawnchair\". \n\nLawnchair utiliza el método de Accesibilidad para realizar esta acción. Este es un permiso sensible que permite supervisar otras apps. Sin embargo, Lawnchair no está configurada para esa funcionalidad y no recibe eventos. - Reportar error de Lawnchair + Informar de un error de Lawnchair %1$s ha dejado de funcionar - Cargar registro de error - Error al subir + Subir registro de fallos + Hubo un error al subir el archivo Subiendo… - Reportes de errores + Informes de errores Estado de subida %d nuevos informes Varios informes nuevos @@ -373,25 +375,25 @@ --> - Rotación de Pantalla de Inicio - Permitir rotación de la pantalla de inicio cuando se gira el dispositivo + Rotación de la pantalla de Inicio + Permitir que la pantalla de inicio gire al hacerlo el dispositivo Desenfocar fondo de pantalla (experimental) Intensidad del desenfoque - Umbral de factor + Cantidad de desenfoque Añadir nuevas aplicaciones a la pantalla de inicio - Mostrar Feed - No hay apps de feed instaladas + Mostrar canal de contenido + No hay ninguna aplicación proveedora de contenido instalada Feed - Proveedor del feed + Proveedor de contenido Desplazar fondo Efecto de profundidad del fondo de pantalla - Acerca y aleja el fondo de pantalla al cambiar entre áreas del launcher - Sombra superior - Cuadrícula de Pantalla de Inicio + Acerca y aleja el fondo de pantalla al cambiar entre áreas del lanzador + Sombra en el borde superior + Cuadrícula de la pantalla de inicio Bloquear pantalla de inicio Desbloquear pantalla de inicio La pantalla de inicio está bloqueada - Evita cambios en la disposición de la pantalla de inicio + Evita cambiar sin querer la disposición de la pantalla de inicio Mostrar paginación de puntos Usar puntos en vez de líneas para mostrar el número de página Usar el nuevo estilo del menú emergente @@ -402,29 +404,29 @@ Mostrar el botón de edición de la pantalla de inicio Barra de estado Mostrar la barra de estado - Barra de Estado Oscura + Barra de estado oscura Color del texto Claro Oscuro Esquinas redondeadas Permitir superposición - Forzar redimensionamiento del Widget - Permite redimensionar los widgets que están limitados a un tamaño específico + Forzar dimensiones del widget + Permite redimensionar libremente los widgets que estén limitados a ciertos tamaños Quitar restricciones de tamaño - Remueve las restricciones de tamaño mínimo y máximo de los widgets + Ignora as restricciones de tamaño mínimo y máximo de los widgets Mostrar Dock - Barra de Búsqueda + Barra de búsqueda Widget de barra de búsqueda Deshabilitado Barra de búsqueda de Google Opacidad del fondo - Ancho del contorno + Anchura del contorno Color del contorno Radio de esquina Aplicar acento de color - Proveedor de Búsqueda - Dock iconos + Proveedor de búsqueda + Iconos del Dock Relleno inferior Búsqueda de Aplicaciones @@ -450,7 +452,7 @@ Ocultar del cajón de aplicaciones Apps ocultas (%1$d) - %1$d aplicacion + %1$d aplicación %1$d aplicaciones @@ -490,7 +492,7 @@ Ajustes del dispositivo Buscar más aplicaciones Buscar en %1$s - No hay tienda de aplicaciones ni navegador instalado + No hay ninguna tienda de aplicaciones ni navegador instalado Limpiar historial de búsqueda Limpiar cuadro de búsqueda diff --git a/lawnchair/res/values-et-rEE/strings.xml b/lawnchair/res/values-et-rEE/strings.xml index 650424fd920..1c6ba31648a 100644 --- a/lawnchair/res/values-et-rEE/strings.xml +++ b/lawnchair/res/values-et-rEE/strings.xml @@ -71,9 +71,9 @@ What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s و %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Informations à afficher - Pour pouvoir verrouiller votre téléphone en un seul geste, Lawnchair a besoin des droits d\'accessibilité.\n\nLawnchair n\'observe aucune action utilisateur, mais ce privilège est accordé à tous les services d\'accessibilité. Lawnchair rejette tout événement envoyé par le système.\n\nAfin de verrouiller votre téléphone, Lawnchair utilise le service d\'accessibilité performGlobalAction. + Pour pouvoir verrouiller votre téléphone et ouvrir Récents en un seul geste, Lawnchair a besoin des droits d\'accessibilité.\n\nLawnchair n\'observe aucune action utilisateur, mais ce privilège est accordé à tous les services d\'accessibilité. Lawnchair rejette tout événement envoyé par le système.\n\nAfin de verrouiller votre téléphone ou ouvrir Récents, Lawnchair utilise le service d\'accessibilité performGlobalAction. %1$d x %2$d - %s et %s + %1$s et %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Előnézet - Létrehoz + Létrehozás Biztonsági mentés Visszaállítás Törlés Visszaállítás Feloldás Lezárás - Alkalmaz + Alkalmazás Testreszabás Mindig Soha @@ -64,16 +64,16 @@ Elrendezés Háttérkép - Háttér átlátszatlansága + Háttér átlátszósága Vágólapra másolva Elem eltávolítva Mi jelenjen meg - A kézmozdulattal való telefonlezáráshoz a Lawnchairnek akadálymentesítési engedélyre van szüksége\n\nA Lawnchair nem figyel semmilyen felhasználói műveletet, az ehhez szükséges jogosultság minden akadálymentesítési szolgáltatáshoz szükséges. A Lawnchair figyelmen kívül hagyja az összes, rendszer által küldött eseményt.\n\nA telefon zárolásához a Lawnchair a „performGlobalAction” akadálymentesítési szolgáltatást használja. + A telefon zárolásához kézmozdulat végrehajtása közben, illetve az Előzmények gesztussal történő megnyitásához a Lawnchair kisegítő hozzáférést igényel.\n\nA Lawnchair nem figyel semmilyen felhasználói műveletet, bár az ehhez szükséges jogosultság minden kisegítő lehetőséghez szükséges. A Lawnchair nem rögzít rendszer által küldött eseményeket.\n\nA telefon zárolásához vagy az Előzmények megnyitásához a Lawnchair a performGlobalAction akadálymentesítési szolgáltatást használja. %1$d × %2$d - %s és %s + %1$s és %2$s Yang ditampilkan - Untuk mengunci ponsel Anda saat melakukan gerakan, Lawnchair memerlukan akses aksesibilitas.\n\nLawnchair tidak mengawasi tindakan pengguna apa pun, meskipun hak istimewa untuk melakukannya diperlukan untuk semua layanan aksesibilitas. Lawnchair membuang acara apa pun yang dikirim oleh sistem.\n\nUntuk mengunci ponsel Anda, Lawnchair menggunakan layanan aksesibilitas performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s & %s + %1$s & %2$s - Maximum number of targets - Open Smartspacer settings - Smartspacer settings + Jumlah target maksimum + Buka pengaturan Smartspacer + Pengaturan Smartspacer Ketuk untuk menyiapkan - To use %1$s, turn on Notification Dots. + Untuk gunakan %1$s, nyalakan Titik Notifikasi. Tampilkan di layar beranda Sekilas dapat ditambahkan secara manual ke layar beranda dengan menaruh widget Lawnchair @@ -310,7 +310,7 @@ Bantuan & Relasi Publik Ucapan Terima Kasih Terjemahkan - Donate + Donasi - Maximum number of apps - Maximum number of people + Jumlah maksimal aplikasi + Jumlah maksimal orang Maximum number of files Maximum number of settings Maximum items for search history diff --git a/lawnchair/res/values-it-rIT/strings.xml b/lawnchair/res/values-it-rIT/strings.xml index 20f78305f37..c5a0e46cec6 100644 --- a/lawnchair/res/values-it-rIT/strings.xml +++ b/lawnchair/res/values-it-rIT/strings.xml @@ -71,9 +71,9 @@ Cosa mostrare - Per bloccare il telefono quando si esegue un gesto, Lawnchair richiede l\'accesso all\'accessibilità.\n\nLawnchair non osserva alcuna azione dell\'utente, anche se il privilegio di farlo è richiesto per tutti i servizi di accessibilità. Lawnchair scarta qualsiasi evento inviato dal sistema.\n\nPer bloccare il telefono, Lawnchair utilizza il servizio di accessibilità performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s ו%s + %1$s & %2$s 表示する項目 - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s & %s + %1$s & %2$s რა ვავენო - თქვენი ტელეფონის დაბლოკვის ჟესტისთვის, Lawnchair საჭიროებს Accessibility წვდომას.\n\nLawnchair არ უთვალთვალებს მომხმარებლის ნებისმიერ მოქმედებას, თუმცა ამის პრივილეგია საჭიროა ყველა ხელმისაწვდომი სერვისისთვის. Lawnchair უგულებელყოფს სისტემის მიერ გაგზავნილ ნებისმიერ მოვლენას.\n\nთქვენი ტელეფონის დაბლოკვის მიზნით, Lawnchair იყენებს performGlobalAction Accessibility სერვისს. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s 표시할 항목 - 제스처를 수행할 때 휴대폰을 잠그려면 접근성 액세스 권한이 필요합니다.\n\nLawnchair는 모든 접근성 서비스를 위해 필요한 권한이지만 사용자 동작을 감시하지 않습니다. Lawnchair는 시스템에서 보낸 모든 이벤트를 삭제합니다.\n\nLawnchair는 휴대전화를 잠그기 위해 performGlobalAction 접근성 서비스를 사용합니다. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s 탭하여 설정하기 - To use %1$s, turn on Notification Dots. + %1$s를 사용하려면 알림 점을 활성화하세요. 홈 화면에 표시 한눈에 보기는 Lawnchair 위젯을 배치하여 수동으로 홈 화면에 추가할 수 있습니다 @@ -339,6 +339,7 @@ 뒤로가기 버튼 아무것도 안하기 절전 + Open Recents 알림 패널 열기 앱 열기 %1$s 열기 @@ -349,9 +350,10 @@ 관리자 권한이 필요합니다 두 번 눌러 화면 끄기 기능을 사용하려면, Lawnchair 앱을 기기 관리자 앱으로 할당 받아야 합니다. \"설정 열기\"를 누른 후, \"이 기기 관리자 앱 활성화\"를 누르세요. 두 번 눌러 화면 끄기 기능이 비활성화 되었습니다. - 접근성 서비스가 활성화되어야합니다 - 두 번 눌러 화면 끄기를 사용하려면, 접근성 설정에서 Lawnchair를 활성화 해야 합니다. \"설정 열기\"를 눌러 \"Lawnchair\"를 활성화 해주세요. - 설정 열기 + 접근성 서비스가 활성화되어야합니다 + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + 설정 열기 + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. Ką rodyti - Norint užrakinti telefoną gestu, \"Lawnchair\" reikia suteikti leidimą prieinamumo nustatymams.\n\n\"Lawnchair\" nestebi jūsų veiksmų, tačiau toks leidimas reikalingas visoms prieinamumo paslaugoms. \"Lawnchair\" atmeta bet kokį sistemos siunčiamą įvykį.\n\nTelefono užrakinimui \"Lawnchair\" naudoja prieinamumo paslaugą \"performGlobalAction\". + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Weergeven - Om je telefoon te vergrendelen bij het uitvoeren van een gebaar, heeft Lawnchair toegang tot toegankelijkheid nodig.\n\nLawnchair kijkt niet naar gebruikersacties, hoewel het voorrecht om dit te doen vereist is voor alle toegankelijkheidsdiensten. Lawnchair negeert elke gebeurtenis die door het systeem wordt gemeld.\n\nOm je telefoon te vergrendelen, gebruikt Lawnchair de performGlobalAction Accessibility service. + Om je telefoon te vergrendelen tijdens het uitvoeren van een gebaar en om Recente apps via een gebaar te openen, heeft Lawnchair toegankelijkheidsrechten nodig.\n\nLawnchair kijkt niet naar gebruikersacties, hoewel het recht om dit te doen vereist is voor alle toegankelijkheidsservices. Lawnchair verwijdert elke gebeurtenis die door het systeem wordt verzonden.\n\nOm je telefoon te kunnen vergrendelen of Recente apps te openen, maakt Lawnchair gebruik van de toegankelijkheidsservice performGlobalAction. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Co wyświetlić - Aby zablokować telefon podczas wykonywania gestu, Lawnchair wymaga dostępu do aplikacji.\n\nLawnchair nie obserwuje żadnych działań użytkownika, chociaż uprawnienie do tego jest wymagane dla wszystkich usług dostępności. Lawnchair odrzuca każde zdarzenie wysłane przez system.\n\nAby zablokować telefon, Lawnchair korzysta z usługi ułatwienia dostępu performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s i %s + %1$s & %2$s - Aby uzyskać dostęp do skrótów i dodatkowych funkcji, ustaw Lawnchair jako domyślny ekran domowy + Aby uzyskać dostęp do skrótów i dodatkowych funkcji, ustaw Lawnchair jako domyślny ekran główny Kropki powiadomień Pokazuj licznik powiadomień Kolor kropki powiadomień @@ -189,7 +189,7 @@ Ikony systemowe Ikony z motywu Wyłączono - Ekran domowy + Ekran główny Ekran główny i szuflada aplikacji Brak obsługiwanych zestawów ikon @@ -204,7 +204,7 @@ Tekst podstawowy (średni) Kursywa Wąska - Bardzo cienka + Bardzo lekka Jasny Regularna Średnia @@ -285,7 +285,7 @@ Dotknij, aby skonfigurować Aby używać %1$s, włącz kropki powiadomień. - Pokazuj na ekranie domowym + Pokazuj na ekranie głównym Szybki Podgląd może zostać dodany ręcznie poprzez umieszczenie widżetu Lawnchair na ekranie głównym Dostawca Szybkiego Podglądu @@ -339,6 +339,7 @@ Przycisk wstecz Nic nie rób Uśpij + Open Recents Otwórz panel powiadomień Otwórz aplikację Otwórz %1$s @@ -347,11 +348,12 @@ Otwórz wyszukiwarkę Wybierz aplikację Wymagane uprawnienia administratora - Aby użyć opcji usypiania przy podwójnym dotyku, ustaw Lawnchair jako aplikację administrującą urządzeniem. Naciśnij \"Otwórz ustawienia\", następnie naciśnij \"Aktywuj tę aplikację do administrowania urządzeniem.\" + Aby użyć opcji usypiania przy podwójnym naciśnięciu, ustaw Lawnchair jako aplikację administrującą urządzeniem. Naciśnij \"Otwórz ustawienia\", następnie naciśnij \"Aktywuj tę aplikację do administrowania urządzeniem.\" Opcja \"Dotknij dwa razy aby uśpić\" zostanie wyłączona. - Włącz usługę dostępności - Aby użyć opcji usypiania przy podwójnym naciśnięciu, włącz usługę dostępności Lawnchair. Naciśnij \"Otwórz ustawienia\", następnie wybierz \"Lawnchair\" i włącz \"Użyj usługi Lawnchair.\" - Otwórz ustawienia + Włącz usługę dostępności + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Otwórz ustawienia + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. O que mostrar - Para bloquear seu celular ao executar um gesto, O Lawnchair precisa do acesso à acessibilidade.\n\nO Lawnchair não observa qualquer ação do usuário, porém esta permissão é necessária para todos os serviços de acessibilidade. O Lawnchair descarta qualquer evento enviado pelo sistema.\n\nPara bloquear seu dispositivo, o Lawnchair usa o serviço de acessibilidade \"performGlobalAction\". + %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Что показывать - Чтобы заблокировать телефон с помощью жеста, Lawnchair требуется доступ к специальным возможностям.\n\nLawnchair не отслеживает никакие действия пользователя, хотя это требуется для всех служб специальных возможностей. Lawnchair отбрасывает любые события, отправленные системой.\n\nЧтобы заблокировать ваш телефон, Lawnchair использует службу специальных возможностей PerformGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s & %s + %1$s & %2$s Čo ukázať - Na uzamknutie telefónu pri vykonávaní gesta vyžaduje aplikácia Lawnchair prístup k funkciám prístupnosti.\n\nLawnchair nesleduje žiadnu činnosť používateľa, hoci oprávnenie na to sa vyžaduje pre všetky služby prístupnosti. Služba Lawnchair zahodí akúkoľvek udalosť odoslanú systémom.\n\nNa uzamknutie telefónu používa služba sprístupnenia performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s a %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s&%s + %1$s & %2$s Информације за приказ - Да бисте закључали уређај покретом потребно је да доделите Lawnchair-у приступ услузи приступачности.\n\nLawnchair не надгледа корисничке радње, али је привилегија за то потребна свим услугама приступачности. Lawnchair одбацује све догађаје које пошаље систем.\n\nКако би закључао уређај, Lawnchair користи услугу приступачности performGlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s и %s + %1$s & %2$s - Förhandsgranskning + Förhandsgranska Skapa Säkerhetskopiera Återställ @@ -64,16 +64,16 @@ Layout Bakgrundsbild - Bakgrundsopacitet + Bakgrundens opacitet Kopierad till urklipp Objekt borttaget Vad ska visas - För att kunna låsa din telefon när en gest görs kräver Lawnchair tillgänglighetsåtkomst.\n\nLawnchair övervakar inte några användaraktiviteter, men behörigheten att göra detta krävs för alla tillgänglighetstjänster. Lawnchair förkastar alla händelser som skickas av systemet.\n\nFör att kunna låsa din telefon använder Lawnchair tillgänglighetstjänsten performGlobalAction. + För att kunna låsa din telefon när en gest görs och för att kunna öppna Senaste med en gest kräver Lawnchair tillgänglighetsåtkomst.\n\nLawnchair övervakar inte några användaraktiviteter, men behörigheten att kunna göra detta krävs för alla tillgänglighetstjänster. Lawnchair förkastar alla händelser som skickas av systemet.\n\nFör att kunna låsa din telefon och för att kunna öppna Senaste använder Lawnchair tillgänglighetstjänsten performGlobalAction. %1$d x %2$d - %s & %s + %1$s & %2$s - Maximum number of targets - Open Smartspacer settings - Smartspacer settings + Maximalt antal mål + Öppna Smartspacer-inställningar + Smartspacer-inställningar Tryck för att konfigurera - To use %1$s, turn on Notification Dots. + För att använda %1$s, aktivera aviseringsprickar. Visa på startskärmen Snabböversikt kan läggas till manuellt på startskärmen genom att placera ut Lawnchair-widgeten @@ -339,6 +339,7 @@ Bakåtknapp Gör ingenting Vila + Öppna Senaste Öppna aviseringspanel Öppna app Öppna %1$s @@ -347,11 +348,12 @@ Öppna sökning Välj app Adminbehörigheter krävs - För att använda dubbeltryck för att vila, ange Lawnchair som en enhetsadminapp. Tryck på \"Öppna inställningar\", tryck sedan på \"Aktivera denna enhetsadminapp\". + För att använda Dubbeltryck för att vila, ange Lawnchair som en enhetsadminapp. Tryck på \"Öppna inställningar\", tryck sedan på \"Aktivera denna enhetsadminapp\". Dubbeltryck för att vila kommer att inaktiveras. - Aktivera tillgänglighetstjänst - För att använda dubbeltryck för att vila, aktivera Lawnchairs tillgänglighetstjänst. Tryck på \"Öppna inställningar\", välj \"Lawnchair\" och aktivera \"Använd Lawnchair\". - Öppna inställningar + Aktivera tillgänglighetstjänst + För att använda Dubbeltryck för att vila, aktivera Lawnchairs tillgänglighetstjänst. Tryck på \"Öppna inställningar\", välj \"Lawnchair\" och aktivera \"Använd Lawnchair\".\n\nLawnchair använder Tillgänglighets `performGlobalAction`-metod för att utföra denna åtgärd. Detta är en känslig behörighet som tillåter övervakning av andra appar. Lawnchair är dock inte konfigurerad för den funktionen och tar inte emot några händelser. + Öppna inställningar + För att använda Öppna Senaste, aktivera Lawnchairs tillgänglighetstjänst. Tryck på \"Öppna inställningar\", välj \"Lawnchair\" och aktivera \"Använd Lawnchair\".\n\nLawnchair använder Tillgänglighets `performGlobalAction`-metod för att utföra denna åtgärd. Detta är en känslig behörighet som tillåter övervakning av andra appar. Lawnchair är dock inte konfigurerad för den funktionen och tar inte emot några händelser. Rotation av startskärmen Tillåt rotation av startskärmen när enheten roteras - Blur wallpaper (experimental) + Gör bakgrundsbild oskarp (experimentell) Oskärpans intensitet Faktortröskel Lägg till nya appar på startskärmen @@ -453,9 +455,9 @@ %1$d appar - Icon preview background opacity - Mappbakgrundsopacitet - Ikonbakgrundsfärg + Ikonförtittsbakgrundens opacitet + Mappbakgrundens opacitet + Ikonbakgrundens färg Maximalt antal mappkolumner Maximalt antal mapprader @@ -463,7 +465,7 @@ Inkompatibel systemintegration Din enhet är konfigurerad för att ha systemgester (kända som Quickstep) tillhandahållna av %1$s, men denna version av %1$s är inte kompatibel med din Android-version. För att fortsätta att använda din enhet, vänligen avinstallera uppdateringar till %1$s eller inaktivera %1$s som systemgestsleverantör. Genomlysande bakgrund - Bakgrundsopacitet + Bakgrundens opacitet Snabbåtgärder Dela Lins @@ -537,6 +539,6 @@ Bevilja behörigheter Webbförslagsleverantör Visa webbförslagsleverantörens ikon i sökfältet - Match dock search bar actions - Clicking the dock search bar will now open the app drawer search UI + Matcha åtgärder i favoritfältets sökfält + Att klicka på favoritfältets sökfält kommer nu att öppna applådans sökgränssnitt diff --git a/lawnchair/res/values-sw-rKE/strings.xml b/lawnchair/res/values-sw-rKE/strings.xml index bfa8a4dd5e4..59c4f8b530e 100644 --- a/lawnchair/res/values-sw-rKE/strings.xml +++ b/lawnchair/res/values-sw-rKE/strings.xml @@ -71,9 +71,9 @@ What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s எதைக் காட்ட - சைகையைச் செய்யும்போது உங்கள் தொலைபேசியைப் பூட்ட, Lawnchair க்கு அணுகல்தன்மை அணுகல் தேவைப்படுகிறது.\n\nலான்ச்சர் எந்தவொரு பயனர் செயலையும் பார்ப்பதில்லை, இருப்பினும் அனைத்து அணுகல் சேவைகளுக்கும் அவ்வாறு செய்வதற்கான சிறப்புரிமை தேவைப்படுகிறது. கணினியால் அனுப்பப்பட்ட எந்த நிகழ்வையும் லான்ச்சர் நிராகரிக்கிறது.\n\nஉங்கள் தொலைபேசியைப் பூட்டுவதற்கு, லான்ச்சர் performGlobalAction அணுகல் சேவையைப் பயன்படுத்துகிறது. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s แสดงตัวอย่าง สร้างการสำรองข้อมูล - Backup + สำรอง การคืนค่า ลบ รีเซ็ต @@ -34,7 +34,7 @@ Always Never คลิปบอร์ด - Copy link + คัดลอกลิ้งค์ คัดลอก วาง กำลังโหลด… @@ -71,9 +71,9 @@ What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Ne gösterilsin - Telefonunuzu kilitlemek için gesture kullanılırken, Lawnchair erişilebilirlik ayarlarınıza ihtiyaç duyar.\n\nLawnchair, erişilebilirlik servisleri izin verse bile kullanıcı hareketlerini izlemez. Lawnchair sistem tarafından gönderilen herhangi bir event\'i izlemez.\n\nLawnchair, telefonunuzu kilitlemek için performGlobalAction Accessibility servisini kullanır. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$dx%2$d - %s & %s + %1$s & %2$s Що показати - Для блокування телефону під час виконання жесту, Lawnchair потрібен доступ до дозволу.\n\nLawnchair не відстежує будь-які дії користувача, хоча привілей для цього є необхідними для всіх спеціальних служб підтримки. Lawnchair кидає будь-яку подію, яку надіслала система.\n\nщоб заблокувати ваш телефон, Lawnchair використовує службу додаткових спеціальних можливостей GlobalAction. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d × %2$d - %s & %s + %1$s & %2$s What to show - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s - Preview + پیش نظارہ تخلیق - Backup - Restore - Delete - Reset - Unlock - Lock + بیک اپ + بحال کریں + حزف کریں + ریسیٹ کریں + ان لاک + لاک درخواست دیں - Customize - Always - Never - Clipboard - Copy link + حسبِ ضرورت بنائیں + ہمیشہ + کبھی نہیں + کلپ بورڈ + لنک کاپی کریں کاپی کریں پیسٹ - Loading… - Managed by Lawnchair + لوڈ کر رہا ہے… + Lawnchair کی طرف سے انتظام کردہ ترجیحات - Home settings - System settings - Change settings + ہوم سیٹنگز + سسٹم کی سیٹنگز + سیٹنگز چینج کریں - Dynamic - Presets - Custom - Default - System + متغیر + پری سیٹس + حسبِ ضرورت + ڈیفالٹ + سسٹم - Columns - Rows - Label + کالمز + قطاریں + لیبل آئکنس گرڈ - Layout + لے آوٹ - Wallpaper - Background opacity + وال پیپر + پس منظر کا دھندلاپن - Copied to clipboard - Item removed + کلپ بورڈ پر کاپی ہو گیا + آئٹم ہٹا دیا گیا - What to show + کیا دکھانا ہے - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + اشارہ کرتے وقت اپنے فون کو لاک کرنے کے لیے، اور اشاروں کے ذریعے حالیہ کھولنے کے لیے، Lawnchair کو قابل رسائی رسائی درکار ہوتی ہے۔\n\nLawnchair صارف کی کسی کارروائی کو نہیں دیکھتا، حالانکہ ایسا کرنے کا استحقاق تمام قابل رسائی خدمات کے لیے درکار ہے۔ Lawnchair سسٹم کی طرف سے بھیجے گئے کسی بھی ایونٹ کو رد کر دیتا ہے۔\n\nآپ کے فون کو لاک کرنے، یا Recents کھولنے کے لیے، Lawnchair پرفارم گلوبل ایکشن ایکسیسبیلٹی سروس استعمال کرتا ہے۔. %1$d x %2$d - %s & %s + %1$s & %2$s ترتیبات عام - Colors, icon packs, notification dots - Home screen - Feed, grid, icons + رنگ، آئیکن پیک، نوٹیفکیشن ڈاٹس + ہوم اسکرین + فیڈ، گرڈ، icons ڈاک - Search bar, icon count - App drawer - Hidden apps, column count, icons - Drawer search - Web suggestions, global search + سرچ بار، آئکن کی گنتی + ایپ کا ڈراز + چھپے ہوئے ایپس، کالم کی گنتی، آئکنس + ڈراور سرچ کریں + ویب کی تجاویز، گلوبل سرچ فولڈرز - Row and column count + قطار اور کالم کی گنتی اشارے - Taps and swipes + ٹیپ اور سوائپس حالیہ - Clear All button, corner radius + تمام بٹن ہٹائیں، کونے کا رداس کے بارے میں - App info + ایپ کی معلومات لان چیئر کو دوبارہ شروع کریں - Experimental features + تجرباتی فیچرز - Font customization - Some text remains unchanged - At a Glance calendar customization - Allow showing date in non-Gregorian calendar systems - Increase maximum grid size limit - Increase maximum allowed home screen grid size from 10 x 10 to 20 x 20 - Always reload icons + طرز تحریر + کچھ طرز تحریر تبدیل نہیں کیے جائیں گے + حسبِ ضرورت تبدیلیاں + غیر عیسوی کیلنڈر سسٹم میں تاریخ دکھانے کی اجازت دیں + زیادہ سے زیادہ گرڈ سائز کی حد میں اضافہ کریں + زیادہ سے زیادہ اجازت شدہ ہوم اسکرین گرڈ سائز کو 10 x 10 سے 20 x 20 تک بڑھا دیں + آیکون ہمیشہ دوبارہ لوڈ کریں۔ آئیکن پیک سے کیشڈ آئیکنز استعمال کرنے سے گریز کریں۔ - Lock/unlock - Prevent selected app from closing when pressing \"Clear all\" + لاک/انلاک + \"سب کو صاف کریں\" دبانے پر منتخب ایپ کو بند ہونے سے روکیں - To access shortcuts and additional features, set Lawnchair as your default launcher - Notification dots - Show notification counter - Notification dot color - Notification counter color - Warning: Notification dot and counter colors don\'t have enough contrast with each other - Warning: Notification dot and counter colors might not always have enough contrast with each other - Notification access needed - To show Notification Dots, turn on app notifications for %1$s + شارٹ کٹس اور اضافی خصوصیات تک رسائی حاصل کریں، لانچر کو اپنے ڈیفالٹ لانچر کے طور پر سیٹ کریں۔ + نوٹیفیکیشن کے ڈاٹس + نوٹیفکیشن کاؤنٹر دکھائیں + نوٹیفیکیشن ڈاٹس کا رنگ + نوٹیفیکیشن کاؤنٹر کا رنگ + انتباہ: نوٹیفکیشن ڈاٹ اور کاؤنٹر رنگ ایک دوسرے کے ساتھ ناکافی مماثلت رکھتے ہیں۔ + انتباہ: نوٹیفکیشن ڈاٹ اور کاؤنٹر رنگ ایک دوسرے کے ساتھ ناکافی مماثلت رکھتے ہیں۔ + نوٹیفکیشن کی رسائی کی ضرورت ہے + نوٹیفیکیشن ڈاٹس دکھائیں، ایپ کی اطلاعات کو آن کریں %1$s - Icon style - Icon shape - Icon size - Show labels - Label size - Use multiple lines + آئکن سٹائل + آئکن شکل + آئکن سائز + لیبل دکھائیں + لیبل سائز + متعدد لائنوں کا استعمال کریں - Transparent themed icons - Use transparent background on themed icons - Auto-adaptive icons - For all non-adaptive icons - Show shadow behind icons - Background lightness - Use 100% background lightness for white - Reset custom icons - All custom icons will be reset. Do you want to continue? + شفاف تھیم والے آئیکن + تھیم والے آیکنز پر شفاف پس منظر کا استعمال کریں + خودکار انکولی آئکنس + تمام غیر انکولی آئکنس کے لئے + آیکنز کے پیچھے سایہ دکھائیں۔ + پس منظر کی روشنی + سفید کے لئے ٪100 پس منظر کی روشنی استعمال کریں + کسٹم آئکنز کو دی سیٹ کریں + تمام کسٹم آیکنز دوبارہ ترتیب دی جائیں گی۔ کیا آپ جاری رکھنا چاہتے ہیں؟ آئکنس - Reset to default - Open external picker - Pick icon from - Couldn\'t load more icons + ڈیفالٹ پر ری سیٹ کریں + بیرونی چنندہ کھولیں + آئیکن چنیں + مزید آئیکنز لوڈ نہیں ہو سکے - System - Circle - Cylinder - Diamond - Egg + سسٹم + دائرہ + سلنڈر + ہیرہ + انڈہ iOS آکٹاگون - Hexagon + مسدس One UI - Rounded square - Sharp square - Square - Squircle - Teardrop + گول مربع + مربع + مربع + گلہری + ٹیر ڈراپ - Custom icon shape - Create custom icon shape - Edit custom icon shape - Corner shape - Round - Smooth - Cut - Top left - Top right - Bottom left - Bottom right - Export to clipboard - Import from clipboard - Clipboard doesn\'t contain a valid icon shape + حسب ضرورت آئیکن کی شکل + حسب ضرورت آئیکن کی شکل بنائیں + حسب ضرورت آئیکن کی شکل کو ایڈیٹ کریں + کونے کی شکل + گول + ہموار + کٹ + اوپر بائیں + اوپر دائیں + نیچے بائیں + نیچے دائیں + کلپ بورڈ پر ایکسپورٹ کریں + کلپ بورڈ سے امپورٹ کریں + کلپ بورڈ میں آئیکن کی درست شکل نہیں ہے - Icon pack - Themed icon source - System icons - Themed icons + آئکن پیک + تھیم آئیکن کا ماخذ + سسٹم آیکنز + تھیمڈ آیکنز آف - Home screen - Home screen & app drawer - No supported icon packs + ہوم اسکرین + ہوم اسکرین اور ایپ دراز + کوئی تعاون یافتہ آئیکن پیک نہیں ہے - Add fonts - OTF and TTF fonts are supported - Font not found + فونٹس شامل کریں + OTF اور TTF فونٹ سپورٹ ہوتے ہیں + فونٹ نہیں ملے Font (experimental) عام Headings @@ -339,6 +339,7 @@ Back button Do nothing Sleep + Open Recents Open notification panel Open app Open %1$s @@ -349,9 +350,10 @@ Admin permissions required To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" Double-Tap to Sleep will be turned off. - Turn on accessibility service - To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\" - Open settings + Turn on accessibility service + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Open settings + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. What to show - Imo-ishorani bajarayotganda telefoningizni qulflash uchun Lawnchair maxsus imkoniyatlarga kirishni talab qiladi.\n\nLawnchair hech qanday foydalanuvchi harakatini kuzatmaydi, lekin bu imtiyoz barcha maxsus imkoniyatlar xizmatlari uchun talab qilinadi. -Lawnchair tizim tomonidan yuborilgan har qanday hodisani bekor qiladi.\n\nTelefoningizni qulflash uchun Lawnchair Global Action Accessibility xizmatidan foydalanadi. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s Những gì để hiển thị - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s 选择要显示的项目 - 需要给予 Lawnchair 无障碍权限以使用手势锁屏。\n\nLawnchair 不会获取屏幕内容和用户操作,即使此权限允许这样做,Lawnchair 不接收任何输入。\n\nLawnchair 使用 performGlobalAction 服务来锁屏。 + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s What to show - Lawnchair 需要無障礙設定存取權來啟用手勢鎖定螢幕。\n\n由於權限所需,系統可能提示您授予畫面權限,但請放心,Lawnchair 不會監看、存取您的畫面。\n\nLawnchair 使用 performGlobalAction 無障礙服務來鎖定您的裝置。 + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. %1$d x %2$d - %s & %s + %1$s & %2$s @@ -107,7 +107,7 @@ 允許顯示非公曆的日期 Increase maximum grid size limit Increase maximum allowed home screen grid size from 10 x 10 to 20 x 20 - Always reload icons + 永遠重新載入圖示 避免使用圖示套件中已快取的圖示 Lock/unlock Prevent selected app from closing when pressing \"Clear all\" @@ -186,7 +186,7 @@ Icon pack Themed icon source - System icons + 系統圖示 Themed icons 關閉 Home screen @@ -339,6 +339,7 @@ Back button Do nothing 睡眠 + Open Recents Open notification panel Open app 開啟 %1$s @@ -349,9 +350,10 @@ Admin permissions required To use Double-Tap to Sleep, set Lawnchair as a device admin app. Tap \"Open settings\", then tap \"Activate this device admin app.\" 將停用「輕觸兩下來關閉螢幕」 - Turn on accessibility service - To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\" - Open settings + Turn on accessibility service + To use Double-Tap to Sleep, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. + Open settings + To use Open Recents, turn on the Lawnchair accessibility service. Tap \"Open settings\", select \"Lawnchair\" and turn on \"Use Lawnchair.\"\n\nLawnchair uses Accessibility\'s `performGlobalAction` method to perform this action. This is a sensitive permission that allows monitoring other apps. However, Lawnchair is not configured for that functionality and receives no events. - To lock your phone when performing a gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, Lawnchair uses the performGlobalAction Accessibility service. + To lock your phone when performing a gesture, and to open Recents via gesture, Lawnchair requires accessibility access.\n\nLawnchair doesn\'t watch any user action, though the privilege to do so is required for all accessibility services. Lawnchair discards any event sent by the system.\n\nIn order to lock your phone, or to open Recents, Lawnchair uses the performGlobalAction Accessibility service. "" %1$d%% %1$d x %2$d - %s & %s + %1$s & %2$s