Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@
{% set status_tips = {
amo.STATUS_NULL: _('Please complete your add-on by adding a version or missing metadata.'),
amo.STATUS_NOMINATED: _("You will receive an email when the review is complete. Until "
"then, your add-on is not listed in our gallery but can be "
"accessed directly from its details page. "),
"then, this version is not publicly available."),

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So technically, if you're logged in as an author, that detail page works, right ? So maybe it would be more accurate to keep the original string and just something about authenticated authors being able to access it.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I see what you mean so something like:

You will receive an email when the review is complete. Until then, your add-on is not publicly available but you, the authenticated author, can access its details page.

Is that what you meant?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that looks good. Technically other authors can see it too, if there are any, but I don't think we need to include that level of detail here.

amo.STATUS_APPROVED: _("Your add-on is displayed in our gallery and users are "
"receiving automatic updates."),
"receiving automatic updates."),
amo.STATUS_DISABLED: _("Your add-on was disabled by a site administrator and is no "
"longer shown in our gallery."),
amo.STATUS_REJECTED: _("Your add-on listing was rejected. It is not listed in our gallery. "
Expand Down