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.
65 lines
1.3 KiB
Dart
65 lines
1.3 KiB
Dart
import 'package:jade_gui/classes/location.dart';
|
|
|
|
List<Location> atlantic = const [
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Azores",
|
|
locale: "pt_PT.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Bermuda",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Canary",
|
|
locale: "es_ES.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Cape_Verde",
|
|
locale: "pt_PT.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Faeroe",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Faroe",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Jan_Mayen",
|
|
locale: "nb_NO.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Madeira",
|
|
locale: "pt_PT.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Reykjavik",
|
|
locale: "is_IS.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "South_Georgia",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "Stanley",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
Location(
|
|
region: "atlantic",
|
|
location: "St_Helena",
|
|
locale: "en_GB.UTF-8 UTF-8",
|
|
),
|
|
];
|