Fix grammar

This commit is contained in:
tyrrrz
2026-07-25 20:28:26 +03:00
parent 91a8daf3a7
commit 427c6021ac
17 changed files with 36 additions and 36 deletions
@@ -40,7 +40,7 @@ public class DialogManager : IDisposable
);
// Yield to allow DialogHost to fully reset its state before
// another dialog is shown (e.g. when dialogs are shown sequentially).
// another dialog is shown (e.g., when dialogs are shown sequentially).
await Task.Yield();
return dialog.DialogResult;
@@ -58,7 +58,7 @@ public partial class LocalizationManager
""",
[nameof(RateLimitPreferenceLabel)] = "Rate limit preference",
[nameof(RateLimitPreferenceTooltip)] =
"Whether to respect advisory rate limits. If disabled, only hard rate limits (i.e. 429 responses) will be respected.",
"Whether to respect advisory rate limits. If disabled, only hard rate limits (i.e., 429 responses) will be respected.",
[nameof(ShowThreadsLabel)] = "Show threads",
[nameof(ShowThreadsTooltip)] = "Which types of threads to show in the channel list",
[nameof(LocaleLabel)] = "Locale",
@@ -102,10 +102,10 @@ public partial class LocalizationManager
[nameof(BeforeTimeTooltip)] = "Only include messages sent before this time",
[nameof(PartitionLimitLabel)] = "Partition limit",
[nameof(PartitionLimitTooltip)] =
"Split the output into partitions, each limited to the specified number of messages (e.g. '100') or file size (e.g. '10mb')",
"Split the output into partitions, each limited to the specified number of messages (e.g., '100') or file size (e.g., '10mb')",
[nameof(MessageFilterLabel)] = "Message filter",
[nameof(MessageFilterTooltip)] =
"Only include messages that satisfy this filter (e.g. 'from:foo#1234' or 'has:image'). See the documentation for more info.",
"Only include messages that satisfy this filter (e.g., 'from:foo#1234' or 'has:image'). See the documentation for more info.",
[nameof(ReverseMessageOrderLabel)] = "Reverse messages",
[nameof(ReverseMessageOrderTooltip)] =
"Export messages in reverse chronological order (newest first)",
@@ -21,10 +21,10 @@ public partial class PublishMacOSBundleCommand : ICommand
[CommandOption("icons-file", Description = "Path to the .icns icons file.")]
public required string IconsFilePath { get; set; }
[CommandOption("full-version", Description = "Full version string (e.g. '1.2.3.4').")]
[CommandOption("full-version", Description = "Full version string (e.g., '1.2.3.4').")]
public required string FullVersion { get; set; }
[CommandOption("short-version", Description = "Short version string (e.g. '1.2.3').")]
[CommandOption("short-version", Description = "Short version string (e.g., '1.2.3').")]
public required string ShortVersion { get; set; }
public async ValueTask ExecuteAsync(IConsole console)