Crowdin sync

This commit is contained in:
M66B 2015-12-31 10:18:00 +01:00
parent 12fb62fea0
commit b0dbd9b6b2
40 changed files with 249 additions and 130 deletions

View File

@ -42,6 +42,7 @@ import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.SearchView;
import android.support.v7.widget.SwitchCompat;
import android.text.TextUtils;
import android.text.method.LinkMovementMethod;
import android.util.Log;
import android.view.LayoutInflater;
@ -467,7 +468,7 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String query) {
if (IAB.isPurchased(ActivityPro.SKU_SELECT, ActivityMain.this)) {
if (TextUtils.isEmpty(query) || IAB.isPurchased(ActivityPro.SKU_SELECT, ActivityMain.this)) {
if (adapter != null)
adapter.getFilter().filter(query);
} else
@ -477,7 +478,7 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
@Override
public boolean onQueryTextChange(String newText) {
if (IAB.isPurchased(ActivityPro.SKU_SELECT, ActivityMain.this)) {
if (TextUtils.isEmpty(newText) || IAB.isPurchased(ActivityPro.SKU_SELECT, ActivityMain.this)) {
if (adapter != null)
adapter.getFilter().filter(newText);
} else
@ -530,6 +531,8 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
@Override
public boolean onOptionsItemSelected(MenuItem item) {
Log.i(TAG, "Menu=" + item.getTitle());
// Handle item selection
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
switch (item.getItemId()) {

View File

@ -53,6 +53,7 @@ public class ActivityPro extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.i(TAG, "Create");
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
setTheme(prefs.getBoolean("dark_theme", false) ? R.style.AppThemeDark : R.style.AppTheme);
@ -154,6 +155,7 @@ public class ActivityPro extends AppCompatActivity {
@Override
protected void onDestroy() {
Log.i(TAG, "Destroy");
iab.unbind();
super.onDestroy();
}

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -81,11 +81,14 @@ These issues are caused by bugs in Android, or in the software provided by the m
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -80,11 +80,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 features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Puesto que NetGuard no tiene permisos de internet, ya sabes que tu tráfico de i
<string name="title_allow">Permitir</string>
<string name="title_block">Bloquear</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Buscar, filtrar, ordenar</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Aspecto</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -10,14 +10,14 @@ NetGuard est connu pour planter lorsqu\'il est activé ou pour bloquer tout le t
Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le constructeur, alors veuillez ne pas en vouloir à NetGuard.
\n\nEn utilisant NetGuard, vous acceptez la <a href="http://www.gnu.org/licenses/gpl.txt">Licence GNU General Public version 3</a></string>
<string name="menu_search">Rechercher application</string>
<string name="menu_filter">Filter applications</string>
<string name="menu_app_user">Show user applications</string>
<string name="menu_app_system">Show system applications</string>
<string name="menu_app_nointernet">Show applications without internet</string>
<string name="menu_app_disabled">Show disabled applications</string>
<string name="menu_sort">Sort applications</string>
<string name="menu_sort_name">Sort on name</string>
<string name="menu_sort_data">Sort on data usage</string>
<string name="menu_filter">Filtrer applications</string>
<string name="menu_app_user">Afficher les applications utilisateur</string>
<string name="menu_app_system">Afficher les applications système</string>
<string name="menu_app_nointernet">Afficher les applications sans internet</string>
<string name="menu_app_disabled">Afficher les applications désactivées</string>
<string name="menu_sort">Trier applications</string>
<string name="menu_sort_name">Trier par nom</string>
<string name="menu_sort_data">Trier par utilisation des données</string>
<string name="menu_settings">Paramètres</string>
<string name="menu_invite">Inviter</string>
<string name="menu_support">Aide</string>
@ -32,26 +32,26 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
<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_dark">Utiliser le thème sombre</string>
<string name="setting_wifi_home">Wi-Fi home networks: %1$s</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>
<string name="setting_metered_2g">Considérer 2G illimités</string>
<string name="setting_metered_3g">Considérer 3G illimités</string>
<string name="setting_metered_4g">Considérer LTE illimités</string>
<string name="setting_national_roaming">Ignorer l\'itinérance nationale</string>
<string name="setting_stats_category">Speed notification</string>
<string name="setting_stats">Show speed notification</string>
<string name="setting_stats_top">Show top applications</string>
<string name="setting_stats_base">Speed baseline: %s KB/s</string>
<string name="setting_stats_frequency">Sample interval: %s ms</string>
<string name="setting_stats_samples">Number of samples: %s s</string>
<string name="setting_stats_category">Notification de vitesse</string>
<string name="setting_stats">Afficher la notification de vitesse</string>
<string name="setting_stats_top">Afficher le top applications</string>
<string name="setting_stats_base">Base de vitesse : %s Ko/s</string>
<string name="setting_stats_frequency">Intervalle d\'échantillonnage : %s ms</string>
<string name="setting_stats_samples">Nombre d\'échantillons : %s s</string>
<string name="setting_backup">Sauvegarde</string>
<string name="setting_export">Exporter paramètres</string>
<string name="setting_import">Importer paramètres</string>
<string name="setting_technical">Informations techniques</string>
<string name="summary_system">Définir les règles pour les applications système (Pour experts)</string>
<string name="summary_stats">Show network speed graph in status bar notification</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_wifi_home">Apply Wi-Fi network rules for selected network only (apply mobile network rules for other Wi-Fi networks)</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>
<string name="summary_metered_3g">Appliquer les règles de réseau Wi-Fi pour les connexions de données 3G</string>
@ -62,7 +62,7 @@ Ceci est causé par des bugs dans Android, ou dans le logiciel fourni par le con
<string name="msg_packages">%1$d autorisée(s), %2$d bloquée(s)</string>
<string name="msg_disabled">NetGuard est désactivé, utilisez le bouton ci-dessus pour activer NetGuard</string>
<string name="msg_revoked">NetGuard a été désactivé, probablement en utilisant une autre application VPN</string>
<string name="msg_installed">\'%1$s\' installed</string>
<string name="msg_installed">%1$s installé</string>
<string name="msg_completed">Action réalisée</string>
<string name="msg_vpn">NetGuard utilise un VPN local comme un gouffre pour bloquer le trafic internet.
Pour cette raison, veuillez autoriser une connexion VPN dans la fenêtre suivante.
@ -70,7 +70,7 @@ Netguard n\'a pas accès a internet, vous savez que votre trafic internet n\'est
<string name="msg_try">Essayer NetGuard</string>
<string name="msg_terms">En faisant un don vous acceptez les <a href="http://www.netguard.me/#terms">termes et conditions</a></string>
<string name="msg_dimming">Si vous ne pouvez pas appuyer sur OK dans la fenêtre suivante, une autre application (filtre de luminosité) manipule probablement l\'écran.</string>
<string name="msg_mbday">± %1$.3f▲ %2$.3f▼ MB/day</string>
<string name="msg_mbday">± %1$.3f▲ %2$.3f▼ Mo/jour</string>
<string name="msg_kbsec">%7.3f KB/s</string>
<string name="msg_mbsec">%7.3f MB/s</string>
<string name="title_screen_wifi">Autoriser Wi-Fi si écran allumé</string>
@ -80,14 +80,17 @@ Netguard n\'a pas accès a internet, vous savez que votre trafic internet n\'est
<string name="title_internet">n\'a aucune autorisation internet</string>
<string name="title_launch">Lancer l\'application</string>
<string name="title_rate">Évaluer</string>
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_allow">Autoriser</string>
<string name="title_block">Bloquer</string>
<string name="title_pro">Fonctionnalités Pro</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Rechercher, filtrer, trier</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Thème</string>
<string name="title_pro_speed">Notification graphique de vitesse</string>
<string name="title_pro_backup">Exporter/importer</string>
<string name="title_pro_buy">Détails</string>
<string name="title_pro_bought">Activé</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -85,11 +85,14 @@ Ció è causato da alcuni bug contenuti in Android, o in programmi forniti dal p
<string name="title_allow">Permetti</string>
<string name="title_block">Blocca</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -82,12 +82,15 @@ NetGuard にインターネット アクセス許可がないと、インター
<string name="title_rate">評価</string>
<string name="title_allow">許可</string>
<string name="title_block">ブロック</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Pro版の機能</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">検索、フィルター、並べ替え</string>
<string name="title_pro_notify">New application notification</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>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Toestaan</string>
<string name="title_block">Blokkeren</string>
<string name="title_pro">Pro functies</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Zoeken, filteren, sorteren</string>
<string name="title_pro_defaults">Regel standaardwaarden</string>
<string name="title_pro_notify">Nieuwe applicatie melding</string>
<string name="title_pro_theme">Thema</string>
<string name="title_pro_speed">Snelheidsmelding grafiek</string>
<string name="title_pro_backup">Exporteren/Importeren</string>
<string name="title_pro_backup">Exporteren/importeren</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Ingeschakeld</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -82,12 +82,15 @@ Ponieważ NetGuard nie ma zezwolenia na dostęp do Internetu, masz pewność, ż
<string name="title_rate">Oceń</string>
<string name="title_allow">Zezwól</string>
<string name="title_block">Blokuj</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Funkcje Pro</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Wyszukaj, filtruj, sortuj</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Motyw</string>
<string name="title_pro_speed">Wykres wskaźnika prędkości</string>
<string name="title_pro_backup">Eksport/import</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>
</resources>

View File

@ -82,12 +82,15 @@ 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">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Funcionalidades da versão PRO</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Pesquisar, filtrar, ordenar</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Tema</string>
<string name="title_pro_speed">Notificação gráfica de velocidade</string>
<string name="title_pro_backup">Exportar/Importar</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>
</resources>

View File

@ -82,12 +82,15 @@ 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">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Funcionalidades da versão PRO</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Pesquisar, filtrar, ordenar</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Tema</string>
<string name="title_pro_speed">Notificação gráfica de velocidade</string>
<string name="title_pro_backup">Exportar/Importar</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>
</resources>

View File

@ -82,12 +82,15 @@ Cum NetGuard efectiv nu are permisiunea de a accesa internetul, esti sigur ca tr
<string name="title_rate">Evalueaza aplicatia</string>
<string name="title_allow">Permite</string>
<string name="title_block">Blocheaza</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Caracteristici versiune Pro</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Cautare, filtrare, sortare</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Tema</string>
<string name="title_pro_speed">Graficul de notificare viteza</string>
<string name="title_pro_backup">Export/Import</string>
<string name="title_pro_buy">Detalii</string>
<string name="title_pro_bought">Activat</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -79,12 +79,15 @@ NetGuard не имеет разрешения доступа в интернет
<string name="title_rate">Оценить</string>
<string name="title_allow">Разрешить</string>
<string name="title_block">Блокировать</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Pro опции</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Поиск, фильтрация, сортировка</string>
<string name="title_pro_notify">New application notification</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>
</resources>

View File

@ -83,11 +83,14 @@ Keďže NetGuard nemá internetové povolenie, vaša sieťová prevádzka nemô
<string name="title_allow">Povoliť</string>
<string name="title_block">Blokovať</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">İzin Ver</string>
<string name="title_block">Engelle</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -11,9 +11,9 @@
<string name="menu_app_system">Системні додатки</string>
<string name="menu_app_nointernet">Додатки без інтернету</string>
<string name="menu_app_disabled">Вимкнені додатки</string>
<string name="menu_sort">Sort applications</string>
<string name="menu_sort_name">Sort on name</string>
<string name="menu_sort_data">Sort on data usage</string>
<string name="menu_sort">Впорядкування додатків</string>
<string name="menu_sort_name">За назвою</string>
<string name="menu_sort_data">За використанням даних</string>
<string name="menu_settings">Налаштування</string>
<string name="menu_invite">Запросити</string>
<string name="menu_support">Підтримка</string>
@ -78,12 +78,15 @@ NetGuard не має дозволу до інтернет доступу, том
<string name="title_rate">Оцінити</string>
<string name="title_allow">Дозволити</string>
<string name="title_block">Блокувати</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">Pro можливості</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Пошук, фільтр, впорядкування</string>
<string name="title_pro_notify">New application notification</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>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>

View File

@ -82,12 +82,15 @@ NetGuard不具有网络访问权限, 所以您无需担心您的网络流量被
<string name="title_rate">评分</string>
<string name="title_allow">允许</string>
<string name="title_block">阻止</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro">专业版功能</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">搜索,筛选, 排序</string>
<string name="title_pro_notify">New application notification</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>
</resources>

View File

@ -83,11 +83,14 @@ Since NetGuard has no internet permission, you know your internet traffic is not
<string name="title_allow">Allow</string>
<string name="title_block">Block</string>
<string name="title_pro">Pro features</string>
<string name="title_pro_description">You can buy the following convenience features:</string>
<string name="title_pro_select">Search, filter, sort</string>
<string name="title_pro_defaults">Rule defaults</string>
<string name="title_pro_notify">New application notification</string>
<string name="title_pro_theme">Theme</string>
<string name="title_pro_speed">Speed notification graph</string>
<string name="title_pro_backup">Export/import</string>
<string name="title_pro_buy">Details</string>
<string name="title_pro_bought">Enabled</string>
<string name="title_pro_challenge">Challenge</string>
<string name="title_pro_reponse">Response</string>
</resources>