[damned-lies] Removed 'Vertimus' from user-visible strings



commit 0a57e32369590f5b7325a43935ab26d0ff419815
Author: Claude Paroz <claude 2xlibre net>
Date:   Mon Feb 3 19:49:13 2014 +0100

    Removed 'Vertimus' from user-visible strings
    
    Fixes bug #687769.

 docs/vertimus-workflow.svg              |    4 ++--
 templates/teams/team_edit.html          |    2 +-
 templates/vertimus/vertimus_detail.html |    2 +-
 vertimus/feeds.py                       |    4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/docs/vertimus-workflow.svg b/docs/vertimus-workflow.svg
index f9d0e1f..a82bbd1 100644
--- a/docs/vertimus-workflow.svg
+++ b/docs/vertimus-workflow.svg
@@ -92,7 +92,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
-        <dc:title>Vertimus Workflow</dc:title>
+        <dc:title>Translation Workflow</dc:title>
         <dc:date>2009-01-25</dc:date>
         <dc:creator>
           <cc:Agent>
@@ -600,7 +600,7 @@
          sodipodi:role="line"
          id="tspan8203"
          x="565.3869"
-         y="75.425758">Vertimus</tspan><tspan
+         y="75.425758">Translation</tspan><tspan
          sodipodi:role="line"
          x="565.3869"
          y="112.92576"
diff --git a/templates/teams/team_edit.html b/templates/teams/team_edit.html
index 6d30e33..ee7b4f2 100644
--- a/templates/teams/team_edit.html
+++ b/templates/teams/team_edit.html
@@ -29,7 +29,7 @@ $(document).ready(function() {
   <tr><th>{{ form.mailing_list_subscribe.label }}:</th>
       <td>{{ form.mailing_list_subscribe.errors }}{{ form.mailing_list_subscribe }}</td></tr>
   <tr><th></th>
-      <td>{{ form.use_workflow }} <label for="id_use_workflow">{% trans "This team is using the Vertimus 
translation workflow" %}</label>
+      <td>{{ form.use_workflow }} <label for="id_use_workflow">{% trans "This team is using the translation 
workflow" %}</label>
   <tr><th valign="top"><span class="help">&nbsp;</span><br />{{ form.presentation.label }}:</th>
       <td>{{ form.presentation.label.errors }}
           <span class="help">{% trans "This content may use <a 
href='http://en.wikipedia.org/wiki/Markdown'>Markdown</a> syntax" %}<br />
diff --git a/templates/vertimus/vertimus_detail.html b/templates/vertimus/vertimus_detail.html
index 44abc67..b92e01d 100644
--- a/templates/vertimus/vertimus_detail.html
+++ b/templates/vertimus/vertimus_detail.html
@@ -254,7 +254,7 @@ $(document).ready(function() {
   {% endif %}
 {% endif %}
 {% else %}
-  <p><img src="{{ STATIC_URL }}img/warn.png"/>&nbsp;{% trans "This team is not using the Vertimus 
translation workflow." %}</p>
+  <p><img src="{{ STATIC_URL }}img/warn.png"/>&nbsp;{% trans "This team is not using the translation 
workflow." %}</p>
 {% endif %}
 </div>
 {% endblock %}
diff --git a/vertimus/feeds.py b/vertimus/feeds.py
index fcd92b1..40e1539 100644
--- a/vertimus/feeds.py
+++ b/vertimus/feeds.py
@@ -36,7 +36,7 @@ class LatestActionsByLanguage(Feed):
 
     def title(self, obj):
         current_site = Site.objects.get_current()
-        return _("%(site)s - Vertimus actions for the %(lang)s language") % {
+        return _("%(site)s - Workflow actions for the %(lang)s language") % {
                   'site': current_site, 'lang': obj.name }
 
     def link(self, obj):
@@ -80,7 +80,7 @@ class LatestActionsByTeam(Feed):
 
     def title(self, obj):
         current_site = Site.objects.get_current()
-        return _("%(site)s - Vertimus actions of the %(lang)s team") % {
+        return _("%(site)s - Workflow actions of the %(lang)s team") % {
                   'site': current_site, 'lang': obj}
 
     def link(self, obj):


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