changeset 5889:52a10832bbb0

pullrequests: reword the grumpy "Rejected" to the more neutral and factual "Not approved" "Rejecting" could be considered rude and some reviewers were thus reluctant to use it. Rewording it might give reviewers a voice to better express their feelings.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 04 May 2016 01:18:25 +0200
parents 98c3d9515cad
children 0a6da75d6b07
files kallithea/model/db.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/model/db.py	Wed May 04 01:18:25 2016 +0200
+++ b/kallithea/model/db.py	Wed May 04 01:18:25 2016 +0200
@@ -2229,13 +2229,13 @@
 
     STATUS_NOT_REVIEWED = DEFAULT = 'not_reviewed'
     STATUS_APPROVED = 'approved'
-    STATUS_REJECTED = 'rejected'
+    STATUS_REJECTED = 'rejected' # is shown as "Not approved" - TODO: change database content / scheme
     STATUS_UNDER_REVIEW = 'under_review'
 
     STATUSES = [
         (STATUS_NOT_REVIEWED, _("Not reviewed")),  # (no icon) and default
         (STATUS_APPROVED, _("Approved")),
-        (STATUS_REJECTED, _("Rejected")),
+        (STATUS_REJECTED, _("Not approved")),
         (STATUS_UNDER_REVIEW, _("Under review")),
     ]
     STATUSES_DICT = dict(STATUSES)