diff options
-rw-r--r-- | devel/views.py | 2 | ||||
-rw-r--r-- | main/models.py | 2 | ||||
-rw-r--r-- | settings.py | 2 | ||||
-rw-r--r-- | templates/packages/flag.html | 2 | ||||
-rw-r--r-- | templates/packages/outofdate.txt | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/devel/views.py b/devel/views.py index e999b7fa..710bfff5 100644 --- a/devel/views.py +++ b/devel/views.py @@ -53,7 +53,7 @@ def change_notify(request): class ProfileForm(forms.Form): email = forms.EmailField(label='Private email (not shown publicly):', - help_text="Used for out of date notifications, etc.") + help_text="Used for out-of-date notifications, etc.") passwd1 = forms.CharField(label='New Password', required=False, widget=forms.PasswordInput) passwd2 = forms.CharField(label='Confirm Password', required=False, diff --git a/main/models.py b/main/models.py index 888f0b8d..6fdb862f 100644 --- a/main/models.py +++ b/main/models.py @@ -10,7 +10,7 @@ class UserProfile(models.Model): notify = models.BooleanField( "Send notifications", default=True, - help_text="When enabled, send user 'flag out of date' notifications") + help_text="When enabled, send user 'flag out-of-date' notifications") alias = models.CharField( max_length=50, help_text="Required field") diff --git a/settings.py b/settings.py index 62ee336a..f98f709c 100644 --- a/settings.py +++ b/settings.py @@ -13,7 +13,7 @@ ADMINS = ( # Set managers to admins MANAGERS = ADMINS -# Package out of date emails for orphans +# Package out-of-date emails for orphans NOTIFICATIONS = ['arch-notifications@archlinux.org'] # Full path to the data directory diff --git a/templates/packages/flag.html b/templates/packages/flag.html index f08b758b..35198dff 100644 --- a/templates/packages/flag.html +++ b/templates/packages/flag.html @@ -14,7 +14,7 @@ {% else %} <h2>Flag Package: {{ pkg.pkgname }}</h2> - <p>If you notice a package is out of date (i.e., there is a newer + <p>If you notice a package is out-of-date (i.e., there is a newer <strong>stable</strong> release available), then please notify us using the form below.</p> diff --git a/templates/packages/outofdate.txt b/templates/packages/outofdate.txt index 80da23d6..d8b74005 100644 --- a/templates/packages/outofdate.txt +++ b/templates/packages/outofdate.txt @@ -1,6 +1,6 @@ {% autoescape off %}* Note: this is an automated message -{{ email }} wants to notify you that the following package may be out of date: +{{ email }} wants to notify you that the following package may be out-of-date: Package Name: {{ pkg.pkgname }} Architecture: {{ pkg.arch.name }} |