Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing word to dialog text #4695

Merged
merged 1 commit into from
Mar 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion GitUI/CommandsDialogs/FormCommit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public sealed partial class FormCommit : GitModuleForm ////, IHotkeyable
private readonly TranslationString _deleteFailed = new TranslationString("Delete file failed");

private readonly TranslationString _deleteSelectedFiles =
new TranslationString("Are you sure you want delete the selected file(s)?");
new TranslationString("Are you sure you want to delete the selected file(s)?");

private readonly TranslationString _deleteSelectedFilesCaption = new TranslationString("Delete");

Expand Down
2 changes: 1 addition & 1 deletion GitUI/CommandsDialogs/RevisionDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public partial class RevisionDiff : GitModuleControl
private readonly TranslationString _saveFileFilterAllFiles = new TranslationString("All files");
private readonly TranslationString _deleteSelectedFilesCaption = new TranslationString("Delete");
private readonly TranslationString _deleteSelectedFiles =
new TranslationString("Are you sure you want delete the selected file(s)?");
new TranslationString("Are you sure you want to delete the selected file(s)?");
private readonly TranslationString _deleteFailed = new TranslationString("Delete file failed");
private readonly TranslationString _multipleDescription = new TranslationString("<multiple>");
private readonly TranslationString _selectedRevision = new TranslationString("Selected");
Expand Down