RespectfulPlatforms/config.json
antonimalinowski 6630f5bb73 feat(i18n): add Polish language translation
- add index.html into /lang/pl/ directory
- add polish language with 🇵🇱 flag into config.js so that new langueag can be fetched via /js/languagePicker.js

NOTE: Polish language is tricky with semantic and contextual meaning, so the translation may be reverified
2025-01-12 11:20:46 +01:00

24 lines
No EOL
446 B
JSON

{
"languages": {
"en": {
"name": "English",
"flag": "🇬🇧",
"path": "/",
"isDefault": true
},
"fr": {
"name": "Français",
"flag": "🇫🇷",
"path": "/lang/fr/"
},
"pl": {
"name": "Polski",
"flag": "🇵🇱",
"path": "/lang/pl/"
}
},
"site": {
"name": "RespectfulPlatforms.org - Digital Platform Charter of Rights",
"defaultLang": "en"
}
}