diff --git a/InternetTest/InternetTest/App.xaml b/InternetTest/InternetTest/App.xaml
index 56aed5e..ba5a95b 100644
--- a/InternetTest/InternetTest/App.xaml
+++ b/InternetTest/InternetTest/App.xaml
@@ -1703,6 +1703,9 @@
+
diff --git a/InternetTest/InternetTest/Classes/DnsCacheInfo.cs b/InternetTest/InternetTest/Classes/DnsCacheInfo.cs
index 889d925..d28ff95 100644
--- a/InternetTest/InternetTest/Classes/DnsCacheInfo.cs
+++ b/InternetTest/InternetTest/Classes/DnsCacheInfo.cs
@@ -22,8 +22,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
-using System.Text.Json.Serialization;
using System.Text.Json;
+using System.Text.Json.Serialization;
namespace InternetTest.Classes;
diff --git a/InternetTest/InternetTest/Classes/Global.cs b/InternetTest/InternetTest/Classes/Global.cs
index 724ab31..dc990a5 100644
--- a/InternetTest/InternetTest/Classes/Global.cs
+++ b/InternetTest/InternetTest/Classes/Global.cs
@@ -48,13 +48,19 @@ public static class Global
#if NIGHTLY
private static DateTime Date => System.IO.File.GetLastWriteTime(System.Reflection.Assembly.GetEntryAssembly().Location);
- public static string Version => $"8.6.1.2409-nightly{Date:yyMM.dd@HHmm}";
+ public static string Version => $"8.7.0.2411-nightly{Date:yyMM.dd@HHmm}";
#else
- public static string Version => "8.6.1.2409";
+ public static string Version => "8.7.0.2411";
#endif
public static string LastVersionLink => "https://raw.githubusercontent.com/Leo-Corporation/LeoCorp-Docs/master/Liens/Update%20System/InternetTest/7.0/Version.txt";
- internal static string SynethiaPath => $@"{FileSys.AppDataPath}\Léo Corporation\InternetTest Pro\NewSynethiaConfig.json";
+
+#if PORTABLE
+ public static string DefaultStoragePath => $@"{FileSys.CurrentDirectory}\InternetTest Pro\";
+#else
+ public static string DefaultStoragePath => $@"{FileSys.AppDataPath}\Léo Corporation\InternetTest Pro\";
+#endif
+ public static string SynethiaPath => $@"{DefaultStoragePath}\NewSynethiaConfig.json";
public static bool IsConfidentialModeEnabled { get; set; } = false;
public static Settings Settings { get; set; } = SettingsManager.Load();
public static SynethiaConfig SynethiaConfig { get; set; } = LoadConfig();
@@ -286,7 +292,7 @@ public static bool IsUrlValid(string url)
&& (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps);
}
- public async static Task GetIPInfoAsync(string ip)
+ public static async Task GetIPInfoAsync(string ip)
{
try
{
@@ -649,7 +655,7 @@ public static async Task GetDnsCache()
public static async Task RunPowerShellCommandAsync(string psCommand)
{
// Create a new process to run PowerShell
- ProcessStartInfo processInfo = new ProcessStartInfo
+ ProcessStartInfo processInfo = new()
{
FileName = "powershell.exe",
Arguments = $"-Command \"{psCommand}\"",
diff --git a/InternetTest/InternetTest/Classes/Settings.cs b/InternetTest/InternetTest/Classes/Settings.cs
index c4794e6..75f37df 100644
--- a/InternetTest/InternetTest/Classes/Settings.cs
+++ b/InternetTest/InternetTest/Classes/Settings.cs
@@ -22,7 +22,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
using InternetTest.Enums;
-using PeyrSharp.Env;
using System;
using System.Collections.Generic;
using System.Diagnostics;
@@ -54,6 +53,10 @@ public Settings()
TraceRouteMaxTimeOut = 5000;
MainWindowSize = (950, 600);
LaunchIpLocationOnStart = true;
+ DownDetectorWebsites = [];
+ DefaultTimeInterval = 10;
+ HideDisabledAdapters = false;
+ MapZoomLevel = 12;
}
public Themes Theme { get; set; }
@@ -78,25 +81,25 @@ public Settings()
public List? DownDetectorWebsites { get; set; }
public int? DefaultTimeInterval { get; set; }
public bool? HideDisabledAdapters { get; set; }
+ public int? MapZoomLevel { get; set; }
}
public static class SettingsManager
{
- private static string SettingsPath => $@"{FileSys.AppDataPath}\Léo Corporation\InternetTest Pro\Settings.xml";
public static Settings Load()
{
- if (!Directory.Exists($@"{FileSys.AppDataPath}\Léo Corporation\InternetTest Pro\"))
+ if (!Directory.Exists(Global.DefaultStoragePath))
{
- Directory.CreateDirectory($@"{FileSys.AppDataPath}\Léo Corporation\InternetTest Pro\");
+ Directory.CreateDirectory(Global.DefaultStoragePath);
}
- if (!File.Exists(SettingsPath))
+ if (!File.Exists($@"{Global.DefaultStoragePath}\Settings.xml"))
{
Global.Settings = new();
// Serialize to XML
XmlSerializer xmlSerializer = new(typeof(Settings));
- StreamWriter streamWriter = new(SettingsPath);
+ StreamWriter streamWriter = new($@"{Global.DefaultStoragePath}\Settings.xml");
xmlSerializer.Serialize(streamWriter, Global.Settings);
streamWriter.Dispose();
return new();
@@ -106,7 +109,7 @@ public static Settings Load()
// Deserialize from xml
XmlSerializer xmlDeserializer = new(typeof(Settings));
- StreamReader streamReader = new(SettingsPath);
+ StreamReader streamReader = new($@"{Global.DefaultStoragePath}\Settings.xml");
var settings = (Settings?)xmlDeserializer.Deserialize(streamReader) ?? new();
// Upgrade the settings file if it comes from an older version
@@ -122,6 +125,7 @@ public static Settings Load()
settings.DownDetectorWebsites ??= [];
settings.DefaultTimeInterval ??= 10;
settings.HideDisabledAdapters ??= false;
+ settings.MapZoomLevel ??= 12;
return settings;
}
@@ -130,7 +134,7 @@ public static void Save()
{
// Serialize to XML
XmlSerializer xmlSerializer = new(typeof(Settings));
- StreamWriter streamWriter = new(SettingsPath);
+ StreamWriter streamWriter = new($@"{Global.DefaultStoragePath}\Settings.xml");
xmlSerializer.Serialize(streamWriter, Global.Settings);
streamWriter.Dispose();
}
@@ -186,6 +190,7 @@ public static void Import(string path)
settings.DownDetectorWebsites ??= [];
settings.DefaultTimeInterval ??= 10;
settings.HideDisabledAdapters ??= false;
+ settings.MapZoomLevel ??= 12;
Global.Settings = settings;
diff --git a/InternetTest/InternetTest/InternetTest.csproj b/InternetTest/InternetTest/InternetTest.csproj
index c581d64..f1d59bb 100644
--- a/InternetTest/InternetTest/InternetTest.csproj
+++ b/InternetTest/InternetTest/InternetTest.csproj
@@ -6,7 +6,7 @@
enable
true
True
- 8.6.1.2409
+ 8.7.0.2411
© 2024
Léo Corporation
Taking you to another level. InternetTest can locate IP addresses, send ping request, recover your WiFi passwords and more!
@@ -41,7 +41,7 @@
-
+
diff --git a/InternetTest/InternetTest/MainWindow.xaml b/InternetTest/InternetTest/MainWindow.xaml
index d9b38c3..34e0504 100644
--- a/InternetTest/InternetTest/MainWindow.xaml
+++ b/InternetTest/InternetTest/MainWindow.xaml
@@ -257,20 +257,204 @@
-
-
-
+
+
+
+
+
+
+
+
+
-
+ VerticalAlignment="Center"
+ Orientation="Horizontal" Margin="0,0,10,0">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
relevantPages = Enumerable.Empty().ToList();
- if (Global.SynethiaConfig is not null)
- {
- relevantPages = Global.GetMostRelevantPages(Global.SynethiaConfig);
- }
- else
- {
- relevantPages = Global.DefaultRelevantPages;
- }
+ relevantPages = Global.SynethiaConfig is not null ? Global.GetMostRelevantPages(Global.SynethiaConfig) : Global.DefaultRelevantPages;
for (int i = 0; i < 5; i++)
{
@@ -74,72 +66,6 @@ internal async void InitUI()
{
DiscoverPanel.Children.Add(new PageCard(relevantPages[i]));
}
-
- // Load "Status" section
- if (Global.Settings.TestOnStart) LoadStatusCard();
-
- // Load "Network" section
- LoadNetworkCard();
-
- // Load "My IP" section
- ip = (await Global.GetIPInfoAsync(""))?.Query ?? "";
- }
-
- private async void RefreshStatusBtn_Click(object sender, System.Windows.RoutedEventArgs e)
- {
- StatusTxt.Text = Properties.Resources.Checking;
- LoadStatusCard();
- }
-
- bool connected = true;
- internal async void LoadStatusCard()
- {
- connected = await Internet.IsAvailableAsync(Global.Settings.TestSite); // Check if Internet is available
- StatusTxt.Text = connected ? Properties.Resources.ConnectedS : Properties.Resources.NotConnectedS; // Set text
- StatusIconTxt.Text = connected ? "\uF299" : "\uF36E";
- StatusIconTxt.Foreground = connected ? Global.GetBrushFromResource("Green") : Global.GetBrushFromResource("Red");
- }
-
- internal void LoadNetworkCard()
- {
- try
- {
- string ssid = Global.GetCurrentWifiSSID();
-
- NetworkTxt.Text = (ssid == null || !connected) ? Properties.Resources.NotConnectedS : ssid;
- NetworkTitleTxt.Text = Properties.Resources.WiFi;
- NetworkIconTxt.Text = (ssid == null || !connected) ? "\uFC27" : "\uF8C5";
-
- }
- catch // If there is no WiFi
- {
- NetworkIconTxt.Text = connected ? "\uF35A" : "\uFC27";
- NetworkTxt.Text = connected ? Properties.Resources.Ethernet : Properties.Resources.NotConnectedS;
- NetworkTitleTxt.Text = Properties.Resources.Network;
- }
- }
-
- private void RefreshNetworkBtn_Click(object sender, System.Windows.RoutedEventArgs e)
- {
- LoadNetworkCard();
- }
-
- string ip = "";
- private async void RefreshMyIpBtn_Click(object sender, System.Windows.RoutedEventArgs e)
- {
- ip = (await Global.GetIPInfoAsync(""))?.Query ?? "";
- }
-
- private void MyIpBorder_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
- {
- MyIpTxt.Text = ip;
- RefreshMyIpBtn.Visibility = Visibility.Visible;
- }
-
- private void MyIpBorder_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
- {
- MyIpTxt.Text = Properties.Resources.HoverToReveal;
- RefreshMyIpBtn.Visibility = Visibility.Hidden;
}
private async void SpeedTest_MouseLeftButtonUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
@@ -311,24 +237,4 @@ async Task GetWiFiNetworksInfo()
MessageBox.Show(ex.Message, Properties.Resources.Error, MessageBoxButton.OK, MessageBoxImage.Error);
}
}
-
- private void StatusBorder_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
- {
- RefreshStatusBtn.Visibility = Visibility.Visible;
- }
-
- private void StatusBorder_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
- {
- RefreshStatusBtn.Visibility = Visibility.Hidden;
- }
-
- private void NetworkBorder_MouseEnter(object sender, System.Windows.Input.MouseEventArgs e)
- {
- RefreshNetworkBtn.Visibility = Visibility.Visible;
- }
-
- private void NetworkBorder_MouseLeave(object sender, System.Windows.Input.MouseEventArgs e)
- {
- RefreshNetworkBtn.Visibility = Visibility.Hidden;
- }
}
diff --git a/InternetTest/InternetTest/Pages/LocateIpPage.xaml.cs b/InternetTest/InternetTest/Pages/LocateIpPage.xaml.cs
index cd205bd..8c8b75c 100644
--- a/InternetTest/InternetTest/Pages/LocateIpPage.xaml.cs
+++ b/InternetTest/InternetTest/Pages/LocateIpPage.xaml.cs
@@ -94,12 +94,12 @@ private void MapBtn_Click(object sender, RoutedEventArgs e)
_ = double.TryParse(lon.Replace(".", ","), out double dLon);
Process.Start("explorer.exe", Global.Settings.MapProvider switch
{
- MapProvider.OpenStreetMap => $"\"https://www.openstreetmap.org/directions?engine=graphhopper_foot&route={lat}%2C{lon}%3B{lat}%2C{lon}#map=12/{lat}/{lon}\"",
+ MapProvider.OpenStreetMap => $"\"https://www.openstreetmap.org/directions?engine=graphhopper_foot&route={lat}%2C{lon}%3B{lat}%2C{lon}#map={Global.Settings.MapZoomLevel}/{lat}/{lon}\"",
MapProvider.Google => $"\"https://www.google.com/maps/place/{Global.GetGoogleMapsPoint(dLat, dLon)}\"",
- MapProvider.Microsoft => $"\"https://www.bing.com/maps?q={lat} {lon}\"",
- MapProvider.Here => $"\"https://wego.here.com/directions/mix/{lat},{lon}/?map={lat},{lon},12\"",
- MapProvider.Yandex => $"\"https://yandex.com/maps/?ll={lon}%2C{lat}&z=12\"",
- _ => $"\"https://www.openstreetmap.org/directions?engine=graphhopper_foot&route={lat}%2C{lon}%3B{lat}%2C{lon}#map=12/{lat}/{lon}\""
+ MapProvider.Microsoft => $"\"https://www.bing.com/maps?q={lat} {lon}&lvl={Global.Settings.MapZoomLevel}&cp={lat}~{lon}\"",
+ MapProvider.Here => $"\"https://wego.here.com/directions/mix/{lat},{lon}/?map={lat},{lon},{Global.Settings.MapZoomLevel}\"",
+ MapProvider.Yandex => $"\"https://yandex.com/maps/?ll={lon}%2C{lat}&z={Global.Settings.MapZoomLevel}\"",
+ _ => $"\"https://www.openstreetmap.org/directions?engine=graphhopper_foot&route={lat}%2C{lon}%3B{lat}%2C{lon}#map={Global.Settings.MapZoomLevel}/{lat}/{lon}\""
});
}
@@ -197,5 +197,5 @@ private void ResetBtn_Click(object sender, RoutedEventArgs e)
private void MyIPTxt_MouseLeftButtonUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
Clipboard.SetText(MyIPTxt.Text);
- }
+ }
}
diff --git a/InternetTest/InternetTest/Pages/SettingsPage.xaml b/InternetTest/InternetTest/Pages/SettingsPage.xaml
index 515253d..fb62757 100644
--- a/InternetTest/InternetTest/Pages/SettingsPage.xaml
+++ b/InternetTest/InternetTest/Pages/SettingsPage.xaml
@@ -326,18 +326,13 @@
-
-
-
-
-
-
-
-
-
+ Foreground="{DynamicResource Foreground1}"
+ Style="{DynamicResource ExpanderStyle1}">
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Ce code a été généré par un outil.
+// Version du runtime :4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
+// le code est régénéré.
//
//------------------------------------------------------------------------------
@@ -13,12 +13,12 @@ namespace InternetTest.Properties {
///
- /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées.
///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
+ // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder
+ // à l'aide d'un outil, tel que ResGen ou Visual Studio.
+ // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen
+ // avec l'option /str ou régénérez votre projet VS.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -33,7 +33,7 @@ internal Resources() {
}
///
- /// Returns the cached ResourceManager instance used by this class.
+ /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
@@ -47,8 +47,8 @@ internal Resources() {
}
///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
+ /// Remplace la propriété CurrentUICulture du thread actuel pour toutes
+ /// les recherches de ressources à l'aide de cette classe de ressource fortement typée.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
@@ -61,7 +61,7 @@ internal Resources() {
}
///
- /// Looks up a localized string similar to View information about your network adapter.
+ /// Recherche une chaîne localisée semblable à View information about your network adapter.
///
public static string AdapterDesc {
get {
@@ -70,7 +70,7 @@ public static string AdapterDesc {
}
///
- /// Looks up a localized string similar to Network adapters.
+ /// Recherche une chaîne localisée semblable à Network adapters.
///
public static string Adapters {
get {
@@ -79,7 +79,7 @@ public static string Adapters {
}
///
- /// Looks up a localized string similar to Add site.
+ /// Recherche une chaîne localisée semblable à Add site.
///
public static string AddSite {
get {
@@ -88,7 +88,7 @@ public static string AddSite {
}
///
- /// Looks up a localized string similar to Ad-hoc network.
+ /// Recherche une chaîne localisée semblable à Ad-hoc network.
///
public static string AdHocNetwork {
get {
@@ -97,7 +97,7 @@ public static string AdHocNetwork {
}
///
- /// Looks up a localized string similar to Advanced.
+ /// Recherche une chaîne localisée semblable à Advanced.
///
public static string Advanced {
get {
@@ -106,7 +106,7 @@ public static string Advanced {
}
///
- /// Looks up a localized string similar to I agree.
+ /// Recherche une chaîne localisée semblable à I agree.
///
public static string Agree {
get {
@@ -115,7 +115,7 @@ public static string Agree {
}
///
- /// Looks up a localized string similar to All tests have failed.
+ /// Recherche une chaîne localisée semblable à All tests have failed.
///
public static string AllFailed {
get {
@@ -124,7 +124,7 @@ public static string AllFailed {
}
///
- /// Looks up a localized string similar to All tests were successful.
+ /// Recherche une chaîne localisée semblable à All tests were successful.
///
public static string AllSuccess {
get {
@@ -133,7 +133,7 @@ public static string AllSuccess {
}
///
- /// Looks up a localized string similar to Apply.
+ /// Recherche une chaîne localisée semblable à Apply.
///
public static string Apply {
get {
@@ -142,7 +142,7 @@ public static string Apply {
}
///
- /// Looks up a localized string similar to Authentication.
+ /// Recherche une chaîne localisée semblable à Authentication.
///
public static string Authentication {
get {
@@ -151,7 +151,7 @@ public static string Authentication {
}
///
- /// Looks up a localized string similar to Automatic.
+ /// Recherche une chaîne localisée semblable à Automatic.
///
public static string Automatic {
get {
@@ -160,7 +160,7 @@ public static string Automatic {
}
///
- /// Looks up a localized string similar to Available.
+ /// Recherche une chaîne localisée semblable à Available.
///
public static string Available {
get {
@@ -169,7 +169,7 @@ public static string Available {
}
///
- /// Looks up a localized string similar to Updates are available..
+ /// Recherche une chaîne localisée semblable à Updates are available..
///
public static string AvailableUpdates {
get {
@@ -178,7 +178,7 @@ public static string AvailableUpdates {
}
///
- /// Looks up a localized string similar to Average duration.
+ /// Recherche une chaîne localisée semblable à Average duration.
///
public static string AverageTime {
get {
@@ -187,7 +187,7 @@ public static string AverageTime {
}
///
- /// Looks up a localized string similar to Band.
+ /// Recherche une chaîne localisée semblable à Band.
///
public static string Band {
get {
@@ -196,7 +196,7 @@ public static string Band {
}
///
- /// Looks up a localized string similar to BSS Type.
+ /// Recherche une chaîne localisée semblable à BSS Type.
///
public static string BssType {
get {
@@ -205,7 +205,7 @@ public static string BssType {
}
///
- /// Looks up a localized string similar to Change the language of InternetTest..
+ /// Recherche une chaîne localisée semblable à Change the language of InternetTest..
///
public static string ChangeLanguage {
get {
@@ -214,7 +214,7 @@ public static string ChangeLanguage {
}
///
- /// Looks up a localized string similar to Change InternetTest theme..
+ /// Recherche une chaîne localisée semblable à Change InternetTest theme..
///
public static string ChangeTheme {
get {
@@ -223,7 +223,7 @@ public static string ChangeTheme {
}
///
- /// Looks up a localized string similar to Channel.
+ /// Recherche une chaîne localisée semblable à Channel.
///
public static string Channel {
get {
@@ -232,7 +232,7 @@ public static string Channel {
}
///
- /// Looks up a localized string similar to Checking.
+ /// Recherche une chaîne localisée semblable à Checking.
///
public static string Checking {
get {
@@ -241,7 +241,7 @@ public static string Checking {
}
///
- /// Looks up a localized string similar to Check for updates.
+ /// Recherche une chaîne localisée semblable à Check for updates.
///
public static string CheckUpdate {
get {
@@ -250,7 +250,7 @@ public static string CheckUpdate {
}
///
- /// Looks up a localized string similar to Check for updates on start.
+ /// Recherche une chaîne localisée semblable à Check for updates on start.
///
public static string CheckUpdatesOnStart {
get {
@@ -259,7 +259,7 @@ public static string CheckUpdatesOnStart {
}
///
- /// Looks up a localized string similar to City.
+ /// Recherche une chaîne localisée semblable à City.
///
public static string City {
get {
@@ -268,7 +268,7 @@ public static string City {
}
///
- /// Looks up a localized string similar to Clear.
+ /// Recherche une chaîne localisée semblable à Clear.
///
public static string Clear {
get {
@@ -277,7 +277,7 @@ public static string Clear {
}
///
- /// Looks up a localized string similar to Close.
+ /// Recherche une chaîne localisée semblable à Close.
///
public static string Close {
get {
@@ -286,7 +286,7 @@ public static string Close {
}
///
- /// Looks up a localized string similar to Commands.
+ /// Recherche une chaîne localisée semblable à Commands.
///
public static string Commands {
get {
@@ -295,7 +295,7 @@ public static string Commands {
}
///
- /// Looks up a localized string similar to Confidential Mode is enabled.
+ /// Recherche une chaîne localisée semblable à Confidential Mode is enabled.
///
public static string ConfidentialModeEnabled {
get {
@@ -304,7 +304,7 @@ public static string ConfidentialModeEnabled {
}
///
- /// Looks up a localized string similar to Configuration.
+ /// Recherche une chaîne localisée semblable à Configuration.
///
public static string Configuration {
get {
@@ -313,7 +313,7 @@ public static string Configuration {
}
///
- /// Looks up a localized string similar to Connect.
+ /// Recherche une chaîne localisée semblable à Connect.
///
public static string Connect {
get {
@@ -322,7 +322,7 @@ public static string Connect {
}
///
- /// Looks up a localized string similar to You are connected to the Internet.
+ /// Recherche une chaîne localisée semblable à You are connected to the Internet.
///
public static string Connected {
get {
@@ -331,7 +331,7 @@ public static string Connected {
}
///
- /// Looks up a localized string similar to Connected.
+ /// Recherche une chaîne localisée semblable à Connected.
///
public static string ConnectedS {
get {
@@ -340,7 +340,7 @@ public static string ConnectedS {
}
///
- /// Looks up a localized string similar to Connection mode.
+ /// Recherche une chaîne localisée semblable à Connection mode.
///
public static string ConnectionMode {
get {
@@ -349,7 +349,7 @@ public static string ConnectionMode {
}
///
- /// Looks up a localized string similar to Connection type.
+ /// Recherche une chaîne localisée semblable à Connection type.
///
public static string ConnectionType {
get {
@@ -358,7 +358,7 @@ public static string ConnectionType {
}
///
- /// Looks up a localized string similar to Connect to a WiFi network.
+ /// Recherche une chaîne localisée semblable à Connect to a WiFi network.
///
public static string ConnectWiFi {
get {
@@ -367,7 +367,7 @@ public static string ConnectWiFi {
}
///
- /// Looks up a localized string similar to Cookies.
+ /// Recherche une chaîne localisée semblable à Cookies.
///
public static string Cookies {
get {
@@ -376,7 +376,7 @@ public static string Cookies {
}
///
- /// Looks up a localized string similar to Copy.
+ /// Recherche une chaîne localisée semblable à Copy.
///
public static string Copy {
get {
@@ -385,7 +385,7 @@ public static string Copy {
}
///
- /// Looks up a localized string similar to Copy Key.
+ /// Recherche une chaîne localisée semblable à Copy Key.
///
public static string CopyKey {
get {
@@ -394,7 +394,7 @@ public static string CopyKey {
}
///
- /// Looks up a localized string similar to Country.
+ /// Recherche une chaîne localisée semblable à Country.
///
public static string Country {
get {
@@ -403,7 +403,7 @@ public static string Country {
}
///
- /// Looks up a localized string similar to Creation date.
+ /// Recherche une chaîne localisée semblable à Creation date.
///
public static string CreationDate {
get {
@@ -412,7 +412,7 @@ public static string CreationDate {
}
///
- /// Looks up a localized string similar to Dark theme.
+ /// Recherche une chaîne localisée semblable à Dark theme.
///
public static string Dark {
get {
@@ -421,7 +421,7 @@ public static string Dark {
}
///
- /// Looks up a localized string similar to Data.
+ /// Recherche une chaîne localisée semblable à Data.
///
public static string Data {
get {
@@ -430,7 +430,7 @@ public static string Data {
}
///
- /// Looks up a localized string similar to Data consumption.
+ /// Recherche une chaîne localisée semblable à Data consumption.
///
public static string DataConsumption {
get {
@@ -439,7 +439,7 @@ public static string DataConsumption {
}
///
- /// Looks up a localized string similar to Manage your data and your privacy..
+ /// Recherche une chaîne localisée semblable à Manage your data and your privacy..
///
public static string DataDescription {
get {
@@ -448,7 +448,7 @@ public static string DataDescription {
}
///
- /// Looks up a localized string similar to Data and Privacy.
+ /// Recherche une chaîne localisée semblable à Data and Privacy.
///
public static string DataPrivacy {
get {
@@ -457,7 +457,7 @@ public static string DataPrivacy {
}
///
- /// Looks up a localized string similar to Date.
+ /// Recherche une chaîne localisée semblable à Date.
///
public static string Date {
get {
@@ -466,7 +466,7 @@ public static string Date {
}
///
- /// Looks up a localized string similar to Default.
+ /// Recherche une chaîne localisée semblable à Default.
///
public static string Default {
get {
@@ -475,7 +475,7 @@ public static string Default {
}
///
- /// Looks up a localized string similar to System language.
+ /// Recherche une chaîne localisée semblable à System language.
///
public static string DefaultLanguage {
get {
@@ -484,7 +484,7 @@ public static string DefaultLanguage {
}
///
- /// Looks up a localized string similar to Default protocol.
+ /// Recherche une chaîne localisée semblable à Default protocol.
///
public static string DefaultProtocol {
get {
@@ -493,7 +493,7 @@ public static string DefaultProtocol {
}
///
- /// Looks up a localized string similar to System theme.
+ /// Recherche une chaîne localisée semblable à System theme.
///
public static string DefaultTheme {
get {
@@ -502,7 +502,7 @@ public static string DefaultTheme {
}
///
- /// Looks up a localized string similar to Default time interval.
+ /// Recherche une chaîne localisée semblable à Default time interval.
///
public static string DefaultTimeInterval {
get {
@@ -511,7 +511,7 @@ public static string DefaultTimeInterval {
}
///
- /// Looks up a localized string similar to Delete.
+ /// Recherche une chaîne localisée semblable à Delete.
///
public static string Delete {
get {
@@ -520,7 +520,7 @@ public static string Delete {
}
///
- /// Looks up a localized string similar to Details.
+ /// Recherche une chaîne localisée semblable à Details.
///
public static string Details {
get {
@@ -529,7 +529,7 @@ public static string Details {
}
///
- /// Looks up a localized string similar to Details aren't available in Confidential Mode.
+ /// Recherche une chaîne localisée semblable à Details aren't available in Confidential Mode.
///
public static string DetailsNotAvailableCM {
get {
@@ -538,7 +538,7 @@ public static string DetailsNotAvailableCM {
}
///
- /// Looks up a localized string similar to Disable Confidential Mode.
+ /// Recherche une chaîne localisée semblable à Disable Confidential Mode.
///
public static string DisableConfidential {
get {
@@ -547,7 +547,7 @@ public static string DisableConfidential {
}
///
- /// Looks up a localized string similar to Disconnected.
+ /// Recherche une chaîne localisée semblable à Disconnected.
///
public static string Disconnected {
get {
@@ -556,7 +556,7 @@ public static string Disconnected {
}
///
- /// Looks up a localized string similar to Discover.
+ /// Recherche une chaîne localisée semblable à Discover.
///
public static string Discover {
get {
@@ -565,7 +565,7 @@ public static string Discover {
}
///
- /// Looks up a localized string similar to DNS.
+ /// Recherche une chaîne localisée semblable à DNS.
///
public static string DNS {
get {
@@ -574,7 +574,7 @@ public static string DNS {
}
///
- /// Looks up a localized string similar to DNS Cache.
+ /// Recherche une chaîne localisée semblable à DNS Cache.
///
public static string DnsCache {
get {
@@ -583,7 +583,7 @@ public static string DnsCache {
}
///
- /// Looks up a localized string similar to Dynamically configured DNS.
+ /// Recherche une chaîne localisée semblable à Dynamically configured DNS.
///
public static string DnsDynamicConfigured {
get {
@@ -592,7 +592,7 @@ public static string DnsDynamicConfigured {
}
///
- /// Looks up a localized string similar to DNS enabled.
+ /// Recherche une chaîne localisée semblable à DNS enabled.
///
public static string DnsEnabled {
get {
@@ -601,7 +601,7 @@ public static string DnsEnabled {
}
///
- /// Looks up a localized string similar to DNS Information.
+ /// Recherche une chaîne localisée semblable à DNS Information.
///
public static string DNSInfo {
get {
@@ -610,7 +610,7 @@ public static string DNSInfo {
}
///
- /// Looks up a localized string similar to DNS Information will show here.
+ /// Recherche une chaîne localisée semblable à DNS Information will show here.
///
public static string DnsInfoWillShowHere {
get {
@@ -619,7 +619,7 @@ public static string DnsInfoWillShowHere {
}
///
- /// Looks up a localized string similar to DNS Suffix.
+ /// Recherche une chaîne localisée semblable à DNS Suffix.
///
public static string DNSSuffix {
get {
@@ -628,7 +628,7 @@ public static string DNSSuffix {
}
///
- /// Looks up a localized string similar to DNS Tool.
+ /// Recherche une chaîne localisée semblable à DNS Tool.
///
public static string DNSTool {
get {
@@ -637,7 +637,7 @@ public static string DNSTool {
}
///
- /// Looks up a localized string similar to Down.
+ /// Recherche une chaîne localisée semblable à Down.
///
public static string Down {
get {
@@ -646,7 +646,7 @@ public static string Down {
}
///
- /// Looks up a localized string similar to DownDetector.
+ /// Recherche une chaîne localisée semblable à DownDetector.
///
public static string DownDetector {
get {
@@ -655,7 +655,7 @@ public static string DownDetector {
}
///
- /// Looks up a localized string similar to Wondering whether a website is working or not?
+ /// Recherche une chaîne localisée semblable à Wondering whether a website is working or not?
///Check and get real-time information about specified websites using InternetTest Pro's DownDetector feature.
///You can get site status, response time and much more!.
///
@@ -666,7 +666,7 @@ public static string DownDetectorInfo {
}
///
- /// Looks up a localized string similar to Add a website to check if it is available or not.
+ /// Recherche une chaîne localisée semblable à Add a website to check if it is available or not.
///
public static string DownDetectorPlaceHolder {
get {
@@ -675,7 +675,7 @@ public static string DownDetectorPlaceHolder {
}
///
- /// Looks up a localized string similar to Settings for the DownDetector feature..
+ /// Recherche une chaîne localisée semblable à Settings for the DownDetector feature..
///
public static string DownDetectorSettingsDesc {
get {
@@ -684,7 +684,7 @@ public static string DownDetectorSettingsDesc {
}
///
- /// Looks up a localized string similar to Empty History.
+ /// Recherche une chaîne localisée semblable à Empty History.
///
public static string EmptyHistory {
get {
@@ -693,7 +693,7 @@ public static string EmptyHistory {
}
///
- /// Looks up a localized string similar to Are you sure you want to empty this history?
+ /// Recherche une chaîne localisée semblable à Are you sure you want to empty this history?
///This action is irreversible..
///
public static string EmptyHistoryMsg {
@@ -703,7 +703,7 @@ public static string EmptyHistoryMsg {
}
///
- /// Looks up a localized string similar to Enable Confidential Mode.
+ /// Recherche une chaîne localisée semblable à Enable Confidential Mode.
///
public static string EnableConfidential {
get {
@@ -712,7 +712,7 @@ public static string EnableConfidential {
}
///
- /// Looks up a localized string similar to Encryption.
+ /// Recherche une chaîne localisée semblable à Encryption.
///
public static string Encryption {
get {
@@ -721,7 +721,7 @@ public static string Encryption {
}
///
- /// Looks up a localized string similar to Please enter an IP or URL..
+ /// Recherche une chaîne localisée semblable à Please enter an IP or URL..
///
public static string EnterIP {
get {
@@ -730,7 +730,7 @@ public static string EnterIP {
}
///
- /// Looks up a localized string similar to Entry.
+ /// Recherche une chaîne localisée semblable à Entry.
///
public static string Entry {
get {
@@ -739,7 +739,7 @@ public static string Entry {
}
///
- /// Looks up a localized string similar to Erase cached WiFi data.
+ /// Recherche une chaîne localisée semblable à Erase cached WiFi data.
///
public static string EraseWiFiPasswordsFiles {
get {
@@ -748,7 +748,7 @@ public static string EraseWiFiPasswordsFiles {
}
///
- /// Looks up a localized string similar to Are you sure you want to erase cached WiFi Passwords?.
+ /// Recherche une chaîne localisée semblable à Are you sure you want to erase cached WiFi Passwords?.
///
public static string EraseWiFiPasswordsFilesMsg {
get {
@@ -757,7 +757,7 @@ public static string EraseWiFiPasswordsFilesMsg {
}
///
- /// Looks up a localized string similar to Error.
+ /// Recherche une chaîne localisée semblable à Error.
///
public static string Error {
get {
@@ -766,7 +766,7 @@ public static string Error {
}
///
- /// Looks up a localized string similar to Ethernet.
+ /// Recherche une chaîne localisée semblable à Ethernet.
///
public static string Ethernet {
get {
@@ -775,7 +775,7 @@ public static string Ethernet {
}
///
- /// Looks up a localized string similar to Execute a trace route.
+ /// Recherche une chaîne localisée semblable à Execute a trace route.
///
public static string ExecuteTraceRoute {
get {
@@ -784,7 +784,7 @@ public static string ExecuteTraceRoute {
}
///
- /// Looks up a localized string similar to Expand/Collapse.
+ /// Recherche une chaîne localisée semblable à Expand/Collapse.
///
public static string ExpandCollapse {
get {
@@ -793,7 +793,7 @@ public static string ExpandCollapse {
}
///
- /// Looks up a localized string similar to Expiration date.
+ /// Recherche une chaîne localisée semblable à Expiration date.
///
public static string ExpirationDate {
get {
@@ -802,7 +802,7 @@ public static string ExpirationDate {
}
///
- /// Looks up a localized string similar to Export settings.
+ /// Recherche une chaîne localisée semblable à Export settings.
///
public static string Export {
get {
@@ -811,7 +811,7 @@ public static string Export {
}
///
- /// Looks up a localized string similar to Export to CSV.
+ /// Recherche une chaîne localisée semblable à Export to CSV.
///
public static string ExportToCSV {
get {
@@ -820,7 +820,7 @@ public static string ExportToCSV {
}
///
- /// Looks up a localized string similar to Export without passwords.
+ /// Recherche une chaîne localisée semblable à Export without passwords.
///
public static string ExportWithoutPasswords {
get {
@@ -829,7 +829,7 @@ public static string ExportWithoutPasswords {
}
///
- /// Looks up a localized string similar to Export with passwords.
+ /// Recherche une chaîne localisée semblable à Export with passwords.
///
public static string ExportWithPasswords {
get {
@@ -838,7 +838,7 @@ public static string ExportWithPasswords {
}
///
- /// Looks up a localized string similar to Failed.
+ /// Recherche une chaîne localisée semblable à Failed.
///
public static string Failed {
get {
@@ -847,7 +847,7 @@ public static string Failed {
}
///
- /// Looks up a localized string similar to Features.
+ /// Recherche une chaîne localisée semblable à Features.
///
public static string Features {
get {
@@ -856,7 +856,7 @@ public static string Features {
}
///
- /// Looks up a localized string similar to Filters.
+ /// Recherche une chaîne localisée semblable à Filters.
///
public static string Filters {
get {
@@ -865,7 +865,7 @@ public static string Filters {
}
///
- /// Looks up a localized string similar to Do you want to ignore this window and continue to InternetTest?.
+ /// Recherche une chaîne localisée semblable à Do you want to ignore this window and continue to InternetTest?.
///
public static string FirstRunQuitMsg {
get {
@@ -874,7 +874,7 @@ public static string FirstRunQuitMsg {
}
///
- /// Looks up a localized string similar to Flush DNS cache.
+ /// Recherche une chaîne localisée semblable à Flush DNS cache.
///
public static string FlushDNS {
get {
@@ -883,7 +883,7 @@ public static string FlushDNS {
}
///
- /// Looks up a localized string similar to Are you sure you want to flush the DNS cache stored on your device? This operation cannot be cancelled..
+ /// Recherche une chaîne localisée semblable à Are you sure you want to flush the DNS cache stored on your device? This operation cannot be cancelled..
///
public static string FlushDNSMessage {
get {
@@ -892,7 +892,7 @@ public static string FlushDNSMessage {
}
///
- /// Looks up a localized string similar to The DNS Cache has been successfully flushed..
+ /// Recherche une chaîne localisée semblable à The DNS Cache has been successfully flushed..
///
public static string FlushDNSSuccess {
get {
@@ -901,7 +901,7 @@ public static string FlushDNSSuccess {
}
///
- /// Looks up a localized string similar to Frequency.
+ /// Recherche une chaîne localisée semblable à Frequency.
///
public static string Frequency {
get {
@@ -910,7 +910,7 @@ public static string Frequency {
}
///
- /// Looks up a localized string similar to From.
+ /// Recherche une chaîne localisée semblable à From.
///
public static string FromDate {
get {
@@ -919,7 +919,7 @@ public static string FromDate {
}
///
- /// Looks up a localized string similar to Default gateway (IPv4).
+ /// Recherche une chaîne localisée semblable à Default gateway (IPv4).
///
public static string GatewayIPv4 {
get {
@@ -928,7 +928,7 @@ public static string GatewayIPv4 {
}
///
- /// Looks up a localized string similar to Default gateway (IPv6).
+ /// Recherche une chaîne localisée semblable à Default gateway (IPv6).
///
public static string GatewayIPv6 {
get {
@@ -937,7 +937,7 @@ public static string GatewayIPv6 {
}
///
- /// Looks up a localized string similar to Get cache.
+ /// Recherche une chaîne localisée semblable à Get cache.
///
public static string GetCache {
get {
@@ -946,7 +946,7 @@ public static string GetCache {
}
///
- /// Looks up a localized string similar to Get DNS information.
+ /// Recherche une chaîne localisée semblable à Get DNS information.
///
public static string GetDnsInfo {
get {
@@ -955,7 +955,7 @@ public static string GetDnsInfo {
}
///
- /// Looks up a localized string similar to Get IP Config.
+ /// Recherche une chaîne localisée semblable à Get IP Config.
///
public static string GetIPConfig {
get {
@@ -964,7 +964,7 @@ public static string GetIPConfig {
}
///
- /// Looks up a localized string similar to Get my IP.
+ /// Recherche une chaîne localisée semblable à Get my IP.
///
public static string GetMyIP {
get {
@@ -973,7 +973,7 @@ public static string GetMyIP {
}
///
- /// Looks up a localized string similar to Get started.
+ /// Recherche une chaîne localisée semblable à Get started.
///
public static string GetStarted {
get {
@@ -982,7 +982,7 @@ public static string GetStarted {
}
///
- /// Looks up a localized string similar to Get locally stored networks.
+ /// Recherche une chaîne localisée semblable à Get locally stored networks.
///
public static string GetWiFi {
get {
@@ -991,7 +991,7 @@ public static string GetWiFi {
}
///
- /// Looks up a localized string similar to Access GitHub repository.
+ /// Recherche une chaîne localisée semblable à Access GitHub repository.
///
public static string GitHubRepo {
get {
@@ -1000,7 +1000,7 @@ public static string GitHubRepo {
}
///
- /// Looks up a localized string similar to Good afternoon.
+ /// Recherche une chaîne localisée semblable à Good afternoon.
///
public static string GoodAfternoon {
get {
@@ -1009,7 +1009,7 @@ public static string GoodAfternoon {
}
///
- /// Looks up a localized string similar to Good evening.
+ /// Recherche une chaîne localisée semblable à Good evening.
///
public static string GoodEvening {
get {
@@ -1018,7 +1018,7 @@ public static string GoodEvening {
}
///
- /// Looks up a localized string similar to Good night.
+ /// Recherche une chaîne localisée semblable à Good night.
///
public static string GoodNight {
get {
@@ -1027,7 +1027,7 @@ public static string GoodNight {
}
///
- /// Looks up a localized string similar to Headers.
+ /// Recherche une chaîne localisée semblable à Headers.
///
public static string Headers {
get {
@@ -1036,7 +1036,7 @@ public static string Headers {
}
///
- /// Looks up a localized string similar to Hi.
+ /// Recherche une chaîne localisée semblable à Hi.
///
public static string Hi {
get {
@@ -1045,7 +1045,7 @@ public static string Hi {
}
///
- /// Looks up a localized string similar to Hide disabled adapters by default.
+ /// Recherche une chaîne localisée semblable à Hide disabled adapters by default.
///
public static string HideDisabledAdaptersByDefault {
get {
@@ -1054,7 +1054,7 @@ public static string HideDisabledAdaptersByDefault {
}
///
- /// Looks up a localized string similar to History.
+ /// Recherche une chaîne localisée semblable à History.
///
public static string History {
get {
@@ -1063,7 +1063,7 @@ public static string History {
}
///
- /// Looks up a localized string similar to The history is empty..
+ /// Recherche une chaîne localisée semblable à The history is empty..
///
public static string HistoryEmpty {
get {
@@ -1072,7 +1072,7 @@ public static string HistoryEmpty {
}
///
- /// Looks up a localized string similar to Home.
+ /// Recherche une chaîne localisée semblable à Home.
///
public static string Home {
get {
@@ -1081,7 +1081,7 @@ public static string Home {
}
///
- /// Looks up a localized string similar to hops.
+ /// Recherche une chaîne localisée semblable à hops.
///
public static string HopsLower {
get {
@@ -1090,7 +1090,7 @@ public static string HopsLower {
}
///
- /// Looks up a localized string similar to Hover to reveal.
+ /// Recherche une chaîne localisée semblable à Hover to reveal.
///
public static string HoverToReveal {
get {
@@ -1099,7 +1099,7 @@ public static string HoverToReveal {
}
///
- /// Looks up a localized string similar to HTTP.
+ /// Recherche une chaîne localisée semblable à HTTP.
///
public static string HTTP {
get {
@@ -1108,7 +1108,7 @@ public static string HTTP {
}
///
- /// Looks up a localized string similar to HTTPS.
+ /// Recherche une chaîne localisée semblable à HTTPS.
///
public static string HTTPS {
get {
@@ -1117,7 +1117,7 @@ public static string HTTPS {
}
///
- /// Looks up a localized string similar to Import settings.
+ /// Recherche une chaîne localisée semblable à Import settings.
///
public static string Import {
get {
@@ -1126,7 +1126,7 @@ public static string Import {
}
///
- /// Looks up a localized string similar to Incoming Packets Discarded.
+ /// Recherche une chaîne localisée semblable à Incoming Packets Discarded.
///
public static string IncomingPacketsDiscarded {
get {
@@ -1135,7 +1135,7 @@ public static string IncomingPacketsDiscarded {
}
///
- /// Looks up a localized string similar to Incoming Packets With Errors.
+ /// Recherche une chaîne localisée semblable à Incoming Packets With Errors.
///
public static string IncomingPacketsWithErrors {
get {
@@ -1144,7 +1144,7 @@ public static string IncomingPacketsWithErrors {
}
///
- /// Looks up a localized string similar to Incoming Unknown Protocol Packets.
+ /// Recherche une chaîne localisée semblable à Incoming Unknown Protocol Packets.
///
public static string IncomingUnknownProtocolPackets {
get {
@@ -1153,7 +1153,7 @@ public static string IncomingUnknownProtocolPackets {
}
///
- /// Looks up a localized string similar to Infrastructure network.
+ /// Recherche une chaîne localisée semblable à Infrastructure network.
///
public static string InfrastructureNetwork {
get {
@@ -1162,7 +1162,7 @@ public static string InfrastructureNetwork {
}
///
- /// Looks up a localized string similar to Install.
+ /// Recherche une chaîne localisée semblable à Install.
///
public static string Install {
get {
@@ -1171,7 +1171,7 @@ public static string Install {
}
///
- /// Looks up a localized string similar to To install updates, InternetTest needs to restarts.
+ /// Recherche une chaîne localisée semblable à To install updates, InternetTest needs to restarts.
///Do you want to continue?.
///
public static string InstallConfirmMsg {
@@ -1181,7 +1181,7 @@ public static string InstallConfirmMsg {
}
///
- /// Looks up a localized string similar to Install version.
+ /// Recherche une chaîne localisée semblable à Install version.
///
public static string InstallVersion {
get {
@@ -1190,7 +1190,7 @@ public static string InstallVersion {
}
///
- /// Looks up a localized string similar to Interface.
+ /// Recherche une chaîne localisée semblable à Interface.
///
public static string Interface {
get {
@@ -1199,7 +1199,7 @@ public static string Interface {
}
///
- /// Looks up a localized string similar to Interface type.
+ /// Recherche une chaîne localisée semblable à Interface type.
///
public static string InterfaceType {
get {
@@ -1208,7 +1208,7 @@ public static string InterfaceType {
}
///
- /// Looks up a localized string similar to InternetTest.
+ /// Recherche une chaîne localisée semblable à InternetTest.
///
public static string InternetTest {
get {
@@ -1217,7 +1217,7 @@ public static string InternetTest {
}
///
- /// Looks up a localized string similar to InternetTest Pro.
+ /// Recherche une chaîne localisée semblable à InternetTest Pro.
///
public static string InternetTestPro {
get {
@@ -1226,7 +1226,7 @@ public static string InternetTestPro {
}
///
- /// Looks up a localized string similar to Time interval.
+ /// Recherche une chaîne localisée semblable à Time interval.
///
public static string Interval {
get {
@@ -1235,7 +1235,7 @@ public static string Interval {
}
///
- /// Looks up a localized string similar to Introducing Synethia.
+ /// Recherche une chaîne localisée semblable à Introducing Synethia.
///
public static string IntroducingSynethia {
get {
@@ -1244,7 +1244,7 @@ public static string IntroducingSynethia {
}
///
- /// Looks up a localized string similar to Please provide a valid date..
+ /// Recherche une chaîne localisée semblable à Please provide a valid date..
///
public static string InvalidDateMsg {
get {
@@ -1253,7 +1253,7 @@ public static string InvalidDateMsg {
}
///
- /// Looks up a localized string similar to Please provide a valid URL..
+ /// Recherche une chaîne localisée semblable à Please provide a valid URL..
///
public static string InvalidURLMsg {
get {
@@ -1262,7 +1262,7 @@ public static string InvalidURLMsg {
}
///
- /// Looks up a localized string similar to IP Address.
+ /// Recherche une chaîne localisée semblable à IP Address.
///
public static string IPAddress {
get {
@@ -1271,7 +1271,7 @@ public static string IPAddress {
}
///
- /// Looks up a localized string similar to IP Config.
+ /// Recherche une chaîne localisée semblable à IP Config.
///
public static string IPConfig {
get {
@@ -1280,7 +1280,7 @@ public static string IPConfig {
}
///
- /// Looks up a localized string similar to Your IP will show here..
+ /// Recherche une chaîne localisée semblable à Your IP will show here..
///
public static string IPShowHere {
get {
@@ -1289,7 +1289,7 @@ public static string IPShowHere {
}
///
- /// Looks up a localized string similar to The IP will show here..
+ /// Recherche une chaîne localisée semblable à The IP will show here..
///
public static string IPShowHere2 {
get {
@@ -1298,7 +1298,7 @@ public static string IPShowHere2 {
}
///
- /// Looks up a localized string similar to IP Tools.
+ /// Recherche une chaîne localisée semblable à IP Tools.
///
public static string IPTools {
get {
@@ -1307,7 +1307,7 @@ public static string IPTools {
}
///
- /// Looks up a localized string similar to IPv4 address.
+ /// Recherche une chaîne localisée semblable à IPv4 address.
///
public static string IPv4Address {
get {
@@ -1316,7 +1316,7 @@ public static string IPv4Address {
}
///
- /// Looks up a localized string similar to IPv6 address.
+ /// Recherche une chaîne localisée semblable à IPv6 address.
///
public static string IPv6Address {
get {
@@ -1325,7 +1325,7 @@ public static string IPv6Address {
}
///
- /// Looks up a localized string similar to IP Version(s).
+ /// Recherche une chaîne localisée semblable à IP Version(s).
///
public static string IpVersion {
get {
@@ -1334,7 +1334,7 @@ public static string IpVersion {
}
///
- /// Looks up a localized string similar to ISP.
+ /// Recherche une chaîne localisée semblable à ISP.
///
public static string ISP {
get {
@@ -1343,7 +1343,7 @@ public static string ISP {
}
///
- /// Looks up a localized string similar to Key.
+ /// Recherche une chaîne localisée semblable à Key.
///
public static string Key {
get {
@@ -1352,7 +1352,7 @@ public static string Key {
}
///
- /// Looks up a localized string similar to Language.
+ /// Recherche une chaîne localisée semblable à Language.
///
public static string Language {
get {
@@ -1361,7 +1361,7 @@ public static string Language {
}
///
- /// Looks up a localized string similar to Latitude.
+ /// Recherche une chaîne localisée semblable à Latitude.
///
public static string Latitude {
get {
@@ -1370,7 +1370,7 @@ public static string Latitude {
}
///
- /// Looks up a localized string similar to Start scheduled tests.
+ /// Recherche une chaîne localisée semblable à Start scheduled tests.
///
public static string LaunchScheduledTest {
get {
@@ -1379,7 +1379,7 @@ public static string LaunchScheduledTest {
}
///
- /// Looks up a localized string similar to Launch a test on start.
+ /// Recherche une chaîne localisée semblable à Launch a test on start.
///
public static string LaunchTestOnStart {
get {
@@ -1388,7 +1388,7 @@ public static string LaunchTestOnStart {
}
///
- /// Looks up a localized string similar to Launch a test to check your connection.
+ /// Recherche une chaîne localisée semblable à Launch a test to check your connection.
///
public static string LaunchTestToCheckConnection {
get {
@@ -1397,7 +1397,7 @@ public static string LaunchTestToCheckConnection {
}
///
- /// Looks up a localized string similar to Let's go!.
+ /// Recherche une chaîne localisée semblable à Let's go!.
///
public static string LetsGo {
get {
@@ -1406,7 +1406,7 @@ public static string LetsGo {
}
///
- /// Looks up a localized string similar to Licenses.
+ /// Recherche une chaîne localisée semblable à Licenses.
///
public static string Licenses {
get {
@@ -1415,7 +1415,7 @@ public static string Licenses {
}
///
- /// Looks up a localized string similar to Light theme.
+ /// Recherche une chaîne localisée semblable à Light theme.
///
public static string Light {
get {
@@ -1424,7 +1424,7 @@ public static string Light {
}
///
- /// Looks up a localized string similar to Locate an IP.
+ /// Recherche une chaîne localisée semblable à Locate an IP.
///
public static string LocateAnIP {
get {
@@ -1433,7 +1433,7 @@ public static string LocateAnIP {
}
///
- /// Looks up a localized string similar to Locate IP.
+ /// Recherche une chaîne localisée semblable à Locate IP.
///
public static string LocateIP {
get {
@@ -1442,7 +1442,7 @@ public static string LocateIP {
}
///
- /// Looks up a localized string similar to You can locate an IP adress using this feature.
+ /// Recherche une chaîne localisée semblable à You can locate an IP adress using this feature.
///You will get information about the city, country, region, timezone, and more!
///You can also locate and get the IP of servers from an URL..
///
@@ -1453,7 +1453,7 @@ public static string LocateIPInfo {
}
///
- /// Looks up a localized string similar to Locate my IP on start.
+ /// Recherche une chaîne localisée semblable à Locate my IP on start.
///
public static string LocateMyIpOnStart {
get {
@@ -1462,7 +1462,7 @@ public static string LocateMyIpOnStart {
}
///
- /// Looks up a localized string similar to Longitude.
+ /// Recherche une chaîne localisée semblable à Longitude.
///
public static string Longitude {
get {
@@ -1471,7 +1471,7 @@ public static string Longitude {
}
///
- /// Looks up a localized string similar to Make a ping.
+ /// Recherche une chaîne localisée semblable à Make a ping.
///
public static string MakePing {
get {
@@ -1480,7 +1480,7 @@ public static string MakePing {
}
///
- /// Looks up a localized string similar to Map provider.
+ /// Recherche une chaîne localisée semblable à Map provider.
///
public static string MapProvider {
get {
@@ -1489,7 +1489,7 @@ public static string MapProvider {
}
///
- /// Looks up a localized string similar to The map provider used to show the location of an IP address..
+ /// Recherche une chaîne localisée semblable à The map provider used to show the location of an IP address..
///
public static string MapProviderDescription {
get {
@@ -1498,7 +1498,7 @@ public static string MapProviderDescription {
}
///
- /// Looks up a localized string similar to Maximum hops.
+ /// Recherche une chaîne localisée semblable à Maximum hops.
///
public static string MaxHops {
get {
@@ -1507,7 +1507,7 @@ public static string MaxHops {
}
///
- /// Looks up a localized string similar to Maximize.
+ /// Recherche une chaîne localisée semblable à Maximize.
///
public static string Maximize {
get {
@@ -1516,7 +1516,7 @@ public static string Maximize {
}
///
- /// Looks up a localized string similar to Max speed.
+ /// Recherche une chaîne localisée semblable à Max speed.
///
public static string MaxSpeed {
get {
@@ -1525,7 +1525,7 @@ public static string MaxSpeed {
}
///
- /// Looks up a localized string similar to Max duration.
+ /// Recherche une chaîne localisée semblable à Max duration.
///
public static string MaxTime {
get {
@@ -1534,7 +1534,7 @@ public static string MaxTime {
}
///
- /// Looks up a localized string similar to Maximum time out.
+ /// Recherche une chaîne localisée semblable à Maximum time out.
///
public static string MaxTimeOut {
get {
@@ -1543,7 +1543,7 @@ public static string MaxTimeOut {
}
///
- /// Looks up a localized string similar to Minimize.
+ /// Recherche une chaîne localisée semblable à Minimize.
///
public static string Minimize {
get {
@@ -1552,7 +1552,7 @@ public static string Minimize {
}
///
- /// Looks up a localized string similar to Min speed.
+ /// Recherche une chaîne localisée semblable à Min speed.
///
public static string MinSpeed {
get {
@@ -1561,7 +1561,7 @@ public static string MinSpeed {
}
///
- /// Looks up a localized string similar to Min duration.
+ /// Recherche une chaîne localisée semblable à Min duration.
///
public static string MinTime {
get {
@@ -1570,7 +1570,7 @@ public static string MinTime {
}
///
- /// Looks up a localized string similar to MTU.
+ /// Recherche une chaîne localisée semblable à MTU.
///
public static string MTU {
get {
@@ -1579,7 +1579,7 @@ public static string MTU {
}
///
- /// Looks up a localized string similar to Multicast.
+ /// Recherche une chaîne localisée semblable à Multicast.
///
public static string Multicast {
get {
@@ -1588,7 +1588,7 @@ public static string Multicast {
}
///
- /// Looks up a localized string similar to My IP.
+ /// Recherche une chaîne localisée semblable à My IP.
///
public static string MyIP {
get {
@@ -1597,7 +1597,7 @@ public static string MyIP {
}
///
- /// Looks up a localized string similar to N/A.
+ /// Recherche une chaîne localisée semblable à N/A.
///
public static string NA {
get {
@@ -1606,7 +1606,7 @@ public static string NA {
}
///
- /// Looks up a localized string similar to Name.
+ /// Recherche une chaîne localisée semblable à Name.
///
public static string Name {
get {
@@ -1615,7 +1615,7 @@ public static string Name {
}
///
- /// Looks up a localized string similar to InternetTest needs to restart to apply the changes.
+ /// Recherche une chaîne localisée semblable à InternetTest needs to restart to apply the changes.
///Do you want to restart now?.
///
public static string NeedRestartToApplyChanges {
@@ -1625,7 +1625,7 @@ public static string NeedRestartToApplyChanges {
}
///
- /// Looks up a localized string similar to Network.
+ /// Recherche une chaîne localisée semblable à Network.
///
public static string Network {
get {
@@ -1634,7 +1634,7 @@ public static string Network {
}
///
- /// Looks up a localized string similar to Network Adapters.
+ /// Recherche une chaîne localisée semblable à Network Adapters.
///
public static string NetworkAdapters {
get {
@@ -1643,7 +1643,7 @@ public static string NetworkAdapters {
}
///
- /// Looks up a localized string similar to Settings to apply to the network adapters section..
+ /// Recherche une chaîne localisée semblable à Settings to apply to the network adapters section..
///
public static string NetworkAdaptersSettingsDesc {
get {
@@ -1652,7 +1652,7 @@ public static string NetworkAdaptersSettingsDesc {
}
///
- /// Looks up a localized string similar to Next.
+ /// Recherche une chaîne localisée semblable à Next.
///
public static string Next {
get {
@@ -1661,7 +1661,7 @@ public static string Next {
}
///
- /// Looks up a localized string similar to No.
+ /// Recherche une chaîne localisée semblable à No.
///
public static string No {
get {
@@ -1670,7 +1670,7 @@ public static string No {
}
///
- /// Looks up a localized string similar to None.
+ /// Recherche une chaîne localisée semblable à None.
///
public static string None {
get {
@@ -1679,7 +1679,7 @@ public static string None {
}
///
- /// Looks up a localized string similar to No networks are available..
+ /// Recherche une chaîne localisée semblable à No networks are available..
///
public static string NoNetworks {
get {
@@ -1688,7 +1688,7 @@ public static string NoNetworks {
}
///
- /// Looks up a localized string similar to Non-Unicast Packets Received.
+ /// Recherche une chaîne localisée semblable à Non-Unicast Packets Received.
///
public static string NonUnicastPacketsReceived {
get {
@@ -1697,7 +1697,7 @@ public static string NonUnicastPacketsReceived {
}
///
- /// Looks up a localized string similar to Non-Unicast Packets Sent.
+ /// Recherche une chaîne localisée semblable à Non-Unicast Packets Sent.
///
public static string NonUnicastPacketsSent {
get {
@@ -1706,7 +1706,7 @@ public static string NonUnicastPacketsSent {
}
///
- /// Looks up a localized string similar to You aren't connected to the Internet.
+ /// Recherche une chaîne localisée semblable à You aren't connected to the Internet.
///
public static string NotConnected {
get {
@@ -1715,7 +1715,7 @@ public static string NotConnected {
}
///
- /// Looks up a localized string similar to Offline.
+ /// Recherche une chaîne localisée semblable à Offline.
///
public static string NotConnectedS {
get {
@@ -1724,7 +1724,7 @@ public static string NotConnectedS {
}
///
- /// Looks up a localized string similar to No thanks.
+ /// Recherche une chaîne localisée semblable à No thanks.
///
public static string NoThanks {
get {
@@ -1733,7 +1733,7 @@ public static string NoThanks {
}
///
- /// Looks up a localized string similar to There is nothing to show for now, try refreshing the page..
+ /// Recherche une chaîne localisée semblable à There is nothing to show for now, try refreshing the page..
///
public static string NothingToShow {
get {
@@ -1742,7 +1742,7 @@ public static string NothingToShow {
}
///
- /// Looks up a localized string similar to Notifications.
+ /// Recherche une chaîne localisée semblable à Notifications.
///
public static string Notifications {
get {
@@ -1751,7 +1751,7 @@ public static string Notifications {
}
///
- /// Looks up a localized string similar to Notifications settings..
+ /// Recherche une chaîne localisée semblable à Notifications settings..
///
public static string NotificationsDescription {
get {
@@ -1760,7 +1760,7 @@ public static string NotificationsDescription {
}
///
- /// Looks up a localized string similar to Show a notification when updates are available.
+ /// Recherche une chaîne localisée semblable à Show a notification when updates are available.
///
public static string NotifyUpdates {
get {
@@ -1769,7 +1769,7 @@ public static string NotifyUpdates {
}
///
- /// Looks up a localized string similar to No WiFi passwords were found on this device..
+ /// Recherche une chaîne localisée semblable à No WiFi passwords were found on this device..
///
public static string NoWiFIPasswordsFound {
get {
@@ -1778,7 +1778,7 @@ public static string NoWiFIPasswordsFound {
}
///
- /// Looks up a localized string similar to of {0}.
+ /// Recherche une chaîne localisée semblable à of {0}.
///
public static string OfWebsite {
get {
@@ -1787,7 +1787,7 @@ public static string OfWebsite {
}
///
- /// Looks up a localized string similar to On start.
+ /// Recherche une chaîne localisée semblable à On start.
///
public static string OnStart {
get {
@@ -1796,7 +1796,7 @@ public static string OnStart {
}
///
- /// Looks up a localized string similar to Settings that applies on start..
+ /// Recherche une chaîne localisée semblable à Settings that applies on start..
///
public static string OnStartDescription {
get {
@@ -1805,7 +1805,7 @@ public static string OnStartDescription {
}
///
- /// Looks up a localized string similar to Open in browser.
+ /// Recherche une chaîne localisée semblable à Open in browser.
///
public static string OpenBrowser {
get {
@@ -1814,7 +1814,7 @@ public static string OpenBrowser {
}
///
- /// Looks up a localized string similar to Open Network (802.11).
+ /// Recherche une chaîne localisée semblable à Open Network (802.11).
///
public static string OpenNetwork {
get {
@@ -1823,7 +1823,7 @@ public static string OpenNetwork {
}
///
- /// Looks up a localized string similar to Outgoing Packets Discarded.
+ /// Recherche une chaîne localisée semblable à Outgoing Packets Discarded.
///
public static string OutgoingPacketsDiscarded {
get {
@@ -1832,7 +1832,7 @@ public static string OutgoingPacketsDiscarded {
}
///
- /// Looks up a localized string similar to Outgoing Packets With Errors.
+ /// Recherche une chaîne localisée semblable à Outgoing Packets With Errors.
///
public static string OutgoingPacketsWithErrors {
get {
@@ -1841,7 +1841,7 @@ public static string OutgoingPacketsWithErrors {
}
///
- /// Looks up a localized string similar to Output Queue Length.
+ /// Recherche une chaîne localisée semblable à Output Queue Length.
///
public static string OutputQueueLength {
get {
@@ -1850,7 +1850,7 @@ public static string OutputQueueLength {
}
///
- /// Looks up a localized string similar to Package(s) lost.
+ /// Recherche une chaîne localisée semblable à Package(s) lost.
///
public static string PackageLost {
get {
@@ -1859,7 +1859,7 @@ public static string PackageLost {
}
///
- /// Looks up a localized string similar to Package(s) received.
+ /// Recherche une chaîne localisée semblable à Package(s) received.
///
public static string PackageReceived {
get {
@@ -1868,7 +1868,7 @@ public static string PackageReceived {
}
///
- /// Looks up a localized string similar to Package(s) sent.
+ /// Recherche une chaîne localisée semblable à Package(s) sent.
///
public static string PackageSent {
get {
@@ -1877,7 +1877,7 @@ public static string PackageSent {
}
///
- /// Looks up a localized string similar to Performance Metrics.
+ /// Recherche une chaîne localisée semblable à Performance Metrics.
///
public static string PerformanceMetrics {
get {
@@ -1886,7 +1886,7 @@ public static string PerformanceMetrics {
}
///
- /// Looks up a localized string similar to Physical Address.
+ /// Recherche une chaîne localisée semblable à Physical Address.
///
public static string PhysicalAddress {
get {
@@ -1895,7 +1895,7 @@ public static string PhysicalAddress {
}
///
- /// Looks up a localized string similar to Pin.
+ /// Recherche une chaîne localisée semblable à Pin.
///
public static string Pin {
get {
@@ -1904,7 +1904,7 @@ public static string Pin {
}
///
- /// Looks up a localized string similar to Ping.
+ /// Recherche une chaîne localisée semblable à Ping.
///
public static string Ping {
get {
@@ -1913,7 +1913,7 @@ public static string Ping {
}
///
- /// Looks up a localized string similar to The ping request failed.
+ /// Recherche une chaîne localisée semblable à The ping request failed.
///
public static string PingFail {
get {
@@ -1922,7 +1922,7 @@ public static string PingFail {
}
///
- /// Looks up a localized string similar to Ping Status will show here.
+ /// Recherche une chaîne localisée semblable à Ping Status will show here.
///
public static string PingStatus {
get {
@@ -1931,7 +1931,7 @@ public static string PingStatus {
}
///
- /// Looks up a localized string similar to The ping request was successful.
+ /// Recherche une chaîne localisée semblable à The ping request was successful.
///
public static string PingSuccess {
get {
@@ -1940,7 +1940,7 @@ public static string PingSuccess {
}
///
- /// Looks up a localized string similar to Ping request is in progress, please wait..
+ /// Recherche une chaîne localisée semblable à Ping request is in progress, please wait..
///
public static string PingWait {
get {
@@ -1949,7 +1949,7 @@ public static string PingWait {
}
///
- /// Looks up a localized string similar to Pinned.
+ /// Recherche une chaîne localisée semblable à Pinned.
///
public static string Pinned {
get {
@@ -1958,7 +1958,7 @@ public static string Pinned {
}
///
- /// Looks up a localized string similar to Automatic updates are not available in portable mode, please download InternetTest Pro (Portable) again..
+ /// Recherche une chaîne localisée semblable à Automatic updates are not available in portable mode, please download InternetTest Pro (Portable) again..
///
public static string PortableNoAutoUpdates {
get {
@@ -1967,7 +1967,7 @@ public static string PortableNoAutoUpdates {
}
///
- /// Looks up a localized string similar to Pro.
+ /// Recherche une chaîne localisée semblable à Pro.
///
public static string Pro {
get {
@@ -1976,7 +1976,7 @@ public static string Pro {
}
///
- /// Looks up a localized string similar to Profile Name.
+ /// Recherche une chaîne localisée semblable à Profile Name.
///
public static string ProfileName {
get {
@@ -1985,7 +1985,7 @@ public static string ProfileName {
}
///
- /// Looks up a localized string similar to Quick actions.
+ /// Recherche une chaîne localisée semblable à Quick actions.
///
public static string QuickActions {
get {
@@ -1994,7 +1994,7 @@ public static string QuickActions {
}
///
- /// Looks up a localized string similar to Receive Only.
+ /// Recherche une chaîne localisée semblable à Receive Only.
///
public static string ReceiveOnly {
get {
@@ -2003,7 +2003,7 @@ public static string ReceiveOnly {
}
///
- /// Looks up a localized string similar to Record name.
+ /// Recherche une chaîne localisée semblable à Record name.
///
public static string RecordName {
get {
@@ -2012,7 +2012,7 @@ public static string RecordName {
}
///
- /// Looks up a localized string similar to Refresh.
+ /// Recherche une chaîne localisée semblable à Refresh.
///
public static string Refresh {
get {
@@ -2021,7 +2021,7 @@ public static string Refresh {
}
///
- /// Looks up a localized string similar to Region.
+ /// Recherche une chaîne localisée semblable à Region.
///
public static string Region {
get {
@@ -2030,7 +2030,7 @@ public static string Region {
}
///
- /// Looks up a localized string similar to Registrant.
+ /// Recherche une chaîne localisée semblable à Registrant.
///
public static string Registrant {
get {
@@ -2039,7 +2039,7 @@ public static string Registrant {
}
///
- /// Looks up a localized string similar to Remember the "Pinned" state.
+ /// Recherche une chaîne localisée semblable à Remember the "Pinned" state.
///
public static string RememberPinState {
get {
@@ -2048,7 +2048,7 @@ public static string RememberPinState {
}
///
- /// Looks up a localized string similar to Requests.
+ /// Recherche une chaîne localisée semblable à Requests.
///
public static string Requests {
get {
@@ -2057,7 +2057,7 @@ public static string Requests {
}
///
- /// Looks up a localized string similar to Reset.
+ /// Recherche une chaîne localisée semblable à Reset.
///
public static string Reset {
get {
@@ -2066,7 +2066,7 @@ public static string Reset {
}
///
- /// Looks up a localized string similar to Reset settings.
+ /// Recherche une chaîne localisée semblable à Reset settings.
///
public static string ResetSettings {
get {
@@ -2075,7 +2075,7 @@ public static string ResetSettings {
}
///
- /// Looks up a localized string similar to Are you sure you want to reset all settings?.
+ /// Recherche une chaîne localisée semblable à Are you sure you want to reset all settings?.
///
public static string ResetSettingsConfirmation {
get {
@@ -2084,7 +2084,7 @@ public static string ResetSettingsConfirmation {
}
///
- /// Looks up a localized string similar to Reset Synethia data.
+ /// Recherche une chaîne localisée semblable à Reset Synethia data.
///
public static string ResetSynethia {
get {
@@ -2093,7 +2093,7 @@ public static string ResetSynethia {
}
///
- /// Looks up a localized string similar to Response.
+ /// Recherche une chaîne localisée semblable à Response.
///
public static string Response {
get {
@@ -2102,7 +2102,7 @@ public static string Response {
}
///
- /// Looks up a localized string similar to Restore.
+ /// Recherche une chaîne localisée semblable à Restore.
///
public static string Restore {
get {
@@ -2111,7 +2111,7 @@ public static string Restore {
}
///
- /// Looks up a localized string similar to Run test.
+ /// Recherche une chaîne localisée semblable à Run test.
///
public static string RunTest {
get {
@@ -2120,7 +2120,7 @@ public static string RunTest {
}
///
- /// Looks up a localized string similar to Save.
+ /// Recherche une chaîne localisée semblable à Save.
///
public static string Save {
get {
@@ -2129,7 +2129,7 @@ public static string Save {
}
///
- /// Looks up a localized string similar to InternetTest Pro is scanning networks nearby, please wait..
+ /// Recherche une chaîne localisée semblable à InternetTest Pro is scanning networks nearby, please wait..
///
public static string ScanningInProgress {
get {
@@ -2138,7 +2138,7 @@ public static string ScanningInProgress {
}
///
- /// Looks up a localized string similar to All websites will be tested in {0} seconds..
+ /// Recherche une chaîne localisée semblable à All websites will be tested in {0} seconds..
///
public static string ScheduledTestInterval {
get {
@@ -2147,7 +2147,7 @@ public static string ScheduledTestInterval {
}
///
- /// Looks up a localized string similar to Scheduled Tests.
+ /// Recherche une chaîne localisée semblable à Scheduled Tests.
///
public static string ScheduledTests {
get {
@@ -2156,7 +2156,7 @@ public static string ScheduledTests {
}
///
- /// Looks up a localized string similar to InternetTest Pro is searching for WiFi passwords..
+ /// Recherche une chaîne localisée semblable à InternetTest Pro is searching for WiFi passwords..
///
public static string SearchingForWiFiPasswords {
get {
@@ -2165,7 +2165,7 @@ public static string SearchingForWiFiPasswords {
}
///
- /// Looks up a localized string similar to seconds.
+ /// Recherche une chaîne localisée semblable à seconds.
///
public static string SecondsLower {
get {
@@ -2174,7 +2174,7 @@ public static string SecondsLower {
}
///
- /// Looks up a localized string similar to Security.
+ /// Recherche une chaîne localisée semblable à Security.
///
public static string Security {
get {
@@ -2183,7 +2183,7 @@ public static string Security {
}
///
- /// Looks up a localized string similar to Is security enabled.
+ /// Recherche une chaîne localisée semblable à Is security enabled.
///
public static string SecurityEnabled {
get {
@@ -2192,7 +2192,7 @@ public static string SecurityEnabled {
}
///
- /// Looks up a localized string similar to See licenses.
+ /// Recherche une chaîne localisée semblable à See licenses.
///
public static string SeeLicenses {
get {
@@ -2201,7 +2201,7 @@ public static string SeeLicenses {
}
///
- /// Looks up a localized string similar to Send.
+ /// Recherche une chaîne localisée semblable à Send.
///
public static string Send {
get {
@@ -2210,7 +2210,7 @@ public static string Send {
}
///
- /// Looks up a localized string similar to Settings.
+ /// Recherche une chaîne localisée semblable à Settings.
///
public static string Settings {
get {
@@ -2219,7 +2219,7 @@ public static string Settings {
}
///
- /// Looks up a localized string similar to Settings have been sucessfully exported..
+ /// Recherche une chaîne localisée semblable à Settings have been sucessfully exported..
///
public static string SettingsExportedSucessMsg {
get {
@@ -2228,7 +2228,7 @@ public static string SettingsExportedSucessMsg {
}
///
- /// Looks up a localized string similar to Settings were sucessfully imported.
+ /// Recherche une chaîne localisée semblable à Settings were sucessfully imported.
///To finish the process, InternetTest is going to restart..
///
public static string SettingsImportedMsg {
@@ -2238,7 +2238,7 @@ public static string SettingsImportedMsg {
}
///
- /// Looks up a localized string similar to Shared Network (802.11).
+ /// Recherche une chaîne localisée semblable à Shared Network (802.11).
///
public static string SharedNetwork {
get {
@@ -2247,7 +2247,7 @@ public static string SharedNetwork {
}
///
- /// Looks up a localized string similar to Share with a QR Code.
+ /// Recherche une chaîne localisée semblable à Share with a QR Code.
///
public static string ShareWithQrCode {
get {
@@ -2256,7 +2256,7 @@ public static string ShareWithQrCode {
}
///
- /// Looks up a localized string similar to Show disabled.
+ /// Recherche une chaîne localisée semblable à Show disabled.
///
public static string ShowDisabled {
get {
@@ -2265,7 +2265,7 @@ public static string ShowDisabled {
}
///
- /// Looks up a localized string similar to Show/Hide secret key.
+ /// Recherche une chaîne localisée semblable à Show/Hide secret key.
///
public static string ShowHideKey {
get {
@@ -2274,7 +2274,7 @@ public static string ShowHideKey {
}
///
- /// Looks up a localized string similar to Show/Hide Timed Out items.
+ /// Recherche une chaîne localisée semblable à Show/Hide Timed Out items.
///
public static string ShowHideTimedOut {
get {
@@ -2283,7 +2283,7 @@ public static string ShowHideTimedOut {
}
///
- /// Looks up a localized string similar to Show on a map.
+ /// Recherche une chaîne localisée semblable à Show on a map.
///
public static string ShowOnMap {
get {
@@ -2292,7 +2292,7 @@ public static string ShowOnMap {
}
///
- /// Looks up a localized string similar to Signal quality.
+ /// Recherche une chaîne localisée semblable à Signal quality.
///
public static string SignalQuality {
get {
@@ -2301,7 +2301,7 @@ public static string SignalQuality {
}
///
- /// Looks up a localized string similar to Skip.
+ /// Recherche une chaîne localisée semblable à Skip.
///
public static string Skip {
get {
@@ -2310,7 +2310,7 @@ public static string Skip {
}
///
- /// Looks up a localized string similar to Speed.
+ /// Recherche une chaîne localisée semblable à Speed.
///
public static string Speed {
get {
@@ -2319,7 +2319,7 @@ public static string Speed {
}
///
- /// Looks up a localized string similar to Make a speed test.
+ /// Recherche une chaîne localisée semblable à Make a speed test.
///
public static string SpeedTest {
get {
@@ -2328,7 +2328,7 @@ public static string SpeedTest {
}
///
- /// Looks up a localized string similar to The speed test failed.
+ /// Recherche une chaîne localisée semblable à The speed test failed.
///
public static string SpeedTestFailed {
get {
@@ -2337,7 +2337,7 @@ public static string SpeedTestFailed {
}
///
- /// Looks up a localized string similar to The speed test was successful.
+ /// Recherche une chaîne localisée semblable à The speed test was successful.
///
public static string SpeedTestSucess {
get {
@@ -2346,7 +2346,7 @@ public static string SpeedTestSucess {
}
///
- /// Looks up a localized string similar to Default page on start.
+ /// Recherche une chaîne localisée semblable à Default page on start.
///
public static string StartupPage {
get {
@@ -2355,7 +2355,7 @@ public static string StartupPage {
}
///
- /// Looks up a localized string similar to Status.
+ /// Recherche une chaîne localisée semblable à Status.
///
public static string Status {
get {
@@ -2364,7 +2364,7 @@ public static string Status {
}
///
- /// Looks up a localized string similar to Status Message.
+ /// Recherche une chaîne localisée semblable à Status Message.
///
public static string StatusMessage {
get {
@@ -2373,7 +2373,7 @@ public static string StatusMessage {
}
///
- /// Looks up a localized string similar to Stop scheduled tests.
+ /// Recherche une chaîne localisée semblable à Stop scheduled tests.
///
public static string StopScheduledTests {
get {
@@ -2382,7 +2382,7 @@ public static string StopScheduledTests {
}
///
- /// Looks up a localized string similar to Subnet Mask.
+ /// Recherche une chaîne localisée semblable à Subnet Mask.
///
public static string SubnetMask {
get {
@@ -2391,7 +2391,7 @@ public static string SubnetMask {
}
///
- /// Looks up a localized string similar to Successful.
+ /// Recherche une chaîne localisée semblable à Successful.
///
public static string Successful {
get {
@@ -2400,7 +2400,7 @@ public static string Successful {
}
///
- /// Looks up a localized string similar to Suggested actions.
+ /// Recherche une chaîne localisée semblable à Suggested actions.
///
public static string SuggestedActions {
get {
@@ -2409,7 +2409,7 @@ public static string SuggestedActions {
}
///
- /// Looks up a localized string similar to Synethia will then analyze this data to provide a unique experience.
+ /// Recherche une chaîne localisée semblable à Synethia will then analyze this data to provide a unique experience.
///
public static string SynethiaAnalyze {
get {
@@ -2418,7 +2418,7 @@ public static string SynethiaAnalyze {
}
///
- /// Looks up a localized string similar to Synethia collects data in InternetTest only.
+ /// Recherche une chaîne localisée semblable à Synethia collects data in InternetTest only.
///
public static string SynethiaDataInfo {
get {
@@ -2427,7 +2427,7 @@ public static string SynethiaDataInfo {
}
///
- /// Looks up a localized string similar to Are you sure you want to reset all Synethia data?
+ /// Recherche une chaîne localisée semblable à Are you sure you want to reset all Synethia data?
///Your personalized experience will be lost; This action cannot be canceled..
///
public static string SynethiaDeleteMsg {
@@ -2437,7 +2437,7 @@ public static string SynethiaDeleteMsg {
}
///
- /// Looks up a localized string similar to Enable Synethia customized experience..
+ /// Recherche une chaîne localisée semblable à Enable Synethia customized experience..
///
public static string SynethiaEnable {
get {
@@ -2446,7 +2446,7 @@ public static string SynethiaEnable {
}
///
- /// Looks up a localized string similar to The Home dashbord will recommand actions based on your usage.
+ /// Recherche une chaîne localisée semblable à The Home dashbord will recommand actions based on your usage.
///
public static string SynethiaHome {
get {
@@ -2455,7 +2455,7 @@ public static string SynethiaHome {
}
///
- /// Looks up a localized string similar to Synethia is an algorithm that personnalizes your experience..
+ /// Recherche une chaîne localisée semblable à Synethia is an algorithm that personnalizes your experience..
///
public static string SynethiaInfo {
get {
@@ -2464,7 +2464,7 @@ public static string SynethiaInfo {
}
///
- /// Looks up a localized string similar to Your data is stored on your device, anonymously.
+ /// Recherche une chaîne localisée semblable à Your data is stored on your device, anonymously.
///Absolutely NO data is sent to Léo Corporation..
///
public static string SynethiaPrivacy {
@@ -2474,7 +2474,7 @@ public static string SynethiaPrivacy {
}
///
- /// Looks up a localized string similar to Test.
+ /// Recherche une chaîne localisée semblable à Test.
///
public static string Test {
get {
@@ -2483,7 +2483,7 @@ public static string Test {
}
///
- /// Looks up a localized string similar to Test all.
+ /// Recherche une chaîne localisée semblable à Test all.
///
public static string TestAll {
get {
@@ -2492,7 +2492,7 @@ public static string TestAll {
}
///
- /// Looks up a localized string similar to Test your connection.
+ /// Recherche une chaîne localisée semblable à Test your connection.
///
public static string TestConnection {
get {
@@ -2501,7 +2501,7 @@ public static string TestConnection {
}
///
- /// Looks up a localized string similar to Testing, please wait....
+ /// Recherche une chaîne localisée semblable à Testing, please wait....
///
public static string TestInProgress {
get {
@@ -2510,7 +2510,7 @@ public static string TestInProgress {
}
///
- /// Looks up a localized string similar to Test website.
+ /// Recherche une chaîne localisée semblable à Test website.
///
public static string TestSite {
get {
@@ -2519,7 +2519,7 @@ public static string TestSite {
}
///
- /// Looks up a localized string similar to Some tests have failed.
+ /// Recherche une chaîne localisée semblable à Some tests have failed.
///
public static string TestSucessAndFailed {
get {
@@ -2528,7 +2528,7 @@ public static string TestSucessAndFailed {
}
///
- /// Looks up a localized string similar to Test website.
+ /// Recherche une chaîne localisée semblable à Test website.
///
public static string TestWebsite {
get {
@@ -2537,7 +2537,7 @@ public static string TestWebsite {
}
///
- /// Looks up a localized string similar to Theme.
+ /// Recherche une chaîne localisée semblable à Theme.
///
public static string Theme {
get {
@@ -2546,7 +2546,7 @@ public static string Theme {
}
///
- /// Looks up a localized string similar to Timed out.
+ /// Recherche une chaîne localisée semblable à Timed out.
///
public static string TimedOut {
get {
@@ -2555,7 +2555,7 @@ public static string TimedOut {
}
///
- /// Looks up a localized string similar to Time elapsed.
+ /// Recherche une chaîne localisée semblable à Time elapsed.
///
public static string TimeElapsed {
get {
@@ -2564,7 +2564,7 @@ public static string TimeElapsed {
}
///
- /// Looks up a localized string similar to Automatically launch tests to check whether a website is down or not..
+ /// Recherche une chaîne localisée semblable à Automatically launch tests to check whether a website is down or not..
///
public static string TimerDesc {
get {
@@ -2573,7 +2573,7 @@ public static string TimerDesc {
}
///
- /// Looks up a localized string similar to Timezone.
+ /// Recherche une chaîne localisée semblable à Timezone.
///
public static string Timezone {
get {
@@ -2582,7 +2582,7 @@ public static string Timezone {
}
///
- /// Looks up a localized string similar to To.
+ /// Recherche une chaîne localisée semblable à To.
///
public static string ToDate {
get {
@@ -2591,7 +2591,7 @@ public static string ToDate {
}
///
- /// Looks up a localized string similar to Toggle confidential mode.
+ /// Recherche une chaîne localisée semblable à Toggle confidential mode.
///
public static string ToggleConfidentialModeOnStart {
get {
@@ -2600,7 +2600,7 @@ public static string ToggleConfidentialModeOnStart {
}
///
- /// Looks up a localized string similar to Tools.
+ /// Recherche une chaîne localisée semblable à Tools.
///
public static string Tools {
get {
@@ -2609,7 +2609,7 @@ public static string Tools {
}
///
- /// Looks up a localized string similar to Total bytes received.
+ /// Recherche une chaîne localisée semblable à Total bytes received.
///
public static string TotalBytesReceived {
get {
@@ -2618,7 +2618,7 @@ public static string TotalBytesReceived {
}
///
- /// Looks up a localized string similar to Total bytes sent.
+ /// Recherche une chaîne localisée semblable à Total bytes sent.
///
public static string TotalBytesSent {
get {
@@ -2627,7 +2627,7 @@ public static string TotalBytesSent {
}
///
- /// Looks up a localized string similar to Trace.
+ /// Recherche une chaîne localisée semblable à Trace.
///
public static string Trace {
get {
@@ -2636,7 +2636,7 @@ public static string Trace {
}
///
- /// Looks up a localized string similar to Tracing in progress.
+ /// Recherche une chaîne localisée semblable à Tracing in progress.
///
public static string TraceProgress {
get {
@@ -2645,7 +2645,7 @@ public static string TraceProgress {
}
///
- /// Looks up a localized string similar to Trace Route.
+ /// Recherche une chaîne localisée semblable à Trace Route.
///
public static string TraceRoute {
get {
@@ -2654,7 +2654,7 @@ public static string TraceRoute {
}
///
- /// Looks up a localized string similar to Define the settings to use when performing a trace route..
+ /// Recherche une chaîne localisée semblable à Define the settings to use when performing a trace route..
///
public static string TraceRouteDesc {
get {
@@ -2663,7 +2663,7 @@ public static string TraceRouteDesc {
}
///
- /// Looks up a localized string similar to Trace route information will appear here.
+ /// Recherche une chaîne localisée semblable à Trace route information will appear here.
///
public static string TraceRouteInformation {
get {
@@ -2672,7 +2672,7 @@ public static string TraceRouteInformation {
}
///
- /// Looks up a localized string similar to Text files.
+ /// Recherche une chaîne localisée semblable à Text files.
///
public static string TxtFiles {
get {
@@ -2681,7 +2681,7 @@ public static string TxtFiles {
}
///
- /// Looks up a localized string similar to Type.
+ /// Recherche une chaîne localisée semblable à Type.
///
public static string Type {
get {
@@ -2690,7 +2690,7 @@ public static string Type {
}
///
- /// Looks up a localized string similar to Unknown,Ethernet,TokenRing,FDDI,Basic ISDN,Primary ISDN,PPP,Loopback,Ethernet 3 Megabit,SLIP,ATM,Generic Modem,Fast Ethernet T,ISDN,Fast Ethernet FX,Wireless 802.11,Asymmetric DSL,Rate-Adaptive DSL,Symmetric DSL,Very High-Speed DSL,IP over ATM,Gigabit Ethernet,Tunnel,Multi-Rate Symmetric DSL,High-Performance Serial Bus,WMAN,WWANPP,WWANPP2.
+ /// Recherche une chaîne localisée semblable à Unknown,Ethernet,TokenRing,FDDI,Basic ISDN,Primary ISDN,PPP,Loopback,Ethernet 3 Megabit,SLIP,ATM,Generic Modem,Fast Ethernet T,ISDN,Fast Ethernet FX,Wireless 802.11,Asymmetric DSL,Rate-Adaptive DSL,Symmetric DSL,Very High-Speed DSL,IP over ATM,Gigabit Ethernet,Tunnel,Multi-Rate Symmetric DSL,High-Performance Serial Bus,WMAN,WWANPP,WWANPP2.
///
public static string Types {
get {
@@ -2699,7 +2699,7 @@ public static string Types {
}
///
- /// Looks up a localized string similar to Unable to check for updates.
+ /// Recherche une chaîne localisée semblable à Unable to check for updates.
///
public static string UnableToCheckUpdates {
get {
@@ -2708,7 +2708,7 @@ public static string UnableToCheckUpdates {
}
///
- /// Looks up a localized string similar to Unicast Packets Received.
+ /// Recherche une chaîne localisée semblable à Unicast Packets Received.
///
public static string UnicastPacketsReceived {
get {
@@ -2717,7 +2717,7 @@ public static string UnicastPacketsReceived {
}
///
- /// Looks up a localized string similar to Unicast Packets Sent.
+ /// Recherche une chaîne localisée semblable à Unicast Packets Sent.
///
public static string UnicastPacketsSent {
get {
@@ -2726,7 +2726,7 @@ public static string UnicastPacketsSent {
}
///
- /// Looks up a localized string similar to Bytes,Kilobytes,Megabytes,Gigabytes,Terabytes,Petabytes.
+ /// Recherche une chaîne localisée semblable à Bytes,Kilobytes,Megabytes,Gigabytes,Terabytes,Petabytes.
///
public static string Units {
get {
@@ -2735,7 +2735,7 @@ public static string Units {
}
///
- /// Looks up a localized string similar to Unknown.
+ /// Recherche une chaîne localisée semblable à Unknown.
///
public static string Unknown {
get {
@@ -2744,7 +2744,7 @@ public static string Unknown {
}
///
- /// Looks up a localized string similar to Unpin.
+ /// Recherche une chaîne localisée semblable à Unpin.
///
public static string Unpin {
get {
@@ -2753,7 +2753,7 @@ public static string Unpin {
}
///
- /// Looks up a localized string similar to Updates.
+ /// Recherche une chaîne localisée semblable à Updates.
///
public static string Updates {
get {
@@ -2762,7 +2762,7 @@ public static string Updates {
}
///
- /// Looks up a localized string similar to InternetTest is up to date..
+ /// Recherche une chaîne localisée semblable à InternetTest is up to date..
///
public static string UpToDate {
get {
@@ -2771,7 +2771,7 @@ public static string UpToDate {
}
///
- /// Looks up a localized string similar to URL.
+ /// Recherche une chaîne localisée semblable à URL.
///
public static string URL {
get {
@@ -2780,7 +2780,7 @@ public static string URL {
}
///
- /// Looks up a localized string similar to Version.
+ /// Recherche une chaîne localisée semblable à Version.
///
public static string Version {
get {
@@ -2789,7 +2789,7 @@ public static string Version {
}
///
- /// Looks up a localized string similar to Web settings.
+ /// Recherche une chaîne localisée semblable à Web settings.
///
public static string WebSettings {
get {
@@ -2798,7 +2798,7 @@ public static string WebSettings {
}
///
- /// Looks up a localized string similar to Web related settings..
+ /// Recherche une chaîne localisée semblable à Web related settings..
///
public static string WebSettingsDescription {
get {
@@ -2807,7 +2807,7 @@ public static string WebSettingsDescription {
}
///
- /// Looks up a localized string similar to The website is available.
+ /// Recherche une chaîne localisée semblable à The website is available.
///
public static string WebsiteAvailable {
get {
@@ -2816,7 +2816,7 @@ public static string WebsiteAvailable {
}
///
- /// Looks up a localized string similar to The website is down.
+ /// Recherche une chaîne localisée semblable à The website is down.
///
public static string WebsiteDown {
get {
@@ -2825,7 +2825,7 @@ public static string WebsiteDown {
}
///
- /// Looks up a localized string similar to Web Utilities.
+ /// Recherche une chaîne localisée semblable à Web Utilities.
///
public static string WebUtilities {
get {
@@ -2834,7 +2834,7 @@ public static string WebUtilities {
}
///
- /// Looks up a localized string similar to Taking you to another level..
+ /// Recherche une chaîne localisée semblable à Taking you to another level..
///
public static string WelcomeDesc {
get {
@@ -2843,7 +2843,7 @@ public static string WelcomeDesc {
}
///
- /// Looks up a localized string similar to Everyting is ready.
+ /// Recherche une chaîne localisée semblable à Everyting is ready.
///
public static string WelcomeReady {
get {
@@ -2852,7 +2852,7 @@ public static string WelcomeReady {
}
///
- /// Looks up a localized string similar to WiFi.
+ /// Recherche une chaîne localisée semblable à WiFi.
///
public static string WiFi {
get {
@@ -2861,7 +2861,7 @@ public static string WiFi {
}
///
- /// Looks up a localized string similar to All WiFi networks were sucessfully exported..
+ /// Recherche une chaîne localisée semblable à All WiFi networks were sucessfully exported..
///
public static string WiFiExportSuccessful {
get {
@@ -2870,7 +2870,7 @@ public static string WiFiExportSuccessful {
}
///
- /// Looks up a localized string similar to WiFi Networks.
+ /// Recherche une chaîne localisée semblable à WiFi Networks.
///
public static string WiFiNetworks {
get {
@@ -2879,7 +2879,7 @@ public static string WiFiNetworks {
}
///
- /// Looks up a localized string similar to WiFi Passwords.
+ /// Recherche une chaîne localisée semblable à WiFi Passwords.
///
public static string WifiPasswords {
get {
@@ -2888,7 +2888,7 @@ public static string WifiPasswords {
}
///
- /// Looks up a localized string similar to Forgot your WiFi password?
+ /// Recherche une chaîne localisée semblable à Forgot your WiFi password?
///Don't worry, you can recover it using InternetTest Pro "WiFi Passwords" feature!
///Using this feature, you will be able to get information about each wireless networks saved on your computer, such as authentification mode, encyrption algorithm, etc....
///
@@ -2899,7 +2899,7 @@ public static string WiFiPasswordsInfo {
}
///
- /// Looks up a localized string similar to WPA2-Enterprise (802.11) Network.
+ /// Recherche une chaîne localisée semblable à WPA2-Enterprise (802.11) Network.
///
public static string WPA2Network {
get {
@@ -2908,7 +2908,7 @@ public static string WPA2Network {
}
///
- /// Looks up a localized string similar to WPA2-Personal (802.11) Network.
+ /// Recherche une chaîne localisée semblable à WPA2-Personal (802.11) Network.
///
public static string WPA2PSKNetwork {
get {
@@ -2917,7 +2917,7 @@ public static string WPA2PSKNetwork {
}
///
- /// Looks up a localized string similar to WPA-Enterprise (802.11) Network.
+ /// Recherche une chaîne localisée semblable à WPA-Enterprise (802.11) Network.
///
public static string WPANetwork {
get {
@@ -2926,7 +2926,7 @@ public static string WPANetwork {
}
///
- /// Looks up a localized string similar to WPA-Personal (802.11) Network.
+ /// Recherche une chaîne localisée semblable à WPA-Personal (802.11) Network.
///
public static string WPAPSKNetwork {
get {
@@ -2935,7 +2935,7 @@ public static string WPAPSKNetwork {
}
///
- /// Looks up a localized string similar to Yes.
+ /// Recherche une chaîne localisée semblable à Yes.
///
public static string Yes {
get {
@@ -2944,12 +2944,21 @@ public static string Yes {
}
///
- /// Looks up a localized string similar to ZIP Code.
+ /// Recherche une chaîne localisée semblable à ZIP Code.
///
public static string ZIPCode {
get {
return ResourceManager.GetString("ZIPCode", resourceCulture);
}
}
+
+ ///
+ /// Recherche une chaîne localisée semblable à Default zoom level.
+ ///
+ public static string ZoomLevel {
+ get {
+ return ResourceManager.GetString("ZoomLevel", resourceCulture);
+ }
+ }
}
}
diff --git a/InternetTest/InternetTest/Properties/Resources.en-US.resx b/InternetTest/InternetTest/Properties/Resources.en-US.resx
index 713b06d..48217eb 100644
--- a/InternetTest/InternetTest/Properties/Resources.en-US.resx
+++ b/InternetTest/InternetTest/Properties/Resources.en-US.resx
@@ -1089,4 +1089,7 @@ Absolutely NO data is sent to Léo Corporation.
The DNS Cache has been successfully flushed.
+
+ Default zoom level
+
\ No newline at end of file
diff --git a/InternetTest/InternetTest/Properties/Resources.fr-FR.resx b/InternetTest/InternetTest/Properties/Resources.fr-FR.resx
index 7222f70..cc4e444 100644
--- a/InternetTest/InternetTest/Properties/Resources.fr-FR.resx
+++ b/InternetTest/InternetTest/Properties/Resources.fr-FR.resx
@@ -1089,4 +1089,7 @@ Absolument AUCUNE donnée n'est envoyée à Léo Corporation.
Le cache DNS a été nettoyé avec succès.
+
+ Niveau de zoom par défaut
+
\ No newline at end of file
diff --git a/InternetTest/InternetTest/Properties/Resources.it-IT.resx b/InternetTest/InternetTest/Properties/Resources.it-IT.resx
index 402df1b..308cce7 100644
--- a/InternetTest/InternetTest/Properties/Resources.it-IT.resx
+++ b/InternetTest/InternetTest/Properties/Resources.it-IT.resx
@@ -1089,4 +1089,7 @@ Assolutamente NESSUN dato verrà inviato a Léo Corporation.
Cancellazione cache DNS completata.
-
+
+ Livello di zoom predefinito
+
+
\ No newline at end of file
diff --git a/InternetTest/InternetTest/Properties/Resources.resx b/InternetTest/InternetTest/Properties/Resources.resx
index 5f042d6..6c8ec52 100644
--- a/InternetTest/InternetTest/Properties/Resources.resx
+++ b/InternetTest/InternetTest/Properties/Resources.resx
@@ -1089,4 +1089,7 @@ Absolutely NO data is sent to Léo Corporation.
The DNS Cache has been successfully flushed.
+
+ Default zoom level
+
\ No newline at end of file
diff --git a/InternetTest/InternetTest/Properties/Resources.zh-CN.resx b/InternetTest/InternetTest/Properties/Resources.zh-CN.resx
index 4707d3c..563b32e 100644
--- a/InternetTest/InternetTest/Properties/Resources.zh-CN.resx
+++ b/InternetTest/InternetTest/Properties/Resources.zh-CN.resx
@@ -1080,4 +1080,7 @@
DNS 缓存已成功刷新。
+
+ 默认缩放级别
+
\ No newline at end of file
diff --git a/InternetTest/InternetTest/UserControls/DnsCacheItem.xaml.cs b/InternetTest/InternetTest/UserControls/DnsCacheItem.xaml.cs
index 5b47462..b0a1de3 100644
--- a/InternetTest/InternetTest/UserControls/DnsCacheItem.xaml.cs
+++ b/InternetTest/InternetTest/UserControls/DnsCacheItem.xaml.cs
@@ -51,23 +51,23 @@ private void InitUI()
enum Types
{
- A=1,
- NS=2,
- CNAME=5,
- SOA=6,
- PTR=12,
- MX=15,
- TXT=16,
- AAAA=28,
+ A = 1,
+ NS = 2,
+ CNAME = 5,
+ SOA = 6,
+ PTR = 12,
+ MX = 15,
+ TXT = 16,
+ AAAA = 28,
}
enum Status
{
Success,
NoRecords,
- FormatError= 9501,
- ServerFailure=9502,
- NotExist=9503,
- Refused=9505
+ FormatError = 9501,
+ ServerFailure = 9502,
+ NotExist = 9503,
+ Refused = 9505
}
}