You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
825 B
Python
40 lines
825 B
Python
from jade_gui.classes.locale import locale
|
|
|
|
canada = [
|
|
locale(
|
|
region="canada",
|
|
location="Atlantic",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Central",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Eastern",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Mountain",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Newfoundland",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Pacific",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
locale(
|
|
region="canada",
|
|
location="Yukon",
|
|
locales="en_CA.UTF-8 UTF-8",
|
|
),
|
|
]
|