Add time zones settings panel

This commit is contained in:
2024-10-04 17:32:10 -04:00
parent 4751ae476d
commit 50fd78a3c3
11 changed files with 657 additions and 37 deletions

View File

@@ -60,6 +60,24 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Add.
/// </summary>
public static string AddTimeZoneLink {
get {
return ResourceManager.GetString("AddTimeZoneLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Time Zone.
/// </summary>
public static string AddTimeZoneToolTip {
get {
return ResourceManager.GetString("AddTimeZoneToolTip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
/// </summary>
@@ -79,6 +97,15 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
public static string CancelButton {
get {
return ResourceManager.GetString("CancelButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checking for update....
/// </summary>
@@ -124,6 +151,42 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the selected time zones?.
/// </summary>
public static string ConfirmDeleteTimeZones {
get {
return ResourceManager.GetString("ConfirmDeleteTimeZones", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Confirm Delete.
/// </summary>
public static string ConfirmDeleteTitle {
get {
return ResourceManager.GetString("ConfirmDeleteTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
public static string DeleteTimeZoneLink {
get {
return ResourceManager.GetString("DeleteTimeZoneLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delete Time Zone.
/// </summary>
public static string DeleteTimeZoneToolTip {
get {
return ResourceManager.GetString("DeleteTimeZoneToolTip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downloading update....
/// </summary>
@@ -133,6 +196,24 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Edit.
/// </summary>
public static string EditTimeZoneLink {
get {
return ResourceManager.GetString("EditTimeZoneLink", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit Time Zone.
/// </summary>
public static string EditTimeZoneToolTip {
get {
return ResourceManager.GetString("EditTimeZoneToolTip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Installing update....
/// </summary>
@@ -142,6 +223,15 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Label.
/// </summary>
public static string LabelColumnHeader {
get {
return ResourceManager.GetString("LabelColumnHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Loading....
/// </summary>
@@ -151,6 +241,15 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to OK.
/// </summary>
public static string OkayButton {
get {
return ResourceManager.GetString("OkayButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
@@ -169,6 +268,15 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Time Zones.
/// </summary>
public static string optionCategoryTimeZones {
get {
return ResourceManager.GetString("optionCategoryTimeZones", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update.
/// </summary>
@@ -196,6 +304,33 @@ namespace WorldClockStatusWindow.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Time Zone.
/// </summary>
public static string TimeZoneColumnHeader {
get {
return ResourceManager.GetString("TimeZoneColumnHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add Time Zone.
/// </summary>
public static string TimeZoneWindowAdd {
get {
return ResourceManager.GetString("TimeZoneWindowAdd", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Edit Time Zone.
/// </summary>
public static string TimeZoneWindowEdit {
get {
return ResourceManager.GetString("TimeZoneWindowEdit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are already running the most recent version.
///
@@ -208,7 +343,7 @@ namespace WorldClockStatusWindow.Properties {
}
/// <summary>
/// Looks up a localized string similar to Version {1} of {0} is now available.
/// Looks up a localized string similar to Version {0} is now available.
///
///Would you like to download and install it now?.
/// </summary>

View File

@@ -163,20 +163,65 @@
No updates are available at this time.</value>
</data>
<data name="UpdateCheckNewVersion" xml:space="preserve">
<value>Version {0} is now available.
<value>Version {0} is now available.
Would you like to download and install it now?</value>
</data>
<data name="Loading" xml:space="preserve">
<value>Loading...</value>
<value>Loading...</value>
</data>
<data name="CheckingForUpdate" xml:space="preserve">
<value>Checking for update...</value>
<value>Checking for update...</value>
</data>
<data name="DownloadingUpdate" xml:space="preserve">
<value>Downloading update...</value>
<value>Downloading update...</value>
</data>
<data name="InstallingUpdate" xml:space="preserve">
<value>Installing update...</value>
<value>Installing update...</value>
</data>
<data name="optionCategoryTimeZones" xml:space="preserve">
<value>Time Zones</value>
</data>
<data name="LabelColumnHeader" xml:space="preserve">
<value>Label</value>
</data>
<data name="TimeZoneColumnHeader" xml:space="preserve">
<value>Time Zone</value>
</data>
<data name="AddTimeZoneLink" xml:space="preserve">
<value>Add</value>
</data>
<data name="EditTimeZoneLink" xml:space="preserve">
<value>Edit</value>
</data>
<data name="DeleteTimeZoneLink" xml:space="preserve">
<value>Delete</value>
</data>
<data name="AddTimeZoneToolTip" xml:space="preserve">
<value>Add Time Zone</value>
</data>
<data name="EditTimeZoneToolTip" xml:space="preserve">
<value>Edit Time Zone</value>
</data>
<data name="DeleteTimeZoneToolTip" xml:space="preserve">
<value>Delete Time Zone</value>
</data>
<data name="ConfirmDeleteTitle" xml:space="preserve">
<value>Confirm Delete</value>
</data>
<data name="ConfirmDeleteTimeZones" xml:space="preserve">
<value>Are you sure you want to delete the selected time zones?</value>
</data>
<data name="TimeZoneWindowAdd" xml:space="preserve">
<value>Add Time Zone</value>
</data>
<data name="TimeZoneWindowEdit" xml:space="preserve">
<value>Edit Time Zone</value>
</data>
<data name="OkayButton" xml:space="preserve">
<value>OK</value>
</data>
<data name="CancelButton" xml:space="preserve">
<value>Cancel</value>
</data>
</root>