Home
last modified time | relevance | path

Searched refs:locale (Results 1 – 25 of 114) sorted by relevance

12345

/webtrees/app/
H A DI18N.php208 private static LocaleInterface $locale; variable in Fisharebest\\Webtrees\\I18N
223 … ->map(static fn (ModuleLanguageInterface $module): LocaleInterface => $module->locale());
253 return self::$locale->digits((string) $n);
263 return self::$locale->direction();
276 self::$locale = Locale::create($code);
279 …$translation_file = __DIR__ . '/../resources/lang/' . self::$locale->languageTag() . '/messages.ph…
288 …$po_file = Webtrees::ROOT_DIR . 'resources/lang/' . self::$locale->languageTag() . '/messages…
300 …ce $item): array => array_merge($carry, $item->customTranslations(self::$locale->languageTag())), …
304 … ->first(fn (ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === $code);
308 self::$translator = new Translator($translations, self::$locale->pluralRule());
[all …]
H A DTimestamp.php35 public function __construct(int $timestamp, string $timezone, string $locale) argument
38 $this->carbon->locale($locale);
86 $this->carbon->locale
95 $this->carbon->locale
104 $this->carbon->locale
113 $this->carbon->locale
122 $this->carbon->locale
131 $this->carbon->locale
140 $this->carbon->locale
149 $this->carbon->locale
[all …]
/webtrees/resources/views/layouts/
H A Dadministration.phtml25 <html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
62 <?php foreach (I18N::activeLocales() as $locale) : ?>
63locale->languageTag() ?> <?= I18N::languageTag() === $locale->languageTag() ? ' active' : '' ?>" h…
H A Dreport.phtml14 <html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Derror.phtml13 <html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dsetup.phtml13 <html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Doffline.phtml16 <html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
/webtrees/app/Http/Middleware/
H A DUseLanguage.php63 I18N::init($language->locale()->languageTag());
64 Session::put('language', $language->locale()->languageTag());
86 …->first(static fn (ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === …
90 … ->map(static fn (ModuleLanguageInterface $module): LocaleInterface => $module->locale());
93 … $locale = Locale::httpAcceptLanguage($request->getServerParams(), $locales->all(), $default);
96 …tic fn (ModuleLanguageInterface $module): bool => $module->locale()->languageTag() === $locale->la…
/webtrees/resources/views/edit/
H A Dlanguage-checkboxes.phtml13 <?php foreach (I18N::activeLocales() as $locale) : ?>
15 <label title="<?= e($locale->languageTag()) ?>">
16 …put type="checkbox" name="languages[]" value="<?= e($locale->languageTag()) ?>" <?= in_array($loca…
17 <?= $locale->endonym() ?>
/webtrees/resources/views/setup/
H A Dstep-1-language.phtml48 <?php foreach ($locales as $locale) : ?>
49 …<option value="<?= $locale->languageTag() ?>" <?= $lang === $locale->languageTag() ? 'selected' : …
50 <?= $locale->endonym() ?>
/webtrees/app/Http/RequestHandlers/
H A DAccountEdit.php80 $locale = $module->locale();
82 return [$locale->languageTag() => $locale->endonym()];
H A DUserEditPage.php88 $locale = $module->locale();
90 return [$locale->languageTag() => $locale->endonym()];
H A DUserListData.php75 $locale = $module->locale();
77 return [$locale->languageTag() => $locale->endonym()];
/webtrees/app/Module/
H A DModuleLanguageTrait.php232 return $this->locale()->endonym();
237 …return I18N::translate('Language') . ' — ' . $this->title() . ' — ' . $this->locale()->languageTag…
243 public function locale(): LocaleInterface function
/webtrees/app/Census/
H A DCensus.php28 * @param string $locale
32 public static function censusPlaces(string $locale): array argument
34 switch ($locale) {
/webtrees/app/Factories/
H A DTimestampFactory.php50 $locale = I18N::locale()->code();
52 return new Timestamp($timestamp, $timezone, $locale);
/webtrees/app/Date/
H A DJewishDate.php87 if (I18N::locale()->script()->code() === 'Hebr') {
104 if (I18N::locale()->script()->code() === 'Hebr') {
118 if (I18N::locale()->script()->code() === 'Hebr') {
/webtrees/resources/views/emails/
H A Dapprove-user-html.phtml16 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dpassword-request-html.phtml14 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dnew-version-html.phtml16 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dmessage-copy-html.phtml16 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dregister-user-html.phtml15 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dpending-changes-html.phtml16 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dmessage-user-html.phtml16 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
H A Dverify-notify-html.phtml14 <div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">

12345