mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-21 12:12:59 +08:00
ac9a65945f
- Reduced app settings down to what's required. - Used new view-shared $locale object instead of using globals via config. - Aligned language used to default on "locale" instead of mixing locale/language. For #4501
46 lines
877 B
PHP
46 lines
877 B
PHP
<?php
|
|
|
|
namespace BookStack\Translation;
|
|
|
|
class LocaleDefinition
|
|
{
|
|
public function __construct(
|
|
protected string $appName,
|
|
protected string $isoName,
|
|
protected bool $isRtl
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* Provide the BookStack-specific locale name.
|
|
*/
|
|
public function appLocale(): string
|
|
{
|
|
return $this->appName;
|
|
}
|
|
|
|
/**
|
|
* Provide the ISO-aligned locale name.
|
|
*/
|
|
public function isoLocale(): string
|
|
{
|
|
return $this->isoName;
|
|
}
|
|
|
|
/**
|
|
* Returns a string suitable for the HTML "lang" attribute.
|
|
*/
|
|
public function htmlLang(): string
|
|
{
|
|
return str_replace('_', '-', $this->isoName);
|
|
}
|
|
|
|
/**
|
|
* Returns a string suitable for the HTML "dir" attribute.
|
|
*/
|
|
public function htmlDirection(): string
|
|
{
|
|
return $this->isRtl ? 'rtl' : 'ltr';
|
|
}
|
|
}
|