-
Notifications
You must be signed in to change notification settings - Fork 643
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
Small UI fixes #5853
Small UI fixes #5853
Conversation
string subject = "[{0}] Package uploaded - {1} {2}"; | ||
string body = @"The package [{1} {2}]({3}) was just uploaded to {0}. If this was not intended, please [contact support]({4}). | ||
string subject = $"[{Config.GalleryOwner.DisplayName}] Package uploaded - {package.PackageRegistration.Id} {package.Version}"; | ||
string body = $@"The package [{package.PackageRegistration.Id} {package.Version}]({packageUrl}) was just uploaded to {Config.GalleryOwner.DisplayName} by {package.User.Username}. If this was not intended, please [contact support]({packageSupportUrl}). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just [](start = 112, length = 4)
Nit: "was just uploaded" -> "was uploaded" / "was recently uploaded" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -71,7 +71,7 @@ | |||
@* Note that we're not confirming that a request even exists for this user, it's just a string compare against the name in the URL *@ | |||
@ViewHelpers.AlertDanger( | |||
@<text> | |||
This request link is for the user '@Model.Username'. If you wish to accept it, | |||
This request link is for the user '@Model.Username'. If you want to accept it, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
want [](start = 84, length = 4)
Nit: "want" seems a little strong. What do you think of "would like"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replaced every "want" with "would like" lol
string subject = "[{0}] Package published - {1} {2}"; | ||
string body = @"The package [{1} {2}]({3}) was just published on {0}. If this was not intended, please [contact support]({4}). | ||
string subject = $"[{CoreConfiguration.GalleryOwner.DisplayName}] Package published - {package.PackageRegistration.Id} {package.Version}"; | ||
string body = $@"The package [{package.PackageRegistration.Id} {package.Version}]({packageUrl}) was just published on {CoreConfiguration.GalleryOwner.DisplayName} by {package.User.Username}. If this was not intended, please [contact support]({packageSupportUrl}). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just [](start = 112, length = 4)
Same feedback as before here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
#5820
#5741
#5746
#5770
#5807
#5817