diff --git a/CHANGELOG.md b/CHANGELOG.md index 75c520486..7185617e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. - Viewer: long press on copy/move/rating/tag quick action for quicker action - Search: missing address, portrait, landscape filters - Lithuanian translation (thanks Gediminas Murauskas) +- Norsk (Bokmål) translation (thanks Allan Nordhøy) ### Changed diff --git a/fastlane/metadata/android/nb-NO/images/featureGraphic.png b/fastlane/metadata/android/nb-NO/images/featureGraphic.png new file mode 100644 index 000000000..e9e800f6b Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/featureGraphic.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/1.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/1.png new file mode 100644 index 000000000..a0301b619 Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/1.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/2.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/2.png new file mode 100644 index 000000000..c71169bb1 Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/2.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/3.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/3.png new file mode 100644 index 000000000..b793e51ab Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/3.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/4.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/4.png new file mode 100644 index 000000000..517d27107 Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/4.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/5.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/5.png new file mode 100644 index 000000000..35c2d588d Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/5.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/6.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/6.png new file mode 100644 index 000000000..fff3807fd Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/6.png differ diff --git a/fastlane/metadata/android/nb-NO/images/phoneScreenshots/7.png b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/7.png new file mode 100644 index 000000000..9e548bde8 Binary files /dev/null and b/fastlane/metadata/android/nb-NO/images/phoneScreenshots/7.png differ diff --git a/lib/widgets/about/translators.dart b/lib/widgets/about/translators.dart index 24ed0b8bf..ccc42bf50 100644 --- a/lib/widgets/about/translators.dart +++ b/lib/widgets/about/translators.dart @@ -35,7 +35,7 @@ class AboutTranslators extends StatelessWidget { Contributor('JY3', 'GeeyunJY3@gmail.com'), Contributor('Gediminas Murauskas', 'muziejusinfo@gmail.com'), Contributor('Oğuz Ersen', 'oguz@ersen.moe'), - // Contributor('Allan Nordhøy', 'epost@anotheragency.no'), + Contributor('Allan Nordhøy', 'epost@anotheragency.no'), // Contributor('Piotr K', '1337.kelt@gmail.com'), // Contributor('امیر جهانگرد', 'ijahangard.a@gmail.com'), // Contributor('SAMIRAH AIL', 'samiratalzahrani@gmail.com'), diff --git a/lib/widgets/aves_app.dart b/lib/widgets/aves_app.dart index 6bf63184a..4f683d05d 100644 --- a/lib/widgets/aves_app.dart +++ b/lib/widgets/aves_app.dart @@ -49,7 +49,7 @@ class AvesApp extends StatefulWidget { final AppFlavor flavor; // temporary exclude locales not ready yet for prime time - static final _unsupportedLocales = {'ar', 'fa', 'gl', 'nb', 'pl', 'th'}.map(Locale.new).toSet(); + static final _unsupportedLocales = {'ar', 'fa', 'gl', 'pl', 'th'}.map(Locale.new).toSet(); static final List supportedLocales = AppLocalizations.supportedLocales.where((v) => !_unsupportedLocales.contains(v)).toList(); static final GlobalKey navigatorKey = GlobalKey(debugLabel: 'app-navigator'); diff --git a/lib/widgets/settings/language/locales.dart b/lib/widgets/settings/language/locales.dart index 9d0a9e91b..569d2f735 100644 --- a/lib/widgets/settings/language/locales.dart +++ b/lib/widgets/settings/language/locales.dart @@ -13,6 +13,7 @@ class SupportedLocales { 'ja': '日本語', 'ko': '한국어', 'lt': 'Lietuvių', + 'nb': 'Norsk (Bokmål)', 'nl': 'Nederlands', 'pt': 'Português (Brasil)', 'ro': 'Română',