Added option to delay screen off

This commit is contained in:
M66B 2016-01-01 10:06:02 +01:00
parent a1f86df79c
commit f24499f6fd
42 changed files with 197 additions and 80 deletions

View File

@ -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();

View File

@ -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) {

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">خيارات</string>
<string name="setting_system">إدارة تطبيقات النظام</string>
<string name="setting_auto">تمكين التلقائي بعد دقائق %1$s</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">استخدام الثيم الداكن</string>
<string name="setting_wifi_home">شبكة اتصال لاسلكي: %1$s</string>
<string name="setting_metered">تـــعـــامـــل مـــقـــاس لـــشـــبـــكـــة لاســـلـــكـــي</string>
@ -51,6 +52,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="summary_system">تـــحـــديـــد قـــواعـــد لـــتـــطـــبــــيـــقـــات الـــنـــظـــام (لـــلـــخـــبـــراء)</string>
<string name="summary_stats">تــظــهــر ســرعــة الــشــبــكــة فـي الــرســم الــبــيــانـي فـي إعـلام شــريــط الــحــالات</string>
<string name="summary_auto">بعد تعطيل استخدام الويدجت، تلقائياً يعمل NetGuard مرة أخرى بعد عدد محدد من الدقائف \n ادخل صفر لتعطيل هذا الخيار</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">تطبيق قواعد شبكة اللاسلكية للشبكة المحددة فقط (تطبيق قواعد شبكة الجوال لباقي شبكات Wi-fi)</string>
<string name="summary_metered">تـــطـــبـــيـــق قـــواعـــد شـــبـــكـــة الـــجـــوال لـــشـــبـــكـــات لاســـلـــكـــي (مـــربـــوطــة، مـــدفـــوعـــة) مـــقـــنـــنـــة</string>
<string name="summary_metered_2g">تـــطـــبـــيـــق قـــواعـــد شـــبـــكـــة لاســـلـــكـــى لـــلـــجـــيـــل الـــثـــانـــي لإتـــصـــل الـــبـــيـــانـــات</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -30,6 +30,7 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
<string name="setting_options">Optionen</string>
<string name="setting_system">System-Apps anzeigen</string>
<string name="setting_auto">Automatisch nach %1$s-Minuten aktivieren</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Dunkles Thema verwenden</string>
<string name="setting_wifi_home">WLAN-Heimnetzwerk: %1$s</string>
<string name="setting_metered">Gemessenes WLAN-Netzwerk handhaben</string>
@ -50,6 +51,7 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
<string name="summary_system">Regeln für System-Apps definieren (für Experten)</string>
<string name="summary_stats">Netzwerkgeschwindigkeitskurve in Statusleiste anzeigen</string>
<string name="summary_auto">Nach dem Deaktivieren über das Widget, wird NetGuard nach einer festgelegten Anzahl von Minuten automatisch wieder aktiviert\nNull eingeben zum Deaktivieren dieser Option</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">WLAN-Regeln nur für ausgewähltes Netzwerk anwenden (Mobilfunknetz-Regeln für andere WLAN-Netzwerke anwenden)</string>
<string name="summary_metered">Mobilfunk-Regeln gemessenen (bezahlten, tethered) WLAN-Netzwerken anwenden</string>
<string name="summary_metered_2g">WLAN-Netzwerk-Regeln für 2G-Datenverbindungen anwenden</string>
@ -80,14 +82,14 @@ Das wird von Fehlern in Android oder in Software vom Hersteller verursacht. Bitt
<string name="title_allow">Erlauben</string>
<string name="title_block">Sperren</string>
<string name="title_pro">Pro-Funktionen</string>
<string name="title_pro_trial_until">Pro features trial until %1$s</string>
<string name="title_pro_trial_ended">Pro features trial period ended</string>
<string name="title_pro_description">The following convenience features are available:</string>
<string name="title_pro_select">Search, filter, sort applications</string>
<string name="title_pro_notify">New application reminders</string>
<string name="title_pro_theme">Appearance (theme)</string>
<string name="title_pro_speed">Network speed graph</string>
<string name="title_pro_backup">Export/import (backup)</string>
<string name="title_pro_trial_until">Pro-Funktionen-Testzeitraum bis %1$s</string>
<string name="title_pro_trial_ended">Pro-Funktionen-Testzeitraum abgelaufen</string>
<string name="title_pro_description">Folgende Annehmlichkeiten stehen zur Verfügung:</string>
<string name="title_pro_select">Anwendungen suchen, filtern und sortieren</string>
<string name="title_pro_notify">Erinnerung neue Anwendung</string>
<string name="title_pro_theme">Design (Themen)</string>
<string name="title_pro_speed">Netzwerkgeschwindigkeitsgraph</string>
<string name="title_pro_backup">Export/Import (Sicherung)</string>
<string name="title_pro_buy">Detailinformationen</string>
<string name="title_pro_bought">Aktiviert</string>
<string name="title_pro_challenge">Challenge</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ Estos problemas son causados por errores en Android o en el software provisto po
<string name="setting_options">Opciones</string>
<string name="setting_system">Administrar aplicaciones de sistema</string>
<string name="setting_auto">Activar automáticamente después de %1$s minutos</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Usar tema oscuro</string>
<string name="setting_wifi_home">Redes Wi-Fi domésticas: %1$s</string>
<string name="setting_metered">Manejo de redes Wi-Fi limitadas</string>
@ -51,6 +52,7 @@ Estos problemas son causados por errores en Android o en el software provisto po
<string name="summary_system">Definir reglas para aplicaciones de sistema (para expertos)</string>
<string name="summary_stats">Mostrar gráfico de velocidad de red en notificaciones de la barra de estado</string>
<string name="summary_auto">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</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Aplicar reglas de red Wi-Fi para la red seleccionada solamente (aplicar reglas de red móvil para otras redes Wi-Fi)</string>
<string name="summary_metered">Aplicar reglas de red móvil a redes Wi-Fi limitadas, como redes por anclaje de datos o zona Wi-Fi</string>
<string name="summary_metered_2g">Aplicar reglas de red Wi-Fi para conexiones de datos 2G</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
<string name="setting_options">Options</string>
<string name="setting_system">Gérer les applications système</string>
<string name="setting_auto">Activer automatiquement après %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Utiliser le thème sombre</string>
<string name="setting_wifi_home">Réseaux Wi-Fi domicile : %1$s</string>
<string name="setting_metered">Gérer les réseaux Wi-Fi limités</string>
@ -51,6 +52,7 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
<string name="summary_system">Définir les règles pour les applications système (Pour experts)</string>
<string name="summary_stats">Afficher le graphique de vitesse réseau dans la barre d\'état et notification</string>
<string name="summary_auto">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</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">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)</string>
<string name="summary_metered">Appliquer les règles de réseaux mobiles aux réseaux Wi-Fi limités (payants, partagés)</string>
<string name="summary_metered_2g">Appliquer les règles de réseau Wi-Fi pour les connexions de données 2G</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -32,6 +32,7 @@ Ció è causato da alcuni bug contenuti in Android, o in programmi forniti dal p
<string name="setting_options">Impostazioni opzionali</string>
<string name="setting_system">Gestisci applicazioni di sistema</string>
<string name="setting_auto">Attiva automaticamente dopo %1$s minuti</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Usa il tema scuro</string>
<string name="setting_wifi_home">Reti Wi-Fi domestiche: %1$s</string>
<string name="setting_metered">Gestisci reti Wi-Fi a consumo</string>
@ -52,6 +53,7 @@ Ció è causato da alcuni bug contenuti in Android, o in programmi forniti dal p
<string name="summary_system">Definisci regole per le applicazioni di sistema (solo per esperti)</string>
<string name="summary_stats">Visualizza il grafico della velocità di rete tra le notifiche nella barra di stato</string>
<string name="summary_auto">Dopo aver disabilitato NetGuard tramite il widget, riabilita automaticamente NetGuard dopo il numero di minuti specificato\nInserisci zero per disabilitare questa opzione</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">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)</string>
<string name="summary_metered">Applica le regole per le reti cellulari anche alle reti Wi-Fi a consumo (a pagamento, condivise)</string>
<string name="summary_metered_2g">Applica le regole valide per il Wi-Fi alle connessioni 2G</string>

View File

@ -31,6 +31,7 @@
<string name="setting_options">オプション</string>
<string name="setting_system">システムアプリケーションの管理</string>
<string name="setting_auto">%1$s 分後に自動的に有効にする</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">ダークテーマを使用する</string>
<string name="setting_wifi_home">Wi-Fi ホームネットワーク: %1$s</string>
<string name="setting_metered">従量制の Wi-Fi ネットワークを扱う</string>
@ -51,6 +52,7 @@
<string name="summary_system">システムアプリケーションのルールを定義します (エキスパート向け)</string>
<string name="summary_stats">ステータスバーの通知で、ネットワーク速度のグラフを表示します</string>
<string name="summary_auto">ウィジェットの使用を無効にした後、自動的に選択した分数の後で再度 NetGuard を有効にします\nこのオプションを無効にするには 0 を入力してください</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">選択したネットワークにのみ Wi-Fi ネットワークのルールを適用します (他の Wi-Fi ネットワークにはモバイルネットワークのルールを適用します)</string>
<string name="summary_metered">従量制 (有料、テザリング) Wi-Fi ネットワークにモバイル ネットワーク ルールを適用します</string>
<string name="summary_metered_2g">2G データ接続の Wi-Fi ネットワーク ルールを適用します</string>
@ -83,16 +85,16 @@ NetGuard にインターネット アクセス許可がないと、インター
<string name="title_allow">許可</string>
<string name="title_block">ブロック</string>
<string name="title_pro">Pro版の機能</string>
<string name="title_pro_trial_until">Pro features trial until %1$s</string>
<string name="title_pro_trial_ended">Pro features trial period ended</string>
<string name="title_pro_description">The following convenience features are available:</string>
<string name="title_pro_select">Search, filter, sort applications</string>
<string name="title_pro_notify">New application reminders</string>
<string name="title_pro_theme">Appearance (theme)</string>
<string name="title_pro_speed">Network speed graph</string>
<string name="title_pro_backup">Export/import (backup)</string>
<string name="title_pro_trial_until">プロ版機能の試用は %1$s まで</string>
<string name="title_pro_trial_ended">プロ版機能の試用期間は終了しました</string>
<string name="title_pro_description">次の便利な機能が利用できます:</string>
<string name="title_pro_select">アプリケーションの検索、フィルター、並べ替え</string>
<string name="title_pro_notify">新しいアプリケーション リマインダー</string>
<string name="title_pro_theme">外観 (テーマ)</string>
<string name="title_pro_speed">ネットワーク速度のグラフ</string>
<string name="title_pro_backup">エクスポート/インポート (バックアップ)</string>
<string name="title_pro_buy">詳細</string>
<string name="title_pro_bought">有効</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
<string name="title_pro_challenge">挑戦します</string>
<string name="title_pro_reponse">応答</string>
</resources>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">어두운 테마 사용</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Opties</string>
<string name="setting_system">Beheer systeemapplicaties</string>
<string name="setting_auto">Zet weer aan na %1$s minuten</string>
<string name="setting_delay">Vertraag scherm uit %1$s minuten</string>
<string name="setting_dark">Gebruik donker thema</string>
<string name="setting_wifi_home">Wi-Fi thuisnetwerk: %1$s</string>
<string name="setting_metered">Behandel gemeten Wi-Fi netwerken</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technische informatie</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
<string name="setting_options">Opcje</string>
<string name="setting_system">Zarządzaj aplikacjami systemowymi</string>
<string name="setting_auto">Automatyczne włączenie po %1$s min</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Użyj ciemnej skórki</string>
<string name="setting_wifi_home">Gniazdo sieci Wi-Fi: %1$s</string>
<string name="setting_metered">Obsługuj taryfowe sieci Wi-Fi</string>
@ -51,6 +52,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
<string name="summary_system">Stwórz reguły dla aplikacji systemowych (zaawansowane)</string>
<string name="summary_stats">Pokazuj wykres prędkości sieci w powiadomieniach aplikacji</string>
<string name="summary_auto">Po wyłączeniu poprzez widget, automatycznie włącz NetGuard po podanej liczbie minut\nWprowadzenie zera wyłącza tą opcję</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Zastosuj reguły sieci Wi-Fi tylko do zaznaczonej sieci (do pozostałych sieci Wi-Fi zastosowane zostaną reguły mobilne)</string>
<string name="summary_metered">Zastosuj reguły z danych mobilnych, do taryfowych sieci Wi-FI (tethering, prepaid)</string>
<string name="summary_metered_2g">Zastosuj reguły sieci Wi-Fi do połączeń 2G</string>
@ -67,7 +69,7 @@ Problemy te są spowodowane błędami w samym Androidzie, lub oprogramowaniu dos
<string name="msg_vpn">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.</string>
<string name="msg_try">Spróbuj NetGuard</string>
<string name="msg_try">Wypróbuj NetGuard</string>
<string name="msg_terms">Przekazując darowiznę wyrażam zgodę na <a href="http://www.netguard.me/#terms">terms &amp; conditions</a></string>
<string name="msg_dimming">Jeśli nie możesz nacisnąć OK w następnym oknie dialogowym, inna aplikacja prawdopodobnie zarządza ekranem (przygaszanie ekranu).</string>
<string name="msg_mbday">± %1$.3f▲ %2$.3f▼ MB/dzień</string>
@ -83,16 +85,16 @@ Ponieważ NetGuard nie ma zezwolenia na dostęp do Internetu, masz pewność, ż
<string name="title_allow">Zezwól</string>
<string name="title_block">Blokuj</string>
<string name="title_pro">Funkcje Pro</string>
<string name="title_pro_trial_until">Pro features trial until %1$s</string>
<string name="title_pro_trial_ended">Pro features trial period ended</string>
<string name="title_pro_description">The following convenience features are available:</string>
<string name="title_pro_select">Search, filter, sort applications</string>
<string name="title_pro_notify">New application reminders</string>
<string name="title_pro_theme">Appearance (theme)</string>
<string name="title_pro_speed">Network speed graph</string>
<string name="title_pro_backup">Export/import (backup)</string>
<string name="title_pro_trial_until">Okres próbny funkcji Pro %1$s</string>
<string name="title_pro_trial_ended">Okres próbny funkcji Pro zakończony</string>
<string name="title_pro_description">Następujące dogodne funkcje są dostępne:</string>
<string name="title_pro_select">Wyszukaj, filtruj, sortuj aplikacje</string>
<string name="title_pro_notify">Monit nowych aplikacji</string>
<string name="title_pro_theme">Wygląd (motyw)</string>
<string name="title_pro_speed">Wykres prędkości sieci</string>
<string name="title_pro_backup">Eksport/import (kopia zapasowa)</string>
<string name="title_pro_buy">Detale</string>
<string name="title_pro_bought">Włączone</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
<string name="title_pro_challenge">Wezwanie</string>
<string name="title_pro_reponse">Odpowiedz</string>
</resources>

View File

@ -31,6 +31,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
<string name="setting_options">Opções</string>
<string name="setting_system">Administrar aplicativos do sistema</string>
<string name="setting_auto">Auto habilitar após %1$s minutos</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Ativa tema escuro</string>
<string name="setting_wifi_home">Rede Wi-Fi Doméstica: %1$s</string>
<string name="setting_metered">Manipular redes Wi-Fi Limitadas</string>
@ -51,6 +52,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
<string name="summary_system">Definir regras para aplicativos do sistema (usuários experientes)</string>
<string name="summary_stats">Mostrar gráfico de velocidade da rede na barra de notificação</string>
<string name="summary_auto">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</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Aplicar regras Wi-Fi somente a rede selecionada (aplica regras de dados móveis à outras redes Wi-Fi)</string>
<string name="summary_metered">Aplicar regras de Dados Móveis a redes Wi-Fi limitadas (pagas, compartilhadas)</string>
<string name="summary_metered_2g">Aplicar regras Wi-Fi para conexões 2G</string>
@ -82,17 +84,17 @@ Como o NetGuard não possui permissão de acesso a internet, o tráfego de dados
<string name="title_rate">Avaliar</string>
<string name="title_allow">Permitir</string>
<string name="title_block">Bloquear</string>
<string name="title_pro">Funcionalidades da versão PRO</string>
<string name="title_pro_trial_until">Pro features trial until %1$s</string>
<string name="title_pro_trial_ended">Pro features trial period ended</string>
<string name="title_pro_description">The following convenience features are available:</string>
<string name="title_pro_select">Search, filter, sort applications</string>
<string name="title_pro_notify">New application reminders</string>
<string name="title_pro_theme">Appearance (theme)</string>
<string name="title_pro_speed">Network speed graph</string>
<string name="title_pro_backup">Export/import (backup)</string>
<string name="title_pro">Recursos da versão PRO</string>
<string name="title_pro_trial_until">Recursos da versão PRO disponíveis até %1$s</string>
<string name="title_pro_trial_ended">O período de testes terminou</string>
<string name="title_pro_description">Os seguintes recursos estão disponíveis:</string>
<string name="title_pro_select">Buscar, filtrar, ordenar aplicativos</string>
<string name="title_pro_notify">Novos lembretes de aplicativos</string>
<string name="title_pro_theme">Aparência (tema)</string>
<string name="title_pro_speed">Gráfico de velocidade de rede</string>
<string name="title_pro_backup">Exportar/Importar (backup)</string>
<string name="title_pro_buy">Detalhes</string>
<string name="title_pro_bought">Ativado</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_challenge">Pergunta</string>
<string name="title_pro_reponse">Resposta</string>
</resources>

View File

@ -31,6 +31,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
<string name="setting_options">Opções</string>
<string name="setting_system">Administrar aplicativos do sistema</string>
<string name="setting_auto">Auto habilitar após %1$s minutos</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Ativa tema escuro</string>
<string name="setting_wifi_home">Rede Wi-Fi Doméstica: %1$s</string>
<string name="setting_metered">Manipular redes Wi-Fi Limitadas</string>
@ -51,6 +52,7 @@ Esses problemas são causados por bugs/falhas no Android ou no sotfware fornecid
<string name="summary_system">Definir regras para aplicativos do sistema (usuários experientes)</string>
<string name="summary_stats">Mostrar gráfico de velocidade da rede na barra de notificação</string>
<string name="summary_auto">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</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Aplicar regras Wi-Fi somente a rede selecionada (aplica regras de dados móveis à outras redes Wi-Fi)</string>
<string name="summary_metered">Aplicar regras de Dados Móveis a redes Wi-Fi compartilhadas (pagas, limitadas)</string>
<string name="summary_metered_2g">Aplicar regras Wi-Fi para conexões 2G</string>
@ -83,16 +85,16 @@ Como o NetGuard não possui permissão de acesso a internet, o tráfego de dados
<string name="title_allow">Permitir</string>
<string name="title_block">Bloquear</string>
<string name="title_pro">Funcionalidades da versão PRO</string>
<string name="title_pro_trial_until">Pro features trial until %1$s</string>
<string name="title_pro_trial_ended">Pro features trial period ended</string>
<string name="title_pro_description">The following convenience features are available:</string>
<string name="title_pro_select">Search, filter, sort applications</string>
<string name="title_pro_notify">New application reminders</string>
<string name="title_pro_theme">Appearance (theme)</string>
<string name="title_pro_speed">Network speed graph</string>
<string name="title_pro_backup">Export/import (backup)</string>
<string name="title_pro_trial_until">Recursos da versão PRO disponíveis até %1$s</string>
<string name="title_pro_trial_ended">O período de testes terminou</string>
<string name="title_pro_description">Os seguintes recursos estão disponíveis:</string>
<string name="title_pro_select">Buscar, filtrar, ordenar aplicativos</string>
<string name="title_pro_notify">Novos lembretes de aplicativos</string>
<string name="title_pro_theme">Aparência (tema)</string>
<string name="title_pro_speed">Gráfico de velocidade de rede</string>
<string name="title_pro_backup">Exportar/Importar (backup)</string>
<string name="title_pro_buy">Detalhes</string>
<string name="title_pro_bought">Ativado</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
<string name="title_pro_challenge">Pergunta</string>
<string name="title_pro_reponse">Resposta</string>
</resources>

View File

@ -31,6 +31,7 @@ Acest lucru este cauzat de bug-uri in Android sau in software-ul pus la dispozit
<string name="setting_options">Optiuni</string>
<string name="setting_system">Gestionati aplicatiile de sistem</string>
<string name="setting_auto">Activeaza automat dupa %1$s minute</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Foloseste tema intunecata</string>
<string name="setting_wifi_home">Retea Wi-Fi de domiciliu: %1$s</string>
<string name="setting_metered">Gestionati conexiunile Wi-Fi contorizate</string>
@ -51,6 +52,7 @@ Acest lucru este cauzat de bug-uri in Android sau in software-ul pus la dispozit
<string name="summary_system">Defineste reguli pentru aplicatiile de sistem (setare expert)</string>
<string name="summary_stats">Arata graficul vitezei retelei in notificare</string>
<string name="summary_auto">Dupa dezactivare din widget, activeaza automat NetGuard dupa numarul selectat de minute\nValoarea zero dezactiveaza optiunea</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Aplica regulile de retea Wi-Fi numai pentru conexiunile selectate (aplica reguli de date mobile pentru alte retele Wi-Fi)</string>
<string name="summary_metered">Trateaza conexiunile Wi-Fi contorizate (cu plata, hot-spot) precum date mobile</string>
<string name="summary_metered_2g">Aplica regulile Wi-Fi pentru conexiuni 2G</string>

View File

@ -28,6 +28,7 @@
<string name="setting_options">Опции</string>
<string name="setting_system">Управлять сист. приложениями</string>
<string name="setting_auto">Авто запуск через %1$s минут(ы)</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Использовать темную тему</string>
<string name="setting_wifi_home">Домашняя сеть Wi-Fi: %1$s</string>
<string name="setting_metered">Регулировать огранич. Wi-Fi сети</string>
@ -48,6 +49,7 @@
<string name="summary_system">Определить правила для системных приложений (для профи)</string>
<string name="summary_stats">Показать график скорости сети в статус-баре</string>
<string name="summary_auto">После отключения через виджет, автоматически включить NetGuard снова после указанного количества минут.\nВведите ноль, чтобы отключить эту опцию</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Применить правила Wi-Fi сети только для выбранной сети (для других Wi-Fi сетей применяются правила мобильной сети)</string>
<string name="summary_metered">Применить правила для лимитированных (платных, ограниченных) Wi-Fi сетей</string>
<string name="summary_metered_2g">Применить правила Wi-Fi-сети для передачи данных через 2G</string>

View File

@ -31,6 +31,7 @@ Je to spôsobené chybami v Androide alebo v softvéri poskytovanom výrobcom, p
<string name="setting_options">Možnosti</string>
<string name="setting_system">Spravovať systémové aplikácie</string>
<string name="setting_auto">Automaticky zapnúť po %1$s minútach</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Použiť tmavú tému</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ Je to spôsobené chybami v Androide alebo v softvéri poskytovanom výrobcom, p
<string name="setting_technical">Technické informácie</string>
<string name="summary_system">Určiť pravidlá pre systémové pravidlá (pre expertov)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Seçenekler</string>
<string name="setting_system">Sistem uygulamaları yönet</string>
<string name="setting_auto">Otomatik etkinleştirme %1$s dakika sonra</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Karanlık Temayı Kullan</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Teknik bilgiler</string>
<string name="summary_system">Sistem uygulamaları kuralları tanımlayın (uzman için)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -27,6 +27,7 @@
<string name="setting_options">Опції</string>
<string name="setting_system">Керувати системними додатками</string>
<string name="setting_auto">Автоматично увімкнути через %1$s хвилин</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Використовувати темну тему</string>
<string name="setting_wifi_home">Домашня Wi-Fi мережа: %1$s</string>
<string name="setting_metered">Регулювати лімітовані Wi-Fi мережі</string>
@ -47,6 +48,7 @@
<string name="summary_system">Визначити правила для системних додатків (для експертів)</string>
<string name="summary_stats">Показувати графік швидкості мережі у панелі сповіщень</string>
<string name="summary_auto">При відключені через віджет, NetGuard буде автоматично увімкнуто через вказану кількість хвилин\nВведіть 0, аби відключити цю функцію</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Застосувати правила Wi-Fi мережі лише для обраної (для інших застосовуються правила мобільної мережі)</string>
<string name="summary_metered">Застосувати правила до лімітованих (платних, обмежених) Wi-Fi мереж</string>
<string name="summary_metered_2g">Застосувати правила Wi-Fi мережі до 2G з\'єднання</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -31,6 +31,7 @@
<string name="setting_options">选项:</string>
<string name="setting_system">管理系统应用</string>
<string name="setting_auto">%1$s 分钟后自动启用</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">使用暗色主题</string>
<string name="setting_wifi_home">Wi-Fi 家庭网络: %1$s</string>
<string name="setting_metered">控制按流量计费Wi-Fi网络</string>
@ -51,6 +52,7 @@
<string name="summary_system">定义系统应用规则, 仅供专业用户</string>
<string name="summary_stats">在状态栏通知中显示网速示意图</string>
<string name="summary_auto">禁用小部件后, 在设定分钟后自动再次启用NetGuard\n输入零以禁用此选项</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">仅将Wi-Fi网络规则应用于所选定的网络 (将移动网络规则应用于其他Wi-Fi网络)</string>
<string name="summary_metered">将移动网络规则应用于按流量计费的 (付费, 共享) Wi-Fi网络</string>
<string name="summary_metered_2g">将Wi-Fi网络规则应用于2G数据连接</string>

View File

@ -31,6 +31,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -50,7 +51,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_technical">Technical information</string>
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -33,6 +33,7 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="setting_options">Options</string>
<string name="setting_system">Manage system applications</string>
<string name="setting_auto">Auto enable after %1$s minutes</string>
<string name="setting_delay">Delay screen off %1$s minutes</string>
<string name="setting_dark">Use dark theme</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</string>
<string name="setting_metered">Handle metered Wi-Fi networks</string>
@ -56,7 +57,8 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="summary_system">Define rules for system applications (for experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes\nEnter zero to disable this option</string>
<string name="summary_auto">After disabling using the widget, automatically enable NetGuard again after the selected number of minutes (enter zero to disable this option)</string>
<string name="summary_delay">Delay applying when screen on rules for the selected number of minutes after turning the screen off (enter zero to disable this option)</string>
<string name="summary_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</string>
<string name="summary_metered">Apply mobile network rules to metered (paid, tethered) Wi-Fi networks</string>
<string name="summary_metered_2g">Apply Wi-Fi network rules for 2G data connections</string>

View File

@ -37,6 +37,11 @@
android:inputType="number"
android:key="auto_enable"
android:summary="@string/summary_auto" />
<EditTextPreference
android:defaultValue="0"
android:inputType="number"
android:key="screen_delay"
android:summary="@string/summary_delay" />
<SwitchPreference
android:defaultValue="false"
android:key="dark_theme"