From f6840b475c36832084ee8dd33cd315255e56e8bf Mon Sep 17 00:00:00 2001 From: TheFlow Date: Tue, 9 Dec 2025 18:26:10 +1300 Subject: [PATCH] =?UTF-8?q?feat:=20Add=20Tino=20Rangatiratanga=20(M=C4=81o?= =?UTF-8?q?ri)=20flag=20to=20language=20selector?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Downloaded flag SVG locally to avoid CORS issues - Updated language-selector.js to use local SVG path - Replaced NZ emoji with proper Tino Rangatiratanga flag 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- public/images/tino-rangatiratanga-flag.svg | 6 ++++++ public/js/components/language-selector.js | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 public/images/tino-rangatiratanga-flag.svg diff --git a/public/images/tino-rangatiratanga-flag.svg b/public/images/tino-rangatiratanga-flag.svg new file mode 100644 index 00000000..afd52fa0 --- /dev/null +++ b/public/images/tino-rangatiratanga-flag.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/public/js/components/language-selector.js b/public/js/components/language-selector.js index 28854709..1af77fd9 100644 --- a/public/js/components/language-selector.js +++ b/public/js/components/language-selector.js @@ -8,7 +8,7 @@ { code: 'en', name: 'English', flag: '🇬🇧' }, { code: 'de', name: 'Deutsch', flag: '🇩🇪' }, { code: 'fr', name: 'Français', flag: '🇫🇷' }, - { code: 'mi', name: 'Te Reo Māori', flagUrl: 'https://stroh.mysovereignty.digital/images/tino-rangatiratanga-flag.svg', disabled: true, tooltip: 'Planned' } + { code: 'mi', name: 'Te Reo Māori', flagUrl: '/images/tino-rangatiratanga-flag.svg', disabled: true, tooltip: 'Planned' } ]; function createLanguageSelector() {