diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/countries.go | 3 | ||||
-rw-r--r-- | src/i18n.go | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/countries.go b/src/countries.go index b8a27bd..ee85c72 100644 --- a/src/countries.go +++ b/src/countries.go @@ -12,11 +12,12 @@ type country struct { } func sortedCountries(p Printer) []country { - /* TODO: Add Kosovo and Montenegro */ xs := []country{ {Code: "ad", Name: p.T("Andorra")}, {Code: "at", Name: p.T("Austria")}, {Code: "be", Name: p.T("Belgium")}, + /* TODO(2026): Add Bulgaria */ + /* {Code: "bg", Name: p.T("Bulgaria")}, */ {Code: "cy", Name: p.T("Cyprus")}, {Code: "de", Name: p.T("Germany")}, {Code: "ee", Name: p.T("Estonia")}, diff --git a/src/i18n.go b/src/i18n.go index e5b9472..dabc966 100644 --- a/src/i18n.go +++ b/src/i18n.go @@ -174,7 +174,7 @@ var ( Bcp: "bg", Name: "български", dateFmt: "2.01.2006 г.", - Eurozone: false, + Eurozone: false, /* TODO(2026): Set to true */ Enabled: true, }, { |