diff --git a/app/src/main/java/com/sameerasw/essentials/viewmodels/MainViewModel.kt b/app/src/main/java/com/sameerasw/essentials/viewmodels/MainViewModel.kt
index 0110d3ff3..3430ae016 100644
--- a/app/src/main/java/com/sameerasw/essentials/viewmodels/MainViewModel.kt
+++ b/app/src/main/java/com/sameerasw/essentials/viewmodels/MainViewModel.kt
@@ -597,16 +597,26 @@ class MainViewModel : ViewModel() {
contentObserver
)
- context.contentResolver.registerContentObserver(
- Settings.Secure.getUriFor("doze_always_on"),
- false,
- contentObserver
- )
- context.contentResolver.registerContentObserver(
- Settings.Secure.getUriFor("sysui_qs_tiles"),
- false,
- contentObserver
- )
+ try {
+ context.contentResolver.registerContentObserver(
+ Settings.Secure.getUriFor("doze_always_on"),
+ false,
+ contentObserver
+ )
+ } catch (e: Exception) {
+ e.printStackTrace()
+ }
+
+ try {
+ context.contentResolver.registerContentObserver(
+ Settings.Secure.getUriFor("sysui_qs_tiles"),
+ false,
+ contentObserver
+ )
+ } catch (e: Exception) {
+ // This might fail on Android 14+ for some system keys
+ e.printStackTrace()
+ }
isPowerSaveModeEnabled.value = DeviceUtils.isPowerSaveMode(context)
updateBlurState(context)
@@ -2516,7 +2526,14 @@ class MainViewModel : ViewModel() {
}
private fun updateAddedQSTiles(context: Context) {
- val tilesString = Settings.Secure.getString(context.contentResolver, "sysui_qs_tiles") ?: ""
- addedQSTiles.value = tilesString.split(",").map { it.trim() }.filter { it.isNotBlank() }.toSet()
+ var tilesString = ""
+ try {
+ tilesString = Settings.Secure.getString(context.contentResolver, "sysui_qs_tiles") ?: ""
+ } catch (e: Exception) {
+ // sysui_qs_tiles is restricted on Android 14+ (API 34+) for apps targeting API 34+
+ e.printStackTrace()
+ }
+ addedQSTiles.value =
+ tilesString.split(",").map { it.trim() }.filter { it.isNotBlank() }.toSet()
}
}
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index d6e849b7a..e85070b82 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -12,7 +12,7 @@
Taschenlampenimpuls
Prüfe nach Vorabversionen
Könnte instabil sein
- Default tab
+ Standardseite
Sicherheit
Aktiviere App-Sperre
@@ -24,8 +24,8 @@
Schütze deine Apps mit biometrischer Authentifizierung. Gesperrte Apps erfordern beim Öffnen eine Authentifizierung und bleiben entsperrt, bis der Bildschirm ausgeschaltet wird.
Beachte bitte, dass dies keine zuverlässige Lösung darstellt, da es sich lediglich um eine Drittanbieteranwendung handelt. Für erhöhte Sicherheitsanforderungen sollten Sie das vertrauliche Profil oder ähnliche Funktionen in Betracht ziehen.
Noch ein Hinweis: Die biometrische Authentifizierungsaufforderung unterstützt ausschließlich sichere Methoden der Klasse STARK. Gesichtserkennungsmethoden der Klasse SCHWACH auf Geräten wie dem Pixel 7 können nur die sonstig verfügbaren STARK-Authentifizierungsmethoden wie Fingerabdruck oder PIN nutzen.
- Use usage access
- Instead of accessibility (Freeze, App Lock, Dynamic Night Light)
+ Nutze Nutzungsdaten
+ Statt des Barrierefreiheitsdienstes (Einfrieren, App-Sperre, Dynamisches Nachtlicht)
Aktiviere Tastenneubelegung
Use Shizuku
@@ -98,12 +98,12 @@
Starte Koffein sofort.
Zeitvorlagen
Wähle eine Dauer für die Schnelleinstellungskachel
- 5min
- 10min
- 30min
+ 5 min
+ 10 min
+ 30 min
Bitte-nicht-stören Zugriff
Benötigt, um zwischen den Modi „Ton“, „Vibrieren“ und „Stumm“ zu wechseln
- 1std
+ 1 Std.
∞
Startet in %1$ds…
%1$s verbleibend
@@ -116,15 +116,15 @@
App-Steuerung
Einfrieren
Auftauen
- Remove
- Create shortcut
- App info
- What is Freeze?
- App freezing disables the app\'s launch activity which removes it from the app list and updates. It will prevent the app from starting at all until it\'s unfrozen which saves resources but you will need to unfreeze from here or manually re-enable.
- DO NOT FREEZE COMMUNICATION APPS
- What is Suspend?
- Suspending an app used to pause the app activity and prevent background executions but with recent Android changes, it only pauses the notifications from appearing and that\'s pretty much it. But does allows you to unpause from the launcher app list as they will be still available as grayscale paused app icons.
- Should work the same as the native app pause/ focus mode features.
+ Entfernen
+ Verknüpfung erstellen
+ App-Info
+ Was ist Einfrieren?
+ Das Einfrieren einer App deaktiviert deren Startaktivität, wodurch sie aus der App-Liste entfernt und nicht mehr aktualisiert wird. Dadurch wird verhindert, dass die App überhaupt gestartet wird, bis sie wieder freigegeben wird. Dies spart Ressourcen, allerdings musst du sie von hier aus wieder freigeben oder manuell reaktivieren.
+ FRIERE KEINE KOMMUNIKATIONS-APPS EIN
+ Was ist Aussetzen?
+ Früher wurde durch das Aussetzen einer App deren Aktivität unterbrochen und eine Ausführung im Hintergrund verhindert. Aufgrund der jüngsten Änderungen bei Android werden jedoch lediglich die Benachrichtigungen dieser App unterdrückt – mehr nicht. Du kannst die App jedoch über die App-Liste des Startbildschirms wieder aktivieren, da sie dort weiterhin als graues Symbol angezeigt wird.
+ Das sollte genauso funktionieren wie die Pausen-/Fokusmodus-Funktion der nativen App.
Weitere Optionen
Friere alle Apps ein
Taue alle Apps auf
@@ -136,9 +136,9 @@
Einfrieren, beim Sperren
Verzögerung beim Einfrieren
Sofort
- 1min
- 5min
- 15min
+ 1 min
+ 5 min
+ 15 min
Manuell
Auto-Einfrieren
Friert ausgewählte Apps beim Sperren des Geräts ein. Wähle eine Verzögerung, um zu vermeiden, dass Apps eingefroren werden, wenn das Display kurz nach dem Ausschalten wieder entsperrt wird.
@@ -147,12 +147,12 @@
Aktive Apps nicht einfrieren
Nutzungsstatistiken
Benötigt, um zu erkennen, welche Apps derzeit im Vordergrund sind, um deren Einfrieren zu vermeiden
- Required to detect foreground apps for App Lock features when accessibility is not used.
+ Benötigt, um Vordergrund-Apps für die App-Sperre-Funktionen zu erkennen, wenn der Barrierefreiheitsdienst nicht genutzt wird.
Benötigt, um wiedergegebene Medien und aktive Benachrichtigungen zu erkennen, um deren Einfrieren zu vermeiden
- Freeze mode
- Freezing
- App suspension
- Can not switch mode while apps are frozen. Please unfreeze all and try again.
+ Einfrieren-Modus
+ Einfrieren
+ Aussetzen
+ Der Modus kann nicht gewechselt werden, solange Apps eingefroren sind. Bitte taue alle Apps auf und versuche es erneut.
Nur bei ausgeschaltetem Bildschirm anzeigen
Stille Benachrichtigungen überspringen
@@ -173,13 +173,13 @@
Indikator anpassen
Größe
Dauer
- Sweep
+ Wischen
Position
- Random shapes
- Stroke thickness
- Left
- Center
- Right
+ Zufällige Formen
+ Strichdicke
+ Links
+ Zentriert
+ Rechts
Animation
Impulszahl
Impulsdauer
@@ -192,7 +192,7 @@
Kein schwarzes Overlay
Hinzufügen
- Added
+ Hinzugefügt
Bereits hinzugefügt
Benötigt Android 13+
UI-Unschärfe
@@ -229,11 +229,11 @@
Aus
Benutzerdefiniertes privates DNS
Gängige DNS-Vorlagen
- Add DNS Preset
- Preset name
- Reset
- Delete preset
- Are you sure you want to reset all DNS presets to defaults? This will remove all your custom presets.
+ DNS-Voreinstellung hinzufügen
+ Name der Voreinstellung
+ Zurücksetzen
+ Voreinstellung löschen
+ Möchtest du wirklich alle DNS-Voreinstellungen auf die Standardwerte zurücksetzen? Dadurch werden alle benutzerdefinierten Voreinstellungen gelöscht.
Hostname des Anbieters
AdGuard DNS
dns.adguard.com
@@ -259,10 +259,10 @@
Diese Funktion ist nicht absolut sicher. Es kann Ausnahmefälle geben, in denen jemand dennoch mit der Kachel interagieren kann. \nBeachten Sie auch, dass Android immer einen erzwungenen Neustart zulässt und Pixel-Handys immer das Ausschalten des Geräts über den Sperrbildschirm zulassen.
Stelle sicher, dass du die Kachel für den Flugmodus aus den Schnelleinstellungen entfernst, da dies nicht verhindert werden kann, da kein Dialogfenster geöffnet wird.
Wenn diese Option aktiviert ist, werden die Schnelleinstellungen sofort geschlossen und das Gerät komplett gesperrt, sobald jemand versucht, mit Internetkacheln zu interagieren, während das Gerät gesperrt ist. \n\nDadurch wird auch die biometrische Entsperrung deaktiviert, um weiteren unbefugten Zugriff zu verhindern. Die Animationsskala wird während der Sperrung auf 0,1x reduziert, um die Interaktion noch weiter zu erschweren.
- Disable QS when locked
- Immediately close the Quick Settings panel if someone tries to expand it while the device is locked.
- Disable QS Locked
- Prevent expanding Quick Settings when device is locked
+ Schnelleinstellungen bei gesperrten Bildschirm deaktivieren
+ Schließt die Schnelleinstellungen sofort, wenn jemand versucht, sie zu öffnen, während das Gerät gesperrt ist.
+ Deaktiviere gesperrte Schnelleinstellungen
+ Verhindert, dass die Schnelleinstellungen angezeigt werden, wenn das Gerät gesperrt ist
Modi neu anordnen
Langes Drücken zum Umschalten
@@ -604,7 +604,7 @@
Suche
Stop
Suche
- Search frozen apps
+ Eingefrorene Apps suchen
Zurück
Zurück
@@ -631,17 +631,17 @@
Einstellungen
Lege einige Grundeinstellungen fest, um loszulegen.
App-Einstellungen
- Language
+ Sprache
Haptisches Feedback
Updates
Automatische Suche nach Updates
Beim Start der App nach Updates suchen
Alles bereit
Was gibt\'s neues?
- Welcome back to Essentials
- See what\'s new
- Couldn\'t load the release note
- View on web
+ Willkommen zurück zu Essentials
+ Entdecke die Neuheiten
+ Die Änderungshinweise konnten nicht geladen werden
+ Im Web anzeigen
Fertig
Vorschau
Hilfe-Leitfaden
@@ -649,41 +649,41 @@
Aktualisierung verfügbar
Sieh dir deine Hardware- und Software-Spezifikationen im Detail an. Diese Informationen werden von GSMArena und den Systemeigenschaften abgerufen, um dir einen umfassenden Überblick über dein Android-Gerät zu geben.
\"Blick auf die Musik\" zeigt ein Overlay der aktuellen Wiedergabe auf dem Sperrbildschirm an, wenn Musik abgespielt wird und sich die Wiedergabe ändert. \n\nWenn dein Gerät keine Überlagerungen über dem AOD unterstützt, kannst du während des Ladevorgangs alternativ den in den Android-Einstellungen hinzugefügten Bildschirmschoner wählen.
- Notification Lighting adds a beautiful edge lighting effect when you receive notifications.\n\nYou can customize the animation style, colors, and behavior. It works even when the screen is off (OEM dependent) or on top of your current app. Pick apps, notification priority or what behavior it should be triggering on from given controls. If your OEM does not support overlays above AOD, sue the Ambient display option found below.
- Easily turn the screen off with a tap on a transparent resizable widget that does not add icons or any clutter to your home screen.
- Take full control over your status bar icons.\n\nHide specific icons like WiFi, Bluetooth, or cellular data to keep your status bar clean. You can also customize the clock format and battery indicator with some smart controls as well. These are the list of available AOSP controls so your device OS might not respect all the controls.
- Caffeinate prevents your screen from turning off automatically.\n\nKeep your screen awake for a specific duration or indefinitely. Useful when reading long articles or referencing a recipe.
- Get the Pixel 10 series exclusive Google Maps Power Saving mode with the minimal pitch black background to display over your lock screen on any Android device. Start a navigation session, turn the screen off and back on.
+ Benachrichtigungslich sorgt für einen schönen Randbeleuchtungseffekt, wenn du eine Benachrichtigung erhälst.\n\nDu kannst den Animationsstil, die Farben und das Verhalten individuell anpassen. Die Funktion ist auch bei ausgeschaltetem Bildschirm (abhängig vom Hersteller) oder über der aktuellen App verfügbar. Wähle Apps, Benachrichtigungsprioritäten oder welches Verhalten das Benachrichtigungslich haben soll mit den entsprechen Steuerungselementen aus. Falls dein Hersteller Overlays über dem Always-On-Display nicht unterstützt, nutze die unten aufgeführte Option „Ambient-Display“.
+ Schalten den Bildschirm ganz einfach mit einem Fingertipp auf ein transparentes, in der Größe anpassbares Widget aus, das deinen Startbildschirm weder mit Symbolen noch mit unnötigen Elementen überfüllt.
+ Übernehme die volle Kontrolle über die Symbole in deiner Statusleiste.\n\nBlende bestimmte Symbole wie WLAN, Bluetooth oder Mobilfunkdaten aus, um deine Statusleiste übersichtlich zu halten. Außerdem kannst du das Uhrenformat und die Akkuanzeige mit einigen praktischen Einstellungsoptionen anpassen. Dies ist eine Liste der verfügbaren AOSP-Einstellungen; daher unterstützt das Betriebssystem Ihres Geräts möglicherweise nicht alle Optionen.
+ Mit „Koffein“ verhinderst du, dass sich der Bildschirm automatisch ausschaltet.\n\nHalten deinen Bildschirm für eine bestimmte Zeit oder auf unbestimmte Zeit aktiv. Dies ist nützlich, wenn du z. B. lange Artikel liest oder ein Rezept nachschlägst.
+ Hole dir den exklusiven Energiesparmodus von Google Maps aus der Pixel 10-Serie mit dem minimalistischen, tiefschwarzen Hintergrund, der auf Ihrem Sperrbildschirm angezeigt wird auf jedes Android-Gerät. Starte eine Navigation, dann schalte den Bildschirm aus und wieder ein.
Blitze mit der Taschenlampe, wenn du eine Benachrichtigung bekommst.\n\nBei Geräten mit Hardwareunterstützung für das Dimmen der Taschenlampe wird der Puls sanft animiert.
- Snooze annoying persistent system notifications which can not be modified by default. \n\nPlease wait until the notification arrives and then go into this feature where it\'s notification channel will be listed. Select that to snooze from next time.\n\nAny snoozed notification can still be accessed from your notification history in Android.
- Add custom tiles to your Quick Settings panel.\n\nLong press any of them to learn what they do.
+ Schalte lästige, hartnäckige Systembenachrichtigungen stumm, die standardmäßig nicht angepasst werden können. \n\nBitte warten, bis die Benachrichtigung erscheint, und rufe dann diese Funktion auf, in der der Benachrichtigungskanal aufgeführt wird. Wähle diesen aus, um die Benachrichtigung ab dem nächsten Mal stummzuschalten.\n\nAuf alle stummgeschalteten Benachrichtigungen kannst weiterhin über den Benachrichtigungsverlauf in Android zugreifen.
+ Füge den Schnelleinstellungen benutzerdefinierte Kacheln hinzu.\n\nDrücke lange auf eine beliebige Kachel, um zu erfahren, welche Funktion sie hat.
Remap your hardware buttons to perform different actions and shortcuts.\n\nCustomize what happens when you long press volume buttons with certain conditions. \n\nSome behavior such as screen off trigger or flashlight controls might be OEM dependent on their implementation and may not work on all devices as expected. Some scenarios could be worked around using Shizuku permissions but may not give the same experience due to the implementations.
- Automatically toggle your screen blue light filter based on the foreground app.
+ Schalte den Blaulichtfilter deines Bildschirms automatisch je nach der aktuell geöffneten App ein oder aus.
Enhance security when your device is locked.\n\nRestrict access to some sensitive QS tiles preventing unauthorized network modifications and further preventing them re-attempting to do so by increasing the animation speed to prevent touch spam.\n\nThis feature is not robust and may have flaws such as some tiles which allow toggling directly such as bluetooth or flight mode not being able to be prevented.
- Secure your apps with a secondary authentication layer.\n\nYour device lock screen authentication method will be used as long as it meets the class 3 biometric security level by Android standards.
- Get notified when you get closer to your destination to ensure you never miss the stop.\n\nGo to Google Maps, long press a pin nearby to your destination and make sure it says \"Dropped pin\" (Otherwise the distance calculation might not be accurate), And then share the location to the Essentials app and start tracking.
- Add Destination
- Edit Destination
- Home, Office, etc.
+ Sichere deine Apps mit einer zusätzlichen Authentifizierungsebene.\n\nDie Authentifizierungsmethode deines Gerätesperrbildschirms wird verwendet, sofern sie den biometrischen Sicherheitsstandards der Klasse 3 gemäß den Android-Richtlinien entspricht.
+ Lass dich benachrichtigen, wenn du dich deinem Ziel näherst, damit du niemals mehr eine Haltestelle verpasst.\n\nÖffne Google Maps, drücke lange in der Nähe deines Ziels um einen Marker zu setzen und vergewissere dich, dass dort „Gesetzte Markierung“ angezeigt wird (ansonsten ist die Entfernungsberechnung möglicherweise ungenau). Teile den Standort anschließend mit der Essentials-App und starte die Verfolgung.
+ Ziel hinzufügen
+ Ziel bearbeiten
+ Zuhause, Arbeit, usw.
Name
- Save
- Cancel
- Resolving location…
- Last Trip
- Saved Destinations
- No destinations saved yet.
- Delete Destination
- Tracking Now
- Re-Start
- Share coordinates (Dropped pin) from Google Maps to Essentials to save as a destination.\n\nThe distance shown is the direct distance to the destination, not the distance along the roads.\n\nTake all calculations of time and distance with a grain of salt as they are not always accurate.
- Are we there yet?
+ Speichern
+ Abbrechen
+ Position wird ermittelt…
+ Letzte Reise
+ Gespeicherte Ziele
+ Noch kein Ziel gespeichert.
+ Ziel löschen
+ Zurzeit verfolgt
+ Neustart
+ Teile Koordinaten (gesetzter Marker) aus Google Maps zu Essentials, um sie als Ziel zu speichern.\n\nDie angezeigte Entfernung ist die Luftlinienentfernung zum Ziel, nicht die Entfernung entlang der Straße.\n\nBetrachte alle Zeit- und Entfernungsangaben mit Vorsicht, da sie nicht immer genau sind.
+ Sind wir schon da?
Radius: %1$d m
- Distance to target: %1$s
- Last: %1$s
- Never
+ Distanz zum Ziel: %1$s
+ Zuletzt: %1$s
+ Nie
To go
%1$d min
- %1$d hr %2$d min
+ %1$d Std. %2$d min
%1$s (%2$d%%) • %3$s to go
Freeze apps to stop them from running in the background.\n\nPrevent battery drain and data usage by completely freezing apps when you are not using them. They will be unfrozen instantly when you launch them. The apps will not show up in the app drawer and also will not show up for app updates in Play Store while frozen.
A custom input method no-one asked for.\n\nIt is just an experiment. Multiple languages may not get support as it is a very complex and time consuming implementation.
@@ -691,7 +691,7 @@
Add a custom caption/ watermark to your photos with EXIF data and device information.\n\nShare an image directly from other app to Essentials to easily add a watermark.
Sync all your upcoming calendar schedule not matter the restrictions on Google accounts not letting to be added to wearOS devices due to work or school policies. \n\nMake sure to install the wearOS Essentials companion app to display the schedule in the app as well as in a tile or a complication.
Keep track of updates for your installed apps.\n\nGet notified about available updates, view changelogs and install them easily with a tap.
- Add haptic feedback to your calls.\n\nVibrate when a call is connected, disconnected, or accepted, giving you tactile confirmation without looking at the screen.
+ Füge deinen Anrufen haptisches Feedback hinzu.\n\nDas Gerät vibriert, wenn eine Verbindung hergestellt, getrennt oder ein Anruf angenommen wird, sodass Sie eine taktile Rückmeldung erhalten, ohne auf den Bildschirm schauen zu müssen.
Quickly toggle between Sound, Vibrate, and Silent modes.\n\nA convenient tile to change your ringer mode without using the volume buttons or settings. You can re-order the modes or disable any if not needed to customize the tile toggle to cycle behavior.
Easily toggle the system level blur depth effect across the OS.
Enable or disable floating notification bubbles.\n\nQuickly toggle the system-wide setting for conversation bubbles.
@@ -707,7 +707,7 @@
Toggle Private DNS.\n\nCycle through Off, Automatic, and Private DNS provider modes.
Toggle USB Debugging.\n\nEnable or disable ADB debugging access directly from the quick settings.
Launch the eye dropper tool to pick colors introduced in Android 17 BETA 2
- Optimize your battery life by limiting the maximum charge or using adaptive charging. This is specially designed for Pixel devices to ensure longevity and healthy charging cycles.\n\nCredits: TebbeUbben/ChargeQuickTile
+ Optimieren deine Akkulaufzeit, indem du die maximale Ladekapazität begrenzt oder die adaptive Ladefunktion aktivierst. Diese Funktion wurde speziell für Pixel-Geräte entwickelt, um eine lange Lebensdauer und gesunde Ladezyklen zu gewährleisten.\n\nBildnachweis: TebbeUbben/ChargeQuickTile
Herunterladen
Display aus
@@ -715,8 +715,8 @@
Gerät entsperren
Ladegerät verbunden
Ladegerät getrennt
- Schedule
- Time Period
+ Zeitplan
+ Zeitraum
Select Time
Select Time Range
Start Time
@@ -730,8 +730,8 @@
Taschenlampe aktivieren
Taschenlampe deaktivieren
Taschenlampe ein-/ausschalten
- Turn On Low Power Mode
- Turn Off Low Power Mode
+ Energiesparmodus aktivieren
+ Energiesparmodus deaktivieren
Hintergrund dimmen
Diese Aktion erfordert Shizuku oder einen Root-Zugang um den Hintergrund zu dimmen.
Auslöser auswählen
@@ -750,9 +750,9 @@
Automatisierungsdienst
Automatisierungen aktiv
Überwachung von Systemereignissen für deine Automatisierungen
- App Detection Service
- App Detection Active
- Monitoring app activity
+ App-Erkennungsdienst
+ App-Erkennung aktiv
+ Überwachung der App-Aktivitäten
Geräteeffekte
Steuer Effekte auf Systemebene wie Graustufen, AOD-Unterdrückung, Hintergrundbild-Dimmung und Nachtmodus.
Graustufen
@@ -875,8 +875,8 @@
Immer dunkles Design
Tiefschwarzes Design
Zwischenablage-Verlauf
- Long press for symbols
- Accented characters
+ Langes Drücken für Symbole
+ Zeichen mit Akzenten
- liste
- wähler
@@ -1102,12 +1102,12 @@
Benötigt für die Mac-Akkusynchronisierung
Batterie-Benachrichtigung
Dauerhafte Benachrichtigung zum Akkustatus
- This notification displays battery levels for your connected Mac and Bluetooth devices. You can configure which devices to show in the Battery Widget settings.
+ Diese Benachrichtigung zeigt den Akkustand deines angeschlossenen Macs und deiner Bluetooth-Geräte an. In den Einstellungen des Akku-Widgets kannst du festlegen, welche Geräte angezeigt werden sollen.
Replicate the battery widget experience in your notification shade. It will show the battery levels of all your connected devices in a single persistent notification, updated in real-time. This includes your Mac (via AirSync) and Bluetooth accessories.
- Battery Status Notification
+ Batteriestatus-Benachrichtigung
Persistent notification showing connected devices battery levels
- Nearby Devices
- Required to detect and retrieve battery information from Bluetooth accessories
+ Geräte in der Nähe
+ Benötigt, um Batterieinformationen von Bluetooth-Zubehör zu erkennen und abzurufen
Code kopieren
Anmeldeseite öffnen
@@ -1123,15 +1123,15 @@
%1$s aktualisiert
gerade eben
- Today
- Yesterday
- vor %1$dmin
- vor %1$dstd
+ Heute
+ Gestern
+ vor %1$d min
+ vor %1$d Std.
vor %1$d Tagen
- %1$d days ago
- %1$d weeks ago
+ vor %1$d Tagen
+ vor %1$d Wochen
vor %1$d Monaten
- %1$d months ago
+ vor %1$d Monaten
vor %1$d Jahren
Erneut versuchen
Anmeldung starten
@@ -1171,52 +1171,52 @@
Benutzeroberfläche
Display
Schutz
- Accessibility
- Connectivity
- Privacy
- Utilities
+ Barrierefreiheit
+ Verbindungen
+ Privatsphäre
+ Dienstleistungen
ABC
\?#/
Kaomoji
- Joy
- Love
- Embarassment
- Sympathy
- Dissatisfaction
- Anger
- Apologizing
- Bear
- Bird
- Cat
- Confusion
- Dog
- Doubt
- Enemies
- Faces
- Fear
- Fish
- Food
- Friends
- Games
- Greeting
- Hiding
- Hugging
- Indifference
- Magic
- Music
- Nosebleeding
- Pain
- Pig
- Rabbit
- Running
- Sadness
- Sleeping
- Special
- Spider
- Surprise
- Weapons
- Winking
- Writing
+ Freude
+ Liebe
+ Verlegenheit
+ Mitgefühl
+ Unzufriedenheit
+ Wut
+ Verzeihen
+ Bär
+ Vogel
+ Katze
+ Verwirrung
+ Hund
+ Zweifel
+ Feinde
+ Gesichter
+ Angst
+ Fisch
+ Essen
+ Freunde
+ Spiele
+ Gruß
+ Verstecken
+ Umarmen
+ Gleichgültigkeit
+ Magie
+ Musik
+ Nasenbluten
+ Schmerz
+ Schwein
+ Kaninchen
+ Rennen
+ Traurigkeit
+ Schlafen
+ Speziell
+ Spinne
+ Überraschung
+ Waffen
+ Winken
+ Schreiben
Hey! Du kannst Updates in den App-Einstellungen überprüfen, musst sie hier nicht hinzufügen XD
Exportieren
Importieren
@@ -1257,20 +1257,20 @@
Neue Automatisierung
Repository hinzufügen
- Describe the issue or provide feedback…
- Contact email
- Send Feedback
- Feedback sent successfully! Thanks for helping us improve the app.
- Alternatively
+ Beschreibe das Problem oder gib Feedback…
+ Kontakt-E-Mail
+ Feedback senden
+ Dein Feedback wurde erfolgreich gesendet! Vielen Dank, dass du uns dabei hilfst, die App zu verbessern.
+ Alternativ
- Diagnostics
- Device Check
- Get ready to be flashbanged!
- Abort
- Continue
- Your Essentials trial has expired
- Your free trial period of Essentials has ended. Access to advanced features like Button Remap, App Freezing, and DIY Automations with Premium.
- What\'s in Premium?
- April Fools!
- Just kidding, Essentials is and will always be free and open source. Enjoy! (っ◕‿◕)っ
+ Diagnose
+ Geräteprüfung
+ Mach dich bereit für einen Flashbang!
+ Abbrechen
+ Fortsetzen
+ Ihre Essentials-Testversion ist abgelaufen
+ Ihre kostenlose Testphase für Essentials ist abgelaufen. Mit Premium erhalten Sie Zugriff auf erweiterte Funktionen wie „Tastenneubelegung“, „Einfrieren“ und „DIY-Automatisierungen“.
+ Was bietet Premium?
+ April, April!
+ Nur ein kleiner Scherz, Essentials ist und wird immer kostenlos und Open Source bleiben. Viel Spaß! (っ◕‿◕)っ
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 2a3445434..45c3a0306 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -1,44 +1,44 @@
- Beta
- Servicio de Accesibilidad Esencial\n\nEste servicio es necesario para las siguientes funciones avanzadas:\n\n• Reasignación de Botones Físicos:\nDetecta las pulsaciones de los botones de volumen incluso con la pantalla apagada para activar acciones como la Linterna.\n\n• Ajustes por App:\nSupervisa la app activa para aplicar perfiles específicos de Luz Nocturna Dinámica, Colores de Iluminación de Notificaciones y Bloqueo de Apps.\n\n• Control de Pantalla:\nPermite que la app bloquee la pantalla (p. ej., mediante Doble Toque o Widgets) y detecte cambios de estado.\n\n• Seguridad:\nEvita cambios no autorizados al detectar el contenido de la ventana cuando el dispositivo está bloqueado.\n\nNo se recopila ni transmite texto de entrada ni datos confidenciales del usuario.
- Congelar aplicación
- Desactivar aplicaciones que rara vez se utilizan
- Congelar aplicación
+ BETA
+ Servicio de accesibilidad Essentials\n\nEste servicio es necesario para las siguientes funciones avanzadas:\n\n• Reasignación de botones físicos:\nDetecta las pulsaciones de los botones de volumen incluso cuando la pantalla está apagada para activar acciones como la linterna.\ n\n• Ajustes por aplicación:\nSupervisa la aplicación activa en ese momento para aplicar perfiles específicos para la luz nocturna dinámica, los colores de iluminación de las notificaciones y el bloqueo de aplicaciones.\n\n• Control de pantalla:\nPermite a la aplicación bloquear la pantalla (por ejemplo, mediante doble toque o widgets) y detectar cambios en el estado de la pantalla.\ n\n• Seguridad:\nEvita cambios no autorizados al detectar el contenido de la ventana cuando el dispositivo está bloqueado.\n\nNo se recopila ni transmite ningún texto introducido ni datos confidenciales del usuario.
+ Congelación de aplicaciones
+ Deshabilitar aplicaciones que rara vez se usan
+ Congelación de aplicaciones
Abrir aplicación congelada
Aplicación congelada
- Pantalla vacía fuera del widget
- Congelar aplicación
+ Widget vacío para apagar la pantalla
+ Congelación de aplicaciones
Pulso de linterna
- Consultar pre lanzamientos
+ Consultar prelanzamiento
Podría ser inestable
- Default tab
+ Pestaña predeterminada
Seguridad
Habilitar bloqueo de aplicaciones
Seguridad de bloqueo de aplicaciones
Autenticarse para habilitar el bloqueo de aplicaciones
- Autenticarse para desactivar el bloqueo de aplicaciones
+ Autenticarse para deshabilitar el bloqueo de aplicaciones
Seleccionar aplicaciones bloqueadas
- Elija qué aplicaciones requieren autenticación
+ Elige qué aplicaciones requieren autenticación
Proteja sus aplicaciones con autenticación biométrica. Las aplicaciones bloqueadas requerirán autenticación al iniciarse. Permanecen desbloqueadas hasta que la pantalla se apaga.
Tenga en cuenta que esta no es una solución sólida, ya que es solo una aplicación de terceros. Si necesita una seguridad sólida, considere utilizar el espacio privado u otras funciones similares.
- Otra nota, el mensaje de autenticación biométrica solo le permite utilizar métodos de clase seguros FUERTES. Los métodos de seguridad de desbloqueo facial de clase DÉBIL en dispositivos como Pixel 7 solo podrán utilizar otros métodos de autenticación FUERTES disponibles, como huella digital o PIN.
- Use usage access
- Instead of accessibility (Freeze, App Lock, Dynamic Night Light)
+ Otra cosa: la solicitud de autenticación biométrica solo permite utilizar métodos de la clase de seguridad STRONG. Los métodos de desbloqueo facial de la clase WEAK en dispositivos como el Pixel 7 solo podrán utilizar los demás métodos de autenticación STRONG disponibles, como la huella dactilar o el PIN.
+ Usar acceso de uso
+ En lugar de accesibilidad (Bloqueo de pantalla, Bloqueo de aplicaciones, Luz nocturna dinámica)
Habilitar reasignación de botones
- Utilice Shizuku o Root o Root
+ Utiliza Shizuku o Root o Root
Funciona con la pantalla apagada (Recomendado)
- Shizuku no está corriendo
+ Shizuku no se está ejecutando
Detectado %1$s
Estado: %1$s
Abrir Shizuku
Flash
Opciones de linterna
- Ajustar el desvanecimiento y otras configuraciones
- Tema negro
- Utilice fondo negro puro en modo oscuro
+ Ajustar el desvanecimiento y otros ajustes
+ Tema negro absoluto
+ Utiliza un fondo negro puro en el modo oscuro
Retroalimentación háptica
Reasignar pulsación larga
Pantalla apagada
@@ -46,40 +46,40 @@
Subir volumen
Bajar volumen
Alternar linterna
- Reproducción/pausa multimedia
- Medios siguientes
- Medios anteriores
+ Reproducir/pausar medios
+ Siguiente medio
+ Medio anterior
Alternar vibración
Alternar silencio
- asistente de IA
- Tomar captura de pantalla
+ Asistente de IA
+ Hacer una captura de pantalla
Modos de sonido cíclicos
- Me gusta la cancion actual
+ Me gusta la canción actual
Me gusta la configuración de la canción
- Esta función requiere acceso a notificaciones para detectar los medios que se están reproduciendo actualmente y activar la acción similar. Habilítelo a continuación.
- Mostrar mensaje de brindis
+ Esta función requiere acceso a las notificaciones para detectar el contenido multimedia que se está reproduciendo actualmente y activar la acción de \"Me gusta\". Actívala a continuación.
+ Mostrar mensaje emergente
Mostrar superposición en AOD
- Mirada de música ambiental
- Un vistazo a los medios sobre AOD
+ Un vistazo a la música ambiental
+ Un vistazo a los medios en AOD
Modo acoplado
- Mantenga la superposición visible indefinidamente mientras se reproduce música en AOD
- Vistazo de notificación
+ Mantener la superposición visible indefinidamente mientras se reproduce música en AOD
+ Vista rápida de notificación
Mantener AOD activado mientras las notificaciones estén pendientes
- Las mismas aplicaciones que la iluminación de notificaciones.
- Esta función habilitará dinámicamente Siempre en pantalla cuando llegue una notificación de una aplicación seleccionada y la deshabilitará una vez que se descarten todas las notificaciones coincidentes. Elija aplicaciones o use la misma selección que la iluminación de notificaciones.
- Conceder acceso a notificaciones
+ Las mismas aplicaciones que la iluminación de notificaciones
+ Esta función activará dinámicamente la Pantalla Siempre Encendida (AOD) cuando llegue una notificación de una aplicación seleccionada y la desactivará cuando todas las notificaciones correspondientes se hayan descartado. Elige las aplicaciones o usa la misma selección que para la iluminación de notificaciones.
+ Conceder acceso a las notificaciones
Alternar volumen de medios
- Cuando la pantalla esté apagada, mantenga presionado el botón seleccionado para activar la acción asignada. En dispositivos Pixel, esta acción solo se activa si el AOD está activado debido a limitaciones del sistema.
- Cuando la pantalla esté encendida, mantenga presionado el botón seleccionado para activar la acción asignada.
+ Cuando la pantalla esté apagada, mantén pulsado el botón seleccionado para activar la acción que le hayas asignado. En los dispositivos Pixel, esta acción solo se activa si la función AOD está activada, debido a limitaciones del sistema.
+ Cuando la pantalla esté encendida, mantén pulsado el botón seleccionado para activar la acción que se le ha asignado.
Intensidad de la linterna
- Aparece y desaparece
+ Fundido de entrada y salida
Alternar suavemente la linterna
Controles globales
- Linterna de aparición gradual a nivel mundial
+ Activar la linterna con fundido de entrada de forma global
Ajustar la intensidad
Volumen +: ajusta la intensidad de la linterna
Actualización en vivo
- Mostrar brillo en la barra de estado
+ Mostrar el nivel de brillo en la barra de estado
Otro
Apagar siempre la linterna
Incluso cuando la pantalla está encendida
@@ -91,21 +91,21 @@
Conceder permiso
Cafeína activa
Activo
- La pantalla se mantiene activa
+ La pantalla permanece encendida
Ignorar la optimización de la batería
Cancelar con la pantalla apagada
Saltar cuenta regresiva
- Comience a tomar cafeína inmediatamente.
+ Iniciar Cafeína inmediatamente.
Preajustes de tiempo de espera
Seleccione las duraciones disponibles para el mosaico QS
- 5m
- 10m
- 30m
- Acceso No Molestar
+ 5 m
+ 10 m
+ 30 m
+ Acceso a No molestar
Requerido para alternar entre los modos de sonido, vibración y silencio.
- 1h
+ 1 h
∞
- A partir de %1$ds…
+ Comenzando en %1$ds…
%1$s restante
Notificación persistente de cafeína
@@ -116,43 +116,44 @@
Control de aplicaciones
Congelar
Descongelar
- Remove
- Create shortcut
- App info
- What is Freeze?
- App freezing disables the app\'s launch activity which removes it from the app list and updates. It will prevent the app from starting at all until it\'s unfrozen which saves resources but you will need to unfreeze from here or manually re-enable.
- DO NOT FREEZE COMMUNICATION APPS
- What is Suspend?
- Suspending an app used to pause the app activity and prevent background executions but with recent Android changes, it only pauses the notifications from appearing and that\'s pretty much it. But does allows you to unpause from the launcher app list as they will be still available as grayscale paused app icons.
- Should work the same as the native app pause/ focus mode features.
+ Eliminar
+ Crear acceso directo
+ Información de la aplicación
+ ¿Qué es Congelar?
+ La congelación de una aplicación deshabilita su actividad de inicio, lo que la elimina de la lista de aplicaciones y detiene sus actualizaciones. Esto evitará que la aplicación se inicie por completo hasta que sea descongelada, lo cual ahorra recursos. Sin embargo, deberás descongelarla desde aquí o volver a habilitarla manualmente.
+ NO CONGELES LAS APLICACIONES DE COMUNICACIÓN
+ ¿Qué es Suspender?
+ Suspender una aplicación solía pausar su actividad y evitar ejecuciones en segundo plano, pero con los cambios recientes en Android, ahora solo pausa la aparición de notificaciones y poco más.
+Sin embargo, sí te permite reanudarla desde la lista de aplicaciones del lanzador, ya que seguirán apareciendo como iconos en escala de grises indicando que están en pausa.
+ Debería funcionar igual que las funciones nativas de pausa de aplicaciones / modo de concentración.
Más opciones
Congelar todas las aplicaciones
Descongelar todas las aplicaciones
Exportar lista de aplicaciones congeladas
Importar lista de aplicaciones congeladas
Elige aplicaciones para congelar
- Elija qué aplicaciones se pueden congelar
+ Elige qué aplicaciones se pueden congelar
Automatización
Congelar cuando está bloqueado
Retraso de congelación
Inmediato
- 1m
- 5m
- 15m
+ 1 m
+ 5 m
+ 15 m
Manual
- Aplicaciones de congelación automática
+ Congelar aplicaciones automáticamente
Congele las aplicaciones seleccionadas cuando el dispositivo se bloquee. Elija un retraso para evitar congelar aplicaciones si desbloquea la pantalla poco después de apagarla.
Congelar aplicaciones del sistema puede ser peligroso y provocar un comportamiento inesperado.
Habilitar en Configuración
No\'no congele aplicaciones activas
Estadísticas de uso
Requerido para detectar qué aplicaciones están actualmente en primer plano para evitar congelarlas
- Required to detect foreground apps for App Lock features when accessibility is not used.
+ Requerido para detectar aplicaciones en primer plano para las funciones de Bloqueo de Aplicaciones cuando no se usa la accesibilidad.
Requerido para detectar medios en reproducción y notificaciones activas para evitar congelarlas
- Freeze mode
- Freezing
- App suspension
- Can not switch mode while apps are frozen. Please unfreeze all and try again.
+ Modo Congelar
+ Congelación
+ Suspensión de aplicaciones
+ No se puede cambiar de modo mientras las aplicaciones están congeladas. Por favor, descongélalas todas e inténtalo de nuevo.
Mostrar solo cuando la pantalla está apagada
Saltar notificaciones silenciosas
@@ -163,25 +164,25 @@
Las mismas aplicaciones que la iluminación de notificaciones.
Estilo
Ajuste de carrera
- Radio de esquina
+ Radio de las esquinas
Grosor del trazo
Ajuste de brillo
- propagación del resplandor
+ Propagación del brillo
Colocación
- posición horizontal
- posición vertical
+ Posición horizontal
+ Posición vertical
Ajuste del indicador
Escala
Duración
- Sweep
- Position
- Random shapes
- Stroke thickness
- Left
- Center
- Right
+ Barrido
+ Posición
+ Formas aleatorias
+ Grosor del trazo
+ Izquierda
+ Centro
+ Derecha
Animación
- recuento de pulsos
+ Recuento de pulsos
Duración del pulso
Modo de color
Pantalla ambiental
@@ -191,22 +192,22 @@
Mostrar pantalla de bloqueo
Sin superposición negra
- Agregar
- Added
- Ya agregado
+ Añadir
+ Añadido
+ Ya añadido
Requiere Android 13+
Desenfoque de la interfaz de usuario
Burbujas
Contenido sensible
Toca para despertar
AOD
- cafeína
+ Cafeína
Modo de sonido
Iluminación de notificación
Luz nocturna dinámica
Seguridad bloqueada
Bloqueo de aplicaciones
- audio mono
+ Audio mono
Flash
Congelación de aplicaciones
Pulso de linterna
@@ -223,17 +224,17 @@
Apagado
Depuración USB
Selector de color
- Are you sure you\'re on Androdi 17? (╯°_°)╯
- Gotero para ojos
- En
+ ¿Estás seguro de que tienes Android 17? (╯°_°)╯
+ Cuentagotas
+ Encendido
Apagado
DNS privado personalizado
Ajustes preestablecidos de DNS comunes
- Add DNS Preset
- Preset name
- Reset
- Delete preset
- Are you sure you want to reset all DNS presets to defaults? This will remove all your custom presets.
+ Añadir preajuste DNS
+ Nombre del preajuste
+ Restablecer
+ Eliminar preajuste
+ ¿Seguro que quieres restablecer todos los preajustes de DNS a los valores predeterminados? Esto eliminará todos tus preajustes personalizados.
Nombre de host del proveedor
AdGuard DNS
dns.adguard.com
@@ -241,7 +242,7 @@
dns.google
DNS de nube
1dot1dot1dot1.cloudflare-dns.com
- DNS cuádruple9
+ Quad9 DNS
dns.quad9.net
Navegación limpia
filtro-adulto-dns.cleanbrowsing.org
@@ -257,15 +258,15 @@
Autenticarse para desactivar la seguridad de pantalla bloqueada
⚠️ ADVERTENCIA
Esta característica no es infalible. Puede haber casos extremos en los que alguien aún pueda interactuar con el mosaico. \nTambién tenga en cuenta que Android siempre permitirá realizar un reinicio forzado y Pixels siempre permitirá que el dispositivo se apague desde la pantalla de bloqueo también.
- Asegúrese de eliminar el mosaico del modo avión de la configuración rápida, ya que eso no se puede evitar porque no abre una ventana de diálogo.
+ Asegúrate de eliminar el icono del modo avión de los ajustes rápidos, ya que no se puede evitar, pues no abre ninguna ventana de diálogo.
Cuando esté habilitado, el panel de Configuración rápida se cerrará inmediatamente y el dispositivo se bloqueará si alguien intenta interactuar con mosaicos de Internet mientras el dispositivo está bloqueado. \n\nEsto también deshabilitará el desbloqueo biométrico para evitar más accesos no autorizados. La escala de la animación se reducirá a 0,1x mientras esté bloqueada para que sea aún más difícil interactuar con ella.
- Disable QS when locked
- Immediately close the Quick Settings panel if someone tries to expand it while the device is locked.
- Disable QS Locked
- Prevent expanding Quick Settings when device is locked
+ Desactivar QS cuando el dispositivo esté bloqueado
+ Cierra inmediatamente el panel de Ajustes rápidos si alguien intenta abrirlo mientras el dispositivo está bloqueado.
+ Desactivar QS bloqueado
+ Evitar expandir los Ajustes Rápidos cuando el dispositivo está bloqueado
Modos de reordenamiento
- Mantenga presionado para alternar
+ Mantén pulsado para alternar
Arrastra para reordenar
Sonido
Vibrar
@@ -277,10 +278,10 @@
Estado del sistema
Específico del OEM
- Wi-Fi
- bluetooth
- NFC / Felica
- vpn
+ WiFi
+ Bluetooth
+ NFC / FeliCa
+ VPN
Modo avión
Punto de acceso
Elenco
@@ -292,7 +293,7 @@
TTY
Volumen
Auriculares
- altavoz
+ Altavoz
DMB
Reloj
Método de entrada (IME)
@@ -305,7 +306,7 @@
Sincronizar
Perfil administrado
No molestar
- Carpeta de privacidad y seguridad
+ Privacidad y Carpeta segura
Estado de seguridad (SU)
Ratón/teclado OTG
Funciones inteligentes de Samsung
@@ -323,7 +324,7 @@
Requerido para detectar el tipo de red para la función Smart Data
Requerido para detectar cambios en el estado de las llamadas para activar la retroalimentación háptica.
Visibilidad inteligente
- Wi-Fi inteligente
+ WiFi inteligente
Ocultar datos móviles cuando WiFi está conectado
Ocultar datos móviles en ciertos modos
Restablecer todos los iconos
@@ -347,7 +348,7 @@
Imágenes
Sistema
- Search for Tools, Mods and Tweaks
+ Buscar en Essentials
No hay resultados para \"%1$s\"
Resultados de la búsqueda
%1$s requiere los siguientes permisos
@@ -356,7 +357,7 @@
Widget invisible para apagar la pantalla
Iconos de la barra de estado
Controlar la visibilidad de los iconos de la barra de estado
- cafeína
+ Cafeína
Mantén la pantalla despierta
Modo de ahorro de energía de mapas
Para cualquier dispositivo Android
@@ -395,7 +396,7 @@
Aplicaciones seguras con biometría
Congelar
Deshabilitar aplicaciones de uso poco frecuente
- Filigrana
+ Marca de agua
Agregue datos EXIF y logotipos a las fotos
Siempre en exhibición
Mostrar hora e información con la pantalla apagada
@@ -435,8 +436,8 @@
Sin información de fecha
Girar a la izquierda
Girar a la derecha
- Próximo
- DE ACUERDO
+ Siguiente
+ ACEPTAR
Guardar cambios
Configuración de sincronización del calendario
Sincronizar calendarios específicos
@@ -449,14 +450,14 @@
Widget de retroalimentación háptica
Elija retroalimentación háptica para toques de widgets
- Wi-Fi inteligente
+ WiFi inteligente
Ocultar datos móviles cuando WiFi está conectado
Datos inteligentes
Ocultar datos móviles en ciertos modos
Restablecer todos los iconos
Restablecer la visibilidad del icono de la barra de estado a los valores predeterminados
- Cancelar Caffeinate con la pantalla apagada
- Apague automáticamente Caffeinate al bloquear manualmente el dispositivo
+ Cancelar Cafeína con la pantalla apagada
+ Apagar automáticamente Cafeína al bloquear manualmente el dispositivo
Estilo de iluminación
Elige entre Trazo, Resplandor, Girador y más
Radio de esquina
@@ -478,7 +479,7 @@
Toca dos veces para activar el control
AOD
Alternar siempre en pantalla
- cafeína
+ Cafeína
Mantener la pantalla activa alternar
Modo de sonido
Modos de sonido cíclicos (timbre/vibración/silencio)
@@ -488,7 +489,7 @@
Alternar automatización de luz nocturna
Seguridad bloqueada
Seguridad de red al alternar la pantalla de bloqueo
- audio mono
+ Audio mono
Forzar cambio de salida de audio mono
Flash
Alternar linterna dedicada
@@ -555,7 +556,7 @@
Copiar BAD
Controlar
Habilitar en Configuración
- como otorgar
+ Como conceder
Optimización de la batería
Asegúrese de que el sistema no interrumpa el servicio para ahorrar energía.
@@ -604,55 +605,55 @@
Buscar
Detener
Buscar
- Search frozen apps
+ Buscar aplicaciones congeladas
Atrás
Atrás
Ajustes
Informar un error
- Crash reporting
- Off
+ Informe de fallos
+ Apagado
Auto
- Essentials crashed, Report sent
- Simulate crash
- Welcome to Essentials
- A Toolbox for Android Nerds
- by sameerasw.com
- Let\'s Begin
- Acknowledgement
- This app is a collection of utilities that can interact deeply with your device system. Using some features might modify system settings or behavior in unexpected ways. \n\nYou only need to grant necessary permissions which are required for selected features you are using giving you full control over the app\'s behavior. \n\nFurther more, the app does not track or store any of your personal data, I don\'t need them... Keep to yourself safe. You can refer to the source code for more information. \n\nThis app is fully open source and is and always will be free to use. Do not pay or install from unknown sources.
- WARNING: Proceed with caution. The developer takes no responsibility for any system instability, data loss, or other issues caused by the use of this app. By proceeding, you acknowledge these risks.
- I know you didn\'t even read this carefully but, in case you need any help, feel free to reach out the developer or the community.
- I Understand
- Anytime you are clueless on a feature or a Quick Settings Tile on what it does and what permissions may necessary for it, just long press it and pick \'What is this?\' to learn more.
- You can report bugs or find helpful guides anytime in the app settings.
- Let Me in Already
- Preferences
- Configure some basic settings to get started.
- App Settings
- Language
- Haptic Feedback
- Updates
- Auto check for updates
- Check for updates at app launch
- All Set
- Check What\'s New?
- Welcome back to Essentials
- See what\'s new
- Couldn\'t load the release note
- View on web
+ Essentials se ha bloqueado, informe enviado
+ Simular fallo
+ Bienvenido a Essentials
+ Una caja de herramientas para entusiastas de Android
+ por sameerasw.com
+ Empecemos
+ Reconocimiento
+ Esta aplicación es una colección de utilidades que pueden interactuar en profundidad con el sistema de tu dispositivo. El uso de algunas funciones podría modificar la configuración o el comportamiento del sistema de formas inesperadas. \n\nSolo tienes que conceder los permisos necesarios para las funciones seleccionadas que estés utilizando, lo que te da un control total sobre el comportamiento de la aplicación. \n\nAdemás, la aplicación no rastrea ni almacena ninguno de tus datos personales; no los necesito... Mantente seguro. Puedes consultar el código fuente para obtener más información. \n\nEsta aplicación es totalmente de código abierto y es, y siempre será, de uso gratuito. No pagues ni instales desde fuentes desconocidas.
+ ADVERTENCIA: Procede con precaución. El desarrollador no se hace responsable de ninguna inestabilidad del sistema, pérdida de datos u otros problemas causados por el uso de esta aplicación. Al continuar, reconoces estos riesgos.
+ Sé que probablemente no has leído esto con atención, pero, por si necesitas ayuda, no dudes en contactar con el desarrollador o la comunidad.
+ Lo entiendo
+ Cada vez que no tengas claro para qué sirve una función o un mosaico de Ajustes Rápidos, qué hace o qué permisos necesita, simplemente mantén pulsado sobre él y selecciona “¿Qué es esto?” para obtener más información.
+ Puedes informar de errores o consultar guías útiles en cualquier momento en los ajustes de la aplicación.
+ Déjame entrar de una vez
+ Preferencias
+ Configura algunos ajustes básicos para empezar.
+ Configuración de la aplicación
+ Idioma
+ Retroalimentación háptica
+ Actualizaciones
+ Comprobación automática de actualizaciones
+ Buscar actualizaciones al iniciar la aplicación
+ Todo listo
+ ¿Qué hay de nuevo?
+ Bienvenido de nuevo a Essentials
+ Mira qué hay de nuevo
+ No se han podido cargar las notas de la versión
+ Ver en la web
Hecho
Avance
Guía de ayuda
¿Qué es esto?
Actualización disponible
- Glance at your device\'s hardware and software specifications in detail. This information is fetched from GSMArena and system properties to provide a comprehensive overview of your Android device.
+ Echa un vistazo a las especificaciones de hardware y software de tu dispositivo con todo detalle. Esta información se obtiene de GSMArena y de las propiedades del sistema para ofrecerte una descripción general completa de tu dispositivo Android.
Ambient Music Glance muestra una superposición de Now Playing en la pantalla de bloqueo cuando la música se reproduce y la reproducción cambia. \n\nSi su dispositivo no admite superposiciones sobre AOD, puede optar por el protector de pantalla Ambience agregado en la configuración de Android como alternativa mientras se carga.
La iluminación de notificaciones agrega un hermoso efecto de iluminación de borde cuando recibes notificaciones.\n\nPuede personalizar el estilo, los colores y el comportamiento de la animación. Funciona incluso cuando la pantalla está apagada (depende del OEM) o encima de su aplicación actual. Elija aplicaciones, prioridad de notificación o qué comportamiento debería activarse desde controles determinados. Si su OEM no admite superposiciones por encima de AOD, utilice la opción de visualización ambiental que se encuentra a continuación.
Apague fácilmente la pantalla con un toque en un widget transparente de tamaño variable que no agrega íconos ni desorden a su pantalla de inicio.
Tome control total sobre los íconos de su barra de estado.\n\nOculte íconos específicos como WiFi, Bluetooth o datos móviles para mantener limpia su barra de estado. También puedes personalizar el formato del reloj y el indicador de batería con algunos controles inteligentes. Esta es la lista de controles AOSP disponibles, por lo que es posible que el sistema operativo de su dispositivo no respete todos los controles.
- Caffeinate evita que la pantalla se apague automáticamente.\n\nMantén la pantalla despierta durante un período específico o indefinidamente. Útil al leer artículos extensos o hacer referencia a una receta.
+ Cafeína evita que la pantalla se apague automáticamente.\n\nMantiene la pantalla despierta durante un período específico o indefinidamente. Útil al leer artículos extensos o hacer referencia a una receta.
Obtenga el modo de ahorro de energía de Google Maps exclusivo de la serie Pixel 10 con un fondo negro mínimo para mostrar en la pantalla de bloqueo en cualquier dispositivo Android. Inicie una sesión de navegación, apague y vuelva a encender la pantalla.
Pulse la linterna cuando reciba una notificación.\n\nCuando los dispositivos tienen soporte de hardware para atenuar la linterna, el pulso se animará suavemente.
Posponga las molestas notificaciones persistentes del sistema que no se pueden modificar de forma predeterminada. \n\nEspere hasta que llegue la notificación y luego acceda a esta función donde se enumerará el canal de notificación\'. Seleccione eso para posponer la próxima vez.\n\nAún se puede acceder a cualquier notificación pospuesta desde su historial de notificaciones en Android.
@@ -662,29 +663,29 @@
Mejore la seguridad cuando su dispositivo esté bloqueado.\n\nRestringe el acceso a algunos mosaicos QS confidenciales para evitar modificaciones no autorizadas de la red y evitar que vuelvan a intentar hacerlo al aumentar la velocidad de la animación para evitar el spam táctil.\n\nEsta característica no es robusta y puede tener fallas, como algunos mosaicos que permiten alternar directamente, como bluetooth o modo avión, que no pueden ser prevenido.
Asegure sus aplicaciones con una capa de autenticación secundaria.\n\nSe utilizará el método de autenticación de la pantalla de bloqueo de su dispositivo siempre que cumpla con el nivel de seguridad biométrica de clase 3 según los estándares de Android.
Reciba notificaciones cuando se acerque a su destino para asegurarse de no perder nunca la parada.\n\nVaya a Google Maps, mantenga presionado un marcador cercano a su destino y asegúrese de que diga \"Pin caído\" (de lo contrario, el cálculo de la distancia podría no ser preciso) y luego comparta la ubicación con la aplicación Essentials y comience a rastrear.
- Add Destination
- Edit Destination
- Home, Office, etc.
- Name
- Save
- Cancel
- Resolving location…
- Last Trip
- Saved Destinations
- No destinations saved yet.
- Delete Destination
- Tracking Now
- Re-Start
- Share coordinates (Dropped pin) from Google Maps to Essentials to save as a destination.\n\nThe distance shown is the direct distance to the destination, not the distance along the roads.\n\nTake all calculations of time and distance with a grain of salt as they are not always accurate.
- Are we there yet?
- Radius: %1$d m
- Distance to target: %1$s
- Last: %1$s
- Never
- To go
+ Añadir destino
+ Editar destino
+ Hogar, oficina, etc.
+ Nombre
+ Guardar
+ Cancelar
+ Determinando la ubicación…
+ Último viaje
+ Destinos guardados
+ Aún no se han guardado destinos.
+ Eliminar destino
+ Seguimiento ahora
+ Reiniciar
+ Comparte las coordenadas (pin colocado) desde Google Maps a Essentials para guardarlas como un destino.\n\nLa distancia que se muestra es la distancia en línea recta hasta el destino, no la distancia por carretera.\n\nTómate con cautela todos los cálculos de tiempo y distancia, ya que no siempre son precisos.
+ ¿Ya hemos llegado?
+ Radio: %1$d m
+ Distancia al objetivo: %1$s
+ Último: %1$s
+ Nunca
+ Por completar
%1$d min
%1$d hr %2$d min
- %1$s (%2$d%%) • %3$s to go
+ %1$s (%2$d%%) • %3$s por completar
Congele aplicaciones para evitar que se ejecuten en segundo plano.\n\nEvite el consumo de batería y el uso de datos congelando completamente las aplicaciones cuando no las esté usando. Se descongelarán instantáneamente cuando los inicies. Las aplicaciones no aparecerán en el cajón de aplicaciones y tampoco aparecerán para actualizaciones de aplicaciones en Play Store mientras estén congeladas.
Un método de entrada personalizado que nadie pidió.\n\nEs solo un experimento. Es posible que no se admitan varios idiomas, ya que se trata de una implementación muy compleja y que requiere mucho tiempo.
Supervise los niveles de batería de todos sus dispositivos conectados.\n\nVea el estado de la batería de sus auriculares, relojes y otros accesorios Bluetooth en un solo lugar. Conéctese con la aplicación AirSync para mostrar también el nivel de batería de su Mac.
@@ -715,13 +716,13 @@
Desbloqueo del dispositivo
Cargador conectado
Cargador desconectado
- Schedule
- Time Period
- Select Time
- Select Time Range
- Start Time
- End Time
- Repeat on
+ Horario
+ Intervalo de tiempo
+ Seleccionar hora
+ Seleccionar intervalo de tiempo
+ Hora de inicio
+ Hora de finalización
+ Repetir en
Cargando
Pantalla encendida
Vibrar
@@ -730,8 +731,8 @@
Encender la linterna
Apagar la linterna
Alternar linterna
- Turn On Low Power Mode
- Turn Off Low Power Mode
+ Activar el modo de bajo consumo
+ Desactivar el modo de bajo consumo
Fondo de pantalla oscuro
Esta acción requiere que Shizuku o Root ajusten la atenuación del fondo de pantalla del sistema.
Seleccionar disparador
@@ -750,9 +751,9 @@
Servicio de automatización
Automatizaciones activas
Monitoreo de eventos del sistema para sus automatizaciones
- App Detection Service
- App Detection Active
- Monitoring app activity
+ Servicio de detección de aplicaciones
+ Detección de aplicaciones activa
+ Supervisión de la actividad de las aplicaciones
Efectos del dispositivo
Controle los efectos a nivel del sistema, como la escala de grises, la supresión de AOD, la atenuación del fondo de pantalla y el modo nocturno.
Escala de grises
@@ -875,8 +876,8 @@
Tema siempre oscuro
Tema negro
Historial del portapapeles
- Long press for symbols
- Accented characters
+ Mantén pulsado para ver los símbolos
+ Caracteres acentuados
- lista
- recogedor
@@ -899,7 +900,7 @@
- adb
- - USB
+ - usb
- depurar
@@ -960,7 +961,7 @@
Invertir selección
Mostrar aplicaciones del sistema
- estas al dia
+ Estas al día
Esta es una versión preliminar y puede ser inestable.
Notas de la versión %1$s
Ver en GitHub
@@ -984,7 +985,7 @@
Apoyo
Otras aplicaciones
Sincronización aérea
- zencero
+ ZenZero
Lienzo
Tareas
Cero
@@ -1001,7 +1002,7 @@
Permisos de accesibilidad, notificación y superposición
Es posible que reciba este mensaje de acceso denegado si intenta otorgar permisos confidenciales como accesibilidad, escucha de notificaciones o permisos de superposición. Para otorgarlo, consulte los pasos a continuación.
- 1. Vaya a la página de información de la aplicación de Essentials.
+ 1. Vete a la página de información de la aplicación de Essentials.
2. Abra el menú de 3 puntos y seleccione \'Permitir configuraciones restringidas\'. Es posible que tengas que autentificarte con datos biométricos. Una vez hecho esto, intente otorgar el permiso nuevamente.
Shizuku
Shizuku es una poderosa herramienta que permite que las aplicaciones utilicen las API del sistema directamente con ADB o permisos de root. Es necesario para funciones como el modo mínimo de Maps y App Freezer. Y seguirá concediendo algunos permisos como WRITE_SECURE_SETTINGS. \n\nPero la versión Play Store de Shizuku podría estar desactualizada y probablemente no se podrá utilizar en versiones recientes de Android, por lo que, en ese caso, obtenga la última versión de github o una bifurcación actualizada del mismo.
@@ -1102,7 +1103,7 @@
Requerido para la sincronización de la batería de Mac
Notificación de batería
Notificación persistente del estado de la batería
- This notification displays battery levels for your connected Mac and Bluetooth devices. You can configure which devices to show in the Battery Widget settings.
+ Esta notificación muestra el nivel de batería de tu Mac y de los dispositivos Bluetooth conectados. Puedes configurar qué dispositivos se muestran en los ajustes del widget de batería.
Replica la experiencia del widget de batería en tu tono de notificación. Mostrará los niveles de batería de todos sus dispositivos conectados en una única notificación persistente, actualizada en tiempo real. Esto incluye su Mac (a través de AirSync) y accesorios Bluetooth.
Notificación del estado de la batería
Notificación persistente que muestra los niveles de batería de los dispositivos conectados
@@ -1114,7 +1115,7 @@
Inicia sesión para ampliar los límites de llamadas API
Esperando autorización...
Iniciar sesión con GitHub
- desconectar
+ Desconectar
Perfil
Notas de la versión
@@ -1123,15 +1124,15 @@
Actualizado %1$s
En este momento
- Today
- Yesterday
+ Hoy
+ Ayer
%1$dhace m
%1$dhace h
%1$dhace d
- %1$d days ago
- %1$d weeks ago
+ Hace %1$d días
+ Hace %1$d semanas
%1$dhace meses
- %1$d months ago
+ Hace %1$d meses
%1$dhace ya
Rever
Iniciar sesión
@@ -1139,7 +1140,7 @@
1. Copia tu código:
2. Pega el código en GitHub:
APK encontrados
- LÉAME
+ LÉEME
Refrescar
Mosaico de modo de sonido
@@ -1158,11 +1159,11 @@
Nunca te pierdas tus prioridades
Entradas y acciones
Controla tu dispositivo con facilidad
- widgets
+ Widgets
De un vistazo en tu pantalla de inicio
Mostrar
Imágenes para mejorar tu experiencia
- Mirar
+ Reloj
Integraciones con WearOS
No se detectó ningún reloj
Parece que no tienes la aplicación complementaria Essentials Wear instalada en tu reloj.
@@ -1171,52 +1172,52 @@
Interfaz
Mostrar
Protección
- Accessibility
- Connectivity
- Privacy
- Utilities
- abecedario
+ Accesibilidad
+ Conectividad
+ Privacidad
+ Utilidades
+ ABC
\?#/
Kaomoji
- Joy
- Love
- Embarassment
- Sympathy
- Dissatisfaction
- Anger
- Apologizing
- Bear
- Bird
- Cat
- Confusion
- Dog
- Doubt
- Enemies
- Faces
- Fear
- Fish
- Food
- Friends
- Games
- Greeting
- Hiding
- Hugging
- Indifference
- Magic
- Music
- Nosebleeding
- Pain
- Pig
- Rabbit
- Running
- Sadness
- Sleeping
- Special
- Spider
- Surprise
- Weapons
- Winking
- Writing
+ Alegría
+ Amor
+ Vergüenza
+ Simpatía
+ Insatisfacción
+ Ira
+ Disculpas
+ Oso
+ Pájaro
+ Gato
+ Confusión
+ Perro
+ Duda
+ Enemigos
+ Caras
+ Miedo
+ Pez
+ Comida
+ Amigos
+ Juegos
+ Saludo
+ Ocultar
+ Abrazos
+ Indiferencia
+ Magia
+ Música
+ Hemorragia nasal
+ Dolor
+ Cerdo
+ Conejo
+ Correr
+ Tristeza
+ Dormir
+ Especial
+ Araña
+ Sorpresa
+ Armas
+ Guiño
+ Redacción
¡Oye! Puedes verificar las actualizaciones en la configuración de la aplicación, no es necesario agregarlas aquí XD
Exportar
Importar
@@ -1252,25 +1253,25 @@
Habilite elementos de desenfoque progresivo en toda la interfaz de usuario
El desenfoque está desactivado en este dispositivo para evitar un error de visualización conocido en dispositivos Samsung con Android 15 o inferior.
- No apps selected to freeze.
- Get Started
- New Automation
- Add Repository
+ No hay ninguna aplicación seleccionada para congelar.
+ Comenzar
+ Nueva automatización
+ Añadir repositorio
- Describe the issue or provide feedback…
- Contact email
- Send Feedback
- Feedback sent successfully! Thanks for helping us improve the app.
- Alternatively
+ Describe el problema o envía tus comentarios…
+ Correo electrónico de contacto
+ Enviar comentarios
+ ¡Tu comentario se ha enviado correctamente! Gracias por ayudarnos a mejorar la aplicación.
+ Alternativamente
- Diagnostics
- Device Check
- Get ready to be flashbanged!
- Abort
- Continue
- Your Essentials trial has expired
- Your free trial period of Essentials has ended. Access to advanced features like Button Remap, App Freezing, and DIY Automations with Premium.
- What\'s in Premium?
- April Fools!
- Just kidding, Essentials is and will always be free and open source. Enjoy! (っ◕‿◕)っ
+ Diagnósticos
+ Comprobación del dispositivo
+ ¡Prepárate para el fogonazo!
+ Cancelar
+ Continuar
+ Tu periodo de prueba de Essentials ha caducado
+ Tu periodo de prueba de Essentials ha finalizado. Accede a funciones avanzadas como la reasignación de botones, la congelación de aplicaciones y las automatizaciones personalizadas con Premium.
+ ¿Qué incluye la versión Premium?
+ ¡Feliz Día de los Inocentes!
+ Es broma, Essentials es y siempre será gratuito y de código abierto. ¡Disfrútalo! (っ◕‿◕)っ
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 196405fa2..ddb93fd46 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -12,7 +12,7 @@
Clignotement de la de lampe torche
Obtenir les préversions (bêta)
Peut-être instable
- Default tab
+ Onglet par défaut
Sécurité
Activer le verrouillage d\'applis
@@ -24,8 +24,8 @@
Protégez vos applications avec l\'authentification biométrique. Les applis verrouillées vont exiger l\'authentification quand elles sont démarrées. Elles resteront déverrouillées jusqu\'au prochain verrouillage de l\'écran.
Soyez conscient que ce n\'est pas une solution robuste car ceci n\'est qu\'une application externe. Si vous avez besoin d\'une forte sécurité, considérez plutôt l\'utilisation de l\'Espace Privé de votre appareil ou d\'autres fonctionnalités dans ce genre.
Mais également, la fenêtre d\'authentification biométrique ne vous laisse utiliser que des méthodes d\'authentification FORTES. Le déverrouillage par reconnaissance faciale est considéré comme FAIBLE pour les appareils comme les Pixel 7 qui ne pourront utiliser que les autres méthodes FORTES disponibles comme l\'authentification par empreinte digitale ou code PIN.
- Use usage access
- Instead of accessibility (Freeze, App Lock, Dynamic Night Light)
+ Utiliser l\'accès aux données d\'utilisation
+ À la place de l\'accessibilité (Gel, Verrouillage d\'applis, Éclairage nocturne dynamique)
Activer la réattribution de boutons
Utiliser Shizuku ou l\'accès racine (root)
@@ -116,15 +116,15 @@
Contrôle des applis
Geler
Dégeler
- Remove
- Create shortcut
- App info
- What is Freeze?
- App freezing disables the app\'s launch activity which removes it from the app list and updates. It will prevent the app from starting at all until it\'s unfrozen which saves resources but you will need to unfreeze from here or manually re-enable.
- DO NOT FREEZE COMMUNICATION APPS
- What is Suspend?
- Suspending an app used to pause the app activity and prevent background executions but with recent Android changes, it only pauses the notifications from appearing and that\'s pretty much it. But does allows you to unpause from the launcher app list as they will be still available as grayscale paused app icons.
- Should work the same as the native app pause/ focus mode features.
+ Supprimer
+ Créer raccourci
+ Informations de l\'appli
+ Qu\'est-ce que le gel d\'applis ?
+ Le gel d\'appli désactive l\'activité de lancement de l\'application ce qui retire l\'appli de la liste et des mises à jour. Cela empêche l\'application d\'être lancée jusqu\'à ce qu\'elle soit dégelée, cela économise des ressources mais vous devrez les dégeler d\'ici ou les réactiver manuellement.
+ NE GELEZ PAS LES APPLICATIONS DE MESSAGERIE
+ Qu\'est-ce que la suspension ?
+ Suspendre une appli mettait en pause l\'activité de l\'application et empêchait l\'exécution en arrière-plan mais avec les changements récents d\'Android, cela empêche uniquement les notifications de s\'afficher et c\'est tout. Mais cela vous permet d\'arrêter la pause depuis la liste d\'applis du lanceur car elles seront toujours disponibles comme des icônes d\'applis suspendues grises.
+ Cela devrait marcher de la même manière que l\'application native des fonctionnalités pause/concentration
Plus d\'options
Geler toutes les applis
Dégeler toutes les applis
@@ -147,7 +147,7 @@
Ne pas geler les applis actives
Statistiques d\'utilisation
Requises pour détecter quelles applis sont actuellement en avant-plan pour ne pas les geler
- Required to detect foreground apps for App Lock features when accessibility is not used.
+ Requis pour détecter les applis en avant-plan pour les fonctionnalités de verrouillage d\'applis quand l\'accessibilité n\'est pas utilisée.
Requis pour détecter le média joué et les notifications actives pour ne pas les geler
Mode de gel
Gel
@@ -173,13 +173,13 @@
Ajustement de l\'indicateur
Taille
Durée
- Sweep
- Position
- Random shapes
- Stroke thickness
- Left
- Center
- Right
+ Balayage
+ Localisation
+ Formes aléatoires
+ Épaisseur du trait
+ Gauche
+ Centre
+ Droite
Animation
Nombre de pulsations
Durée de la pulsation
@@ -192,7 +192,7 @@
Pas de superposition noire
Ajouter
- Added
+ Ajouté
Déjà ajouté
Nécessite Android 13+
Flou d\'interface
@@ -259,10 +259,10 @@
Cette fonctionnalité n\'est pas parfaite. Dans certaines situations il est possible que quelqu\'un puisse tout de même interagir avec les blocs de paramètres rapides. \nGardez également à l\'esprit qu\'Android va toujours autoriser les redémarrages forcés et les Pixels vont toujours permettre d\'éteindre l\'appareil depuis l\'écran de verrouillage.
Veillez à retirer le bloc d\'activation du Mode Avion dans vos Réglages rapides car son utilisation ne peut être bloquée car cette action n\'ouvre pas de fenêtre.
Une fois activé, le menu \"Réglages rapides\" sera immédiatement fermé et l\'appareil sera verrouillé si quelqu\'un essaye d\'interagir avec les blocs de réglages réseaux quand l\'appareil est verrouillé. \n\nCela va également désactiver l\'authentification biométrique pour prévenir tout accès non autorisé. L\'échelle des animations va également être réduite à x0,1 quand l\'appareil est verrouillé pour rendre encore plus difficile l\'intéraction avec le menu.
- Disable QS when locked
- Immediately close the Quick Settings panel if someone tries to expand it while the device is locked.
- Disable QS Locked
- Prevent expanding Quick Settings when device is locked
+ Désactiver les Réglages rapides au verrouillage
+ Fermer immédiatement le panneau des Réglages rapides si quelqu\'un tente d\'y accéder quand l\'appareil est verrouillé.
+ Désactiver les Réglages rapides au verrouillage
+ Empêcher l\'agrandissement des Réglages rapides quand l\'appareil est verrouillé
Réorganiser les modes
Appuyez longuement pour basculer
@@ -604,7 +604,7 @@
Rechercher
Arrêter
Rechercher
- Search frozen apps
+ Rechercher des applis gelées
Retour
Retour
@@ -627,7 +627,7 @@
J\'ai compris
Si vous n\'avez aucune idée de ce que fait une fonctionnalité ou un bloc des réglages rapides ou des permissions qu\'ils nécessitent, il suffit d\'appuyer longuement dessus et cliquer sur \"Qu\'est-ce que c\'est ?\" pour en savoir plus.
Vous pouvez signaler des bogues ou trouvés des guides utiles à tout moment dans les paramètres de l\'appli.
- Laissez-moi entrer
+ C\'est parti !
Préférences
Configurez quelques paramètres de base pour débuter.
Paramètres de l\'appli
@@ -638,10 +638,10 @@
Vérifier la disponibilité de mise à jour au lancement de l\'appli
Ensemble
Vérifier ce qu\'il y a de neuf ?
- Welcome back to Essentials
- See what\'s new
- Couldn\'t load the release note
- View on web
+ Bon retour sur Essentials
+ Quoi de neuf ?
+ Impossible de charger les notes de version
+ Voir sur le Web
OK
Prévisualiser
Guide d\'aide
@@ -661,30 +661,30 @@
Activez/désactivez automatiquement le filtre lumière bleu de votre écran en fonction de l\'application en avant plan.
Renforcez la sécurité quand l\'appareil est verrouillé.\n\nRestreignez l\'accès à quelques blocs de Réglages rapides sensibles pour empêcher la modification non autorisée de la configuration réseau et empêchez toute nouvelle tentative en ralentissant les animations pour empêcher les d\'appuis rapides pouvant contourner la protection.\n\nCette fonctionnalité n\'est pas robuste et peut être contournée de multiples façons comme en utilisant certains blocs n\'ouvrant pas de fenêtre lors de l\'interaction comme les blocs de Bluetooth ou de Mode avion, leur utilisation ne peut donc être empêchée.
Protégez vos applis avec une seconde couche d\'authentification.\n\nLa méthode d\'authentification de déverrouillage de l\'appareil sera utilisée si elle remplit les critères de niveau de sécurité biométrique \"3\" selon les critères d\'Android.
- Soyez notifiés quand vous vous approchez de votre destination pour être sûr de ne jamais zapper votre arrêt.\n\nLancez Google Maps, appuyez longuement à proximité de votre destination et veillez à ce qu\'il soit écrit \"Repère placé\" (autrement, le calcul de la distance peut ne pas être précis) et faites partager la position dans l\'appli Essentials pour démarrer le suivi.
- Add Destination
- Edit Destination
- Home, Office, etc.
- Name
- Save
- Cancel
- Resolving location…
- Last Trip
- Saved Destinations
- No destinations saved yet.
- Delete Destination
- Tracking Now
- Re-Start
- Share coordinates (Dropped pin) from Google Maps to Essentials to save as a destination.\n\nThe distance shown is the direct distance to the destination, not the distance along the roads.\n\nTake all calculations of time and distance with a grain of salt as they are not always accurate.
- Are we there yet?
- Radius: %1$d m
- Distance to target: %1$s
- Last: %1$s
- Never
- To go
- %1$d min
- %1$d hr %2$d min
- %1$s (%2$d%%) • %3$s to go
+ Soyez notifiés quand vous vous approchez de votre destination pour être sûr de ne jamais rater votre arrêt.\n\nLancez Google Maps, appuyez longuement à proximité de votre destination et veillez à ce qu\'il soit écrit \"Repère placé\" (autrement, le calcul de la distance peut ne pas être précis) et faites partager la position dans l\'appli Essentials pour démarrer le suivi.
+ Ajouter une destination
+ Modifier la destination
+ Maison, Bureau, etc...
+ Nom
+ Enregistrer
+ Annuler
+ Résolution du lieu…
+ Dernier voyage
+ Destinations enregistrées
+ Aucune destination enregistrée pour l\'instant.
+ Supprimer la destination
+ Suivi en cours
+ Redémarrer
+ Partagez les coordonnées (Repère placé) depuis Google Maps vers Essentials pour enregistrer une destination.\n\nLa distance affichée est la distance à vol d\'oiseau vers la destination, pas la distance de trajet par les routes.\n\nPrenez tous les calculs de temps et de distance avec des pincettes car ils ne sont pas toujours corrects.
+ On est arrivés ?
+ Rayon : %1$dm
+ Distance de la destination : %1$s
+ Dernier : %1$s
+ Jamais
+ Y aller
+ %1$dmin
+ %1$dh %2$dmin
+ %1$s (%2$d%%) • %3$s pour y aller
Gelez des applis pour les empêcher de tourner en arrière-plan.\n\nPrévenir l\'utilisation de la batterie et de données en gelant totalement les applis quand vous ne les utilisez pas. Elles seront dégelées instantanément quand vous les lancez. Les applis ne seront pas visibles dans le tirroir d\'applications et elles ne vont également pas apparaître dans les mises à jour du Play Store quand elles sont gelées.
Une méthode d\'entrée personnalisée que personne n\'a demandé.\n\nC\'est juste une expérimentation. De multiples langues peuvent ne pas être supportés car c\'est une implémentation très complexe et chronophage.
Surveillez le niveau de batterie de vos appareils connectés.\n\nRegardez le statut de la batterie de vos écouteurs, casques, montres et autres accessoires dans un seul endroit. Connectez l\'application AirSync pour afficher le niveau de batterie de votre Mac également.
@@ -750,9 +750,9 @@
Service d\'automatisation
Automatisations actives
Surveiller les événements système pour vos automatisations
- App Detection Service
- App Detection Active
- Monitoring app activity
+ Service de détection d\'appli
+ Détection d\'appli active
+ Suivi de l\'activité des applis
Effets d\'appareil
Contrôler les effets systèmes comme l\'échelle des gris, la suppression du mode Always-on, l\'assombrissement du fond d\'écran et le mode nuit.
Échelle des gris
@@ -1123,15 +1123,15 @@
%1$s mis à jour
à l\'instant
- Today
- Yesterday
+ Aujourd\'hui
+ Hier
il y a %1$d minutes
il y a %1$d heures
il y a %1$d jours
- %1$d days ago
- %1$d weeks ago
+ il y a %1$d jours
+ il y a %1$d semaines
il y a %1$d mois
- %1$d months ago
+ il y a %1$d mois
il y a %1$d an(s)
Réessayer
Débuter l\'authentification
@@ -1171,10 +1171,10 @@
Interface
Affichage
Protection
- Accessibility
- Connectivity
- Privacy
- Utilities
+ Accessibilité
+ Connectivité
+ Confidentialité
+ Utilitaires
ABC
\?#/
Kaomoji
@@ -1263,14 +1263,14 @@
Retour envoyé avec succès ! Merci de nous aider à améliorer l\'appli.
Alternativement
- Diagnostics
- Device Check
- Get ready to be flashbanged!
- Abort
- Continue
- Your Essentials trial has expired
- Your free trial period of Essentials has ended. Access to advanced features like Button Remap, App Freezing, and DIY Automations with Premium.
- What\'s in Premium?
- April Fools!
- Just kidding, Essentials is and will always be free and open source. Enjoy! (っ◕‿◕)っ
+ Diagnostiques
+ Vérification de l\'appareil
+ Soyez prêts à vous prendre un flashbang !
+ Annuler
+ Continuer
+ Votre essai Essentials a expiré
+ Votre période d\'essai gratuite d\'Essentials est terminée. Accédez aux fonctionnalités avancées comme la réattribution des boutons, le Gel d\'applis ou les automatisations DIY avec le Premium.
+ Qu\'est-ce qu\'il y a dans le Premium ?
+ Poisson d\'avril !
+ Je rigole, Essentials est et sera toujours gratuit et open source. Profitez ! (っ◕‿◕)っ
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index f2d871446..fd14bdb39 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -24,8 +24,8 @@
生体認証でアプリを保護します。ロックされたアプリは起動時に認証が必要で、画面がオフになるまでロック解除された状態になります。
これはサードパーティ製アプリケーションであるため、堅牢なソリューションではないことにご注意ください。強力なセキュリティが必要な場合は、プライベートスペースなどの機能の使用を検討してください。
また、生体認証プロンプトでは、強力なセキュリティクラスの方法のみを使用できます。Pixel 7 などのデバイスの弱いクラスの顔認証セキュリティ方法では、指紋やPINなど、利用可能な他の強力な認証方法のみを使用できます。
- Use usage access
- Instead of accessibility (Freeze, App Lock, Dynamic Night Light)
+ 使用状況へのアクセスを使う
+ アクセシビリティの代わりに(フリーズ、アプリロック、ダイナミックナイトモード)
ボタンリマップを有効にする
Shizuku を使用する
@@ -174,12 +174,12 @@
大きさ
間隔
Sweep
- Position
- Random shapes
- Stroke thickness
- Left
- Center
- Right
+ 位置
+ ランダムな形
+ 線の太さ
+ 左
+ 中央
+ 右
アニメーション
点滅回数
点滅間隔
@@ -638,8 +638,8 @@
アプリを起動したときにアップデートを確認します
完了
更新内容を見る
- Welcome back to Essentials
- See what\'s new
+ Essentialsにおかえりなさい
+ 新機能を見る
Couldn\'t load the release note
View on web
完了
@@ -1171,10 +1171,10 @@
Interface
ディスプレイ
プロテクション
- Accessibility
- Connectivity
- Privacy
- Utilities
+ アクセシビリティ
+ 接続
+ プライバシー
+ ユーテリティ
ABC
\?#/
顔文字
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 5b67e638c..075a64ee6 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -12,7 +12,7 @@
Мигание фонариком
Проверять наличие pre-releases
Могут быть нестабильны
- Default tab
+ Вкладка по умолчанию
Безопасность
Включить блокировку приложения
@@ -24,8 +24,8 @@
Защитите свои приложения с помощью биометрической аутентификации. Заблокированные приложения требуют аутентификации при запуске и остаются разблокированными до тех пор, пока экран не погаснет.
Имейте в виду, что это не надежное решение, поскольку это всего лишь стороннее приложение. Если вам нужна надежная защита, рассмотрите возможность использования личного пространства или других подобных функций.
Обратите внимание, что запрос на биометрическую аутентификацию позволяет использовать только методы класса STRONG secure. Методы разблокировки по лицу, относящиеся к классу WEAK, на устройствах, таких как Pixel 7, смогут использовать только другие доступные методы надежной аутентификации, такие как отпечаток пальца или PIN-код.
- Use usage access
- Instead of accessibility (Freeze, App Lock, Dynamic Night Light)
+ Использовать доступ к использованию
+ Вместо специальных возможностей (Заморозка, блокировка приложения, динамическая ночная подсветка)
Включить переназначение кнопок
Использовать Shizuku или Root
@@ -116,15 +116,15 @@
Управление приложением
Заморозка
Разморозить
- Remove
- Create shortcut
- App info
- What is Freeze?
- App freezing disables the app\'s launch activity which removes it from the app list and updates. It will prevent the app from starting at all until it\'s unfrozen which saves resources but you will need to unfreeze from here or manually re-enable.
- DO NOT FREEZE COMMUNICATION APPS
- What is Suspend?
- Suspending an app used to pause the app activity and prevent background executions but with recent Android changes, it only pauses the notifications from appearing and that\'s pretty much it. But does allows you to unpause from the launcher app list as they will be still available as grayscale paused app icons.
- Should work the same as the native app pause/ focus mode features.
+ Удалить
+ Создать ярлык
+ Информация приложения
+ Что такое Заморозка?
+ Заморозка приложения отключает запуск приложения, в результате чего оно удаляется из списка приложений и обновлений. Это предотвратит запуск приложения вообще до тех пор, пока оно не будет разморожено, что экономит ресурсы, но вам нужно будет разморозить его здесь или повторно включить вручную.
+ НЕ ЗАМОРАЖИВАЙТЕ КОММУНИКАЦИОННЫЕ ПРИЛОЖЕНИЯ
+ Что такое Приостановка?
+ Приостановка приложения использовалась для приостановки активности приложения и предотвращения фонового выполнения, но с последними изменениями в Android это только приостанавливает появление уведомлений, и на этом все. Но это позволяет вам отменить приостановку в списке приложений запуска, поскольку они по-прежнему будут доступны в виде значков приложений, приостановленных в оттенках серого.
+ Должно работать так же, как и функции встроенного режима паузы/фокусировки в приложении.
Больше настроек
Заморозить все приложения
Разморозить все приложения
@@ -147,7 +147,7 @@
Не замораживать активные приложения
Статистика использования
Необходимо для определения, какие приложения в данный момент отображаются, чтобы избежать зависания
- Required to detect foreground apps for App Lock features when accessibility is not used.
+ Требуется для обнаружения функций блокировки приложений переднего плана, когда специальные возможности не используются.
Требуется для определения медиа и активных уведомлений, чтобы избежать их зависания
Режим заморозки
Заморожено
@@ -173,13 +173,13 @@
Регулировка индикатора
Размер
Продолжительность
- Sweep
- Position
- Random shapes
- Stroke thickness
- Left
- Center
- Right
+ Скользящий
+ Позиция
+ Случайные фигуры
+ Толщина фигуры
+ Слева
+ Центр
+ Справа
Анимация
Количество импульсов
Длительность мигания
@@ -192,7 +192,7 @@
Без чёрного фона
Добавить
- Added
+ Добавлен
Уже добавлено
Требуется Android 13+
Размытие интерфейса
@@ -259,10 +259,10 @@
Эта функция не является надежной. В некоторых случаях пользователь все еще может взаимодействовать с плиткой. \nТакже имейте в виду, что Android всегда разрешает принудительную перезагрузку, а телефоны Pixel всегда позволяют отключить устройство с экрана блокировки.
Обязательно удалите плитку \"Режим полета\" из быстрых настроек, так как это невозможно предотвратить, поскольку она не открывает диалоговое окно.
Когда включено, панель быстрых настроек будет немедленно закрываться, а устройство будет блокироваться, если кто-то попытается взаимодействовать с интернет-плитками, пока устройство заблокировано. \n\nПри этом будет отключена биометрическая разблокировка, чтобы предотвратить дальнейший несанкционированный доступ. Масштаб анимации при блокировке будет уменьшен до 0,1x, чтобы сделать взаимодействие с устройством еще более затруднительным.
- Disable QS when locked
- Immediately close the Quick Settings panel if someone tries to expand it while the device is locked.
- Disable QS Locked
- Prevent expanding Quick Settings when device is locked
+ Отключать QS при блокировке
+ Немедленно закрывает панель быстрых настроек, если кто-то попытается открыть её, пока устройство заблокировано.
+ Отключить блокировку QS
+ Запретить расширение быстрых настроек, когда устройство заблокировано
Изменить порядок режимов
Зажмите для переключения
@@ -604,7 +604,7 @@
Поиск
Стоп
Поиск
- Search frozen apps
+ Найти приложение
Назад
Назад
@@ -638,10 +638,10 @@
Проверять наличие обновлений при запуске приложения
Отметить всё
Проверьте \"Что нового?\"
- Welcome back to Essentials
- See what\'s new
- Couldn\'t load the release note
- View on web
+ Добро пожаловать в Essentials
+ Что нового
+ Не удалось загрузить примечание к выпуску
+ Открыть в браузере
Готово
Просмотр
Руководство
@@ -662,29 +662,29 @@
Повысьте безопасность, когда ваше устройство заблокировано.\n\nОграничьте доступ к некоторым конфиденциальным плиткам быстрых настроек, предотвращая несанкционированные изменения в сети и дополнительно предотвращая их повторные попытки сделать это, увеличивая скорость анимации для предотвращения сенсорного спама.\n\nЭта функция не является надежной и может иметь недостатки. Hапример, некоторые плитки, которые позволяют переключаться напрямую и которые невозможно предотвратить (Bluetooth или Режим полета).
Защитите свои приложения с помощью вторичного уровня аутентификации.\n\nМетод аутентификации на экране блокировки вашего устройства будет использоваться, если он соответствует уровню биометрической безопасности класса 3 по стандартам Android.
Получите уведомление, когда вы приблизитесь к пункту назначения, чтобы не пропустить остановку.\n\nПерейдите на Google Карты, нажмите и удерживайте рядом с пунктом назначения и убедитесь, что открылось меню с описанием места, а затем поделитесь местоположением с приложением Essentials и начните отслеживать.
- Add Destination
- Edit Destination
- Home, Office, etc.
- Name
- Save
- Cancel
- Resolving location…
- Last Trip
- Saved Destinations
- No destinations saved yet.
- Delete Destination
- Tracking Now
- Re-Start
- Share coordinates (Dropped pin) from Google Maps to Essentials to save as a destination.\n\nThe distance shown is the direct distance to the destination, not the distance along the roads.\n\nTake all calculations of time and distance with a grain of salt as they are not always accurate.
- Are we there yet?
- Radius: %1$d m
- Distance to target: %1$s
- Last: %1$s
- Never
- To go
- %1$d min
- %1$d hr %2$d min
- %1$s (%2$d%%) • %3$s to go
+ Добавить пункт назначения
+ Изменить пункт назначения
+ Дом, офис и т.д.
+ Имя
+ Сохранить
+ Отменить
+ Определение местоположения…
+ Последняя поездка
+ Сохраненные места
+ Нет сохраненных мест.
+ Удалить пункт назначения
+ Отслеживаем сейчас
+ Перезапустить
+ Поделитесь координатами (точка на карте) из Google Maps в Essentials, чтобы сохранить их в качестве пункта назначения.\n\nУказанное расстояние - это прямое расстояние до пункта назначения, а не расстояние по дорогам.\n\nОтноситесь ко всем расчетам времени и расстояния со всей серьезностью, поскольку они не всегда точны.
+ Мы уже на месте?
+ Радиус: %1$d м
+ Расстояние до цели: %1$s
+ Последнее: %1$s
+ Ни разу
+ Осталось
+ %1$d мин
+ %1$d ч %2$d мин
+ %1$s (%2$d%%) • %3$s осталось
Заморозьте приложения, чтобы они не работали в фоновом режиме.\n\nПредотвратите разрядку аккумулятора и использование данных, полностью заморозив приложения, когда вы ими не пользуетесь. Они будут разморожены мгновенно при запуске. Приложения не будут отображаться в панели приложений, а также не будут отображаться в обновлениях приложений в Play Store, если они заморожены.
Пользовательский метод ввода, о котором никто не просил.\n\nЭто всего лишь эксперимент. Несколько языков могут не поддерживаться, поскольку это очень сложная и трудоемкая реализация.
Контролируйте уровень заряда батареи всех подключенных устройств.\n\nПросматривайте состояние батареи наушников, часов и других аксессуаров Bluetooth в одном месте. Подключитесь к приложению AirSync, чтобы отобразить уровень заряда батареи вашего Mac.
@@ -750,9 +750,9 @@
Служба автоматизации
Автоматизация активна
Мониторинг системных событий для вашей автоматизации
- App Detection Service
- App Detection Active
- Monitoring app activity
+ Служба обнаружения приложений
+ Обнаружение приложений активно
+ Мониторинг активности приложения
Эффекты устройства
Управляйте эффектами на уровне системы, такими как оттенки серого, подавление AOD, затемнение обоев и ночной режим.
Оттенки серого
@@ -769,8 +769,8 @@
Универсальный набор инструментов для вашего Pixel и Android
Система
- Обычай
- Специально для приложения
+ Кастомный
+ Особое приложения
Не удалось выполнить аутентификацию
Нажмите и удерживайте приложение в сетке, чтобы добавить ярлык
@@ -1171,10 +1171,10 @@
Интерфейс
Отображать
Защита
- Accessibility
- Connectivity
- Privacy
- Utilities
+ Доступность
+ Возможности подключения
+ Конфиденциальность
+ Утилиты
АВС
\?#/
Kaomoji
@@ -1268,9 +1268,9 @@
Приготовься к вспышке!
Отменить
Продолжить
- Your Essentials trial has expired
- Your free trial period of Essentials has ended. Access to advanced features like Button Remap, App Freezing, and DIY Automations with Premium.
- What\'s in Premium?
- April Fools!
- Just kidding, Essentials is and will always be free and open source. Enjoy! (っ◕‿◕)っ
+ Срок действия вашей пробной версии Essentials истек
+ Ваш бесплатный ознакомительный период с Essentials закончился. Получите доступ к расширенным функциям, таким как переназначение кнопок, замораживание приложений и автоматизация \"своими руками\" вместе с Premium.
+ Что в Premium?
+ С 1 апреля!
+ Шучу, Essentials есть и всегда будет бесплатным и с открытым исходным кодом. Наслаждайтесь! (っ◕‿◕)っ
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index 3582e44fe..2b11fe5d3 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -1,6 +1,6 @@
- Deneme
+ BETA
Essentials Erişilebilirlik Servisi\n\nBu servis bazı gelişmiş özellikler için gereklidir:\n\nFiziksel Tuş Atama:\nEkran kapalıyken bile ses tuşlarını algılayıp Fener gibi özellikleri aktif etmeyi sağlar.\n\nUygulama Başına Ayarlar:\nDinamik Gece Işığı, Bildirim Aydınlatma Renkleri ve Uygulama Kilitleme gibi özelliklere spesifik profiller ayarlamak için şu anda kullanılan uygulamayı gözetler.\n\nEkran Kontrolu:\nUygulamaların ekranı kapatmasına ve ekran durumunu değiştirmesine olanak sağlar (Ekrana Çift Tıklama veya bir Widget gibi)\n\nGüvenlik:\nEkran kapalıyken açık olan uygulamayı tespit ederek izin verilmeyen değişiklikleri engeller.\n\nYazılı olan bilgiler veya kullanıcı bilgileri toplanmaz veya aktarılmaz.
Uygulama Dondurma
Nadiren kullanılan uygulamaları devre dışı bırakın
@@ -12,7 +12,7 @@
El Feneri Darbesi
Ön sürümleri kontrol edin
Kararsız olabilir
- Default tab
+ Varsayılan sekme
Güvenlik
Uygulama kilidini etkinleştir
@@ -98,12 +98,12 @@
Hemen Kafein almaya başlayın.
Zaman Aşımı Ön Ayarları
QS kutucuğu için mevcut süreleri seçin
- 5m
- 10m
- 30 dakika
+ 5dk
+ 10dk
+ 30dk
Erişimi Rahatsız Etmeyin
Ses, titreşim ve sessiz modları arasında geçiş yapmak için gereklidir
- 1 saat
+ 1sa
∞
%1$ds\'de başlıyor…
%1$s geriye kalan
@@ -116,9 +116,9 @@
Uygulama Kontrolü
Dondur
Çöz
- Remove
- Create shortcut
- App info
+ Kaldır
+ Kısayol oluştur
+ Uygulama bilgisi
What is Freeze?
App freezing disables the app\'s launch activity which removes it from the app list and updates. It will prevent the app from starting at all until it\'s unfrozen which saves resources but you will need to unfreeze from here or manually re-enable.
DO NOT FREEZE COMMUNICATION APPS
@@ -136,9 +136,9 @@
Kilitlendiğinde don
Donma gecikmesi
Hemen
- 1m
- 5m
- 15m
+ 1dk
+ 5dk
+ 15dk
Manuel
Uygulamaları otomatik dondurma
Cihaz kilitlendiğinde seçilen uygulamaları dondurun. Ekranı kapattıktan kısa bir süre sonra kilidini açarsanız uygulamaların donmasını önlemek için bir gecikme seçin.
@@ -191,7 +191,7 @@
Kilit ekranını göster
Siyah kaplama yok
- Eklemek
+ Ekle
Added
Zaten eklendi
Android 13+ gerektirir
@@ -200,7 +200,7 @@
Hassas İçerik
Uyandırmak için dokunun
AOD
- Kafeinat
+ Kafein
Ses Modu
Bildirim Aydınlatması
Dinamik Gece Lambası
@@ -273,11 +273,11 @@
Bağlantı
Telefon ve Ağ
- Ses ve Medya
+ Ses& Medya
Sistem Durumu
- OEm\'e Özel
+ OEM\'e Özel
- Wifi
+ WiFi
Bluetooth
NFC / Felica
VPN
@@ -305,12 +305,12 @@
Senkronizasyon
Yönetilen Profil
Rahatsız etmeyin
- Gizlilik ve Güvenli Klasör
+ Gizlilik & Güvenli Klasör
Güvenlik Durumu (SU)
OTG Fare / Klavye
Samsung Akıllı Özellikler
Samsung Hizmetleri
- ethernet
+ Ethernet
Saatte Saniyeleri Göster
Pil Yüzdesi
@@ -323,7 +323,7 @@
Akıllı Veri özelliği için ağ türünü algılamak için gereklidir
Dokunsal geri bildirimi tetiklemek amacıyla çağrı durumu değişikliklerini tespit etmek için gereklidir.
Akıllı Görünürlük
- Akıllı Wi-Fi
+ Akıllı WiFi
WiFi bağlandığında mobil verileri gizle
Belirli modlarda mobil verileri gizle
Tüm Simgeleri Sıfırla
@@ -347,8 +347,8 @@
Görseller
Sistem
- Search for Tools, Mods and Tweaks
- için sonuç yok \"%1$s\"
+ Essentials\'ta Ara
+ \"%1$s\" için sonuç yok
Arama Sonuçları
%1$s aşağıdaki izinleri gerektirir
@@ -356,9 +356,9 @@
Ekranı kapatmak için görünmez widget
Durum çubuğu simgeleri
Durum çubuğu simgelerinin görünürlüğünü kontrol etme
- Kafeinat
+ Kafein
Ekranı uyanık tutun
- Haritalar güç tasarrufu modunu
+ Haritalar güç tasarrufu modu
Herhangi bir Android cihaz için
Bildirim aydınlatması
Bildirimler için ışığı açın
@@ -397,7 +397,7 @@
Nadiren kullanılan uygulamaları devre dışı bırakın
Filigran
Fotoğraflara EXIF verileri ve logolar ekleme
- Her Zaman Ekranda
+ Her Zaman Açık Ekran
Ekran kapalıyken saati ve bilgileri göster
Takvim Senkronizasyonu
Etkinlikleri saatinize senkronize edin
@@ -478,7 +478,7 @@
Kontrolü uyandırmak için iki kez dokunun
AOD
Daima Açık Ekranda geçiş
- Kafeinat
+ Kafein
Ekranı uyanık tutma geçişi
Ses Modu
Ses modları arasında geçiş yapma (Zil/Titreşim/Sessiz)
@@ -522,7 +522,7 @@
Donma gecikmesi
Kilitlemeden sonra donmadan önceki gecikme
- Şizuku
+ Shizuku
Gelişmiş komutlar için gereklidir. Shizuku\'yu Play Store\'dan yükleyin.
Shizuku\'yu yükleyin
İzin Ver
@@ -576,7 +576,7 @@
En son sürümde APK bulunamadı
Depo bulunamadı
Son Sürüm
- BENİOKu\'yu görüntüle
+ BENİOku\'yu görüntüle
%1$d Yıldızlar
Yüklü uygulama
Kurulu değil
@@ -618,7 +618,7 @@
Simulate crash
Welcome to Essentials
A Toolbox for Android Nerds
- by sameerasw.com
+ sameerasw.com tarafından
Let\'s Begin
Acknowledgement
This app is a collection of utilities that can interact deeply with your device system. Using some features might modify system settings or behavior in unexpected ways. \n\nYou only need to grant necessary permissions which are required for selected features you are using giving you full control over the app\'s behavior. \n\nFurther more, the app does not track or store any of your personal data, I don\'t need them... Keep to yourself safe. You can refer to the source code for more information. \n\nThis app is fully open source and is and always will be free to use. Do not pay or install from unknown sources.
@@ -630,8 +630,8 @@
Let Me in Already
Preferences
Configure some basic settings to get started.
- App Settings
- Language
+ Uygulama Ayarları
+ Dil
Haptic Feedback
Updates
Auto check for updates
@@ -643,7 +643,7 @@
Couldn\'t load the release note
View on web
Tamamlamak
- Önizleme
+ Ön izleme
Yardım Kılavuzu
Bu nedir?
Güncelleme Mevcut
@@ -666,8 +666,8 @@
Edit Destination
Home, Office, etc.
Name
- Save
- Cancel
+ Kaydet
+ İptal et
Resolving location…
Last Trip
Saved Destinations
@@ -741,7 +741,7 @@
Eylem Seç
Eylemde
Çıkış Eylemi
- İptal etmek
+ İptal et
Kaydetmek
Düzenlemek
Silmek
@@ -847,7 +847,7 @@
- güvenli
- - mahremiyet
+ - gizlilik
- biyometrik
- yüz
- parmak izi
@@ -859,7 +859,7 @@
- kalmak
- - Açık
+ - açık
- zaman aşımı
@@ -869,7 +869,7 @@
- zamanlayıcı
- - Beklemek
+ - bekle
- zaman aşımı
Her zaman karanlık tema
@@ -899,7 +899,7 @@
- adb
- - USB
+ - usb
- hata ayıklama
@@ -913,7 +913,7 @@
- kaplama
- - Her zaman
+ - her zaman
- görüntülemek
- saat
@@ -929,12 +929,12 @@
- dondurmak
- - Şizuku
+ - shizuku
- manuel
- - Şimdi
- - Şizuku
+ - şimdi
+ - shizuku
- yakınlık
@@ -989,7 +989,7 @@
Görevler
Sıfır
- Yardım ve Kılavuzlar
+ Yardım & Kılavuzlar
Daha fazla desteğe mi ihtiyacınız var? Ulaş,
Yıkılmak
Genişletmek
@@ -1003,9 +1003,9 @@
Erişilebilirlik, bildirim dinleyicisi veya yer paylaşımı izinleri gibi hassas izinler vermeye çalışırsanız bu erişim reddedildi mesajını alabilirsiniz. Bunu vermek için aşağıdaki adımları kontrol edin.
1. Essentials\'ın uygulama bilgileri sayfasına gidin.
2. 3 noktalı menüyü açın ve \'Kısıtlı ayarlara izin ver\' öğesini seçin. Biyometri ile kimlik doğrulaması yapmanız gerekebilir. İşiniz bittiğinde, izni tekrar vermeyi deneyin.
- Şizuku
+ Shizuku
Shizuku, uygulamaların sistem APi\'lerini doğrudan ADB veya kök izinleriyle kullanmasına olanak tanıyan güçlü bir araçtır. Harita min modu, Uygulama Dondurucu gibi özellikler için gereklidir. Ve WRITE_SECURE_SETTINGS gibi bazı izinlerin verilmesine yardımcı olacağız. \n\nAncak Shizuku\'nun Play Store sürümü eski olabilir ve muhtemelen son Android sürümlerinde kullanılamayacaktır, bu durumda lütfen github\'dan en son sürümü veya bunun güncel bir çatalını edinin.
- Haritalar güç tasarrufu modunu
+ Haritalar güç tasarrufu modu
Bu özellik, şu anda Pixel 10 serisine özel olan Google Haritalar güç tasarrufu modunu otomatik olarak tetikler. Bir topluluk üyesi, haritaların minMode etkinliğini kök ayrıcalıklarıyla başlatarak herhangi bir Android cihazda hala kullanılabilir olduğunu keşfetti. \n\nVe ardından, bir gezinme oturumu sırasında ekran kapandığında otomatik olarak tetiklenecek şekilde Tasker ile otomatik hale getirdim ve ardından sadece çalışma zamanı Shizuku izinleriyle aynı şeyi başarabildim. \n\nÜzerinde gösterilmesi amaçlanıyor Pixel 10 serisinin AOd\'si bu nedenle ekranda ara sıra yatay modu desteklemediğini belirten bir mesaj görebilirsiniz. Bu, uygulama tarafından önlenemez ve göz ardı edebilirsiniz.
Sessiz ses modu
Sessiz modun aynı zamanda DNd\'yi de tetiklediğini fark etmiş olabilirsiniz. \n\nBu, Android\'in bunu nasıl uyguladığından kaynaklanmaktadır; titreşim moduna geçmek için aynı APi\'yi kullansak bile, bazı nedenlerden dolayı sessiz modla birlikte DNd\'yi de açar ve bu şu anda önlenebilir değildir. :(
@@ -1122,7 +1122,7 @@
Bağlı uygulama yok
Güncellendi %1$s
- Şu anda
+ hemen şimdi
Today
Yesterday
%1$dm önce
@@ -1160,7 +1160,7 @@
Cihazınızı kolaylıkla kontrol edin
Widget\'lar
Ana ekranınıza bir bakışta
- Görüntülemek
+ Ekran
Deneyiminizi geliştirecek görseller
Kol saati
WearOS ile entegrasyonlar
@@ -1171,10 +1171,10 @@
Arayüz
Görüntülemek
Koruma
- Accessibility
- Connectivity
- Privacy
- Utilities
+ Erişilebilirlik
+ Bağlantı
+ Gizlilik
+ Araçlar
ABC
\?#/
Kaomoji
@@ -1218,8 +1218,8 @@
Winking
Writing
Hey! Güncellemeleri uygulama ayarlarından kontrol edebilirsiniz, buraya eklemenize gerek yok XD
- İhracat
- İçe aktarmak
+ Dışa aktar
+ İçe aktar
Kod depoları başarıyla dışa aktarıldı
Kod depoları dışa aktarılamadı
Kod depoları başarıyla içe aktarıldı
@@ -1245,8 +1245,8 @@
Otomatik erişilebilirlik
WRITE_SECURE_SETTINGS kullanılarak eksikse, uygulama başlatıldığında erişilebilirlik iznini otomatik olarak verir.
Yardım ve Kılavuzlar
- Android\'in
- Depolamak
+ Android cihazınız
+ Depolama
Hafıza
Bulanıklaştırmayı kullan
Kullanıcı arayüzünde aşamalı bulanıklaştırma öğelerini etkinleştirin