mirror of
https://github.com/nikdoof/vapemap.git
synced 2025-12-14 06:42:17 +00:00
Make the wording a little more international friendly.
This commit is contained in:
@@ -142,9 +142,9 @@ class Address(models.Model):
|
||||
address2 = models.CharField('Address Line 2', max_length=200, blank=True, help_text="(Optional) Second line of the address")
|
||||
address3 = models.CharField('Address Line 3', max_length=200, blank=True, help_text="(Optional) Third line of the address")
|
||||
city = models.CharField('Town/City', max_length='50', help_text="City or town")
|
||||
county = models.ForeignKey('stores.County', related_name='addresses', null=True, blank=True, help_text="County or suburban area.")
|
||||
county = models.ForeignKey('stores.County', related_name='addresses', null=True, blank=True, help_text="County or suburban area. (Ignore if the store is outside the UK)")
|
||||
country = models.ForeignKey('stores.Country', related_name='addresses')
|
||||
postcode = models.CharField('Postcode', max_length=20, help_text="Post Code, e.g. <em>M1 1AA</em>")
|
||||
postcode = models.CharField('Postcode / Zipcode', max_length=20, help_text="Post Code or Zip Code, e.g. <em>M1 1AA</em> or <em>60647</em>")
|
||||
|
||||
geo_latitude = models.FloatField('Latitude', null=True, blank=True)
|
||||
geo_longitude = models.FloatField('Longitude', null=True, blank=True)
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
{% block content %}
|
||||
<div class="jumbotron">
|
||||
<p class="lead">
|
||||
{{ site.name }} lists {{ store_count }} stores, and {{ chain_count }} chains across the UK and Ireland.
|
||||
{{ site.name }} lists {{ store_count }} stores, and {{ chain_count }} chains across the world.
|
||||
</p>
|
||||
<p id="geolocation"><a class="btn btn-large">Find Stores Near Me.</a></p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user