From c3a71941362d9fa21823b3180828c8a81036c652 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Fri, 9 Dec 2011 06:25:08 +0400 Subject: [PATCH] removed old version numbers --- framework/YiiBase.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/framework/YiiBase.php b/framework/YiiBase.php index 7ddda18..738df8e 100644 --- a/framework/YiiBase.php +++ b/framework/YiiBase.php @@ -473,7 +473,7 @@ class YiiBase /** * Translates a message to the specified language. - * Starting from version 1.0.2, this method supports choice format (see {@link CChoiceFormat}), + * This method supports choice format (see {@link CChoiceFormat}), * i.e., the message returned will be chosen from a few candidates according to the given * number value. This feature is mainly used to solve plural format issue in case * a message has different plural forms in some languages. @@ -482,16 +482,15 @@ class YiiBase * more interpretation about message category. * @param string $message the original message * @param array $params parameters to be applied to the message using strtr. - * Starting from version 1.0.2, the first parameter can be a number without key. + * The first parameter can be a number without key. * And in this case, the method will call {@link CChoiceFormat::format} to choose * an appropriate message translation. - * Starting from version 1.1.6 you can pass parameter for {@link CChoiceFormat::format} + * You can pass parameter for {@link CChoiceFormat::format} * or plural forms format without wrapping it with array. * @param string $source which message source application component to use. * Defaults to null, meaning using 'coreMessages' for messages belonging to * the 'yii' category and using 'messages' for the rest messages. * @param string $language the target language. If null (default), the {@link CApplication::getLanguage application language} will be used. - * This parameter has been available since version 1.0.3. * @return string the translated message * @see CMessageSource */