diff --git a/src/Faker/Provider/ua_UA/Address.php b/src/Faker/Provider/ua_UA/Address.php new file mode 100644 index 00000000..152badce --- /dev/null +++ b/src/Faker/Provider/ua_UA/Address.php @@ -0,0 +1,344 @@ +generator->parse($format); + } + + public static function streetPrefix() + { + return static::randomElement(static::$streetPrefix); + } +} diff --git a/src/Faker/Provider/ua_UA/Company.php b/src/Faker/Provider/ua_UA/Company.php new file mode 100644 index 00000000..909252cd --- /dev/null +++ b/src/Faker/Provider/ua_UA/Company.php @@ -0,0 +1,43 @@ +generator->parse($format); + } + + public static function companyPrefix() + { + return static::randomElement(static::$companyPrefix); + } + + public static function companyName() + { + return static::randomElement(static::$companyName); + } +} diff --git a/src/Faker/Provider/ua_UA/Internet.php b/src/Faker/Provider/ua_UA/Internet.php new file mode 100644 index 00000000..79bc23fd --- /dev/null +++ b/src/Faker/Provider/ua_UA/Internet.php @@ -0,0 +1,32 @@ +generator->parse($format)) + ) + ); + } + + /** + * @example 'smart-dizayn' + */ + public function domainWord() + { + $company = $this->generator->format('companyUrl'); + $company = str_replace(' ', '-', $company); + $company = Transliteration::transliterate($company); + return $company; + } +} diff --git a/src/Faker/Provider/ua_UA/Person.php b/src/Faker/Provider/ua_UA/Person.php new file mode 100644 index 00000000..2da7a773 --- /dev/null +++ b/src/Faker/Provider/ua_UA/Person.php @@ -0,0 +1,74 @@ +"", + "`"=>"", + "а"=>"a","А"=>"a", + "б"=>"b","Б"=>"b", + "в"=>"v","В"=>"v", + "г"=>"g","Г"=>"g", + "д"=>"d","Д"=>"d", + "е"=>"e","Е"=>"e", + "ж"=>"zh","Ж"=>"zh", + "з"=>"z","З"=>"z", + "и"=>"i","И"=>"i", + "й"=>"y","Й"=>"y", + "к"=>"k","К"=>"k", + "л"=>"l","Л"=>"l", + "м"=>"m","М"=>"m", + "н"=>"n","Н"=>"n", + "о"=>"o","О"=>"o", + "п"=>"p","П"=>"p", + "р"=>"r","Р"=>"r", + "с"=>"s","С"=>"s", + "т"=>"t","Т"=>"t", + "у"=>"u","У"=>"u", + "ф"=>"f","Ф"=>"f", + "х"=>"h","Х"=>"h", + "ц"=>"c","Ц"=>"c", + "ч"=>"ch","Ч"=>"ch", + "ш"=>"sh","Ш"=>"sh", + "щ"=>"sch","Щ"=>"sch", + "ъ"=>"","Ъ"=>"", + "ы"=>"y","Ы"=>"y", + "ь"=>"","Ь"=>"", + "э"=>"e","Э"=>"e", + "ю"=>"yu","Ю"=>"yu", + "я"=>"ya","Я"=>"ya", + "і"=>"i","І"=>"i", + "ї"=>"yi","Ї"=>"yi", + "є"=>"e","Є"=>"e" + ); + return strtr($string, $replace); + } +} \ No newline at end of file