From d1f5688e05d8333fd8d673082ec14a325d068ff6 Mon Sep 17 00:00:00 2001 From: Randolf Richardson Date: Sun, 4 Feb 2018 08:41:52 -0800 Subject: [PATCH] Change Province names from all-capital-letters This make sit consistent with the territories. (I would also like to do this also with the city names, but there are more than 7,000 in the list so I would have to look into working on this some other day.) --- data/provinces.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/data/provinces.json b/data/provinces.json index 18189bb..897c1c7 100644 --- a/data/provinces.json +++ b/data/provinces.json @@ -1,12 +1,12 @@ { - "AB": "ALBERTA", - "BC": "BRITISH COLUMBIA", - "MB": "MANITOBA", - "NB": "NEW BRUNSWICK", - "NL": "NEWFOUNDLAND AND LABRADOR", - "NS": "NOVA SCOTIA", - "ON": "ONTARIO", - "PE": "PRINCE EDWARD ISLAND", - "QC": "QUEBEC", - "SK": "SASKATCHEWAN" + "AB": "Alberta", + "BC": "British Columbia", + "MB": "Manitoba", + "NB": "New Brunswick", + "NL": "Newfoundland and Labrador", + "NS": "Nova Scotia", + "ON": "Ontario", + "PE": "Prince Edward Island", + "QC": "Quebec", + "SK": "Saskatchewan" }