summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-20 19:31:16 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-20 19:31:16 +0100
commit151aeac41b60f094242e65b6dbccbc1e95c5c27d (patch)
treee1cb27c43f710ff071aa723588ca7f27bb3a7caf
parent103578448db0ce03ea231a10e8234b2d8cb27e34 (diff)
One class per file: framework/I18N/
-rw-r--r--framework/I18N/core/Gettext/TGettext_MO.php (renamed from framework/I18N/core/Gettext/MO.php)0
-rw-r--r--framework/I18N/core/Gettext/TGettext_PO.php (renamed from framework/I18N/core/Gettext/PO.php)0
-rw-r--r--framework/I18N/core/MessageSource.php18
-rw-r--r--framework/I18N/core/TMessageSourceIOException.php31
4 files changed, 33 insertions, 16 deletions
diff --git a/framework/I18N/core/Gettext/MO.php b/framework/I18N/core/Gettext/TGettext_MO.php
index 3e84ef2e..3e84ef2e 100644
--- a/framework/I18N/core/Gettext/MO.php
+++ b/framework/I18N/core/Gettext/TGettext_MO.php
diff --git a/framework/I18N/core/Gettext/PO.php b/framework/I18N/core/Gettext/TGettext_PO.php
index 950a5de3..950a5de3 100644
--- a/framework/I18N/core/Gettext/PO.php
+++ b/framework/I18N/core/Gettext/TGettext_PO.php
diff --git a/framework/I18N/core/MessageSource.php b/framework/I18N/core/MessageSource.php
index 7d5d6ed3..50c13334 100644
--- a/framework/I18N/core/MessageSource.php
+++ b/framework/I18N/core/MessageSource.php
@@ -1,5 +1,4 @@
<?php
-
/**
* MessageSource class file.
*
@@ -17,6 +16,7 @@
* @package System.I18N.core
*/
+
/**
* Get the IMessageSource interface.
*/
@@ -318,18 +318,4 @@ abstract class MessageSource implements IMessageSource
{
return array();
}
-}
-
-
-/**
- * TMessageSourceIOException thrown when unable to modify message source
- * data.
- *
- * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.4 $ $Date: 2005/12/17 06:11:28 ${DATE} ${TIME} $
- * @package System.I18N.core
- */
-class TMessageSourceIOException extends TException
-{
-
-}
+} \ No newline at end of file
diff --git a/framework/I18N/core/TMessageSourceIOException.php b/framework/I18N/core/TMessageSourceIOException.php
new file mode 100644
index 00000000..6eaaf939
--- /dev/null
+++ b/framework/I18N/core/TMessageSourceIOException.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * MessageSource class file.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the BSD License.
+ *
+ * Copyright(c) 2004 by Qiang Xue. All rights reserved.
+ *
+ * To contact the author write to {@link mailto:qiang.xue@gmail.com Qiang Xue}
+ * The latest version of PRADO can be obtained from:
+ * {@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 System.I18N.core
+ */
+
+
+/**
+ * TMessageSourceIOException thrown when unable to modify message source
+ * data.
+ *
+ * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
+ * @version $Revision: 1.4 $ $Date: 2005/12/17 06:11:28 ${DATE} ${TIME} $
+ * @package System.I18N.core
+ */
+class TMessageSourceIOException extends TException
+{
+
+} \ No newline at end of file