[extensions-web: 62/75] Remove "Locked" from the lingo.



commit 09ffadcbeb22237d9f3e72045807502dad613736
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Thu Sep 22 11:22:53 2011 -0400

    Remove "Locked" from the lingo.
    
    The original intention behind "locked" was that all extension metadata could
    not be edited while the version was under review, but the extension metadata
    is on the extension, not the version.

 sweettooth/extensions/models.py                    |    2 +-
 .../templates/extensions/detail-edit.html          |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/sweettooth/extensions/models.py b/sweettooth/extensions/models.py
index 0503d1c..b554189 100644
--- a/sweettooth/extensions/models.py
+++ b/sweettooth/extensions/models.py
@@ -21,7 +21,7 @@ from sorl import thumbnail
 
 STATUSES = {
     STATUS_NEW: u"New",
-    STATUS_LOCKED: u"Unreviewed and Locked",
+    STATUS_LOCKED: u"Unreviewed",
     STATUS_REJECTED: u"Rejected",
     STATUS_INACTIVE: u"Inactive",
     STATUS_ACTIVE: u"Active",
diff --git a/sweettooth/extensions/templates/extensions/detail-edit.html b/sweettooth/extensions/templates/extensions/detail-edit.html
index c67fa78..56ea55f 100644
--- a/sweettooth/extensions/templates/extensions/detail-edit.html
+++ b/sweettooth/extensions/templates/extensions/detail-edit.html
@@ -20,7 +20,7 @@
 
 {% block extra %}
   {% if is_preview %}
-    <button id="submit-ajax" data-url="{% url extensions-ajax-submit pk=version.pk %}">Submit and lock the extension for review.</button>
+    <button id="submit-ajax" data-url="{% url extensions-ajax-submit pk=version.pk %}">Submit the extension for review.</button>
   {% endif %}
   <a href="{% url extensions-upload-file pk=version.extension.pk %}">Upload a new version</a>
 {% endblock %}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]