10f180719SGreg Roach<?php 20f180719SGreg Roach 30f180719SGreg Roach/** 40f180719SGreg Roach * webtrees: online genealogy 5*5bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team 60f180719SGreg Roach * This program is free software: you can redistribute it and/or modify 70f180719SGreg Roach * it under the terms of the GNU General Public License as published by 80f180719SGreg Roach * the Free Software Foundation, either version 3 of the License, or 90f180719SGreg Roach * (at your option) any later version. 100f180719SGreg Roach * This program is distributed in the hope that it will be useful, 110f180719SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 120f180719SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 130f180719SGreg Roach * GNU General Public License for more details. 140f180719SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 160f180719SGreg Roach */ 170f180719SGreg Roach 180f180719SGreg Roachdeclare(strict_types=1); 190f180719SGreg Roach 200f180719SGreg Roachnamespace Fisharebest\Webtrees\Module; 210f180719SGreg Roach 220f180719SGreg Roachuse Fisharebest\Localization\Locale\LocaleInterface; 230f180719SGreg Roachuse Fisharebest\Localization\Locale\LocaleHi; 240f180719SGreg Roach 250f180719SGreg Roach/** 260f180719SGreg Roach * Class LanguageHindi. 270f180719SGreg Roach */ 280f180719SGreg Roachclass LanguageHindi extends AbstractModule implements ModuleLanguageInterface 290f180719SGreg Roach{ 300f180719SGreg Roach use ModuleLanguageTrait; 310f180719SGreg Roach 320f180719SGreg Roach /** 330f180719SGreg Roach * @return LocaleInterface 340f180719SGreg Roach */ 350f180719SGreg Roach public function locale(): LocaleInterface 360f180719SGreg Roach { 370f180719SGreg Roach return new LocaleHi(); 380f180719SGreg Roach } 390f180719SGreg Roach} 40