PHP 클래스 Cake\Chronos\Translator

파일 보기 프로젝트 열기: cakephp/chronos

공개 프로퍼티들

프로퍼티 타입 설명
$strings array Translation strings.

공개 메소드들

메소드 설명
exists ( string $key ) : boolean Check if a translation key exists.
plural ( string $key, string $count, array $vars = [] ) : string Get a plural message.
singular ( string $key, array $vars = [] ) : string Get a singular message.

메소드 상세

exists() 공개 메소드

Check if a translation key exists.
public exists ( string $key ) : boolean
$key string The key to check.
리턴 boolean Whether or not the key exists.

plural() 공개 메소드

Get a plural message.
public plural ( string $key, string $count, array $vars = [] ) : string
$key string The key to use.
$count string The number of items in the translation.
$vars array Additional context variables.
리턴 string The translated message or ''.

singular() 공개 메소드

Get a singular message.
public singular ( string $key, array $vars = [] ) : string
$key string The key to use.
$vars array Additional context variables.
리턴 string The translated message or ''.

프로퍼티 상세

$strings 공개적으로 정적으로 프로퍼티

Translation strings.
public static array $strings
리턴 array