Happy newyear

This commit is contained in:
M66B 2016-12-29 09:27:58 +01:00
parent 596ea0ffff
commit 9db81a3e08
92 changed files with 151 additions and 91 deletions

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.os.AsyncTask;

View File

@ -17,7 +17,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.Activity;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.DialogInterface;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Intent;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.BroadcastReceiver;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.PendingIntent;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.Manifest;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.Manifest;
@ -73,6 +73,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> im
private static final String TAG = "NetGuard.Adapter";
private Activity context;
private LayoutInflater inflater;
private RecyclerView rv;
private int colorText;
private int colorChanged;
@ -225,6 +226,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> im
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
this.context = context;
this.inflater = LayoutInflater.from(context);
if (prefs.getBoolean("dark_theme", false))
colorChanged = Color.argb(128, Color.red(Color.DKGRAY), Color.green(Color.DKGRAY), Color.blue(Color.DKGRAY));
@ -839,7 +841,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> im
@Override
public AdapterRule.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
return new ViewHolder(LayoutInflater.from(context).inflate(R.layout.rule, parent, false));
return new ViewHolder(inflater.inflate(R.layout.rule, parent, false));
}
@Override

View File

@ -1,5 +1,24 @@
package eu.faircode.netguard;
/*
This file is part of NetGuard.
NetGuard is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
public class Allowed {
public String raddr;
public int rport;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.Application;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.ContentValues;

View File

@ -1,5 +1,24 @@
package eu.faircode.netguard;
/*
This file is part of NetGuard.
NetGuard is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -1,5 +1,24 @@
package eu.faircode.netguard;
/*
This file is part of NetGuard.
NetGuard is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
public class Forward {
public int protocol;
public int dport;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.os.Bundle;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.PendingIntent;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.util.Log;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
public class Packet {

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.Notification;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import java.text.DateFormat;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.IntentService;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.annotation.TargetApi;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.content.Context;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import java.text.DateFormat;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.Manifest;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
public class Version implements Comparable<Version> {

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.PendingIntent;

View File

@ -16,7 +16,7 @@ package eu.faircode.netguard;
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
import android.app.AlarmManager;

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2015-2016 by Marcel Bokhorst (M66B)
Copyright 2015-2017 by Marcel Bokhorst (M66B)
*/
#include "netguard.h"

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard يوفر طرق بسيطة ومتقدمة لمنع الوصول إلى شبكة الإنترنت - لا يلزم الجذر. يمكن السماح أو الرفض بشكل فردي الوصول إلى جهاز الواي فاي أو اتصال الجوال .</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 2015-2016 من م. بوخورست (M66B)</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 20152017 من م. بوخورست (M66B)</string>
<string name="app_android">يتطلب NetGuard إصدار أندرويد 4.0 أو أحدث</string>
<string name="app_license">بــإســتــخــدام NetGuard، مــعــنــاه أنــك مــوافــق عــلـى <a href="http://www.gnu.org/licenses/gpl.txt"> رخــصــة BNU الــعــمــومــيــة الــعــامــة الإصــدار 3</a></string>
<string name="app_first">تم تطوير واختبار NetGuard بعناية فائقة؛ لكن من المستحيل ضمان عمل NetGuard بشكل صحيح على كل جهاز. \n\nBy باستخدامك NetGuard؛ فإنك توافق على <a href="http://www.gnu.org/licenses/gpl.txt"> رخصة جنو العمومية الإصدار 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard يوفر طرق بسيطة ومتقدمة لمنع الوصول إلى شبكة الإنترنت - لا يلزم الجذر. يمكن السماح أو الرفض بشكل فردي الوصول إلى جهاز الواي فاي أو اتصال الجوال .</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 2015-2016 من م. بوخورست (M66B)</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 20152017 من م. بوخورست (M66B)</string>
<string name="app_android">يتطلب NetGuard إصدار أندرويد 4.0 أو أحدث</string>
<string name="app_license">بــإســتــخــدام NetGuard، مــعــنــاه أنــك مــوافــق عــلـى <a href="http://www.gnu.org/licenses/gpl.txt"> رخــصــة BNU الــعــمــومــيــة الــعــامــة الإصــدار 3</a></string>
<string name="app_first">تم تطوير واختبار NetGuard بعناية فائقة؛ لكن من المستحيل ضمان عمل NetGuard بشكل صحيح على كل جهاز. \n\nBy باستخدامك NetGuard؛ فإنك توافق على <a href="http://www.gnu.org/licenses/gpl.txt"> رخصة جنو العمومية الإصدار 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard يوفر طرق بسيطة ومتقدمة لمنع الوصول إلى شبكة الإنترنت - لا يلزم الجذر. يمكن السماح أو الرفض بشكل فردي الوصول إلى جهاز الواي فاي أو اتصال الجوال .</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 2015-2016 من م. بوخورست (M66B)</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 20152017 من م. بوخورست (M66B)</string>
<string name="app_android">يتطلب NetGuard إصدار أندرويد 4.0 أو أحدث</string>
<string name="app_license">بــإســتــخــدام NetGuard، مــعــنــاه أنــك مــوافــق عــلـى <a href="http://www.gnu.org/licenses/gpl.txt"> رخــصــة BNU الــعــمــومــيــة الــعــامــة الإصــدار 3</a></string>
<string name="app_first">تم تطوير واختبار NetGuard بعناية فائقة؛ لكن من المستحيل ضمان عمل NetGuard بشكل صحيح على كل جهاز. \n\nBy باستخدامك NetGuard؛ فإنك توافق على <a href="http://www.gnu.org/licenses/gpl.txt"> رخصة جنو العمومية الإصدار 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard يوفر طرق بسيطة ومتقدمة لمنع الوصول إلى شبكة الإنترنت - لا يلزم الجذر. يمكن السماح أو الرفض بشكل فردي الوصول إلى جهاز الواي فاي أو اتصال الجوال .</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 2015-2016 من م. بوخورست (M66B)</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 20152017 من م. بوخورست (M66B)</string>
<string name="app_android">يتطلب NetGuard إصدار أندرويد 4.0 أو أحدث</string>
<string name="app_license">بــإســتــخــدام NetGuard، مــعــنــاه أنــك مــوافــق عــلـى <a href="http://www.gnu.org/licenses/gpl.txt"> رخــصــة BNU الــعــمــومــيــة الــعــامــة الإصــدار 3</a></string>
<string name="app_first">تم تطوير واختبار NetGuard بعناية فائقة؛ لكن من المستحيل ضمان عمل NetGuard بشكل صحيح على كل جهاز. \n\nBy باستخدامك NetGuard؛ فإنك توافق على <a href="http://www.gnu.org/licenses/gpl.txt"> رخصة جنو العمومية الإصدار 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard يوفر طرق بسيطة ومتقدمة لمنع الوصول إلى شبكة الإنترنت - لا يلزم الجذر. يمكن السماح أو الرفض بشكل فردي الوصول إلى جهاز الواي فاي أو اتصال الجوال .</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 2015-2016 من م. بوخورست (M66B)</string>
<string name="app_copyright">حــقــوق الــطــبــع والــنــشــر والــتــوزيــع \u00A9 عام 20152017 من م. بوخورست (M66B)</string>
<string name="app_android">يتطلب NetGuard إصدار أندرويد 4.0 أو أحدث</string>
<string name="app_license">بــإســتــخــدام NetGuard، مــعــنــاه أنــك مــوافــق عــلـى <a href="http://www.gnu.org/licenses/gpl.txt"> رخــصــة BNU الــعــمــومــيــة الــعــامــة الإصــدار 3</a></string>
<string name="app_first">تم تطوير واختبار NetGuard بعناية فائقة؛ لكن من المستحيل ضمان عمل NetGuard بشكل صحيح على كل جهاز. \n\nBy باستخدامك NetGuard؛ فإنك توافق على <a href="http://www.gnu.org/licenses/gpl.txt"> رخصة جنو العمومية الإصدار 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard предоставя прост, а също така и по-задълбочен начини за блокиране достъпа до интернет - без нужда от ROOT права. Достъпът на приложенията и адресите чрез Wi-Fi или мобилни данни, могат да се разрешават и забраняват по отделно.</string>
<string name="app_copyright">\u00A9 2015-2016 автор - M. Bokhorst (M66B). Всички права запазени.</string>
<string name="app_copyright">\u00A9 20152017 автор - M. Bokhorst (M66B). Всички права запазени.</string>
<string name="app_android">NetGuard изисква Android 4.0 или по-нова версия</string>
<string name="app_license">Използвайки NetGuard, вие се съгласявате със следното лицензионно споразумение: <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License версия 3</a></string>
<string name="app_first">Изключително внимание е вложено при разработката и тестването на NetGuard, въпреки това е невъзможно да се гарантира, че NetGuard ще работи безупречно на всяко устройство. \n\nИзползвайки NetGuard, вие се съгласявате със следното лицензионно споразумение: <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License версия 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard nabízí jednoduché i pokročilé způsoby pro blokování přístupu k Internetu - vše bez potřeby rootu. Aplikacím a adresám lze individuálně povolit či zakázat přístup k Vašemu Wi-Fi a/nebo datovému připojení.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard vyžaduje Android 4.0 nebo novější</string>
<string name="app_license">Používáním aplikace NetGuard souhlasíte s <a href="http://www.gnu.org/licenses/gpl.txt">Obecnou veřejnou licencí GNU verze 3</a></string>
<string name="app_first">Velká péče byla vložena do vývoje a testování NetGuardu,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard tilbyder enkle og avancerede metoder til blokering af Internetadgang - ingen Root-rettighed krævet. Apps og adresser kan individuelt tillades eller nægtes adgang til din Wi-Fi- og/eller mobilforbindelse.</string>
<string name="app_copyright">Ophavsrettighed \u00A9 2015-2016 af M. Bokhorst (M66B)</string>
<string name="app_copyright">Ophavsrettighed \u00A9 20152017 af M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard kræver Android 5.0 eller senere</string>
<string name="app_license">Ved at bruge NetGuard, accepterer du licensaftalen <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Stor omhu er lagt i udvikling og test af NetGuard, men det er umuligt at garantere, at NetGuard vil fungere korrekt på alle enhed.\n

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard bietet einfache und erweiterte Möglichkeiten, um Zugriffe auf das Internet zu blockieren - keine Root-Rechte erforderlich! Anwendungen und Adressen kann der Zugriff auf die WLAN- und/oder mobile Datenverbindung einzeln erlaubt oder verweigert werden.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 von M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 von M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard erfordert Android 4.0 oder höher</string>
<string name="app_license">Mit der Verwendung von NetGuard akzeptieren Sie die <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License Version 3</a></string>
<string name="app_first">Die App wurde mit großer Sorgfalt entwickelt und getestet. Es ist leider trotzdem unmöglich zu garantieren, dass NetGuard auf jedem Gerät fehlerfrei funktioniert.

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">Το NetGuard παρέχει απλούς αλλά και σύνθετους τρόπους να εμποδίσετε την πρόσβαση στο διαδίκτυο χωρίς να απαιτείται root. Μπορείτε να εμποδίσετε ή να επιτρέψετε ξεχωριστά την πρόσβαση στο WiFI ή/και στη σύνδεση δεδομένων για εφαρμογές και διευθύνσεις που εσείς επιλέγετε.</string>
<string name="app_copyright">Πνευματικά δικαιώματα \u00A9 2015-2016 από Μ. Bokhorst (M66B)</string>
<string name="app_copyright">Πνευματικά δικαιώματα \u00A9 20152017 από Μ. Bokhorst (M66B)</string>
<string name="app_android">Το NetGuard απαιτεί Android 5.0 ή κάποια νεότερη έκδοση</string>
<string name="app_license">Με τη χρήση του NetGuard, συμφωνείτε με την <a href="http://www.gnu.org/licenses/gpl.txt"> GNU/GPL έκδοση 3</a></string>
<string name="app_first">Έχει γίνει μεγάλη προσπάθεια για την ανάπτυξη και τη δοκιμή του NetGuard, ωστόσο, είναι αδύνατο να σας εγγυηθούμε ότι το NetGuard θα λειτουργούν σωστά σε κάθε συσκευή. \n\nΧρησιμοποιώντας το NetGuard, συμφωνείτε με την <a href="http://www.gnu.org/licenses/gpl.txt"> GNU γενική άδεια δημόσιας χρήσης έκδοση 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard ofrece modos simples y avanzados para bloquear el acceso a Internet - sin necesidad de acceso root. Se puede permitir o denegar individualmente el acceso a su conexión Wi-Fi o móvil a aplicaciones y direcciones.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 por M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 por M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requiere Android 4.0 o superior</string>
<string name="app_license">Al utilizar NetGuard, acepta la <a href="http://www.gnu.org/licenses/gpl.txt">Licencia Pública General GNU versión 3</a></string>
<string name="app_first">Se ha tenido gran cuidado para desarrollar y probar NetGuard, sin embargo, es imposible garantizar que NetGuard funcione correctamente en todos los dispositivos. \n\nAl utilizar NetGuard, acepta la <a href="http://www.gnu.org/licenses/gpl.txt"> Licencia Pública General GNU versión 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">NetGuardi kasutades nõustute <a href="http://www.gnu.org/licenses/gpl.txt"> GNU Üldise avaliku litsentsi versiooniga 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard offre des moyens simples et avancés pour bloquer l\'accès à internet - root non requis. L\'accès à votre connexion Wi-Fi et/ou mobile peut être individuellement autorisé ou refusé à des applications et à des adresses.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 par M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 par M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requiert Android 4.0 ou ultérieur</string>
<string name="app_license">En utilisant NetGuard, vous acceptez la <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Un grand soin a été apporté pour développer et tester NetGuard, cependant il est impossible de garantir que NetGuard fonctionnera correctement sur tous les appareils.\n\nEn utilisant NetGuard, vous acceptez la <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>

View File

@ -3,7 +3,7 @@
<resources>
<string name="app_description">NetGuard מספקת דרכים פשוטות ומתקדמות לחסום גישה לאינטרנט - ללא צורך ברוט
היא מאפשרת לחסום או לאפשר באופן פרטני גישת יישומים לרשתות Wi-Fi או אינטרנט סלולרי.</string>
<string name="app_copyright">זכויות יוצרים \u00A9 2015-2016 על ידי מ Bokhorst (M66B)</string>
<string name="app_copyright">זכויות יוצרים \u00A9 20152017 על ידי מ Bokhorst (M66B)</string>
<string name="app_android">NetGuard דורש אנדרואיד 4.0 ואילך</string>
<string name="app_license">על ידי שימוש NetGuard, אתה מסכים <a href="http://www.gnu.org/licenses/gpl.txt"> הרישיון הציבורי הכללי של גנו גרסה 3</a></string>
<string name="app_first">תשומת לב רבה הוקדשה כדי לפתח ולבדוק את NetGuard, אך זה בלתי אפשרי להבטיח ש-NetGuard תפעל כראוי על כל מכשיר. שימוש בNetGuard מהווה הסכמה לתנאי \n\n <a href="http://www.gnu.org/licenses/gpl.txt"> הרישיון הציבורי הכללי של גנו גרסה 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">कोई जड़ आवश्यक - NetGuard इंटरनेट के लिए उपयोग ब्लॉक करने के लिए सरल और उन्नत तरीके सुझाता है। आवेदन और पतों को व्यक्तिगत रूप से अनुमति या अपने वाई-फाई और / या मोबाइल कनेक्शन के लिए उपयोग से इनकार किया जा सकता है।</string>
<string name="app_copyright">कॉपीराइट \ u00A9 2015-2016 एम Bokhorst द्वारा (M66B)</string>
<string name="app_copyright">कॉपीराइट \ u00A9 20152017 एम Bokhorst द्वारा (M66B)</string>
<string name="app_android">NetGuard एंड्रॉयड 4.0 या बाद में की आवश्यकता है</string>
<string name="app_license">NetGuard का उपयोग करके आप करने के लिए <a href="http://www.gnu.org/licenses/gpl.txt"> जीएनयू जनरल पब्लिक लाइसेंस संस्करण 3 </a> सहमत</string>
<string name="app_first">महान देखभाल, विकास और NetGuard परीक्षण करने के लिए लिया गया है

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">A NetGuard egyszerűen és speciálisan blokkolja az internet hozzáférést - nem szükséges root jogosultság hozzá. Az alkalmazásokat és a címeket külön-külön lehet engedélyezni vagy letiltani a Wi-Fi és/vagy a mobil kapcsolatokon.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">A NetGuard használatához Android 4.0 vagy újabb szükséges</string>
<string name="app_license">NetGuard használatával elfogadja a<a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Nagy figyelmet fordítanak arra, hogy fejlesszék és teszteljék NetGuard-ot, de arra lehetetlen garanciát vállalni, hogy a NetGuard minden eszközön jól fog működni. \n\nA NetGuard használatával elfogadja a <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License version 3</a> licencet</string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard fornisce sia opzioni semplici che avanzate per bloccare l\'accesso a internet - non necessita di root. Alle applicazioni ed agli indirizzi può essere consentito o negato, singolarmente, l\'accesso alle connessioni Wi-Fi e/o mobile.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard richiede Android 4.0 o versioni successive</string>
<string name="app_license">Utilizzando NetGuard, acconsenti a quanto contenuto nella seguente licenza: <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Si è posta grande cura nello sviluppo e test di NetGuard, tuttavia è impossibile garantire che NetGuard funzionerà correttamente su tutti i dispositivi. \n\nUtilizzando NetGuard, accetti la <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License versione 3</a></string>
@ -83,7 +83,7 @@
<string name="setting_vpn4">VPN IPv4: %s</string>
<string name="setting_vpn6">VPN IPv6: %s</string>
<string name="setting_dns">VPN DNS: %s</string>
<string name="setting_ttl">Minimum DNS TTL: %s s</string>
<string name="setting_ttl">TTL DNS minimo: %s s</string>
<string name="setting_socks5_enabled">Usa proxy SOCKS5</string>
<string name="setting_socks5_addr">Indirizzo SOCKS5: %s</string>
<string name="setting_socks5_port">Porta SOCKS5: %s</string>
@ -178,7 +178,7 @@
<string name="msg_push">I messaggi push sono gestiti principalmente dal componente di sistema Play Services, al quale è consentito l\'accesso a internet in modo predefinito</string>
<string name="msg_system">La gestione delle applicazioni di sistema può essere attivata tramite le opzioni avanzate</string>
<string name="msg_issue">Si prega di descrivere il problema ed indicare il tempo di esso:</string>
<string name="msg_vpn_cancelled">VPN connection cancelled\nDid you configure another VPN to be an always-on VPN?</string>
<string name="msg_vpn_cancelled">Connessione VPN annullata\nHai configurato un\'altra VPN che resta sempre attiva?</string>
<string name="title_unmetered_allowed">Il traffico non al consumo è consentito</string>
<string name="title_unmetered_blocked">Il traffico non al consumo è bloccato</string>
<string name="title_metered_allowed">Il traffico al consumo è consentito</string>

View File

@ -3,7 +3,7 @@
<resources>
<string name="app_description">NetGuard מספקת דרכים פשוטות ומתקדמות לחסום גישה לאינטרנט - ללא צורך ברוט
היא מאפשרת לחסום או לאפשר באופן פרטני גישת יישומים לרשתות Wi-Fi או אינטרנט סלולרי.</string>
<string name="app_copyright">זכויות יוצרים \u00A9 2015-2016 על ידי מ Bokhorst (M66B)</string>
<string name="app_copyright">זכויות יוצרים \u00A9 20152017 על ידי מ Bokhorst (M66B)</string>
<string name="app_android">NetGuard דורש אנדרואיד 4.0 ואילך</string>
<string name="app_license">על ידי שימוש NetGuard, אתה מסכים <a href="http://www.gnu.org/licenses/gpl.txt"> הרישיון הציבורי הכללי של גנו גרסה 3</a></string>
<string name="app_first">תשומת לב רבה הוקדשה כדי לפתח ולבדוק את NetGuard, אך זה בלתי אפשרי להבטיח ש-NetGuard תפעל כראוי על כל מכשיר. שימוש בNetGuard מהווה הסכמה לתנאי \n\n <a href="http://www.gnu.org/licenses/gpl.txt"> הרישיון הציבורי הכללי של גנו גרסה 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard は、インターネットへのアクセスをブロックするシンプルで高度な方法を提供します - root 権限は必要ありません。Wi-Fi および/またはモバイル接続へのアクセスを、アプリケーションとアドレスで個別に許可または拒否することができます。</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard は Android 4.0 以降が必要です</string>
<string name="app_license">NetGuard を使用すると <a href="http://www.gnu.org/licenses/gpl.txt">GNU 一般公衆利用許諾書バージョン 3</a> に同意したことになります</string>
<string name="app_first">NetGuard は細心の注意を行って開発およびテストしました。しかしながら NetGuard がすべてのデバイスで正常に動作を保証することは不可能です。

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard reikalinga Android 4.0 arba naujesnė versija</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard vereist Android 4.0 of later</string>
<string name="app_license">Door NetGuard te gebruiken, gaat u akkoord met de <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">NetGuard is met veel zorg ontwikkeld en getest. Ondanks deze inspanningen is het onmogelijk te garanderen dat NetGuard feilloos werkt op elk apparaat.

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard umożliwia w prosty i zaawansowany sposób blokowanie dostępu do internetu - root nie jest wymagany. Indywidualnie aplikacjom i adresom można zezwolić bądź zabronić dostępu do Twojego Wi-Fi i/lub połączenia mobilnego.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard wymaga Android 4.0 lub nowszy</string>
<string name="app_license">Używając NetGuard, zgadzasz się z <a href="//www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Wielka staranność została podjęta aby rozwijać i testować NetGuard, jednakże nie jest możliwa gwarancja, iż NetGuard będzie działać poprawnie na każdym urządzeniu.\n\nUżywając NetGuard zgadzasz się z licencją <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard fornece maneiras simples e avançadas para bloquear o acesso à internet - sem necessidade de acesso root. Aplicações e endereços podem ter o acesso a internet permitido ou negado, individualmente, tanto via Wi-Fi quando conexão de dados móveis.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 por M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 por M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requer Android 4.0 ou superior</string>
<string name="app_license">Ao usar o NetGuard, você concorda com <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">NetGuard foi desenvolvido e testado com grande cuidado, porém é impossível garantir que o NetGuard funcionará corretamente em cada dispositivo.

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard fornece maneiras simples e avançadas para bloquear o acesso à internet - sem acesso root exigido. Aplicações e endereços podem ser individualmente permitidos ou negados acesso ao seu Wi-Fi e/ou conexão móvel.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 por M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 por M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requer Android 4.0 ou posterior</string>
<string name="app_license">Ao usar o NetGuard, está a concordar com a <a href="http://www.gnu.org/licenses/gpl.txt">Licença Pública Geral GNU - versão 3</a></string>
<string name="app_first">Houve grande cuidado em desenvolver e testar o NetGuard, no entanto é impossível garantir que o NetGuard funcionará correctamente em todos os dispositivos.\n\nAo utilizar o NetGuard você concorda com a <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License versão 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard ofera modalitati simple si avansate de a bloca accesul la internet, ce nu necesita acces root. Accesul aplicatiilor la conexiunile Wi-Fi si/sau mobile poate fi permis sau blocat atat la nivel individual cat si la nivel de adresa.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard necesita Android 4.0 sau mai nou</string>
<string name="app_license">Folosind NetGuard, sunteti de acord cu <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">NetGuard este dezvoltat si testat cu mare atentie, cu toate acestea este imposibii de garantat ca va functiona corect pe fiecare sau pe orice dispozitiv. \n\nFolosind NetGuard, sunteţi de acord cu <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License versiunea 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard обеспечивает простые и широкие способы заблокировать доступ к интернету, который ещё и не требует root-прав. Приложениям и адресам можно индивидуально разрешить или заблокировать доступ к Wi-Fi и/или мобильной связи.</string>
<string name="app_copyright">Авторское право \u00A9 2015-2016 М. Bokhorst (M66B)</string>
<string name="app_copyright">Авторское право \u00A9 20152017 М. Bokhorst (M66B)</string>
<string name="app_android">Для работы NetGuard требуется Android 4.0 или более поздняя версия</string>
<string name="app_license">Используя NetGuard, вы принимаете <a href="http://www.gnu.org/licenses/gpl.txt">Открытое лицензионное соглашение GNU версии 3</a></string>
<string name="app_first">Было уделено большое внимание разработке и тестированию NetGuard, однако нельзя гарантировать, что NetGuard будет правильно работать на каждом устройстве. \n\nИспользуя NetGuard, вы принимаете <a href="http://www.gnu.org/licenses/gpl.txt">Открытое лицензионное соглашение GNU версии 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard poskytuje jednoduché a pokročilé spôsoby blokovania prístupu na internet - nevyžadujúcich root prístup. Aplikáciám a adresám môže byť individuálne povolený alebo odmietnutý prístup k Wi-Fi alebo mobilnému pripojeniu.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 podľa M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 podľa M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard vyžaduje Android vo verzii 4.0 alebo novšej</string>
<string name="app_license">Používaním aplikácie NetGuard súhlasíte so <a href="http://www.gnu.org/licenses/gpl.txt">Všeobecnou verejnou licenciou GNU, verzia 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard இணைய - தேவை இல்லை வேர் தடுக்க எளிய மற்றும் மேம்பட்ட வழிகளை வழங்குகிறது. பயன்பாடுகள் மற்றும் முகவரிகளை தனித்தனியாக அனுமதிக்கப்பட்ட அல்லது இயலும் உங்கள் Wi-Fi மற்றும்/அல்லது மொபைல் இணைப்பை அணுகல் மறுக்கப்பட்டது.</string>
<string name="app_copyright">பதிப்புரிமை \u00A9 வாக்கில்-2016 மூலம் அவதூறு Bokhorst (M66B)</string>
<string name="app_copyright">பதிப்புரிமை \u00A9 வாக்கில்2017 மூலம் அவதூறு Bokhorst (M66B)</string>
<string name="app_android">NetGuard ஆண் போன்ற 4.0 அல்லது பிந்தைய பதிப்பு தேவைப்படுகிறது</string>
<string name="app_license">NetGuard பயன்படுத்தி, நீங்கள் ஒப்புக்கொள்கிறீர்கள் <a href="http://www.gnu.org/licenses/gpl.txt"> குனு பொது மக்கள் உரிமம் பதிப்பு 3</a></string>
<string name="app_first">அதிக கவனம் மேற்கொள்ளப்படும் சோதனை NetGuard, அவர்களை NetGuard சரியாக பணி ஒவ்வொரு சாதனத்தில் உத்தரவாதம் பதிலளிப்பது இருப்பினும். \n\nBy NetGuard, பயன்படுத்தி நீங்கள் ஒப்புக்கொள்கிறீர்கள் <a href="http://www.gnu.org/licenses/gpl.txt"> குனு பொது மக்கள் உரிமம் பதிப்பு 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard root gerektirmeden internet erişimini engellemek için basit ve gelişmiş yöntemler kullanır. Wi-Fi yada mobil bağlantı ürerinden uygulamalar ve adresler için internet erişimini tek tek engelleyebilirsiniz.</string>
<string name="app_copyright">Telif Hakkı \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Telif Hakkı \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard Android 4.0 veya üstü gerektirir</string>
<string name="app_license">NetGuard kullanarak, <a href="http://www.gnu.org/licenses/gpl.txt"> GNU Genel Kamu Lisansını sürüm 3</a> için kabul ediyorum</string>
<string name="app_first">NetGuard sürekli gelişmekte ve yoğun bir şekilde test ediliyor,

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Авторське право \u00A9 2015-2016 M. Bokhorst (M66B)</string>
<string name="app_copyright">Авторське право \u00A9 20152017 M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard потребує версію Android 4.0 чи вище</string>
<string name="app_license">Використовуючи NetGuard, ви погоджуєтесь із <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Було докладено багато зусиль до розробки та тестування NetGuard, проте не можливо гарантувати, що додаток буде правильно працювати на кожнрму пристрої.

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard cung cấp những cách đơn giản và nâng cao để chặn quyền truy cập vào internet - không yêu cầu root. Ứng dụng và địa chỉ có thể được cá nhân cho phép hoặc từ chối truy cập Wi-Fi và/hoặc kết nối di động của bạn.</string>
<string name="app_copyright">Bản quyền \u00A9 năm 2015-2016 của M. Bokhorst (M66B)</string>
<string name="app_copyright">Bản quyền \u00A9 năm 20152017 của M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard yêu cầu Android 4.0 hoặc cao hơn</string>
<string name="app_license">Bằng việc sử dụng NetGuard, bạn đồng ý với <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License Phiên bản 3</a></string>
<string name="app_first">Những nỗ lực tuyệt vời đã được thực hiện để phát triển và thử nghiệm NetGuard, Tuy nhiên nó không thể đảm bảo NetGuard sẽ làm việc một cách chính xác trên mọi thiết bị \n\nBằng việc sử dụng NetGuard, bạn đồng ý với <a href="http://www.gnu.org/licenses/gpl.txt"> GNU General Public License Phiên bản 3</a></string>

View File

@ -2,7 +2,7 @@
<!--Generated by crowdin.com-->
<resources>
<string name="app_description">NetGuard 提供简便且专业的方式阻止网络访问 - 无需 root. 可单独允许或拒绝应用和地址访问您的 Wi-Fi 和/或移动数据连接.</string>
<string name="app_copyright">版权所有 \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">版权所有 \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard仅适用于运行Android 4.0 或更高版本的设备</string>
<string name="app_license">使用NetGuard即表明您接受 <a href="http://www.gnu.org/licenses/gpl.txt">GNU通用公共许可协议第三版</a></string>
<string name="app_first">开发者在开发和测试NetGuard过程中已悉心尽力,

View File

@ -1,7 +1,7 @@
<resources>
<string name="app_name" translatable="false">NetGuard</string>
<string name="app_description">NetGuard provides simple and advanced ways to block access to the internet - no root required. Applications and addresses can individually be allowed or denied access to your Wi-Fi and/or mobile connection.</string>
<string name="app_copyright">Copyright \u00A9 2015-2016 by M. Bokhorst (M66B)</string>
<string name="app_copyright">Copyright \u00A9 20152017 by M. Bokhorst (M66B)</string>
<string name="app_android">NetGuard requires Android 4.0 or later</string>
<string name="app_license">By using NetGuard, you agree to the <a href="http://www.gnu.org/licenses/gpl.txt">GNU General Public License version 3</a></string>
<string name="app_first">Great care has been taken to develop and test NetGuard,

View File

@ -32,3 +32,4 @@ cp -R /home/marcel/Documents/android/projects/NetGuard/app/src/main/res/values-a
cp -R /home/marcel/Documents/android/projects/NetGuard/app/src/main/res/values-ar/* \
/home/marcel/Documents/android/projects/NetGuard/app/src/main/res/values-ar-rYE/
sed -i s/-2016/2017/ app/src/main/res/values*/strings.xml