Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Bulgarian states and places #246

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 159 additions & 0 deletions trunk/places/BG.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
<?php

/**
* $country places/cities/municipalities/districts
* - $count places/cities/municipalities/districts
*
* Source:
* - [Please add the source(s) link(s) to check the list of places]
*
* @author Your Name Here <[email protected]> | https://yourwebsite.com
* @version 1.0.0
* @license http://www.gnu.org/licenses/gpl-2.0.html
*/

global $places;

$places['BG'] = array(
'BG' => array(
'Благоевград',
'Сандански',
'Петрич'
),
'BN' => array(
'Бургас',
'Созопол',
'Несебър'
),
'VR' => array(
'Враца',
'Бяла Слатина',
'Козлодуй'
),
'VD' => array(
'Видин',
'Белоградчик',
'Кула'
),
'VT' => array(
'Велико Търново',
'Горна Оряховица',
'Свищов'
),
'VN' => array(
'Варна',
'Балчик',
'Провадия'
),
'GB' => array(
'Габрово',
'Севлиево',
'Трявна'
),
'DO' => array(
'Добрич',
'Балчик',
'Каварна'
),
'KA' => array(
'Кърджали',
'Момчилград',
'Ардино'
),
'KN' => array(
'Кюстендил',
'Дупница',
'Бобов Дол'
),
'LO' => array(
'Ловеч',
'Троян',
'Луковит'
),
'MN' => array(
'Монтана',
'Берковица',
'Лом'
),
'PA' => array(
'Пазарджик',
'Панагюрище',
'Велинград'
),
'PK' => array(
'Перник',
'Радомир',
'Трън'
),
'PL' => array(
'Плевен',
'Червен Бряг',
'Левски'
),
'PD' => array(
'Пловдив',
'Асеновград',
'Карлово'
),
'RZ' => array(
'Разград',
'Исперих',
'Кубрат'
),
'RS' => array(
'Русе',
'Бяла',
'Свищов'
),
'SS' => array(
'Силистра',
'Дулово',
'Алфатар'
),
'SL' => array(
'Сливен',
'Нова Загора',
'Котел'
),
'SM' => array(
'Смолян',
'Мадан',
'Рудозем'
),
'SF' => array(
'София',
'Ботевград',
'Етрополе'
),
'SO' => array(
'София',
'Банкя',
'Костинброд'
),
'SZ' => array(
'Стара Загора',
'Казанлък',
'Раднево'
),
'TA' => array(
'Търговище',
'Омуртаг',
'Попово'
),
'HA' => array(
'Хасково',
'Димитровград',
'Свиленград'
),
'SH' => array(
'Шумен',
'Нови Пазар',
'Велики Преслав'
),
'YA' => array(
'Ямбол',
'Елхово',
'Стралджа'
)

);
46 changes: 46 additions & 0 deletions trunk/states/BG.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php

/**
* $country states/provinces/regions
* - $count states/provinces/regions
*
* Source:
* - [Please add the source(s) link(s) to check the list of places]
*
* @author Your Name Here <[email protected]> | https://yourwebsite.com
* @version 1.0.0
* @license http://www.gnu.org/licenses/gpl-2.0.html
*/

global $states;

$states['BG'] = array(
'BG' => 'Благоевград',
'BN' => 'Бургас',
'VR' => 'Враца',
'VD' => 'Видин',
'VT' => 'Велико Търново',
'VA' => 'Варна',
'GB' => 'Габрово',
'DO' => 'Добрич',
'KA' => 'Кърджали',
'KN' => 'Кюстендил',
'LO' => 'Ловеч',
'MN' => 'Монтана',
'PA' => 'Пазарджик',
'PK' => 'Перник',
'PL' => 'Плевен',
'PD' => 'Пловдив',
'RZ' => 'Разград',
'RS' => 'Русе',
'SS' => 'Силистра',
'SL' => 'Сливен',
'SM' => 'Смолян',
'SF' => 'София (област)',
'SO' => 'София (град)',
'SZ' => 'Стара Загора',
'TA' => 'Търговище',
'HA' => 'Хасково',
'SH' => 'Шумен',
'YA' => 'Ямбол'
);