summaryrefslogtreecommitdiff
path: root/protected/extensions/ddeditor/messages/messages.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/extensions/ddeditor/messages/messages.php')
-rw-r--r--protected/extensions/ddeditor/messages/messages.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/protected/extensions/ddeditor/messages/messages.php b/protected/extensions/ddeditor/messages/messages.php
new file mode 100644
index 0000000..3de8acf
--- /dev/null
+++ b/protected/extensions/ddeditor/messages/messages.php
@@ -0,0 +1,17 @@
+<?php
+// This is hopefully a config array for the messages
+return array(
+ 'sourcePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..', //root dir of all source
+ 'messagePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages', //root dir of message translations
+ 'languages' => array('de','en'), //array of lang codes to translate to, e.g. es_mx
+ 'fileTypes' => array('php','js',), //array of extensions no dot all others excluded
+ 'exclude' => array( //list of paths or files to exclude
+ '.svn',
+ 'yiic',
+ 'yiic.php',
+ '/gii',
+ '/messages',
+ ),
+ //'translator' => 'Yii:t', //this is the default but lets be complete
+);
+?>