Ensure UK spelling for language across pgweb.
authorJonathan S. Katz <jonathan.katz@excoventures.com>
Sun, 15 Apr 2018 18:09:06 +0000 (14:09 -0400)
committerJonathan S. Katz <jonathan.katz@excoventures.com>
Sun, 15 Apr 2018 18:09:06 +0000 (14:09 -0400)
pgweb/pugs/migrations/0001_initial.py
pgweb/pugs/models.py
pgweb/util/admin.py
templates/admin/change_form_pgweb.html
templates/pages/about/donate.html
templates/pages/about/privacypolicy.html
templates/pages/community/recognition.html
templates/pages/support/security/faq/2013-04-04.html

index c4c4451c9b4f798da263fde430730e351696b504..c5a5394dd2f75d36597f03d21f5533f15666cac3 100644 (file)
@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
                 ('website_url', models.TextField(null=True, blank=True)),
                 ('mailing_list_url', models.TextField(null=True, blank=True)),
                 ('country', models.ForeignKey(to='core.Country')),
-                ('org', models.ForeignKey(blank=True, to='core.Organisation', help_text=b'Organization that manages the PUG and its contents', null=True)),
+                ('org', models.ForeignKey(blank=True, to='core.Organisation', help_text=b'Organisation that manages the PUG and its contents', null=True)),
             ],
         ),
     ]
index 66389c5084d21eaec7e12209e27fe522c899591e..a72e06269343bb6ffc5ecec7c592663d4f582a2d 100644 (file)
@@ -5,7 +5,7 @@ class PUG(models.Model):
        contains information about a local PostgreSQL user group
        """
        country = models.ForeignKey('core.Country')
-       org = models.ForeignKey('core.Organisation', null=True, blank=True, help_text='Organization that manages the PUG and its contents')
+       org = models.ForeignKey('core.Organisation', null=True, blank=True, help_text='Organisation that manages the PUG and its contents')
        approved = models.BooleanField(null=False, blank=False, default=False)
        locale = models.CharField(max_length=255, help_text="Locale where the PUG meets, e.g. 'New York City'")
        title = models.CharField(max_length=255, help_text="Title/Name of the PUG, e.g. 'NYC PostgreSQL User Group'")
index 21e2b8da516c26a60990a7593f97c040b096dd54..e68041a9fda1c720412d7a7ad0e5cb500a400bfd 100644 (file)
@@ -63,7 +63,7 @@ class PgwebAdmin(admin.ModelAdmin):
                                if not obj.org.email:
                                        # Should not happen because we remove the form field. Thus
                                        # a hard exception is ok.
-                                       raise Exception("Organization does not have an email, canot send notification!")
+                                       raise Exception("Organisation does not have an email, canot send notification!")
                                n = ModerationNotification()
                                n.objecttype = obj.__class__.__name__
                                n.objectid = obj.id
index 4dcc115d8f4fc7edf62de084565c0ba31b3a925c..4ca5bbe5758e36f3c79c0581132b03c010cc9920 100644 (file)
@@ -35,7 +35,7 @@ Note that the summary field can use
 </ul>
 <p>
 {%if original.org.email%}
-New notification: <input type="text" name="new_notification" style="width:400px;" /> (<b>Note!</b> This comment is emailed to the organization!)<br/>
+New notification: <input type="text" name="new_notification" style="width:400px;" /> (<b>Note!</b> This comment is emailed to the organisation!)<br/>
 To send a notification on rejection, first add the notification above and hit
 "Save and continue editing". Then as a separate step, delete the record.
 {%else%}
index 9751681d055e9579c81a83be0033e5030dbf18a8..6f8d7651de0d1a94a56a28a50afb96262a4961ca 100644 (file)
@@ -24,11 +24,11 @@ It focuses on Education, User Groups, and Advocacy. <a href="https://postgresql.
 refer to the party you are donating to and your tax professional.</p>
 
 <h2>PostgreSQL Nonprofit Organisation (NPO) Recognition</h2>
-<p>For information about how <a href="/community/recognition/#npos">Recognised PostgreSQL Nonprofit Organizations (NPOs)</a> become recognised, please review the guidelines <a href="/community/recognition/#npos">here</a>.
+<p>For information about how <a href="/community/recognition/#npos">Recognised PostgreSQL Nonprofit Organisations (NPOs)</a> become recognised, please review the guidelines <a href="/community/recognition/#npos">here</a>.
 
 <h2>Questions</h2>
 <p>If you have any questions about donations please contact either the
 <a href="mailto:funds-group@postgresql.org">PostgreSQL Funds Group</a> or the
-respective organization you are donating to.
+respective organisation you are donating to.
 </p>
 {%endblock%}
index 995097aacf0cc2bd09aeb1322d6128fe11a58ee2..b924a2c33bce3e71c787230b18e3f9f2a60abbe1 100644 (file)
@@ -3,12 +3,12 @@
 {%block contents%}
 <h1>Privacy Policy</h1>
 <p>When you visit our website, our servers automatically log your IP address and/or host name.</p>
-<p>We store information such as your email address, name and locality only if you decide to send us such information by completing a survey, or registering as a user on one of our sites. We collect this information to help us improve the content of our sites, customize the layout of our web pages and to contact people for technical and support purposes.  We will not share your email address with other organizations unless required by law.</p>
+<p>We store information such as your email address, name and locality only if you decide to send us such information by completing a survey, or registering as a user on one of our sites. We collect this information to help us improve the content of our sites, customize the layout of our web pages and to contact people for technical and support purposes.  We will not share your email address with other organisations unless required by law.</p>
 <p>If you submit content to the website, such as listing your company as a
 service provider, the information you submitted will be published.</p>
 <p>If you post a message to one of our public mailinglists, your sending
 email address and any content of the email will be published, and archived,
-both by us and by other organizations. These archives are permanent, and
+both by us and by other organisations. These archives are permanent, and
 posted emails are not removed. By sending a message to one of these lists
 you implicitly grant permission for this archival, overriding any
 disclaimers in the message itself.</p>
index 8d042f62c288227401a34ce1a54153810bdc55c7..bdec51b83e464412d63f38702a2d50a3c1d24d1b 100644 (file)
@@ -11,7 +11,7 @@
 <p>
   <ul>
     <li>
-      <a href="#npos">Recognised PostgreSQL Nonprofit Organizations (NPOs)</a>
+      <a href="#npos">Recognised PostgreSQL Nonprofit Organisations (NPOs)</a>
     </li>
     <li>
       <a href="#conferences">Community Conference Recognition</a>
@@ -20,8 +20,8 @@
 </p>
 
 <a name="npos" />
-<h1>Recognised PostgreSQL Nonprofit Organizations (NPOs)</h1>
-<p>Recognised PostgreSQL Nonprofit Organizations (NPOs) will be listed on the <a href="/">PostgreSQL Website</a> as such. To become recognised as an NPO, the organisation must self-certify that they meet the criteria below, aimed at ensuring they meet the standards of openness expected in the PostgreSQL Community.
+<h1>Recognised PostgreSQL Nonprofit Organisations (NPOs)</h1>
+<p>Recognised PostgreSQL Nonprofit Organisations (NPOs) will be listed on the <a href="/">PostgreSQL Website</a> as such. To become recognised as an NPO, the organisation must self-certify that they meet the criteria below, aimed at ensuring they meet the standards of openness expected in the PostgreSQL Community.
 
 Use of the terms “must”, “must not”, “should” and “should not” in the criteria below should be interpreted per <a href="https://www.ietf.org/rfc/rfc2119.txt" target="_blank">RFC2119</a>.
 
@@ -118,7 +118,7 @@ Use of the terms “must”, “must not”, “should” and “should not” i
     <li>
       A statement on the event website must indicate where any profits from the event will go, which specifically must support PostgreSQL community activities, either through:
       <ol>
-        <li>a <a href="#npos">recognized PostgreSQL Nonprofit Organization</a></li>
+        <li>a <a href="#npos">recognized PostgreSQL Nonprofit Organisation</a></li>
         <li>a detailed list of how the profits will support
         ongoing PostgreSQL Global Development Group development</li>
         <li>to the future growth and expansion of the event, OR</li>
index 37d995e9b15e030d14c43d2ab9bd6e0ef9260759..f0f6ad8eda63855a94da0be083112eeaa0f656b4 100644 (file)
@@ -150,7 +150,7 @@ of volunteer packagers and release managers to conduct the release.</p>
 
 <h2>How is the PostgreSQL project organized?</h2>
 <p>PostgreSQL Global Development Group (PGDG) is a volunteer-run, global
-organization. We have a six-person core team, a number of Major Contributors and
+organisation. We have a six-person core team, a number of Major Contributors and
 several mailing lists that make up the centralized portion of our community.
 <a href="/community/contributors/">See here for details
 about contributors</a>.</p>