wallos/includes/i18n/languages.php
Miguel Ribeiro 70e42349ca
feat: add themes and custom color options
feat: add italian translation
2024-04-19 14:22:07 +02:00

25 lines
643 B
PHP

<?php
// File Name => Language Name
$languages = [
// English first
"en" => "English",
// Remaining sorted alphabetically by language code
"de" => "Deutsch",
"el" => "Ελληνικά",
"es" => "Español",
"fr" => "Français",
"it" => "Italiano",
"jp" => "日本語",
"pl" => "Polski",
"pt" => "Português",
"pt_br" => "Português Brasileiro",
"sr_lat" => "Srpski",
"sr" => "Српски",
"tr" => "Türkçe",
"zh_cn" => "简体中文",
"zh_tw" => "繁體中文",
]
?>