diff --git a/app/src/main/java/eu/faircode/netguard/ActivitySettings.java b/app/src/main/java/eu/faircode/netguard/ActivitySettings.java
index 402ed3b2..e4aebf8f 100644
--- a/app/src/main/java/eu/faircode/netguard/ActivitySettings.java
+++ b/app/src/main/java/eu/faircode/netguard/ActivitySettings.java
@@ -123,6 +123,10 @@ public class ActivitySettings extends AppCompatActivity implements SharedPrefere
Preference pref_auto_enable = screen.findPreference("auto_enable");
pref_auto_enable.setTitle(getString(R.string.setting_auto, prefs.getString("auto_enable", "0")));
+ // Handle screen delay
+ Preference pref_screen_delay = screen.findPreference("screen_delay");
+ pref_screen_delay.setTitle(getString(R.string.setting_delay, prefs.getString("screen_delay", "0")));
+
// Handle stats
EditTextPreference pref_stats_base = (EditTextPreference) screen.findPreference("stats_base");
EditTextPreference pref_stats_frequency = (EditTextPreference) screen.findPreference("stats_frequency");
@@ -130,7 +134,6 @@ public class ActivitySettings extends AppCompatActivity implements SharedPrefere
pref_stats_base.setTitle(getString(R.string.setting_stats_base, prefs.getString("stats_base", "5")));
pref_stats_frequency.setTitle(getString(R.string.setting_stats_frequency, prefs.getString("stats_frequency", "1000")));
pref_stats_samples.setTitle(getString(R.string.setting_stats_samples, prefs.getString("stats_samples", "90")));
- PreferenceCategory stats = (PreferenceCategory) screen.findPreference("category_stats");
// Handle export
Preference pref_export = screen.findPreference("export");
@@ -320,6 +323,9 @@ public class ActivitySettings extends AppCompatActivity implements SharedPrefere
} else if ("auto_enable".equals(name))
getPreferenceScreen().findPreference(name).setTitle(getString(R.string.setting_auto, prefs.getString(name, "0")));
+ else if ("screen_delay".equals(name))
+ getPreferenceScreen().findPreference(name).setTitle(getString(R.string.setting_delay, prefs.getString(name, "0")));
+
else if ("dark_theme".equals(name))
recreate();
diff --git a/app/src/main/java/eu/faircode/netguard/SinkholeService.java b/app/src/main/java/eu/faircode/netguard/SinkholeService.java
index 35dc7b1a..c56c14d6 100644
--- a/app/src/main/java/eu/faircode/netguard/SinkholeService.java
+++ b/app/src/main/java/eu/faircode/netguard/SinkholeService.java
@@ -20,6 +20,7 @@ package eu.faircode.netguard;
*/
import android.annotation.TargetApi;
+import android.app.AlarmManager;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
@@ -65,6 +66,7 @@ import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.ArrayList;
import java.util.Comparator;
+import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
@@ -76,6 +78,7 @@ public class SinkholeService extends VpnService {
private boolean last_connected = false;
private boolean last_metered = true;
+ private boolean last_interactive = false;
private boolean phone_state = false;
private Object subscriptionsChangedListener = null;
private ParcelFileDescriptor vpn = null;
@@ -105,6 +108,8 @@ public class SinkholeService extends VpnService {
private static volatile PowerManager.WakeLock wlInstance = null;
+ private static final String ACTION_SCREEN_OFF_DELAYED = "eu.faircode.netguard.SCREEN_OFF_DELAYED";
+
synchronized private static PowerManager.WakeLock getLock(Context context) {
if (wlInstance == null) {
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
@@ -507,7 +512,6 @@ public class SinkholeService extends VpnService {
boolean unmetered_4g = prefs.getBoolean("unmetered_4g", false);
boolean roaming = Util.isRoaming(SinkholeService.this);
boolean national = prefs.getBoolean("national_roaming", false);
- boolean interactive = Util.isInteractive(this);
boolean telephony = Util.hasTelephony(this);
// Update connected state
@@ -538,7 +542,7 @@ public class SinkholeService extends VpnService {
" telephony=" + telephony +
" generation=" + generation +
" roaming=" + roaming +
- " interactive=" + interactive);
+ " interactive=" + last_interactive);
// Build VPN service
final Builder builder = new Builder();
@@ -555,7 +559,7 @@ public class SinkholeService extends VpnService {
for (Rule rule : Rule.getRules(true, TAG, this)) {
boolean blocked = (metered ? rule.other_blocked : rule.wifi_blocked);
boolean screen = (metered ? rule.screen_other : rule.screen_wifi);
- if ((!blocked || (screen && interactive)) && (!metered || !(rule.roaming && roaming))) {
+ if ((!blocked || (screen && last_interactive)) && (!metered || !(rule.roaming && roaming))) {
nAllowed++;
if (debug)
Log.i(TAG, "Allowing " + rule.info.packageName);
@@ -680,7 +684,29 @@ public class SinkholeService extends VpnService {
public void onReceive(Context context, Intent intent) {
Log.i(TAG, "Received " + intent);
Util.logExtras(intent);
- reload(null, "interactive state changed", SinkholeService.this);
+
+ SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(SinkholeService.this);
+ int delay = Integer.parseInt(prefs.getString("screen_delay", "0"));
+ boolean interactive = Intent.ACTION_SCREEN_ON.equals(intent.getAction());
+
+ AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
+ PendingIntent pi = PendingIntent.getBroadcast(context, 0, new Intent(ACTION_SCREEN_OFF_DELAYED), PendingIntent.FLAG_UPDATE_CURRENT);
+ am.cancel(pi);
+
+ if (interactive || delay == 0) {
+ last_interactive = interactive;
+ reload(null, "interactive state changed", SinkholeService.this);
+ } else {
+ if (ACTION_SCREEN_OFF_DELAYED.equals(intent.getAction())) {
+ last_interactive = interactive;
+ reload(null, "interactive state changed", SinkholeService.this);
+ } else {
+ if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M)
+ am.set(AlarmManager.RTC_WAKEUP, new Date().getTime() + delay * 60 * 1000L, pi);
+ else
+ am.setAndAllowWhileIdle(AlarmManager.RTC_WAKEUP, new Date().getTime() + delay * 60 * 1000L, pi);
+ }
+ }
// Start/stop stats
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
@@ -781,9 +807,11 @@ public class SinkholeService extends VpnService {
mServiceHandler = new ServiceHandler(mServiceLooper);
// Listen for interactive state changes
+ last_interactive = Util.isInteractive(this);
IntentFilter ifInteractive = new IntentFilter();
ifInteractive.addAction(Intent.ACTION_SCREEN_ON);
ifInteractive.addAction(Intent.ACTION_SCREEN_OFF);
+ ifInteractive.addAction(ACTION_SCREEN_OFF_DELAYED);
registerReceiver(interactiveStateReceiver, ifInteractive);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
diff --git a/app/src/main/res/values-af/strings.xml b/app/src/main/res/values-af/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-af/strings.xml
+++ b/app/src/main/res/values-af/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index 989c6821..1fb688f5 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
خيارات
إدارة تطبيقات النظام
تمكين التلقائي بعد دقائق %1$s
+ Delay screen off %1$s minutes
استخدام الثيم الداكن
شبكة اتصال لاسلكي: %1$s
تـــعـــامـــل مـــقـــاس لـــشـــبـــكـــة لاســـلـــكـــي
@@ -51,6 +52,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
تـــحـــديـــد قـــواعـــد لـــتـــطـــبــــيـــقـــات الـــنـــظـــام (لـــلـــخـــبـــراء)
تــظــهــر ســرعــة الــشــبــكــة فـي الــرســم الــبــيــانـي فـي إعـلام شــريــط الــحــالات
بعد تعطيل استخدام الويدجت، تلقائياً يعمل NetGuard مرة أخرى بعد عدد محدد من الدقائف \n ادخل صفر لتعطيل هذا الخيار
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
تطبيق قواعد شبكة اللاسلكية للشبكة المحددة فقط (تطبيق قواعد شبكة الجوال لباقي شبكات Wi-fi)
تـــطـــبـــيـــق قـــواعـــد شـــبـــكـــة الـــجـــوال لـــشـــبـــكـــات لاســـلـــكـــي (مـــربـــوطــة، مـــدفـــوعـــة) مـــقـــنـــنـــة
تـــطـــبـــيـــق قـــواعـــد شـــبـــكـــة لاســـلـــكـــى لـــلـــجـــيـــل الـــثـــانـــي لإتـــصـــل الـــبـــيـــانـــات
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 8ea20627..ec46a59f 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -30,6 +30,7 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
Optionen
System-Apps anzeigen
Automatisch nach %1$s-Minuten aktivieren
+ Delay screen off %1$s minutes
Dunkles Thema verwenden
WLAN-Heimnetzwerk: %1$s
Gemessenes WLAN-Netzwerk handhaben
@@ -50,6 +51,7 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
Regeln für System-Apps definieren (für Experten)
Netzwerkgeschwindigkeitskurve in Statusleiste anzeigen
Nach dem Deaktivieren über das Widget, wird NetGuard nach einer festgelegten Anzahl von Minuten automatisch wieder aktiviert\nNull eingeben zum Deaktivieren dieser Option
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
WLAN-Regeln nur für ausgewähltes Netzwerk anwenden (Mobilfunknetz-Regeln für andere WLAN-Netzwerke anwenden)
Mobilfunk-Regeln gemessenen (bezahlten, tethered) WLAN-Netzwerken anwenden
WLAN-Netzwerk-Regeln für 2G-Datenverbindungen anwenden
@@ -80,14 +82,14 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
Erlauben
Sperren
Pro-Funktionen
- Pro features trial until %1$s
- Pro features trial period ended
- The following convenience features are available:
- Search, filter, sort applications
- New application reminders
- Appearance (theme)
- Network speed graph
- Export/import (backup)
+ Pro-Funktionen-Testzeitraum bis %1$s
+ Pro-Funktionen-Testzeitraum abgelaufen
+ Folgende Annehmlichkeiten stehen zur Verfügung:
+ Anwendungen suchen, filtern und sortieren
+ Erinnerung neue Anwendung
+ Design (Themen)
+ Netzwerkgeschwindigkeitsgraph
+ Export/Import (Sicherung)
Detailinformationen
Aktiviert
Challenge
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml
index 9ab70538..b7312ed4 100644
--- a/app/src/main/res/values-en/strings.xml
+++ b/app/src/main/res/values-en/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 94063528..3e5452db 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -31,6 +31,7 @@ Estos problemas son causados por errores en Android o en el software provisto po
Opciones
Administrar aplicaciones de sistema
Activar automáticamente después de %1$s minutos
+ Delay screen off %1$s minutes
Usar tema oscuro
Redes Wi-Fi domésticas: %1$s
Manejo de redes Wi-Fi limitadas
@@ -51,6 +52,7 @@ Estos problemas son causados por errores en Android o en el software provisto po
Definir reglas para aplicaciones de sistema (para expertos)
Mostrar gráfico de velocidad de red en notificaciones de la barra de estado
Después de desactivar NetGuard mediante el widget, activarlo automáticamente de nuevo después del número de minutos seleccionado.\nIngresar cero para deshabilitar esta opción
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Aplicar reglas de red Wi-Fi para la red seleccionada solamente (aplicar reglas de red móvil para otras redes Wi-Fi)
Aplicar reglas de red móvil a redes Wi-Fi limitadas, como redes por anclaje de datos o zona Wi-Fi
Aplicar reglas de red Wi-Fi para conexiones de datos 2G
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
index 953bcded..3f41f0c6 100644
--- a/app/src/main/res/values-et/strings.xml
+++ b/app/src/main/res/values-et/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-eu/strings.xml
+++ b/app/src/main/res/values-eu/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index ae593794..99efc10f 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -31,6 +31,7 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
Options
Gérer les applications système
Activer automatiquement après %1$s minutes
+ Delay screen off %1$s minutes
Utiliser le thème sombre
Réseaux Wi-Fi domicile : %1$s
Gérer les réseaux Wi-Fi limités
@@ -51,6 +52,7 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
Définir les règles pour les applications système (Pour experts)
Afficher le graphique de vitesse réseau dans la barre d\'état et notification
Après désactivation via le widget, activer automatiquement de nouveau NetGuard après le nombre de minutes sélectionné\nEnter zéro pour désactiver cette option
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Appliquer les règles de réseau Wi-Fi pour le réseau sélectionné uniquement (appliquer les règles de réseau mobile pour les autres Wi-Fi)
Appliquer les règles de réseaux mobiles aux réseaux Wi-Fi limités (payants, partagés)
Appliquer les règles de réseau Wi-Fi pour les connexions de données 2G
diff --git a/app/src/main/res/values-he/strings.xml b/app/src/main/res/values-he/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-he/strings.xml
+++ b/app/src/main/res/values-he/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index b4cfe248..27818316 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -32,6 +32,7 @@ Ció è causato da alcuni bug contenuti in Android, o in programmi forniti dal p
Impostazioni opzionali
Gestisci applicazioni di sistema
Attiva automaticamente dopo %1$s minuti
+ Delay screen off %1$s minutes
Usa il tema scuro
Reti Wi-Fi domestiche: %1$s
Gestisci reti Wi-Fi a consumo
@@ -52,6 +53,7 @@ Ció è causato da alcuni bug contenuti in Android, o in programmi forniti dal p
Definisci regole per le applicazioni di sistema (solo per esperti)
Visualizza il grafico della velocità di rete tra le notifiche nella barra di stato
Dopo aver disabilitato NetGuard tramite il widget, riabilita automaticamente NetGuard dopo il numero di minuti specificato\nInserisci zero per disabilitare questa opzione
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Applica le regole per le reti Wi-Fi solo alle reti selezionate (applica le regole per le reti mobile a tutte le altre reti Wi-Fi)
Applica le regole per le reti cellulari anche alle reti Wi-Fi a consumo (a pagamento, condivise)
Applica le regole valide per il Wi-Fi alle connessioni 2G
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index db493b12..9bc8eb27 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -31,6 +31,7 @@
オプション
システムアプリケーションの管理
%1$s 分後に自動的に有効にする
+ Delay screen off %1$s minutes
ダークテーマを使用する
Wi-Fi ホームネットワーク: %1$s
従量制の Wi-Fi ネットワークを扱う
@@ -51,6 +52,7 @@
システムアプリケーションのルールを定義します (エキスパート向け)
ステータスバーの通知で、ネットワーク速度のグラフを表示します
ウィジェットの使用を無効にした後、自動的に選択した分数の後で再度 NetGuard を有効にします\nこのオプションを無効にするには 0 を入力してください
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
選択したネットワークにのみ Wi-Fi ネットワークのルールを適用します (他の Wi-Fi ネットワークにはモバイルネットワークのルールを適用します)
従量制 (有料、テザリング) Wi-Fi ネットワークにモバイル ネットワーク ルールを適用します
2G データ接続の Wi-Fi ネットワーク ルールを適用します
@@ -83,16 +85,16 @@ NetGuard にインターネット アクセス許可がないと、インター
許可
ブロック
Pro版の機能
- Pro features trial until %1$s
- Pro features trial period ended
- The following convenience features are available:
- Search, filter, sort applications
- New application reminders
- Appearance (theme)
- Network speed graph
- Export/import (backup)
+ プロ版機能の試用は %1$s まで
+ プロ版機能の試用期間は終了しました
+ 次の便利な機能が利用できます:
+ アプリケーションの検索、フィルター、並べ替え
+ 新しいアプリケーション リマインダー
+ 外観 (テーマ)
+ ネットワーク速度のグラフ
+ エクスポート/インポート (バックアップ)
詳細
有効
- Challenge
- Response
+ 挑戦します
+ 応答
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
index 876ad91d..cf273087 100644
--- a/app/src/main/res/values-ko/strings.xml
+++ b/app/src/main/res/values-ko/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
어두운 테마 사용
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-lv/strings.xml b/app/src/main/res/values-lv/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-lv/strings.xml
+++ b/app/src/main/res/values-lv/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 4a7148d2..eca223a9 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Opties
Beheer systeemapplicaties
Zet weer aan na %1$s minuten
+ Vertraag scherm uit %1$s minuten
Gebruik donker thema
Wi-Fi thuisnetwerk: %1$s
Behandel gemeten Wi-Fi netwerken
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technische informatie
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-no/strings.xml
+++ b/app/src/main/res/values-no/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index b3e37da0..4ac1c667 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -31,6 +31,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
Opcje
Zarządzaj aplikacjami systemowymi
Automatyczne włączenie po %1$s min
+ Delay screen off %1$s minutes
Użyj ciemnej skórki
Gniazdo sieci Wi-Fi: %1$s
Obsługuj taryfowe sieci Wi-Fi
@@ -51,6 +52,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
Stwórz reguły dla aplikacji systemowych (zaawansowane)
Pokazuj wykres prędkości sieci w powiadomieniach aplikacji
Po wyłączeniu poprzez widget, automatycznie włącz NetGuard po podanej liczbie minut\nWprowadzenie zera wyłącza tą opcję
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Zastosuj reguły sieci Wi-Fi tylko do zaznaczonej sieci (do pozostałych sieci Wi-Fi zastosowane zostaną reguły mobilne)
Zastosuj reguły z danych mobilnych, do taryfowych sieci Wi-FI (tethering, prepaid)
Zastosuj reguły sieci Wi-Fi do połączeń 2G
@@ -67,7 +69,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
NetGuard używa lokalnego VPN jako sinkhole\'a w celu blokowania ruchu internetowego.
Z tego powodu w następnym oknie dialogowym zezwól na połączenie VPN.
Ponieważ NetGuard nie ma zezwolenia na dostęp do Internetu, masz pewność, że Twój ruch internetowy nigdzie nie jest wysyłany.
- Spróbuj NetGuard
+ Wypróbuj NetGuard
Przekazując darowiznę wyrażam zgodę na terms & conditions
Jeśli nie możesz nacisnąć OK w następnym oknie dialogowym, inna aplikacja prawdopodobnie zarządza ekranem (przygaszanie ekranu).
± %1$.3f▲ %2$.3f▼ MB/dzień
@@ -83,16 +85,16 @@ Ponieważ NetGuard nie ma zezwolenia na dostęp do Internetu, masz pewność, ż
Zezwól
Blokuj
Funkcje Pro
- Pro features trial until %1$s
- Pro features trial period ended
- The following convenience features are available:
- Search, filter, sort applications
- New application reminders
- Appearance (theme)
- Network speed graph
- Export/import (backup)
+ Okres próbny funkcji Pro %1$s
+ Okres próbny funkcji Pro zakończony
+ Następujące dogodne funkcje są dostępne:
+ Wyszukaj, filtruj, sortuj aplikacje
+ Monit nowych aplikacji
+ Wygląd (motyw)
+ Wykres prędkości sieci
+ Eksport/import (kopia zapasowa)
Detale
Włączone
- Challenge
- Response
+ Wezwanie
+ Odpowiedz
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index db9a5be9..a2b4f3c8 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -31,6 +31,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
Opções
Administrar aplicativos do sistema
Auto habilitar após %1$s minutos
+ Delay screen off %1$s minutes
Ativa tema escuro
Rede Wi-Fi Doméstica: %1$s
Manipular redes Wi-Fi Limitadas
@@ -51,6 +52,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
Definir regras para aplicativos do sistema (usuários experientes)
Mostrar gráfico de velocidade da rede na barra de notificação
Após desabilitar usando o widget, automaticamente habilitar outra vez após o número de minutos selecionados\nInsira zero para desabilitar essa opção
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Aplicar regras Wi-Fi somente a rede selecionada (aplica regras de dados móveis à outras redes Wi-Fi)
Aplicar regras de Dados Móveis a redes Wi-Fi limitadas (pagas, compartilhadas)
Aplicar regras Wi-Fi para conexões 2G
@@ -82,17 +84,17 @@ Como o NetGuard não possui permissão de acesso a internet, o tráfego de dados
Avaliar
Permitir
Bloquear
- Funcionalidades da versão PRO
- Pro features trial until %1$s
- Pro features trial period ended
- The following convenience features are available:
- Search, filter, sort applications
- New application reminders
- Appearance (theme)
- Network speed graph
- Export/import (backup)
+ Recursos da versão PRO
+ Recursos da versão PRO disponíveis até %1$s
+ O período de testes terminou
+ Os seguintes recursos estão disponíveis:
+ Buscar, filtrar, ordenar aplicativos
+ Novos lembretes de aplicativos
+ Aparência (tema)
+ Gráfico de velocidade de rede
+ Exportar/Importar (backup)
Detalhes
Ativado
- Challenge
+ Pergunta
Resposta
diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml
index 81950c1f..1cef161e 100644
--- a/app/src/main/res/values-pt-rPT/strings.xml
+++ b/app/src/main/res/values-pt-rPT/strings.xml
@@ -31,6 +31,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
Opções
Administrar aplicativos do sistema
Auto habilitar após %1$s minutos
+ Delay screen off %1$s minutes
Ativa tema escuro
Rede Wi-Fi Doméstica: %1$s
Manipular redes Wi-Fi Limitadas
@@ -51,6 +52,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
Definir regras para aplicativos do sistema (usuários experientes)
Mostrar gráfico de velocidade da rede na barra de notificação
Após desabilitar usando o widget, automaticamente habilitar outra vez após o número de minutos selecionados\nInsira zero para desabilitar essa opção
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Aplicar regras Wi-Fi somente a rede selecionada (aplica regras de dados móveis à outras redes Wi-Fi)
Aplicar regras de Dados Móveis a redes Wi-Fi compartilhadas (pagas, limitadas)
Aplicar regras Wi-Fi para conexões 2G
@@ -83,16 +85,16 @@ Como o NetGuard não possui permissão de acesso a internet, o tráfego de dados
Permitir
Bloquear
Funcionalidades da versão PRO
- Pro features trial until %1$s
- Pro features trial period ended
- The following convenience features are available:
- Search, filter, sort applications
- New application reminders
- Appearance (theme)
- Network speed graph
- Export/import (backup)
+ Recursos da versão PRO disponíveis até %1$s
+ O período de testes terminou
+ Os seguintes recursos estão disponíveis:
+ Buscar, filtrar, ordenar aplicativos
+ Novos lembretes de aplicativos
+ Aparência (tema)
+ Gráfico de velocidade de rede
+ Exportar/Importar (backup)
Detalhes
Ativado
- Challenge
- Response
+ Pergunta
+ Resposta
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
index 09870689..d613c828 100644
--- a/app/src/main/res/values-ro/strings.xml
+++ b/app/src/main/res/values-ro/strings.xml
@@ -31,6 +31,7 @@ Acest lucru este cauzat de bug-uri in Android sau in software-ul pus la dispozit
Optiuni
Gestionati aplicatiile de sistem
Activeaza automat dupa %1$s minute
+ Delay screen off %1$s minutes
Foloseste tema intunecata
Retea Wi-Fi de domiciliu: %1$s
Gestionati conexiunile Wi-Fi contorizate
@@ -51,6 +52,7 @@ Acest lucru este cauzat de bug-uri in Android sau in software-ul pus la dispozit
Defineste reguli pentru aplicatiile de sistem (setare expert)
Arata graficul vitezei retelei in notificare
Dupa dezactivare din widget, activeaza automat NetGuard dupa numarul selectat de minute\nValoarea zero dezactiveaza optiunea
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Aplica regulile de retea Wi-Fi numai pentru conexiunile selectate (aplica reguli de date mobile pentru alte retele Wi-Fi)
Trateaza conexiunile Wi-Fi contorizate (cu plata, hot-spot) precum date mobile
Aplica regulile Wi-Fi pentru conexiuni 2G
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index a9eaf8d0..553db8c2 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -28,6 +28,7 @@
Опции
Управлять сист. приложениями
Авто запуск через %1$s минут(ы)
+ Delay screen off %1$s minutes
Использовать темную тему
Домашняя сеть Wi-Fi: %1$s
Регулировать огранич. Wi-Fi сети
@@ -48,6 +49,7 @@
Определить правила для системных приложений (для профи)
Показать график скорости сети в статус-баре
После отключения через виджет, автоматически включить NetGuard снова после указанного количества минут.\nВведите ноль, чтобы отключить эту опцию
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Применить правила Wi-Fi сети только для выбранной сети (для других Wi-Fi сетей применяются правила мобильной сети)
Применить правила для лимитированных (платных, ограниченных) Wi-Fi сетей
Применить правила Wi-Fi-сети для передачи данных через 2G
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index d320ccd8..1ff25557 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -31,6 +31,7 @@ Je to spôsobené chybami v Androide alebo v softvéri poskytovanom výrobcom, p
Možnosti
Spravovať systémové aplikácie
Automaticky zapnúť po %1$s minútach
+ Delay screen off %1$s minutes
Použiť tmavú tému
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ Je to spôsobené chybami v Androide alebo v softvéri poskytovanom výrobcom, p
Technické informácie
Určiť pravidlá pre systémové pravidlá (pre expertov)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-sr/strings.xml
+++ b/app/src/main/res/values-sr/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-sv-rSE/strings.xml b/app/src/main/res/values-sv-rSE/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-sv-rSE/strings.xml
+++ b/app/src/main/res/values-sv-rSE/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index ff70af7b..9c04f516 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Seçenekler
Sistem uygulamaları yönet
Otomatik etkinleştirme %1$s dakika sonra
+ Delay screen off %1$s minutes
Karanlık Temayı Kullan
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Teknik bilgiler
Sistem uygulamaları kuralları tanımlayın (uzman için)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index 79e7cc98..50454011 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -27,6 +27,7 @@
Опції
Керувати системними додатками
Автоматично увімкнути через %1$s хвилин
+ Delay screen off %1$s minutes
Використовувати темну тему
Домашня Wi-Fi мережа: %1$s
Регулювати лімітовані Wi-Fi мережі
@@ -47,6 +48,7 @@
Визначити правила для системних додатків (для експертів)
Показувати графік швидкості мережі у панелі сповіщень
При відключені через віджет, NetGuard буде автоматично увімкнуто через вказану кількість хвилин\nВведіть 0, аби відключити цю функцію
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Застосувати правила Wi-Fi мережі лише для обраної (для інших застосовуються правила мобільної мережі)
Застосувати правила до лімітованих (платних, обмежених) Wi-Fi мереж
Застосувати правила Wi-Fi мережі до 2G з\'єднання
diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-vi/strings.xml
+++ b/app/src/main/res/values-vi/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 1596827e..c75d6a72 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -31,6 +31,7 @@
选项:
管理系统应用
%1$s 分钟后自动启用
+ Delay screen off %1$s minutes
使用暗色主题
Wi-Fi 家庭网络: %1$s
控制按流量计费Wi-Fi网络
@@ -51,6 +52,7 @@
定义系统应用规则, 仅供专业用户
在状态栏通知中显示网速示意图
禁用小部件后, 在设定分钟后自动再次启用NetGuard\n输入零以禁用此选项
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
仅将Wi-Fi网络规则应用于所选定的网络 (将移动网络规则应用于其他Wi-Fi网络)
将移动网络规则应用于按流量计费的 (付费, 共享) Wi-Fi网络
将Wi-Fi网络规则应用于2G数据连接
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 76aa60a3..19ed1378 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Technical information
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 31d7bcd5..da9ebb30 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -33,6 +33,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
Options
Manage system applications
Auto enable after %1$s minutes
+ Delay screen off %1$s minutes
Use dark theme
Wi-Fi home networks: %1$s
Handle metered Wi-Fi networks
@@ -56,7 +57,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
Define rules for system applications (for experts)
Show network speed graph in status bar notification
- After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option
+ After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)
+ Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)
Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)
Apply mobile network rules to metered (paid, tethered) Wi-Fi networks
Apply Wi-Fi network rules for 2G data connections
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml
index ab3caae6..675a067d 100644
--- a/app/src/main/res/xml/preferences.xml
+++ b/app/src/main/res/xml/preferences.xml
@@ -37,6 +37,11 @@
android:inputType="number"
android:key="auto_enable"
android:summary="@string/summary_auto" />
+