summaryrefslogtreecommitdiff
path: root/framework/I18N
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-21 10:18:43 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-21 10:18:43 +0100
commit53e4cd65205ac33d7dbc61a767f467c1b896dfc6 (patch)
tree836c37fadf024e7c64926aae5e24d539f3979c49 /framework/I18N
parentea2868ad7d79d440d40fbcb5773c9dcec3babbcc (diff)
Removed @version doc comments
Diffstat (limited to 'framework/I18N')
-rw-r--r--framework/I18N/TChoiceFormat.php1
-rw-r--r--framework/I18N/TDateFormat.php1
-rw-r--r--framework/I18N/TGlobalization.php1
-rw-r--r--framework/I18N/TGlobalizationAutoDetect.php2
-rw-r--r--framework/I18N/TI18NControl.php1
-rw-r--r--framework/I18N/TNumberFormat.php1
-rw-r--r--framework/I18N/TTranslate.php1
-rw-r--r--framework/I18N/TTranslateParameter.php1
-rw-r--r--framework/I18N/Translation.php1
-rw-r--r--framework/I18N/core/ChoiceFormat.php2
-rw-r--r--framework/I18N/core/DateFormat.php2
-rw-r--r--framework/I18N/core/DateTimeFormatInfo.php2
-rw-r--r--framework/I18N/core/Gettext/TGettext.php2
-rw-r--r--framework/I18N/core/Gettext/TGettext_MO.php2
-rw-r--r--framework/I18N/core/Gettext/TGettext_PO.php2
-rw-r--r--framework/I18N/core/HTTPNegotiator.php2
-rw-r--r--framework/I18N/core/IMessageSource.php2
-rw-r--r--framework/I18N/core/MessageFormat.php2
-rw-r--r--framework/I18N/core/MessageSource.php2
-rw-r--r--framework/I18N/core/MessageSource_MySQL.php2
-rw-r--r--framework/I18N/core/MessageSource_SQLite.php2
-rw-r--r--framework/I18N/core/MessageSource_XLIFF.php2
-rw-r--r--framework/I18N/core/MessageSource_gettext.php2
-rw-r--r--framework/I18N/core/NumberFormat.php2
-rw-r--r--framework/I18N/core/NumberFormatInfo.php2
-rw-r--r--framework/I18N/core/TCache_Lite.php1
-rw-r--r--framework/I18N/core/TMessageSourceIOException.php2
-rw-r--r--framework/I18N/core/util.php1
28 files changed, 0 insertions, 46 deletions
diff --git a/framework/I18N/TChoiceFormat.php b/framework/I18N/TChoiceFormat.php
index 20130e3e..5fa232b8 100644
--- a/framework/I18N/TChoiceFormat.php
+++ b/framework/I18N/TChoiceFormat.php
@@ -72,7 +72,6 @@ Prado::using('System.I18N.TTranslate');
* Additional round brackets can also be used to perform grouping.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 21:38:49 EST 2004
* @package Prado\I18N
*/
class TChoiceFormat extends TTranslate
diff --git a/framework/I18N/TDateFormat.php b/framework/I18N/TDateFormat.php
index f5b2c6ec..638930fe 100644
--- a/framework/I18N/TDateFormat.php
+++ b/framework/I18N/TDateFormat.php
@@ -57,7 +57,6 @@ Prado::using('System.I18N.TI18NControl');
* shown instead of todays date and time.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Sat Dec 11 15:25:11 EST 2004
* @package Prado\I18N
*/
class TDateFormat extends TI18NControl implements IDataRenderer
diff --git a/framework/I18N/TGlobalization.php b/framework/I18N/TGlobalization.php
index 67c77092..5ac7f616 100644
--- a/framework/I18N/TGlobalization.php
+++ b/framework/I18N/TGlobalization.php
@@ -20,7 +20,6 @@ namespace Prado\I18N;
* setting the Culture based on browser settings.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
* @package Prado\I18N
* @since 3.0
*/
diff --git a/framework/I18N/TGlobalizationAutoDetect.php b/framework/I18N/TGlobalizationAutoDetect.php
index e5488e17..b3e0f5db 100644
--- a/framework/I18N/TGlobalizationAutoDetect.php
+++ b/framework/I18N/TGlobalizationAutoDetect.php
@@ -6,7 +6,6 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
* @package Prado\I18N
*/
@@ -22,7 +21,6 @@ Prado::using('System.I18N.core.HTTPNegotiator');
* culture using the user browser language settings.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
* @package Prado\I18N
*/
class TGlobalizationAutoDetect extends TGlobalization
diff --git a/framework/I18N/TI18NControl.php b/framework/I18N/TI18NControl.php
index 73f44420..b137604c 100644
--- a/framework/I18N/TI18NControl.php
+++ b/framework/I18N/TI18NControl.php
@@ -27,7 +27,6 @@ namespace Prado\I18N;
* Application/Page is used. The default is UTF-8.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Sat Dec 11 15:25:11 EST 2004
* @package Prado\I18N
*/
class TI18NControl extends TControl
diff --git a/framework/I18N/TNumberFormat.php b/framework/I18N/TNumberFormat.php
index 0af6d893..0b327be3 100644
--- a/framework/I18N/TNumberFormat.php
+++ b/framework/I18N/TNumberFormat.php
@@ -62,7 +62,6 @@ Prado::using('System.I18N.TI18NControl');
* shown instead of the default currency Value/Pattern.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Sat Dec 11 17:49:56 EST 2004
* @package Prado\I18N
*/
class TNumberFormat extends TI18NControl implements IDataRenderer
diff --git a/framework/I18N/TTranslate.php b/framework/I18N/TTranslate.php
index 516c3416..9e433ddc 100644
--- a/framework/I18N/TTranslate.php
+++ b/framework/I18N/TTranslate.php
@@ -58,7 +58,6 @@ Prado::using('System.I18N.TI18NControl');
* Default is to trim the contents.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 21:38:49 EST 2004
* @package Prado\I18N
*/
class TTranslate extends TI18NControl
diff --git a/framework/I18N/TTranslateParameter.php b/framework/I18N/TTranslateParameter.php
index 9a60f772..5d8cdf23 100644
--- a/framework/I18N/TTranslateParameter.php
+++ b/framework/I18N/TTranslateParameter.php
@@ -37,7 +37,6 @@ namespace Prado\I18N;
* Default is to trim the contents.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v3.0, last update on Friday, 6 January 2006
* @package Prado\I18N
*/
class TTranslateParameter extends TControl
diff --git a/framework/I18N/Translation.php b/framework/I18N/Translation.php
index 14e58031..6059e34f 100644
--- a/framework/I18N/Translation.php
+++ b/framework/I18N/Translation.php
@@ -23,7 +23,6 @@ Prado::using('System.I18N.core.MessageFormat');
* Provides translation using a static MessageFormatter.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Tue Dec 28 11:54:48 EST 2004
* @package Prado\I18N
*/
class Translation extends TComponent
diff --git a/framework/I18N/core/ChoiceFormat.php b/framework/I18N/core/ChoiceFormat.php
index 6b61bb17..c42a2dda 100644
--- a/framework/I18N/core/ChoiceFormat.php
+++ b/framework/I18N/core/ChoiceFormat.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.1 $ $Date: 2005/01/11 07:19:39 $
* @package Prado\I18N\core
*/
@@ -74,7 +73,6 @@ namespace Prado\I18N\core;
* Additional round brackets can also be used to perform grouping.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 20:46:16 EST 2004
* @package Prado\I18N\core
*/
class ChoiceFormat
diff --git a/framework/I18N/core/DateFormat.php b/framework/I18N/core/DateFormat.php
index 50bdf53c..22e86de8 100644
--- a/framework/I18N/core/DateFormat.php
+++ b/framework/I18N/core/DateFormat.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.8 $ $Date: 2005/12/15 07:14:49 $
* @package Prado\I18N\core
*/
@@ -44,7 +43,6 @@ require_once(dirname(__FILE__).'/util.php');
* in the properties of a DateTimeFormatInfo.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Sat Dec 04 14:10:49 EST 2004
* @package Prado\I18N\core
*/
class DateFormat
diff --git a/framework/I18N/core/DateTimeFormatInfo.php b/framework/I18N/core/DateTimeFormatInfo.php
index 2f6e894f..2f64569c 100644
--- a/framework/I18N/core/DateTimeFormatInfo.php
+++ b/framework/I18N/core/DateTimeFormatInfo.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.2 $ $Date: 2005/01/05 03:15:14 $
* @package Prado\I18N\core
*/
@@ -74,7 +73,6 @@ require_once(dirname(__FILE__).'/CultureInfo.php');
* </code>
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 03 22:30:31 EST 2004
* @package Prado\I18N\core
*/
class DateTimeFormatInfo
diff --git a/framework/I18N/core/Gettext/TGettext.php b/framework/I18N/core/Gettext/TGettext.php
index 860a9208..b9207eb8 100644
--- a/framework/I18N/core/Gettext/TGettext.php
+++ b/framework/I18N/core/Gettext/TGettext.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/01/09 23:36:23 $
* @package Prado\I18N\core\Gettext
*/
@@ -54,7 +53,6 @@ namespace Prado\I18N\core\Gettext;
* #################################################################
*
* @author Michael Wallner <mike@php.net>
- * @version $Revision: 1.4 $
* @access public
* @package Prado\I18N\core\Gettext
*/
diff --git a/framework/I18N/core/Gettext/TGettext_MO.php b/framework/I18N/core/Gettext/TGettext_MO.php
index d78b88e4..a5993b49 100644
--- a/framework/I18N/core/Gettext/TGettext_MO.php
+++ b/framework/I18N/core/Gettext/TGettext_MO.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.3 $ $Date: 2005/08/27 03:21:12 $
* @package Prado\I18N\core\Gettext
*/
@@ -47,7 +46,6 @@ require_once dirname(__FILE__).'/TGettext.php';
* GNU MO file reader and writer.
*
* @author Michael Wallner <mike@php.net>
- * @version $Revision: 1.3 $
* @access public
* @package Prado\I18N\core\Gettext
*/
diff --git a/framework/I18N/core/Gettext/TGettext_PO.php b/framework/I18N/core/Gettext/TGettext_PO.php
index 9651da2e..64a713c3 100644
--- a/framework/I18N/core/Gettext/TGettext_PO.php
+++ b/framework/I18N/core/Gettext/TGettext_PO.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.2 $ $Date: 2005/01/05 03:15:14 $
* @package Prado\I18N\core\Gettext
*/
@@ -47,7 +46,6 @@ require_once dirname(__FILE__).'/TGettext.php';
* GNU PO file reader and writer.
*
* @author Michael Wallner <mike@php.net>
- * @version $Revision: 1.2 $
* @access public
* @package Prado\I18N\core\Gettext
*/
diff --git a/framework/I18N/core/HTTPNegotiator.php b/framework/I18N/core/HTTPNegotiator.php
index 9c96d568..e9f1d0e0 100644
--- a/framework/I18N/core/HTTPNegotiator.php
+++ b/framework/I18N/core/HTTPNegotiator.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.2 $ $Date: 2005/01/05 03:15:14 $
* @package Prado\I18N\core
*/
@@ -30,7 +29,6 @@ require_once(dirname(__FILE__).'/CultureInfo.php');
* Get the language and charset information from the client browser.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 16:01:35 EST 2004
* @package Prado\I18N\core
*/
class HTTPNegotiator
diff --git a/framework/I18N/core/IMessageSource.php b/framework/I18N/core/IMessageSource.php
index 32c56ebf..e7ed2dc7 100644
--- a/framework/I18N/core/IMessageSource.php
+++ b/framework/I18N/core/IMessageSource.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.3 $ $Date: 2005/01/09 22:15:32 $
* @package Prado\I18N\core
*/
@@ -28,7 +27,6 @@ namespace Prado\I18N\core;
* catalogue.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 17:40:19 EST 2004
* @package Prado\I18N\core
*/
interface IMessageSource
diff --git a/framework/I18N/core/MessageFormat.php b/framework/I18N/core/MessageFormat.php
index 64e53454..d4868b1b 100644
--- a/framework/I18N/core/MessageFormat.php
+++ b/framework/I18N/core/MessageFormat.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.5 $ $Date: 2005/08/27 03:21:12 $
* @package Prado\I18N\core
*/
@@ -50,7 +49,6 @@ require_once(dirname(__FILE__).'/util.php');
* </code>
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 20:46:16 EST 2004
* @package Prado\I18N\core
*/
class MessageFormat
diff --git a/framework/I18N/core/MessageSource.php b/framework/I18N/core/MessageSource.php
index db24237a..4643b058 100644
--- a/framework/I18N/core/MessageSource.php
+++ b/framework/I18N/core/MessageSource.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/12/17 06:11:28 $
* @package Prado\I18N\core
*/
@@ -68,7 +67,6 @@ require_once(dirname(__FILE__).'/MessageCache.php');
* </code>
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 19:55:49 EST 2004
* @package Prado\I18N\core
*/
abstract class MessageSource implements IMessageSource
diff --git a/framework/I18N/core/MessageSource_MySQL.php b/framework/I18N/core/MessageSource_MySQL.php
index 52715ecd..58618dc3 100644
--- a/framework/I18N/core/MessageSource_MySQL.php
+++ b/framework/I18N/core/MessageSource_MySQL.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/02/25 09:59:40 $
* @package Prado\I18N\core
*/
@@ -37,7 +36,6 @@ require_once(dirname(__FILE__).'/util.php');
* See the MessageSource::factory() method to instantiate this class.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 16:58:58 EST 2004
* @package Prado\I18N\core
*/
class MessageSource_MySQL extends MessageSource
diff --git a/framework/I18N/core/MessageSource_SQLite.php b/framework/I18N/core/MessageSource_SQLite.php
index 78e4e78d..1e0182e9 100644
--- a/framework/I18N/core/MessageSource_SQLite.php
+++ b/framework/I18N/core/MessageSource_SQLite.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/02/25 09:59:40 $
* @package Prado\I18N\core
*/
@@ -37,7 +36,6 @@ require_once(dirname(__FILE__).'/util.php');
* See the MessageSource::factory() method to instantiate this class.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 16:58:58 EST 2004
* @package Prado\I18N\core
*/
class MessageSource_SQLite extends MessageSource
diff --git a/framework/I18N/core/MessageSource_XLIFF.php b/framework/I18N/core/MessageSource_XLIFF.php
index 3b3a8813..2a2353ea 100644
--- a/framework/I18N/core/MessageSource_XLIFF.php
+++ b/framework/I18N/core/MessageSource_XLIFF.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.8 $ $Date: 2005/12/17 06:11:28 $
* @package Prado\I18N\core
*/
@@ -36,7 +35,6 @@ require_once(dirname(__FILE__).'/MessageSource.php');
* See the MessageSource::factory() method to instantiate this class.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 16:18:44 EST 2004
* @package Prado\I18N\core
*/
class MessageSource_XLIFF extends MessageSource
diff --git a/framework/I18N/core/MessageSource_gettext.php b/framework/I18N/core/MessageSource_gettext.php
index f5af9f0d..9c7167cb 100644
--- a/framework/I18N/core/MessageSource_gettext.php
+++ b/framework/I18N/core/MessageSource_gettext.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.7 $ $Date: 2005/12/17 06:11:28 $
* @package Prado\I18N\core
*/
@@ -38,7 +37,6 @@ require_once(dirname(__FILE__).'/Gettext/TGettext.php');
* See the MessageSource::factory() method to instantiate this class.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 24 16:18:44 EST 2004
* @package Prado\I18N\core
*/
class MessageSource_gettext extends MessageSource
diff --git a/framework/I18N/core/NumberFormat.php b/framework/I18N/core/NumberFormat.php
index 4bd8c838..c6495d0c 100644
--- a/framework/I18N/core/NumberFormat.php
+++ b/framework/I18N/core/NumberFormat.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.6 $ $Date: 2005/12/20 09:32:42 $
* @package Prado\I18N\core
*/
@@ -70,7 +69,6 @@ require_once(dirname(__FILE__).'/util.php');
* For each culture, the symbol for each currency may be different.
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Fri Dec 10 18:10:20 EST 2004
* @package Prado\I18N\core
*/
class NumberFormat
diff --git a/framework/I18N/core/NumberFormatInfo.php b/framework/I18N/core/NumberFormatInfo.php
index 4b37e64d..c48f6e6b 100644
--- a/framework/I18N/core/NumberFormatInfo.php
+++ b/framework/I18N/core/NumberFormatInfo.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.3 $ $Date: 2005/08/04 05:27:19 $
* @package Prado\I18N\core
*/
@@ -44,7 +43,6 @@ require_once(dirname(__FILE__).'/CultureInfo.php');
*
*
* @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version v1.0, last update on Sun Dec 05 14:48:26 EST 2004
* @package Prado\I18N\core
*/
class NumberFormatInfo
diff --git a/framework/I18N/core/TCache_Lite.php b/framework/I18N/core/TCache_Lite.php
index fddba41b..eaffd9ee 100644
--- a/framework/I18N/core/TCache_Lite.php
+++ b/framework/I18N/core/TCache_Lite.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.3 $ $Date: 2005/10/09 10:24:12 $
* @package Prado\I18N\core
*/
diff --git a/framework/I18N/core/TMessageSourceIOException.php b/framework/I18N/core/TMessageSourceIOException.php
index dea7031e..70fa718e 100644
--- a/framework/I18N/core/TMessageSourceIOException.php
+++ b/framework/I18N/core/TMessageSourceIOException.php
@@ -12,7 +12,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/12/17 06:11:28 $
* @package Prado\I18N\core
*/
@@ -23,7 +22,6 @@ namespace Prado\I18N\core;
* data.
*
* @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/12/17 06:11:28 ${DATE} ${TIME} $
* @package Prado\I18N\core
*/
class TMessageSourceIOException extends TException
diff --git a/framework/I18N/core/util.php b/framework/I18N/core/util.php
index c5f15467..65af6b89 100644
--- a/framework/I18N/core/util.php
+++ b/framework/I18N/core/util.php
@@ -13,7 +13,6 @@
* {@link http://prado.sourceforge.net/}
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.3 $ $Date: 2005/08/27 03:21:12 $
* @package Prado\I18N\core
*/