2017-09-22 21:24:31 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Copyright 2017 UUP dump API authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-12-20 17:35:14 +01:00
|
|
|
function uupGetPacks($build = 15063) {
|
|
|
|
$fancyLangNames = array(
|
|
|
|
'ar-sa' => 'Arabic (Saudi Arabia)',
|
|
|
|
'bg-bg' => 'Bulgarian',
|
|
|
|
'cs-cz' => 'Czech',
|
|
|
|
'da-dk' => 'Danish',
|
|
|
|
'de-de' => 'German',
|
|
|
|
'el-gr' => 'Greek',
|
|
|
|
'en-gb' => 'English (United Kingdom)',
|
|
|
|
'en-us' => 'English (United States)',
|
|
|
|
'es-es' => 'Spanish (Spain)',
|
|
|
|
'es-mx' => 'Spanish (Mexico)',
|
|
|
|
'et-ee' => 'Estonian',
|
|
|
|
'fi-fi' => 'Finnish',
|
|
|
|
'fr-ca' => 'French (Canada)',
|
|
|
|
'fr-fr' => 'French (France)',
|
|
|
|
'he-il' => 'Hebrew',
|
|
|
|
'hr-hr' => 'Croatian',
|
|
|
|
'hu-hu' => 'Hungarian',
|
|
|
|
'it-it' => 'Italian',
|
|
|
|
'ja-jp' => 'Japanese',
|
|
|
|
'ko-kr' => 'Korean',
|
|
|
|
'lt-lt' => 'Lithuanian',
|
|
|
|
'lv-lv' => 'Latvian',
|
|
|
|
'nb-no' => 'Norwegian (Bokmal)',
|
|
|
|
'nl-nl' => 'Dutch',
|
|
|
|
'pl-pl' => 'Polish',
|
|
|
|
'pt-br' => 'Portuguese (Brazil)',
|
|
|
|
'pt-pt' => 'Portuguese (Portugal)',
|
|
|
|
'ro-ro' => 'Romanian',
|
|
|
|
'ru-ru' => 'Russian',
|
|
|
|
'sk-sk' => 'Slovak',
|
|
|
|
'sl-si' => 'Slovenian',
|
|
|
|
'sr-latn-rs' => 'Serbian (Latin)',
|
|
|
|
'sv-se' => 'Swedish',
|
|
|
|
'th-th' => 'Thai',
|
|
|
|
'tr-tr' => 'Turkish',
|
|
|
|
'uk-ua' => 'Ukrainian',
|
|
|
|
'zh-cn' => 'Chinese (Simplified)',
|
|
|
|
'zh-tw' => 'Chinese (Traditional)',
|
|
|
|
);
|
|
|
|
|
|
|
|
if($build < 17063) {
|
|
|
|
require dirname(__FILE__).'/packs/legacy.php';
|
|
|
|
} elseif ($build >= 17063) {
|
|
|
|
require dirname(__FILE__).'/packs/17063.php';
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'packs' => $packs,
|
|
|
|
'packsForLangs' => $packsForLangs,
|
|
|
|
'editionPacks' => $editionPacks,
|
|
|
|
'fancyEditionNames' => $fancyEditionNames,
|
|
|
|
'fancyLangNames' => $fancyLangNames,
|
|
|
|
);
|
|
|
|
}
|
2017-09-22 21:24:31 +02:00
|
|
|
?>
|