feat: Add Tino Rangatiratanga (Māori) flag to language selector

- 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 <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-12-09 18:26:10 +13:00
parent d3225711f7
commit f6840b475c
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="1080" height="600">
<path fill="#FFF" d="m0,0h1080v600H0"/>
<path d="m0,80h300a135,135 0 0,1 0,270h780V0H0"/>
<path fill="#d40000" d="M0,190h300a80,80 0 0,1 0,160a55,55 0 0,0 0-110a110,110 0 0,0 0,220h780v140H0"/>
</svg>

After

Width:  |  Height:  |  Size: 306 B

View file

@ -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() {