Fix tense for resource string (#548)
* Fix tense for resource string * singular
This commit is contained in:
Родитель
fc8bed00c4
Коммит
2151b95ca4
|
@ -242,7 +242,7 @@ namespace Microsoft.WingetCreateCLI.Commands
|
|||
bool populated = await this.GitHubClient.PopulateGitHubMetadata(manifests, this.Format.ToString());
|
||||
if (populated)
|
||||
{
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatingGitHubMetadata_Message));
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatedGitHubMetadata_Message));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -472,7 +472,7 @@ namespace Microsoft.WingetCreateCLI.Commands
|
|||
bool populated = await this.GitHubClient.PopulateGitHubMetadata(manifests, this.Format.ToString());
|
||||
if (populated)
|
||||
{
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatingGitHubMetadata_Message));
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatedGitHubMetadata_Message));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -943,7 +943,7 @@ namespace Microsoft.WingetCreateCLI.Commands
|
|||
bool populated = await this.GitHubClient.PopulateGitHubMetadata(manifests, this.Format.ToString());
|
||||
if (populated)
|
||||
{
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatingGitHubMetadata_Message));
|
||||
Logger.InfoLocalized(nameof(Resources.PopulatedGitHubMetadata_Message));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2311,11 +2311,11 @@ namespace Microsoft.WingetCreateCLI.Properties {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to GitHub URL detected. The CLI will automatically fill some manifests fields..
|
||||
/// Looks up a localized string similar to GitHub URL detected. The CLI has automatically filled some manifest fields..
|
||||
/// </summary>
|
||||
public static string PopulatingGitHubMetadata_Message {
|
||||
public static string PopulatedGitHubMetadata_Message {
|
||||
get {
|
||||
return ResourceManager.GetString("PopulatingGitHubMetadata_Message", resourceCulture);
|
||||
return ResourceManager.GetString("PopulatedGitHubMetadata_Message", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1374,8 +1374,8 @@
|
|||
<data name="CouldNotPopulateGitHubMetadata_Warning" xml:space="preserve">
|
||||
<value>Could not populate manifest metadata through GitHub's API.</value>
|
||||
</data>
|
||||
<data name="PopulatingGitHubMetadata_Message" xml:space="preserve">
|
||||
<value>GitHub URL detected. The CLI will automatically fill some manifests fields.</value>
|
||||
<data name="PopulatedGitHubMetadata_Message" xml:space="preserve">
|
||||
<value>GitHub URL detected. The CLI has automatically filled some manifest fields.</value>
|
||||
</data>
|
||||
<data name="ReleaseDate_HelpText" xml:space="preserve">
|
||||
<value>Date to be used when updating the release date field. Expected format is "YYYY-MM-DD".</value>
|
||||
|
|
Загрузка…
Ссылка в новой задаче