From 69acc8f072c327704e6ae352036a24d0c597b28e Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Sun, 21 Jul 2013 19:23:24 +0400 Subject: [PATCH] added missing GettextMessageSource phpdoc --- framework/yii/i18n/GettextMessageSource.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/framework/yii/i18n/GettextMessageSource.php b/framework/yii/i18n/GettextMessageSource.php index 5e29487..745eb38 100644 --- a/framework/yii/i18n/GettextMessageSource.php +++ b/framework/yii/i18n/GettextMessageSource.php @@ -9,6 +9,23 @@ namespace yii\i18n; use Yii; +/** + * GettextMessageSource represents a message source that is based on GNU Gettext. + * + * Each GettextMessageSource instance represents the message tranlations + * for a single domain. And each message category represents a message context + * in Gettext. Translated messages are stored as either a MO or PO file, + * depending on the [[useMoFile]] property value. + * + * All translations are saved under the [[basePath]] directory. + * + * Translations in one language are kept as MO or PO files under an individual + * subdirectory whose name is the language ID. The file name is specified via + * [[catalog]] property, which defaults to 'messages'. + * + * @author Qiang Xue + * @since 2.0 + */ class GettextMessageSource extends MessageSource { const MO_FILE_EXT = '.mo';