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.
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
2 years ago
|
# locales.py
|
||
|
|
||
|
#
|
||
|
# Copyright 2022 user
|
||
|
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License only.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
from jade_gui.locales.africa import africa
|
||
|
from jade_gui.locales.america import america
|
||
|
from jade_gui.locales.antarctica import antarctica
|
||
|
from jade_gui.locales.arctic import arctic
|
||
|
from jade_gui.locales.asia import asia
|
||
|
from jade_gui.locales.atlantic import atlantic
|
||
|
from jade_gui.locales.australia import australia
|
||
|
from jade_gui.locales.brazil import brazil
|
||
|
from jade_gui.locales.canada import canada
|
||
|
from jade_gui.locales.chile import chile
|
||
|
from jade_gui.locales.europe import europe
|
||
|
from jade_gui.locales.indian import indian
|
||
|
from jade_gui.locales.mexico import mexico
|
||
|
from jade_gui.locales.pacific import pacific
|
||
|
|
||
|
locations = [
|
||
|
africa,
|
||
|
america,
|
||
|
antarctica,
|
||
|
arctic,
|
||
|
asia,
|
||
|
atlantic,
|
||
|
australia,
|
||
|
brazil,
|
||
|
canada,
|
||
|
chile,
|
||
|
europe,
|
||
|
indian,
|
||
|
mexico,
|
||
|
pacific,
|
||
|
]
|