Add support for per-feed user agent

This commit is contained in:
2023-06-15 17:28:38 -04:00
parent f5f78c8825
commit 0ddd38e3f2
7 changed files with 126 additions and 43 deletions

View File

@@ -133,6 +133,15 @@ namespace FeedCenter.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Feed Center.
/// </summary>
public static string ApplicationUserAgentCaption {
get {
return ResourceManager.GetString("ApplicationUserAgentCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Password.
/// </summary>
@@ -517,7 +526,7 @@ namespace FeedCenter.Properties {
}
/// <summary>
/// Looks up a localized string similar to Feed Center.
/// Looks up a localized string similar to Default ({0}).
/// </summary>
public static string DefaultUserAgentCaption {
get {
@@ -1461,6 +1470,15 @@ namespace FeedCenter.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to User agent.
/// </summary>
public static string userAgentLabel {
get {
return ResourceManager.GetString("userAgentLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version {0}.
/// </summary>

View File

@@ -524,6 +524,9 @@
<value>Category: {0}</value>
</data>
<data name="DefaultUserAgentCaption" xml:space="preserve">
<value>Default ({0})</value>
</data>
<data name="ApplicationUserAgentCaption" xml:space="preserve">
<value>Feed Center</value>
</data>
<data name="defaultUserAgentLabel" xml:space="preserve">
@@ -549,4 +552,7 @@ All feeds currently in category "{0}" will be moved to the default category.</va
<data name="ConfirmDeleteFeeds" xml:space="preserve">
<value>Are you sure you want to delete the selected feeds?</value>
</data>
<data name="userAgentLabel" xml:space="preserve">
<value>User agent</value>
</data>
</root>