diff --git a/errors.go b/errors.go index fa7304f..c0d435c 100644 --- a/errors.go +++ b/errors.go @@ -48,7 +48,7 @@ var ( ErrUserNotFound = impart.HTTPError{http.StatusNotFound, "User doesn't exist."} ErrUserNotFoundEmail = impart.HTTPError{http.StatusNotFound, "Please enter your username instead of your email address."} - ErrUserSuspended = impart.HTTPError{http.StatusForbidden, "Account is suspended, contact the administrator."} + ErrUserSuspended = impart.HTTPError{http.StatusForbidden, "Account is silenced."} ) // Post operation errors diff --git a/templates/pad.tmpl b/templates/pad.tmpl index 4be311e..0b73b94 100644 --- a/templates/pad.tmpl +++ b/templates/pad.tmpl @@ -134,7 +134,7 @@ var suspended = {{.Suspended}}; var publish = function(content, font) { if (suspended === true) { - alert("Your account is currently suspended, posting is disabled."); + alert("Your account is silenced, so you can't publish or update posts."); return; } {{if and (and .Post.Id (not .Post.Slug)) (not .User)}} diff --git a/templates/user/admin/users.tmpl b/templates/user/admin/users.tmpl index df840b2..fb69d3a 100644 --- a/templates/user/admin/users.tmpl +++ b/templates/user/admin/users.tmpl @@ -18,7 +18,7 @@
Your account is suspended. You can still access all of your posts and blogs, but no one else can currently see them.
+Your account has been silenced. You can still access all of your posts and blogs, but no one else can currently see them.