1 | <?php
|
---|
2 | if( ! defined( 'XP2_MODINFO_LANG_INCLUDED' ) ) {
|
---|
3 | define( 'XP2_MODINFO_LANG_INCLUDED' , 1 ) ;
|
---|
4 |
|
---|
5 | // The name of this module admin menu
|
---|
6 | define("_MI_XP2_MENU_SYS_INFO","System information");
|
---|
7 | define("_MI_XP2_MENU_BLOCK_ADMIN","blocks/permissions");
|
---|
8 | define("_MI_XP2_MENU_BLOCK_CHECK","blocks check");
|
---|
9 | define("_MI_XP2_MENU_WP_ADMIN","WordPress Admin");
|
---|
10 | define("_MI_XP2_MOD_ADMIN","Module Admin");
|
---|
11 |
|
---|
12 | // The name of this module
|
---|
13 | define("_MI_XP2_NAME","blog");
|
---|
14 |
|
---|
15 | // A brief description of this module
|
---|
16 | define("_MI_XP2_DESC","WordPress For XOOPS Community");
|
---|
17 |
|
---|
18 | // Sub menu titles
|
---|
19 | define("_MI_XP2_MENU_POST_NEW","New Post");
|
---|
20 | define("_MI_XP2_MENU_EDIT","Edit Post");
|
---|
21 | define("_MI_XP2_MENU_ADMIN","WordPress Admin");
|
---|
22 | define("_MI_XP2_MENU_XPRESS","XPressME Setting");
|
---|
23 | define("_MI_XP2_MENU_TO_MODULE","to Modules");
|
---|
24 | define("_MI_XP2_TO_UPDATE","Update");
|
---|
25 |
|
---|
26 | // Module Config
|
---|
27 | define("_MI_LIBXML_PATCH","Force a patch for the libxml2 bug in a block");
|
---|
28 | define("_MI_LIBXML_PATCH_DESC","libxml2 Ver 2.70-2.72 have the bug that '<' and '>' are removed.
|
---|
29 | XPressME acquires a version of libxml2 automatically, and it is adapted a patch if it is necessary.
|
---|
30 | When XPressME cannot acquire a version of libxml2, you can let a patch fit it with this option forcibly.");
|
---|
31 |
|
---|
32 | define("_MI_MEMORY_LIMIT","Memory size(MB) at least necessary for module");
|
---|
33 | define("_MI_MEMORY_LIMIT_DESC","If the memory_limit value of php.ini is smaller than this value. Try the re-setting of memory_limit with ini_set('memory_limit', Value);.");
|
---|
34 |
|
---|
35 | // Block Name
|
---|
36 | define("_MI_XP2_BLOCK_COMMENTS","Recent Comments");
|
---|
37 | define("_MI_XP2_BLOCK_CONTENT","Recent Posts with content");
|
---|
38 | define("_MI_XP2_BLOCK_POSTS","Recent Post Title");
|
---|
39 | define("_MI_XP2_BLOCK_CALENDER","Calendar");
|
---|
40 | define("_MI_XP2_BLOCK_POPULAR","Popular post list");
|
---|
41 | define("_MI_XP2_BLOCK_ARCHIVE","Archive");
|
---|
42 | define("_MI_XP2_BLOCK_AUTHORS","Author List");
|
---|
43 | define("_MI_XP2_BLOCK_PAGE","Page");
|
---|
44 | define("_MI_XP2_BLOCK_SEARCH","Search");
|
---|
45 | define("_MI_XP2_BLOCK_TAG","Tag Cloud");
|
---|
46 | define("_MI_XP2_BLOCK_CATEGORY","Category");
|
---|
47 | define("_MI_XP2_BLOCK_META","Meta");
|
---|
48 | define("_MI_XP2_BLOCK_SIDEBAR","Sidebar Navigation");
|
---|
49 | define("_MI_XP2_BLOCK_WIDGET","Widget");
|
---|
50 | define("_MI_XP2_BLOCK_ENHANCED","Enhanced");
|
---|
51 | define("_MI_XP2_BLOCK_BLOG_LIST","Blogs List");
|
---|
52 | define("_MI_XP2_BLOCK_GLOBAL_POSTS","Recent Posts(All blogs)");
|
---|
53 | define("_MI_XP2_BLOCK_GLOBAL_COMM","Recent Comments(All blogs)");
|
---|
54 | define("_MI_XP2_BLOCK_GLOBAL_POPU","Popular post(All blogs)");
|
---|
55 |
|
---|
56 | // Notify Categories
|
---|
57 | define('_MI_XP2_NOTCAT_GLOBAL', 'ALL');
|
---|
58 | define('_MI_XP2_NOTCAT_GLOBALDSC', 'Notification option in the entire blog');
|
---|
59 | define('_MI_XP2_NOTCAT_CAT', 'Category under selection');
|
---|
60 | define('_MI_XP2_NOTCAT_CATDSC', 'Notification option to category under selection');
|
---|
61 | define('_MI_XP2_NOTCAT_AUTHOR', 'Author who is selecting it');
|
---|
62 | define('_MI_XP2_NOTCAT_AUTHORDSC', 'Notification option to author who is selecting it');
|
---|
63 | define('_MI_XP2_NOTCAT_POST', 'Article on display');
|
---|
64 | define('_MI_XP2_NOTCAT_POSTDSC', 'Notification option to article on display');
|
---|
65 |
|
---|
66 | // Each Notifications
|
---|
67 | define('_MI_XP2_NOTIFY_GLOBAL_WAITING', 'Approval waiting');
|
---|
68 | define('_MI_XP2_NOTIFY_GLOBAL_WAITINGCAP', 'It notifies when the contribution and the edit that requires approving are done. Manager exclusive use');
|
---|
69 | define('_MI_XP2_NOTIFY_GLOBAL_WAITINGSBJ', '[{X_SITENAME}] {X_MODULE}: Approval waiting');
|
---|
70 |
|
---|
71 | define('_MI_XP2_NOTIFY_GLOBAL_NEWPOST', 'Contribution of article');
|
---|
72 | define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTCAP', 'It notifies when the article is contributed in either of the entire this blog. ');
|
---|
73 | define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}"');
|
---|
74 |
|
---|
75 | define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENT', 'Comment contribution');
|
---|
76 | define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTCAP', 'It notifies when the comment is contributed in either of the entire this blog. ');
|
---|
77 | define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: "{XPRESS_POST_TITLE}"');
|
---|
78 |
|
---|
79 | define('_MI_XP2_NOTIFY_CAT_NEWPOST', 'Article contribution to selection category');
|
---|
80 | define('_MI_XP2_NOTIFY_CAT_NEWPOSTCAP', 'It notifies when there is an article contribution in this category.');
|
---|
81 | define('_MI_XP2_NOTIFY_CAT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}" (Condition:Category="{XPRESS_CAT_TITLE}")');
|
---|
82 |
|
---|
83 | define('_MI_XP2_NOTIFY_CAT_NEWCOMMENT', 'Comment contribution to selection category');
|
---|
84 | define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTCAP', 'It notifies when there is a comment contribution in this category. ');
|
---|
85 | define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Category="{XPRESS_CAT_TITLE}")');
|
---|
86 |
|
---|
87 | define('_MI_XP2_NOTIFY_AUT_NEWPOST', 'Article contribution by selection contributor');
|
---|
88 | define('_MI_XP2_NOTIFY_AUT_NEWPOSTCAP', 'It notifies when there is an article contribution from this contributor. ');
|
---|
89 | define('_MI_XP2_NOTIFY_AUT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}" (Condition:Author="{XPRESS_AUTH_NAME}")');
|
---|
90 |
|
---|
91 | define('_MI_XP2_NOTIFY_AUT_NEWCOMMENT', 'Comment contribution to selection contributor article');
|
---|
92 | define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTCAP', 'It notifies when the comment contribution is in the article by this contributor. ');
|
---|
93 | define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Author="{XPRESS_AUTH_NAME}")');
|
---|
94 |
|
---|
95 | define('_MI_XP2_NOTIFY_POST_EDITPOST', 'Article change');
|
---|
96 | define('_MI_XP2_NOTIFY_POST_EDITPOSTCAP', 'It notifies when there is a change in the article on the display. ');
|
---|
97 | define('_MI_XP2_NOTIFY_POST_EDITPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}"Change (Condition:Article specification)');
|
---|
98 |
|
---|
99 | define('_MI_XP2_NOTIFY_POST_NEWCOMMENT', 'Comment contribution to article');
|
---|
100 | define('_MI_XP2_NOTIFY_POST_NEWCOMMENTCAP', 'It notifies when the comment is contributed in the article on the display. ');
|
---|
101 | define('_MI_XP2_NOTIFY_POST_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Article specification)');
|
---|
102 |
|
---|
103 | }
|
---|
104 | ?> |
---|