summaryrefslogtreecommitdiff
path: root/vendor/fisharebest/localization/src/Locale/LocaleYi.php
blob: 7e3660a43be0b4386243a580d2e306bbf08bb71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php namespace Fisharebest\Localization\Locale;

use Fisharebest\Localization\Language\LanguageYi;

/**
 * Class LocaleYi - Yiddish
 *
 * @author        Greg Roach <fisharebest@gmail.com>
 * @copyright (c) 2015 Greg Roach
 * @license       GPLv3+
 */
class LocaleYi extends AbstractLocale implements LocaleInterface {
	/** {@inheritdoc} */
	public function endonym() {
		return 'ייִדיש';
	}

	/** {@inheritdoc} */
	public function language() {
		return new LanguageYi;
	}
}