mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-06 03:49:56 +02:00
74 lines
2.2 KiB
PHP
74 lines
2.2 KiB
PHP
<?php
|
|
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab: */
|
|
/*
|
|
Copyright 2009, 2010 Timothy John Wood, Paul Arthur MacIain
|
|
|
|
This file is part of php_musicbrainz
|
|
|
|
php_musicbrainz is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
|
(at your option) any later version.
|
|
|
|
php_musicbrainz is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with php_musicbrainz. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
$mbScriptNames = array(
|
|
"Yiii" => "Yi",
|
|
"Telu" => "Telugu",
|
|
"Taml" => "Tamil",
|
|
"Guru" => "Gurmukhi",
|
|
"Hebr" => "Hebrew",
|
|
"Geor" => "Georgian (Mkhedruli)",
|
|
"Ugar" => "Ugaritic",
|
|
"Cyrl" => "Cyrillic",
|
|
"Hrkt" => "Kanji & Kana",
|
|
"Armn" => "Armenian",
|
|
"Runr" => "Runic",
|
|
"Khmr" => "Khmer",
|
|
"Latn" => "Latin",
|
|
"Hani" => "Han (Hanzi, Kanji, Hanja)",
|
|
"Ital" => "Old Italic (Etruscan, Oscan, etc.)",
|
|
"Hano" => "Hanunoo (Hanunóo)",
|
|
"Ethi" => "Ethiopic (Ge'ez)",
|
|
"Gujr" => "Gujarati",
|
|
"Hang" => "Hangul",
|
|
"Arab" => "Arabic",
|
|
"Thaa" => "Thaana",
|
|
"Buhd" => "Buhid",
|
|
"Sinh" => "Sinhala",
|
|
"Orya" => "Oriya",
|
|
"Hans" => "Han (Simplified variant)",
|
|
"Thai" => "Thai",
|
|
"Cprt" => "Cypriot",
|
|
"Linb" => "Linear B",
|
|
"Hant" => "Han (Traditional variant)",
|
|
"Osma" => "Osmanya",
|
|
"Mong" => "Mongolian",
|
|
"Deva" => "Devanagari (Nagari)",
|
|
"Laoo" => "Lao",
|
|
"Tagb" => "Tagbanwa",
|
|
"Hira" => "Hiragana",
|
|
"Bopo" => "Bopomofo",
|
|
"Goth" => "Gothic",
|
|
"Tale" => "Tai Le",
|
|
"Mymr" => "Myanmar (Burmese)",
|
|
"Tglg" => "Tagalog",
|
|
"Grek" => "Greek",
|
|
"Mlym" => "Malayalam",
|
|
"Cher" => "Cherokee",
|
|
"Tibt" => "Tibetan",
|
|
"Kana" => "Katakana",
|
|
"Syrc" => "Syriac",
|
|
"Cans" => "Unified Canadian Aboriginal Syllabics",
|
|
"Beng" => "Bengali",
|
|
"Limb" => "Limbu",
|
|
"Ogam" => "Ogham",
|
|
"Knda" => "Kannada"
|
|
);
|
|
?>
|