@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | * @version $Id $ |
19 | 19 | */ |
20 | 20 | |
21 | -require_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php'; |
|
22 | -include_once __DIR__ . '/admin_header.php'; |
|
21 | +require_once dirname(dirname(dirname(__DIR__))).'/include/cp_header.php'; |
|
22 | +include_once __DIR__.'/admin_header.php'; |
|
23 | 23 | |
24 | 24 | xoops_cp_header(); |
25 | 25 | |
@@ -28,10 +28,10 @@ discard block |
||
28 | 28 | //---------------------- |
29 | 29 | |
30 | 30 | // Creating the category handler object |
31 | -$category_handler =& sf_gethandler('category'); |
|
31 | +$category_handler = & sf_gethandler('category'); |
|
32 | 32 | |
33 | 33 | // Creating the FAQ handler object |
34 | -$faq_handler =& sf_gethandler('faq'); |
|
34 | +$faq_handler = & sf_gethandler('faq'); |
|
35 | 35 | |
36 | 36 | // Total FAQs -- includes everything on the table |
37 | 37 | $totalfaqs = $faq_handler->getFaqsCount(); |
@@ -43,93 +43,93 @@ discard block |
||
43 | 43 | $totalfaqbystatus = $faq_handler->getFaqsCountByStatus(); |
44 | 44 | |
45 | 45 | // Total asked FAQs |
46 | -$totalasked = isset($totalfaqbystatus[_SF_STATUS_ASKED])? $totalfaqbystatus[_SF_STATUS_ASKED] : 0; |
|
46 | +$totalasked = isset($totalfaqbystatus[_SF_STATUS_ASKED]) ? $totalfaqbystatus[_SF_STATUS_ASKED] : 0; |
|
47 | 47 | |
48 | 48 | // Total opened FAQs |
49 | -$totalopened = isset($totalfaqbystatus[_SF_STATUS_OPENED])? $totalfaqbystatus[_SF_STATUS_OPENED] : 0; |
|
49 | +$totalopened = isset($totalfaqbystatus[_SF_STATUS_OPENED]) ? $totalfaqbystatus[_SF_STATUS_OPENED] : 0; |
|
50 | 50 | |
51 | 51 | // Total answered FAQs |
52 | -$totalanswered = isset($totalfaqbystatus[_SF_STATUS_ANSWERED])? $totalfaqbystatus[_SF_STATUS_ANSWERED] : 0; |
|
52 | +$totalanswered = isset($totalfaqbystatus[_SF_STATUS_ANSWERED]) ? $totalfaqbystatus[_SF_STATUS_ANSWERED] : 0; |
|
53 | 53 | |
54 | 54 | // Total submitted FAQs |
55 | -$totalsubmitted = isset($totalfaqbystatus[_SF_STATUS_SUBMITTED])? $totalfaqbystatus[_SF_STATUS_SUBMITTED] : 0; |
|
55 | +$totalsubmitted = isset($totalfaqbystatus[_SF_STATUS_SUBMITTED]) ? $totalfaqbystatus[_SF_STATUS_SUBMITTED] : 0; |
|
56 | 56 | |
57 | 57 | // Total published FAQs |
58 | -$totalpublished = isset($totalfaqbystatus[_SF_STATUS_PUBLISHED])? $totalfaqbystatus[_SF_STATUS_PUBLISHED] : 0; |
|
58 | +$totalpublished = isset($totalfaqbystatus[_SF_STATUS_PUBLISHED]) ? $totalfaqbystatus[_SF_STATUS_PUBLISHED] : 0; |
|
59 | 59 | |
60 | 60 | // Total offline FAQs |
61 | -$totaloffline = isset($totalfaqbystatus[_SF_STATUS_OFFLINE])? $totalfaqbystatus[_SF_STATUS_OFFLINE] : 0; |
|
61 | +$totaloffline = isset($totalfaqbystatus[_SF_STATUS_OFFLINE]) ? $totalfaqbystatus[_SF_STATUS_OFFLINE] : 0; |
|
62 | 62 | |
63 | 63 | // Total rejected question |
64 | -$totalrejectedquestion = isset($totalfaqbystatus[_SF_STATUS_REJECTED_QUESTION])? $totalfaqbystatus[_SF_STATUS_REJECTED_QUESTION] : 0; |
|
64 | +$totalrejectedquestion = isset($totalfaqbystatus[_SF_STATUS_REJECTED_QUESTION]) ? $totalfaqbystatus[_SF_STATUS_REJECTED_QUESTION] : 0; |
|
65 | 65 | |
66 | 66 | // Total rejected smartfaq |
67 | -$totalrejectedsmartfaq = isset($totalfaqbystatus[_SF_STATUS_REJECTED_SMARTFAQ])? $totalfaqbystatus[_SF_STATUS_REJECTED_SMARTFAQ] : 0; |
|
67 | +$totalrejectedsmartfaq = isset($totalfaqbystatus[_SF_STATUS_REJECTED_SMARTFAQ]) ? $totalfaqbystatus[_SF_STATUS_REJECTED_SMARTFAQ] : 0; |
|
68 | 68 | |
69 | 69 | // Total Q&A with new answers |
70 | -$totalnewanswers = isset($totalfaqbystatus[_SF_STATUS_NEW_ANSWER])? $totalfaqbystatus[_SF_STATUS_NEW_ANSWER] : 0; |
|
70 | +$totalnewanswers = isset($totalfaqbystatus[_SF_STATUS_NEW_ANSWER]) ? $totalfaqbystatus[_SF_STATUS_NEW_ANSWER] : 0; |
|
71 | 71 | |
72 | 72 | //set info block |
73 | 73 | $indexAdmin->addInfoBox(_AM_SF_INVENTORY); |
74 | 74 | |
75 | 75 | if ($totalcategories > 0) { |
76 | 76 | $indexAdmin->addInfoBoxLine( |
77 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="category.php">' . _AM_SF_TOTALCAT . '</a><b>' |
|
77 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="category.php">'._AM_SF_TOTALCAT.'</a><b>' |
|
78 | 78 | . "</infolabel>", $totalcategories, 'Green' |
79 | 79 | ); |
80 | 80 | } else { |
81 | 81 | $indexAdmin->addInfoBoxLine( |
82 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALCAT . "</infolabel>", $totalcategories, 'Green' |
|
82 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALCAT."</infolabel>", $totalcategories, 'Green' |
|
83 | 83 | ); |
84 | 84 | } |
85 | 85 | if ($totalasked > 0) { |
86 | 86 | $indexAdmin->addInfoBoxLine( |
87 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="main.php">' . _AM_SF_TOTALASKED . '</a><b>' |
|
87 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="main.php">'._AM_SF_TOTALASKED.'</a><b>' |
|
88 | 88 | . "</infolabel>", $totalasked, 'Green' |
89 | 89 | ); |
90 | 90 | } else { |
91 | 91 | $indexAdmin->addInfoBoxLine( |
92 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALASKED . "</infolabel>", $totalasked, 'Green' |
|
92 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALASKED."</infolabel>", $totalasked, 'Green' |
|
93 | 93 | ); |
94 | 94 | } |
95 | 95 | if ($totalopened > 0) { |
96 | 96 | $indexAdmin->addInfoBoxLine( |
97 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="question.php">' . _AM_SF_TOTALOPENED . '</a><b>' |
|
97 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="question.php">'._AM_SF_TOTALOPENED.'</a><b>' |
|
98 | 98 | . "</infolabel>", $totalopened, 'Red' |
99 | 99 | ); |
100 | 100 | } else { |
101 | 101 | $indexAdmin->addInfoBoxLine( |
102 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALOPENED . "</infolabel>", $totalopened, 'Green' |
|
102 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALOPENED."</infolabel>", $totalopened, 'Green' |
|
103 | 103 | ); |
104 | 104 | } |
105 | 105 | if ($totalsubmitted > 0) { |
106 | 106 | $indexAdmin->addInfoBoxLine( |
107 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="category.php">' . _AM_SF_TOTALSUBMITTED . '</a><b>' |
|
107 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="category.php">'._AM_SF_TOTALSUBMITTED.'</a><b>' |
|
108 | 108 | . "</infolabel>", $totalsubmitted, 'Green' |
109 | 109 | ); |
110 | 110 | } else { |
111 | 111 | $indexAdmin->addInfoBoxLine( |
112 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALSUBMITTED . "</infolabel>", $totalsubmitted, 'Green' |
|
112 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALSUBMITTED."</infolabel>", $totalsubmitted, 'Green' |
|
113 | 113 | ); |
114 | 114 | } |
115 | 115 | if ($totalpublished > 0) { |
116 | 116 | $indexAdmin->addInfoBoxLine( |
117 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="faq.php">' . _AM_SF_TOTALPUBLISHED . '</a><b>' |
|
117 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="faq.php">'._AM_SF_TOTALPUBLISHED.'</a><b>' |
|
118 | 118 | . "</infolabel>", $totalpublished, 'Green' |
119 | 119 | ); |
120 | 120 | } else { |
121 | 121 | $indexAdmin->addInfoBoxLine( |
122 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALPUBLISHED . "</infolabel>", $totalpublished, 'Green' |
|
122 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALPUBLISHED."</infolabel>", $totalpublished, 'Green' |
|
123 | 123 | ); |
124 | 124 | } |
125 | 125 | if ($totalnewanswers > 0) { |
126 | 126 | $indexAdmin->addInfoBoxLine( |
127 | - _AM_SF_INVENTORY, "<infolabel>" . '<a href="main.php">' . _AM_SF_TOTALNEWANSWERS . '</a><b>' |
|
127 | + _AM_SF_INVENTORY, "<infolabel>".'<a href="main.php">'._AM_SF_TOTALNEWANSWERS.'</a><b>' |
|
128 | 128 | . "</infolabel>", $totalnewanswers, 'Red' |
129 | 129 | ); |
130 | 130 | } else { |
131 | 131 | $indexAdmin->addInfoBoxLine( |
132 | - _AM_SF_INVENTORY, "<infolabel>" . _AM_SF_TOTALNEWANSWERS . "</infolabel>", $totalnewanswers, 'Green' |
|
132 | + _AM_SF_INVENTORY, "<infolabel>"._AM_SF_TOTALNEWANSWERS."</infolabel>", $totalnewanswers, 'Green' |
|
133 | 133 | ); |
134 | 134 | } |
135 | 135 | |
@@ -138,4 +138,4 @@ discard block |
||
138 | 138 | echo $indexAdmin->addNavigation('index.php'); |
139 | 139 | echo $indexAdmin->renderIndex(); |
140 | 140 | |
141 | -include_once __DIR__ . '/admin_footer.php'; |
|
141 | +include_once __DIR__.'/admin_footer.php'; |
@@ -27,33 +27,33 @@ discard block |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | // include_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php'; GIJ |
30 | -$modid = isset($HTTP_POST_VARS['modid'])? intval($HTTP_POST_VARS['modid']) : 1; |
|
30 | +$modid = isset($HTTP_POST_VARS['modid']) ? intval($HTTP_POST_VARS['modid']) : 1; |
|
31 | 31 | // we dont want system module permissions to be changed here ( 1 -> 0 GIJ) |
32 | 32 | if ($modid <= 0 || !is_object($xoopsUser) || !$xoopsUser->isAdmin($modid)) { |
33 | 33 | redirect_header(XOOPS_URL.'/user.php', 1, _NOPERM); |
34 | 34 | exit(); |
35 | 35 | } |
36 | -$module_handler =& xoops_gethandler('module'); |
|
37 | -$module =& $module_handler->get($modid); |
|
36 | +$module_handler = & xoops_gethandler('module'); |
|
37 | +$module = & $module_handler->get($modid); |
|
38 | 38 | if (!is_object($module) || !$module->getVar('isactive')) { |
39 | 39 | redirect_header(XOOPS_URL.'/admin.php', 1, _MODULENOEXIST); |
40 | 40 | exit(); |
41 | 41 | } |
42 | -$member_handler =& xoops_gethandler('member'); |
|
43 | -$group_list =& $member_handler->getGroupList(); |
|
42 | +$member_handler = & xoops_gethandler('member'); |
|
43 | +$group_list = & $member_handler->getGroupList(); |
|
44 | 44 | if (is_array($HTTP_POST_VARS['perms']) && !empty($HTTP_POST_VARS['perms'])) { |
45 | 45 | $gperm_handler = xoops_gethandler('groupperm'); |
46 | 46 | foreach ($HTTP_POST_VARS['perms'] as $perm_name => $perm_data) { |
47 | - foreach ($perm_data['itemname' ] as $item_id => $item_name) { |
|
47 | + foreach ($perm_data['itemname'] as $item_id => $item_name) { |
|
48 | 48 | // checking code |
49 | 49 | // echo "<pre>" ; |
50 | 50 | // var_dump( $HTTP_POST_VARS['perms'] ) ; |
51 | 51 | // exit ; |
52 | - if (false != myDeleteByModule($gperm_handler->db,$modid,$perm_name,$item_id)) { |
|
53 | - if ( empty( $perm_data['groups'] ) ) continue ; |
|
52 | + if (false != myDeleteByModule($gperm_handler->db, $modid, $perm_name, $item_id)) { |
|
53 | + if (empty($perm_data['groups'])) continue; |
|
54 | 54 | foreach ($perm_data['groups'] as $group_id => $item_ids) { |
55 | 55 | // foreach ($item_ids as $item_id => $selected) { |
56 | - $selected = isset( $item_ids[ $item_id ] )? $item_ids[ $item_id ] : 0 ; |
|
56 | + $selected = isset($item_ids[$item_id]) ? $item_ids[$item_id] : 0; |
|
57 | 57 | if ($selected == 1) { |
58 | 58 | // make sure that all parent ids are selected as well |
59 | 59 | if ($perm_data['parents'][$item_id] != '') { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | } |
68 | 68 | } |
69 | - $gperm =& $gperm_handler->create(); |
|
69 | + $gperm = & $gperm_handler->create(); |
|
70 | 70 | $gperm->setVar('gperm_groupid', $group_id); |
71 | 71 | $gperm->setVar('gperm_name', $perm_name); |
72 | 72 | $gperm->setVar('gperm_modid', $modid); |
@@ -50,7 +50,9 @@ |
||
50 | 50 | // var_dump( $HTTP_POST_VARS['perms'] ) ; |
51 | 51 | // exit ; |
52 | 52 | if (false != myDeleteByModule($gperm_handler->db,$modid,$perm_name,$item_id)) { |
53 | - if ( empty( $perm_data['groups'] ) ) continue ; |
|
53 | + if ( empty( $perm_data['groups'] ) ) { |
|
54 | + continue ; |
|
55 | + } |
|
54 | 56 | foreach ($perm_data['groups'] as $group_id => $item_ids) { |
55 | 57 | // foreach ($item_ids as $item_id => $selected) { |
56 | 58 | $selected = isset( $item_ids[ $item_id ] )? $item_ids[ $item_id ] : 0 ; |
@@ -7,13 +7,13 @@ |
||
7 | 7 | * Licence: GNU |
8 | 8 | */ |
9 | 9 | |
10 | -include_once dirname(dirname(dirname(__DIR__))) . '/mainfile.php'; |
|
11 | -include_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php'; |
|
12 | -include_once XOOPS_ROOT_PATH . "/kernel/module.php"; |
|
13 | -include_once XOOPS_ROOT_PATH . "/class/xoopstree.php"; |
|
14 | -include_once XOOPS_ROOT_PATH . "/class/xoopslists.php"; |
|
15 | -include_once XOOPS_ROOT_PATH . '/class/pagenav.php'; |
|
16 | -include_once XOOPS_ROOT_PATH . "/class/xoopsformloader.php"; |
|
10 | +include_once dirname(dirname(dirname(__DIR__))).'/mainfile.php'; |
|
11 | +include_once dirname(dirname(dirname(__DIR__))).'/include/cp_header.php'; |
|
12 | +include_once XOOPS_ROOT_PATH."/kernel/module.php"; |
|
13 | +include_once XOOPS_ROOT_PATH."/class/xoopstree.php"; |
|
14 | +include_once XOOPS_ROOT_PATH."/class/xoopslists.php"; |
|
15 | +include_once XOOPS_ROOT_PATH.'/class/pagenav.php'; |
|
16 | +include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php"; |
|
17 | 17 | |
18 | 18 | include_once XOOPS_ROOT_PATH.'/modules/smartfaq/include/functions.php'; |
19 | 19 | include_once XOOPS_ROOT_PATH.'/modules/smartfaq/class/category.php'; |
@@ -10,55 +10,55 @@ |
||
10 | 10 | // defined("XOOPS_ROOT_PATH") || exit("XOOPS root path not defined"); |
11 | 11 | |
12 | 12 | $path = dirname(dirname(dirname(__DIR__))); |
13 | -include_once $path . '/mainfile.php'; |
|
13 | +include_once $path.'/mainfile.php'; |
|
14 | 14 | |
15 | 15 | $dirname = basename(dirname(__DIR__)); |
16 | 16 | $module_handler = xoops_gethandler('module'); |
17 | 17 | $module = $module_handler->getByDirname($dirname); |
18 | 18 | $pathIcon32 = $module->getInfo('icons32'); |
19 | 19 | $pathModuleAdmin = $module->getInfo('dirmoduleadmin'); |
20 | -$pathLanguage = $path . $pathModuleAdmin; |
|
20 | +$pathLanguage = $path.$pathModuleAdmin; |
|
21 | 21 | |
22 | -if (!file_exists($fileinc = $pathLanguage . '/language/' . $GLOBALS['xoopsConfig']['language'] . '/' . 'main.php')) { |
|
23 | - $fileinc = $pathLanguage . '/language/english/main.php'; |
|
22 | +if (!file_exists($fileinc = $pathLanguage.'/language/'.$GLOBALS['xoopsConfig']['language'].'/'.'main.php')) { |
|
23 | + $fileinc = $pathLanguage.'/language/english/main.php'; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | include_once $fileinc; |
27 | 27 | |
28 | 28 | $adminmenu = array(); |
29 | -$i=0; |
|
29 | +$i = 0; |
|
30 | 30 | $adminmenu[$i]["title"] = _AM_MODULEADMIN_HOME; |
31 | 31 | $adminmenu[$i]['link'] = "admin/index.php"; |
32 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/home.png'; |
|
32 | +$adminmenu[$i]["icon"] = $pathIcon32.'/home.png'; |
|
33 | 33 | ++$i; |
34 | 34 | $adminmenu[$i]['title'] = _MI_SF_ADMENU1; |
35 | 35 | $adminmenu[$i]['link'] = "admin/main.php"; |
36 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/manage.png'; |
|
36 | +$adminmenu[$i]["icon"] = $pathIcon32.'/manage.png'; |
|
37 | 37 | |
38 | 38 | ++$i; |
39 | 39 | $adminmenu[$i]['title'] = _MI_SF_ADMENU2; |
40 | 40 | $adminmenu[$i]['link'] = "admin/category.php"; |
41 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/category.png'; |
|
41 | +$adminmenu[$i]["icon"] = $pathIcon32.'/category.png'; |
|
42 | 42 | ++$i; |
43 | 43 | $adminmenu[$i]['title'] = _MI_SF_ADMENU3; |
44 | 44 | $adminmenu[$i]['link'] = "admin/faq.php"; |
45 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/search.png'; |
|
45 | +$adminmenu[$i]["icon"] = $pathIcon32.'/search.png'; |
|
46 | 46 | ++$i; |
47 | 47 | $adminmenu[$i]['title'] = _MI_SF_ADMENU4; |
48 | 48 | $adminmenu[$i]['link'] = "admin/question.php"; |
49 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/faq.png'; |
|
49 | +$adminmenu[$i]["icon"] = $pathIcon32.'/faq.png'; |
|
50 | 50 | ++$i; |
51 | 51 | $adminmenu[$i]['title'] = _MI_SF_ADMENU5; |
52 | 52 | $adminmenu[$i]['link'] = "admin/permissions.php"; |
53 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/permissions.png'; |
|
53 | +$adminmenu[$i]["icon"] = $pathIcon32.'/permissions.png'; |
|
54 | 54 | ++$i; |
55 | 55 | $adminmenu[$i]['title'] = _MI_SF_ADMENU8; |
56 | 56 | $adminmenu[$i]['link'] = "admin/import.php"; |
57 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/download.png'; |
|
57 | +$adminmenu[$i]["icon"] = $pathIcon32.'/download.png'; |
|
58 | 58 | ++$i; |
59 | 59 | $adminmenu[$i]['title'] = _AM_MODULEADMIN_ABOUT; |
60 | 60 | $adminmenu[$i]["link"] = "admin/about.php"; |
61 | -$adminmenu[$i]["icon"] = $pathIcon32 . '/about.png'; |
|
61 | +$adminmenu[$i]["icon"] = $pathIcon32.'/about.png'; |
|
62 | 62 | //++$i; |
63 | 63 | //$adminmenu[$i]['title'] = _AM_MODULEADMIN_ABOUT; |
64 | 64 | //$adminmenu[$i]["link"] = "admin/about2.php"; |
@@ -99,7 +99,7 @@ |
||
99 | 99 | $sform->display(); |
100 | 100 | unset($hidden); |
101 | 101 | } else { |
102 | - echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-weight: bold; font-size: small; display: block; \">" . _AM_SF_IMPORT_NO_MODULE . "</span>"; |
|
102 | + echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-weight: bold; font-size: small; display: block; \">" . _AM_SF_IMPORT_NO_MODULE . "</span>"; |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | // End of collapsable bar |
@@ -7,9 +7,9 @@ discard block |
||
7 | 7 | * Licence: GNU |
8 | 8 | */ |
9 | 9 | |
10 | -include_once __DIR__ . '/admin_header.php'; |
|
10 | +include_once __DIR__.'/admin_header.php'; |
|
11 | 11 | |
12 | -$op='none'; |
|
12 | +$op = 'none'; |
|
13 | 13 | |
14 | 14 | if (isset($_GET['op'])) $op = $_GET['op']; |
15 | 15 | if (isset($_POST['op'])) $op = $_POST['op']; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | case "importExecute": |
22 | 22 | |
23 | - $importfile = (isset($_POST['importfile']))? $_POST['importfile'] : 'nonselected'; |
|
23 | + $importfile = (isset($_POST['importfile'])) ? $_POST['importfile'] : 'nonselected'; |
|
24 | 24 | $importfile_path = XOOPS_ROOT_PATH."/modules/smartfaq/admin/".$importfile.".php"; |
25 | 25 | if (!file_exists($importfile_path)) { |
26 | 26 | $errs[] = sprintf(_AM_SF_IMPORT_FILE_NOT_FOUND, $importfile_path); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | echo $endMsg; |
42 | 42 | echo "<br /><br />"; |
43 | - echo "<a href='import.php'>" . _AM_SF_IMPORT_BACK . "</a>"; |
|
43 | + echo "<a href='import.php'>"._AM_SF_IMPORT_BACK."</a>"; |
|
44 | 44 | echo "<br /><br />"; |
45 | 45 | break; |
46 | 46 | |
@@ -53,15 +53,15 @@ discard block |
||
53 | 53 | //sf_adminMenu(-1, _AM_SF_IMPORT); |
54 | 54 | |
55 | 55 | sf_collapsableBar('bottomtable', 'bottomtableicon'); |
56 | - echo "<img id='bottomtableicon' src=" . XOOPS_URL . "/modules/" . $xoopsModule->dirname() . "/assets/images/icon/close12.gif alt='' /></a> " . _AM_SF_IMPORT_TITLE . "</h3>"; |
|
56 | + echo "<img id='bottomtableicon' src=".XOOPS_URL."/modules/".$xoopsModule->dirname()."/assets/images/icon/close12.gif alt='' /></a> "._AM_SF_IMPORT_TITLE."</h3>"; |
|
57 | 57 | echo "<div id='bottomtable'>"; |
58 | - echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-size: small; display: block; \">" . _AM_SF_IMPORT_INFO . "</span>"; |
|
58 | + echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-size: small; display: block; \">"._AM_SF_IMPORT_INFO."</span>"; |
|
59 | 59 | |
60 | 60 | global $xoopsUser, $xoopsUser, $xoopsConfig, $xoopsDB, $modify, $xoopsModuleConfig, $xoopsModule, $XOOPS_URL, $myts; |
61 | 61 | |
62 | - include_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php'; |
|
62 | + include_once XOOPS_ROOT_PATH.'/class/xoopsformloader.php'; |
|
63 | 63 | |
64 | - $module_handler =& xoops_gethandler ('module'); |
|
64 | + $module_handler = & xoops_gethandler('module'); |
|
65 | 65 | if ($module_handler->getByDirname('xoopsfaq')) { |
66 | 66 | $importfile_select_array["xoopsfaq"] = _AM_SF_IMPORT_XOOPSFAQ_110; |
67 | 67 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $importfile_select_array["wffaq"] = _AM_SF_IMPORT_WFFAQ_105; |
71 | 71 | } |
72 | 72 | |
73 | - if (isset($importfile_select_array) && count($importfile_select_array) > 0 ) { |
|
73 | + if (isset($importfile_select_array) && count($importfile_select_array) > 0) { |
|
74 | 74 | |
75 | 75 | $sform = new XoopsThemeForm(_AM_SF_IMPORT_SELECTION, "op", xoops_getenv('PHP_SELF')); |
76 | 76 | $sform->setExtra('enctype="multipart/form-data"'); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | // Q&A set to import |
79 | 79 | $importfile_select = new XoopsFormSelect('', 'importfile', $importfile); |
80 | 80 | $importfile_select->addOptionArray($importfile_select_array); |
81 | - $importfile_tray = new XoopsFormElementTray(_AM_SF_IMPORT_SELECT_FILE , ' '); |
|
81 | + $importfile_tray = new XoopsFormElementTray(_AM_SF_IMPORT_SELECT_FILE, ' '); |
|
82 | 82 | $importfile_tray->addElement($importfile_select); |
83 | 83 | $sform->addElement($importfile_tray); |
84 | 84 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $sform->display(); |
100 | 100 | unset($hidden); |
101 | 101 | } else { |
102 | - echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-weight: bold; font-size: small; display: block; \">" . _AM_SF_IMPORT_NO_MODULE . "</span>"; |
|
102 | + echo "<span style=\"color: #567; margin: 3px 0 12px 0; font-weight: bold; font-size: small; display: block; \">"._AM_SF_IMPORT_NO_MODULE."</span>"; |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | // End of collapsable bar |
@@ -108,4 +108,4 @@ discard block |
||
108 | 108 | break; |
109 | 109 | } |
110 | 110 | |
111 | -include_once __DIR__ . '/admin_footer.php'; |
|
111 | +include_once __DIR__.'/admin_footer.php'; |
@@ -11,8 +11,12 @@ |
||
11 | 11 | |
12 | 12 | $op='none'; |
13 | 13 | |
14 | -if (isset($_GET['op'])) $op = $_GET['op']; |
|
15 | -if (isset($_POST['op'])) $op = $_POST['op']; |
|
14 | +if (isset($_GET['op'])) { |
|
15 | + $op = $_GET['op']; |
|
16 | +} |
|
17 | +if (isset($_POST['op'])) { |
|
18 | + $op = $_POST['op']; |
|
19 | +} |
|
16 | 20 | |
17 | 21 | global $xoopsDB; |
18 | 22 |
@@ -7,16 +7,16 @@ discard block |
||
7 | 7 | * Licence: GNU |
8 | 8 | */ |
9 | 9 | |
10 | -include_once __DIR__ . '/header.php'; |
|
11 | -include_once(XOOPS_ROOT_PATH . "/header.php"); |
|
10 | +include_once __DIR__.'/header.php'; |
|
11 | +include_once(XOOPS_ROOT_PATH."/header.php"); |
|
12 | 12 | |
13 | 13 | Global $xoopsUser, $xoopsConfig, $xoopsModuleConfig, $xoopsModule; |
14 | 14 | |
15 | 15 | // Creating the category handler object |
16 | -$category_handler =& sf_gethandler('category'); |
|
16 | +$category_handler = & sf_gethandler('category'); |
|
17 | 17 | |
18 | 18 | // Creating the FAQ handler object |
19 | -$faq_handler =& sf_gethandler('faq'); |
|
19 | +$faq_handler = & sf_gethandler('faq'); |
|
20 | 20 | |
21 | 21 | // Get the total number of categories |
22 | 22 | $totalCategories = count($category_handler->getCategories()); |
@@ -61,25 +61,25 @@ discard block |
||
61 | 61 | $newFaqObj->setVar('categoryid', $_POST['categoryid']); |
62 | 62 | $newFaqObj->setVar('uid', $uid); |
63 | 63 | $newFaqObj->setVar('question', $_POST['question']); |
64 | - $notifypub = (isset($_POST['notifypub']))? $_POST['notifypub'] : 0; |
|
64 | + $notifypub = (isset($_POST['notifypub'])) ? $_POST['notifypub'] : 0; |
|
65 | 65 | $newFaqObj->setVar('notifypub', $notifypub); |
66 | 66 | |
67 | 67 | // Setting the status of the FAQ |
68 | - if ($xoopsModuleConfig['autoapprove_request'] == 1) { |
|
68 | + if ($xoopsModuleConfig['autoapprove_request'] == 1) { |
|
69 | 69 | $newFaqObj->setVar('status', _SF_STATUS_OPENED); |
70 | 70 | } else { |
71 | 71 | $newFaqObj->setVar('status', _SF_STATUS_ASKED); |
72 | 72 | } |
73 | 73 | |
74 | 74 | // Storing the FAQ object in the database |
75 | - if ( !$newFaqObj->store() ) { |
|
76 | - redirect_header("javascript:history.go(-1)", 3, _MD_SF_REQUEST_ERROR . sf_formatErrors($newFaqObj->getErrors())); |
|
75 | + if (!$newFaqObj->store()) { |
|
76 | + redirect_header("javascript:history.go(-1)", 3, _MD_SF_REQUEST_ERROR.sf_formatErrors($newFaqObj->getErrors())); |
|
77 | 77 | exit(); |
78 | 78 | } |
79 | 79 | |
80 | 80 | // Get the cateopry object related to that FAQ |
81 | 81 | // If autoapprove_requested |
82 | - if ($xoopsModuleConfig['autoapprove_request'] == 1) { |
|
82 | + if ($xoopsModuleConfig['autoapprove_request'] == 1) { |
|
83 | 83 | // We do not not subscribe user to notification on publish since we publish it right away |
84 | 84 | |
85 | 85 | // Send notifications |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | } else { |
90 | 90 | // Subscribe the user to On Published notification, if requested |
91 | 91 | if ($notifypub == 1) { |
92 | - include_once XOOPS_ROOT_PATH . '/include/notification_constants.php'; |
|
92 | + include_once XOOPS_ROOT_PATH.'/include/notification_constants.php'; |
|
93 | 93 | $notification_handler = &xoops_gethandler('notification'); |
94 | 94 | $notification_handler->subscribe('question', $newFaqObj->faqid(), 'approved', XOOPS_NOTIFICATION_MODE_SENDONCETHENDELETE); |
95 | 95 | } |
@@ -111,27 +111,27 @@ discard block |
||
111 | 111 | global $xoopsUser, $myts; |
112 | 112 | |
113 | 113 | $xoopsOption['template_main'] = 'smartfaq_submit.tpl'; |
114 | - include_once(XOOPS_ROOT_PATH . "/header.php"); |
|
115 | - include_once __DIR__ . '/footer.php'; |
|
114 | + include_once(XOOPS_ROOT_PATH."/header.php"); |
|
115 | + include_once __DIR__.'/footer.php'; |
|
116 | 116 | |
117 | - $name = ($xoopsUser)? (ucwords($xoopsUser->getVar("uname"))) : 'Anonymous'; |
|
117 | + $name = ($xoopsUser) ? (ucwords($xoopsUser->getVar("uname"))) : 'Anonymous'; |
|
118 | 118 | |
119 | 119 | $moduleName = $myts->displayTarea($xoopsModule->getVar('name')); |
120 | 120 | $xoopsTpl->assign('whereInSection', $moduleName); |
121 | 121 | $xoopsTpl->assign('lang_submit', _MD_SF_REQUEST); |
122 | 122 | |
123 | 123 | $xoopsTpl->assign('lang_intro_title', _MD_SF_REQUEST); |
124 | - $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY . "<b>$name</b>, " . $myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
124 | + $xoopsTpl->assign('lang_intro_text', _MD_SF_GOODDAY."<b>$name</b>, ".$myts->displayTarea($xoopsModuleConfig['requestintromsg'])); |
|
125 | 125 | |
126 | 126 | include_once 'include/request.inc.php'; |
127 | 127 | |
128 | - $name = ($xoopsUser)? (ucwords($xoopsUser->getVar("uname"))) : 'Anonymous'; |
|
128 | + $name = ($xoopsUser) ? (ucwords($xoopsUser->getVar("uname"))) : 'Anonymous'; |
|
129 | 129 | |
130 | 130 | $sectionname = $myts->htmlSpecialChars($xoopsModule->getVar('name')); |
131 | 131 | |
132 | 132 | include_once 'include/request.inc.php'; |
133 | 133 | |
134 | - include_once XOOPS_ROOT_PATH . '/footer.php'; |
|
134 | + include_once XOOPS_ROOT_PATH.'/footer.php'; |
|
135 | 135 | |
136 | 136 | break; |
137 | 137 | } |
@@ -36,8 +36,12 @@ |
||
36 | 36 | |
37 | 37 | $op = ''; |
38 | 38 | |
39 | -if (isset($_GET['op'])) $op = $_GET['op']; |
|
40 | -if (isset($_POST['op'])) $op = $_POST['op']; |
|
39 | +if (isset($_GET['op'])) { |
|
40 | + $op = $_GET['op']; |
|
41 | +} |
|
42 | +if (isset($_POST['op'])) { |
|
43 | + $op = $_POST['op']; |
|
44 | +} |
|
41 | 45 | |
42 | 46 | switch ($op) { |
43 | 47 | case 'post': |
@@ -10,328 +10,328 @@ discard block |
||
10 | 10 | // Module Info |
11 | 11 | // The name of this module |
12 | 12 | global $xoopsModule; |
13 | -define("_MI_SF_MD_NAME","SmartFAQ"); |
|
13 | +define("_MI_SF_MD_NAME", "SmartFAQ"); |
|
14 | 14 | |
15 | 15 | // A brief description of this module |
16 | -define("_MI_SF_MD_DESC","Advanced Questions and Answers Management System for your XOOPS Site"); |
|
16 | +define("_MI_SF_MD_DESC", "Advanced Questions and Answers Management System for your XOOPS Site"); |
|
17 | 17 | |
18 | 18 | // Sub menus in main menu block |
19 | -define("_MI_SF_SUB_SMNAME1","Submit a Q&A"); |
|
20 | -define("_MI_SF_SUB_SMNAME2","Request a Q&A"); |
|
21 | -define("_MI_SF_SUB_SMNAME3","Open questions"); |
|
22 | -define("_MI_SF_SUB_SMNAME4","Moderate Q&A"); |
|
19 | +define("_MI_SF_SUB_SMNAME1", "Submit a Q&A"); |
|
20 | +define("_MI_SF_SUB_SMNAME2", "Request a Q&A"); |
|
21 | +define("_MI_SF_SUB_SMNAME3", "Open questions"); |
|
22 | +define("_MI_SF_SUB_SMNAME4", "Moderate Q&A"); |
|
23 | 23 | |
24 | 24 | // Config options |
25 | -define("_MI_SF_ALLOWSUBMIT","User submissions:"); |
|
26 | -define("_MI_SF_ALLOWSUBMITDSC","Allow users to submit Q&A on your website?"); |
|
25 | +define("_MI_SF_ALLOWSUBMIT", "User submissions:"); |
|
26 | +define("_MI_SF_ALLOWSUBMITDSC", "Allow users to submit Q&A on your website?"); |
|
27 | 27 | |
28 | -define("_MI_SF_ALLOWREQUEST","User requests:"); |
|
29 | -define("_MI_SF_ALLOWREQUESTDSC","Allow users to request Q&A on your website?"); |
|
28 | +define("_MI_SF_ALLOWREQUEST", "User requests:"); |
|
29 | +define("_MI_SF_ALLOWREQUESTDSC", "Allow users to request Q&A on your website?"); |
|
30 | 30 | |
31 | -define("_MI_SF_NEWANSWER","Allow new answer posting :"); |
|
32 | -define("_MI_SF_NEWANSWERDSC","Select 'Yes' to allow users to submit new answers for already published Q&A."); |
|
31 | +define("_MI_SF_NEWANSWER", "Allow new answer posting :"); |
|
32 | +define("_MI_SF_NEWANSWERDSC", "Select 'Yes' to allow users to submit new answers for already published Q&A."); |
|
33 | 33 | |
34 | -define("_MI_SF_ANONPOST","Allow anonymous posting"); |
|
35 | -define("_MI_SF_ANONPOSTDSC","Allow anonymous users to submit or request Q&A."); |
|
34 | +define("_MI_SF_ANONPOST", "Allow anonymous posting"); |
|
35 | +define("_MI_SF_ANONPOSTDSC", "Allow anonymous users to submit or request Q&A."); |
|
36 | 36 | |
37 | -define('_MI_SF_DATEFORMAT','Date format:'); |
|
38 | -define('_MI_SF_DATEFORMATDSC','Use the final part of language/english/global.php to select a display style. Example: "d-M-Y H:i" translates to "30-Mar-2004 22:35"'); |
|
37 | +define('_MI_SF_DATEFORMAT', 'Date format:'); |
|
38 | +define('_MI_SF_DATEFORMATDSC', 'Use the final part of language/english/global.php to select a display style. Example: "d-M-Y H:i" translates to "30-Mar-2004 22:35"'); |
|
39 | 39 | |
40 | -define('_MI_SF_DISPLAY_COLLAPS','Display collapsable bars'); |
|
41 | -define('_MI_SF_DISPLAY_COLLAPSDSC',"Select 'Yes' to display the collapsable bar in the index and category page."); |
|
40 | +define('_MI_SF_DISPLAY_COLLAPS', 'Display collapsable bars'); |
|
41 | +define('_MI_SF_DISPLAY_COLLAPSDSC', "Select 'Yes' to display the collapsable bar in the index and category page."); |
|
42 | 42 | |
43 | -define('_MI_SF_DISPLAYTYPE',"Q&A's display type:"); |
|
44 | -define('_MI_SF_DISPLAYTYPEDSC',"If 'Summary View' is selected, only the Question, Date and Hits of each Q&A will be displayed in a selected category. If 'Full View' is selected, each Q&A will be entirely displayed in a selected category."); |
|
45 | -define('_MI_SF_DISPLAYTYPE_SUMMARY',"Summary View"); |
|
46 | -define('_MI_SF_DISPLAYTYPE_FULL',"Full View"); |
|
43 | +define('_MI_SF_DISPLAYTYPE', "Q&A's display type:"); |
|
44 | +define('_MI_SF_DISPLAYTYPEDSC', "If 'Summary View' is selected, only the Question, Date and Hits of each Q&A will be displayed in a selected category. If 'Full View' is selected, each Q&A will be entirely displayed in a selected category."); |
|
45 | +define('_MI_SF_DISPLAYTYPE_SUMMARY', "Summary View"); |
|
46 | +define('_MI_SF_DISPLAYTYPE_FULL', "Full View"); |
|
47 | 47 | |
48 | -define('_MI_SF_DISPLAY_LAST_FAQ','Display last Q&A column?'); |
|
49 | -define('_MI_SF_DISPLAY_LAST_FAQDSC',"Select 'Yes' to display the last Q&A in each category in the index and category page."); |
|
48 | +define('_MI_SF_DISPLAY_LAST_FAQ', 'Display last Q&A column?'); |
|
49 | +define('_MI_SF_DISPLAY_LAST_FAQDSC', "Select 'Yes' to display the last Q&A in each category in the index and category page."); |
|
50 | 50 | |
51 | -define('_MI_SF_DISPLAY_LAST_FAQS','Display a list of last Q&As?'); |
|
52 | -define('_MI_SF_DISPLAY_LAST_FAQSDSC',"Select 'Yes' to display a list of last Q&A's on the index page."); |
|
51 | +define('_MI_SF_DISPLAY_LAST_FAQS', 'Display a list of last Q&As?'); |
|
52 | +define('_MI_SF_DISPLAY_LAST_FAQSDSC', "Select 'Yes' to display a list of last Q&A's on the index page."); |
|
53 | 53 | |
54 | -define('_MI_SF_LAST_FAQ_SIZE','Last Q&A size :'); |
|
55 | -define('_MI_SF_LAST_FAQ_SIZEDSC',"Set the maximum size of the question in the Last Q&A column."); |
|
54 | +define('_MI_SF_LAST_FAQ_SIZE', 'Last Q&A size :'); |
|
55 | +define('_MI_SF_LAST_FAQ_SIZEDSC', "Set the maximum size of the question in the Last Q&A column."); |
|
56 | 56 | |
57 | -define('_MI_SF_QUESTION_SIZE',"Question size :"); |
|
58 | -define('_MI_SF_QUESTION_SIZEDSC',"Set the maximum size of the question as a title in the single Q&A display page."); |
|
57 | +define('_MI_SF_QUESTION_SIZE', "Question size :"); |
|
58 | +define('_MI_SF_QUESTION_SIZEDSC', "Set the maximum size of the question as a title in the single Q&A display page."); |
|
59 | 59 | |
60 | -define('_MI_SF_DISPLAY_SUBCAT_INDEX','Display sub-categories on index'); |
|
61 | -define('_MI_SF_DISPLAY_SUBCAT_INDEXDSC',"Select 'Yes' to display subcategories on the index page."); |
|
60 | +define('_MI_SF_DISPLAY_SUBCAT_INDEX', 'Display sub-categories on index'); |
|
61 | +define('_MI_SF_DISPLAY_SUBCAT_INDEXDSC', "Select 'Yes' to display subcategories on the index page."); |
|
62 | 62 | |
63 | -define('_MI_SF_DISPLAY_TOPCAT_DSC','Display top categories description?'); |
|
64 | -define('_MI_SF_DISPLAY_TOPCAT_DSCDSC',"Select 'Yes' to display the description of top categories in the index and category page."); |
|
63 | +define('_MI_SF_DISPLAY_TOPCAT_DSC', 'Display top categories description?'); |
|
64 | +define('_MI_SF_DISPLAY_TOPCAT_DSCDSC', "Select 'Yes' to display the description of top categories in the index and category page."); |
|
65 | 65 | |
66 | -define('_MI_SF_DISPLAY_SBCAT_DSC','Display sub-categories description?'); |
|
67 | -define('_MI_SF_DISPLAY_SBCAT_DSCDSC',"Select 'Yes' to display the description of sub-categories in the index and category page."); |
|
66 | +define('_MI_SF_DISPLAY_SBCAT_DSC', 'Display sub-categories description?'); |
|
67 | +define('_MI_SF_DISPLAY_SBCAT_DSCDSC', "Select 'Yes' to display the description of sub-categories in the index and category page."); |
|
68 | 68 | |
69 | -define('_MI_SF_ORDERBYDATE','Order the Q&As by date :'); |
|
70 | -define('_MI_SF_ORDERBYDATEDSC','If you set this option to "Yes", the Q&As inside a category will be ordered by decending date, otherwise, they will be ordered by their weight.'); |
|
69 | +define('_MI_SF_ORDERBYDATE', 'Order the Q&As by date :'); |
|
70 | +define('_MI_SF_ORDERBYDATEDSC', 'If you set this option to "Yes", the Q&As inside a category will be ordered by decending date, otherwise, they will be ordered by their weight.'); |
|
71 | 71 | |
72 | -define('_MI_SF_DISPLAY_DATE_COL',"Display the 'Published on' column?"); |
|
73 | -define('_MI_SF_DISPLAY_DATE_COLDSC',"When the 'Summary' display type is selected, select 'Yes' to display a 'Published on' date in the Q&A table on the index and category page."); |
|
72 | +define('_MI_SF_DISPLAY_DATE_COL', "Display the 'Published on' column?"); |
|
73 | +define('_MI_SF_DISPLAY_DATE_COLDSC', "When the 'Summary' display type is selected, select 'Yes' to display a 'Published on' date in the Q&A table on the index and category page."); |
|
74 | 74 | |
75 | -define('_MI_SF_DISPLAY_HITS_COL',"Display the 'Hits' column?"); |
|
76 | -define('_MI_SF_DISPLAY_HITS_COLDSC',"When the 'Summary' display type is selected, select 'Yes' to display the 'Hits' column in the Q&A table on the index and category page."); |
|
75 | +define('_MI_SF_DISPLAY_HITS_COL', "Display the 'Hits' column?"); |
|
76 | +define('_MI_SF_DISPLAY_HITS_COLDSC', "When the 'Summary' display type is selected, select 'Yes' to display the 'Hits' column in the Q&A table on the index and category page."); |
|
77 | 77 | |
78 | -define('_MI_SF_USEIMAGENAVPAGE','Use the image Page Navigation:'); |
|
79 | -define('_MI_SF_USEIMAGENAVPAGEDSC','If you set this option to "Yes", the Page Navigation will be displayed with image, otherwise, the original Page Naviagation will be used.'); |
|
78 | +define('_MI_SF_USEIMAGENAVPAGE', 'Use the image Page Navigation:'); |
|
79 | +define('_MI_SF_USEIMAGENAVPAGEDSC', 'If you set this option to "Yes", the Page Navigation will be displayed with image, otherwise, the original Page Naviagation will be used.'); |
|
80 | 80 | |
81 | -define('_MI_SF_ALLOWCOMMENTS','Control comments at the Q&A level:'); |
|
82 | -define('_MI_SF_ALLOWCOMMENTSDSC','If you set this option to "Yes", you\'ll see comments only on those Q&A that have their comment checkbox marked. <br /><br />Select "No" to have comments managed at the global level (look below under the tag "Comment rules".'); |
|
81 | +define('_MI_SF_ALLOWCOMMENTS', 'Control comments at the Q&A level:'); |
|
82 | +define('_MI_SF_ALLOWCOMMENTSDSC', 'If you set this option to "Yes", you\'ll see comments only on those Q&A that have their comment checkbox marked. <br /><br />Select "No" to have comments managed at the global level (look below under the tag "Comment rules".'); |
|
83 | 83 | |
84 | -define('_MI_SF_ALLOWADMINHITS','Admin counter reads:'); |
|
85 | -define('_MI_SF_ALLOWADMINHITSDSC','Allow admin hits for counter stats?'); |
|
84 | +define('_MI_SF_ALLOWADMINHITS', 'Admin counter reads:'); |
|
85 | +define('_MI_SF_ALLOWADMINHITSDSC', 'Allow admin hits for counter stats?'); |
|
86 | 86 | |
87 | -define('_MI_SF_AUTOAPPROVE_SUB_FAQ','Auto approve submitted Q&A:'); |
|
88 | -define('_MI_SF_AUTOAPPROVE_SUB_FAQ_DSC','Auto approves submitted Q&A without admin intervention.'); |
|
87 | +define('_MI_SF_AUTOAPPROVE_SUB_FAQ', 'Auto approve submitted Q&A:'); |
|
88 | +define('_MI_SF_AUTOAPPROVE_SUB_FAQ_DSC', 'Auto approves submitted Q&A without admin intervention.'); |
|
89 | 89 | |
90 | -define('_MI_SF_AUTOAPPROVE_REQUEST','Auto approve requested Q&A:'); |
|
91 | -define('_MI_SF_AUTOAPPROVE_REQUEST_DSC','Auto approves requested Q&A without admin intervention.'); |
|
90 | +define('_MI_SF_AUTOAPPROVE_REQUEST', 'Auto approve requested Q&A:'); |
|
91 | +define('_MI_SF_AUTOAPPROVE_REQUEST_DSC', 'Auto approves requested Q&A without admin intervention.'); |
|
92 | 92 | |
93 | -define('_MI_SF_AUTOAPPROVE_ANS','Auto approve answers:'); |
|
94 | -define('_MI_SF_AUTOAPPROVE_ANS_DSC','Auto approves submitted answers for open questions.'); |
|
93 | +define('_MI_SF_AUTOAPPROVE_ANS', 'Auto approve answers:'); |
|
94 | +define('_MI_SF_AUTOAPPROVE_ANS_DSC', 'Auto approves submitted answers for open questions.'); |
|
95 | 95 | |
96 | -define('_MI_SF_AUTOAPPROVE_ANS_NEW','Auto approve new answer:'); |
|
97 | -define('_MI_SF_AUTOAPPROVE_ANS_NEW_DSC','Auto approves new submitted answers for published Q&A.'); |
|
96 | +define('_MI_SF_AUTOAPPROVE_ANS_NEW', 'Auto approve new answer:'); |
|
97 | +define('_MI_SF_AUTOAPPROVE_ANS_NEW_DSC', 'Auto approves new submitted answers for published Q&A.'); |
|
98 | 98 | |
99 | -define('_MI_SF_LASTFAQSPERCAT','Maximum last Q&A per category:'); |
|
100 | -define('_MI_SF_LASTFAQSPERCATDSC','Maximum number of Q&A to be displayed in the Info column of a category.'); |
|
99 | +define('_MI_SF_LASTFAQSPERCAT', 'Maximum last Q&A per category:'); |
|
100 | +define('_MI_SF_LASTFAQSPERCATDSC', 'Maximum number of Q&A to be displayed in the Info column of a category.'); |
|
101 | 101 | |
102 | -define('_MI_SF_CATPERPAGE','Maximum Categories per page (User side):'); |
|
103 | -define('_MI_SF_CATPERPAGEDSC','Maximum number of top categories per page to be displayed at once in the user side.'); |
|
102 | +define('_MI_SF_CATPERPAGE', 'Maximum Categories per page (User side):'); |
|
103 | +define('_MI_SF_CATPERPAGEDSC', 'Maximum number of top categories per page to be displayed at once in the user side.'); |
|
104 | 104 | |
105 | -define('_MI_SF_PERPAGE','Maximum Q&A per page (Admin side):'); |
|
106 | -define('_MI_SF_PERPAGEDSC','Maximum number of Q&A per page to be displayed at once in Q&A Admin.'); |
|
105 | +define('_MI_SF_PERPAGE', 'Maximum Q&A per page (Admin side):'); |
|
106 | +define('_MI_SF_PERPAGEDSC', 'Maximum number of Q&A per page to be displayed at once in Q&A Admin.'); |
|
107 | 107 | |
108 | -define('_MI_SF_PERPAGEINDEX','Maximum Q&A per page (User side):'); |
|
109 | -define('_MI_SF_PERPAGEINDEXDSC','Maximum number of Q&A to be displayed per page in the user side.'); |
|
108 | +define('_MI_SF_PERPAGEINDEX', 'Maximum Q&A per page (User side):'); |
|
109 | +define('_MI_SF_PERPAGEINDEXDSC', 'Maximum number of Q&A to be displayed per page in the user side.'); |
|
110 | 110 | |
111 | -define('_MI_SF_INDEXWELCOMEMSG','Index welcome message:'); |
|
112 | -define('_MI_SF_INDEXWELCOMEMSGDSC','Welcome message to be displayed in the index page of the module.'); |
|
113 | -define('_MI_SF_INDEXWELCOMEMSGDEF',"In this area of our site, you will find the answers to the frequently asked questions, as well as answers to <b>How do I</b> and <b>Did you know</b> questions. Please feel free to post a comment on any Q&A."); |
|
111 | +define('_MI_SF_INDEXWELCOMEMSG', 'Index welcome message:'); |
|
112 | +define('_MI_SF_INDEXWELCOMEMSGDSC', 'Welcome message to be displayed in the index page of the module.'); |
|
113 | +define('_MI_SF_INDEXWELCOMEMSGDEF', "In this area of our site, you will find the answers to the frequently asked questions, as well as answers to <b>How do I</b> and <b>Did you know</b> questions. Please feel free to post a comment on any Q&A."); |
|
114 | 114 | |
115 | -define('_MI_SF_REQUESTINTROMSG','Request introduction message:'); |
|
116 | -define('_MI_SF_REQUESTINTROMSGDSC','Introduction message to be displayed in the Request a Q&A page of the module.'); |
|
117 | -define('_MI_SF_REQUESTINTROMSGDEF',"You did not find the answer to the question you were looking for? No problem! Simply fill the following form in order to request the answer for a new question. The site administrator will review your request and publish this new question in the Open Questions section for someone to answer it!"); |
|
115 | +define('_MI_SF_REQUESTINTROMSG', 'Request introduction message:'); |
|
116 | +define('_MI_SF_REQUESTINTROMSGDSC', 'Introduction message to be displayed in the Request a Q&A page of the module.'); |
|
117 | +define('_MI_SF_REQUESTINTROMSGDEF', "You did not find the answer to the question you were looking for? No problem! Simply fill the following form in order to request the answer for a new question. The site administrator will review your request and publish this new question in the Open Questions section for someone to answer it!"); |
|
118 | 118 | |
119 | -define('_MI_SF_OPENINTROMSG','Open Questions section introduction message:'); |
|
120 | -define('_MI_SF_OPENINTROMSGDSC','Introduction message to be displayed in the Open Questions section of the module.'); |
|
121 | -define('_MI_SF_OPENINTROMSGDEF',"Here is a list of Open Questions, that is, questions that have been submitted by users of this site but are still without answer. You can click on an open question if you want to help us with an answer."); |
|
119 | +define('_MI_SF_OPENINTROMSG', 'Open Questions section introduction message:'); |
|
120 | +define('_MI_SF_OPENINTROMSGDSC', 'Introduction message to be displayed in the Open Questions section of the module.'); |
|
121 | +define('_MI_SF_OPENINTROMSGDEF', "Here is a list of Open Questions, that is, questions that have been submitted by users of this site but are still without answer. You can click on an open question if you want to help us with an answer."); |
|
122 | 122 | |
123 | -define('_MI_SF_USEREALNAME','Use the Real Name of users'); |
|
124 | -define('_MI_SF_USEREALNAMEDSC','When displaying a username, use the real name of that user if he has a set his real name.'); |
|
123 | +define('_MI_SF_USEREALNAME', 'Use the Real Name of users'); |
|
124 | +define('_MI_SF_USEREALNAMEDSC', 'When displaying a username, use the real name of that user if he has a set his real name.'); |
|
125 | 125 | |
126 | -define('_MI_SF_HELP_PATH_SELECT',"Path of SmartFAQ's help files"); |
|
127 | -define('_MI_SF_HELP_PATH_SELECT_DSC',"Select from where you would like to access SmartFAQ's help files. If you downloaded the 'SmartFAQ's Help Package' and uploaded it in 'modules/smartfaq/doc/', you can select 'Inside the module'. Alternatively, you can access the module's help file directly from docs.xoops.org by chosing this in the selector. You can also select 'Custom Path' and specify yourself the path of the help files in the next config option 'Custom path of SmartFAQ's help files'"); |
|
126 | +define('_MI_SF_HELP_PATH_SELECT', "Path of SmartFAQ's help files"); |
|
127 | +define('_MI_SF_HELP_PATH_SELECT_DSC', "Select from where you would like to access SmartFAQ's help files. If you downloaded the 'SmartFAQ's Help Package' and uploaded it in 'modules/smartfaq/doc/', you can select 'Inside the module'. Alternatively, you can access the module's help file directly from docs.xoops.org by chosing this in the selector. You can also select 'Custom Path' and specify yourself the path of the help files in the next config option 'Custom path of SmartFAQ's help files'"); |
|
128 | 128 | |
129 | -define('_MI_SF_HELP_PATH_CUSTOM',"Custom path of SmartFAQ's help files"); |
|
130 | -define('_MI_SF_HELP_PATH_CUSTOM_DSC',"If you selected 'Custom path' in the previous option 'Path of SmartFAQ's help files', please specify the URL of SmartFAQ's help files, in that format : http://www.yoursite.com/doc"); |
|
129 | +define('_MI_SF_HELP_PATH_CUSTOM', "Custom path of SmartFAQ's help files"); |
|
130 | +define('_MI_SF_HELP_PATH_CUSTOM_DSC', "If you selected 'Custom path' in the previous option 'Path of SmartFAQ's help files', please specify the URL of SmartFAQ's help files, in that format : http://www.yoursite.com/doc"); |
|
131 | 131 | |
132 | -define('_MI_SF_HELP_INSIDE',"Inside the module"); |
|
133 | -define('_MI_SF_HELP_CUSTOM',"Custom Path"); |
|
132 | +define('_MI_SF_HELP_INSIDE', "Inside the module"); |
|
133 | +define('_MI_SF_HELP_CUSTOM', "Custom Path"); |
|
134 | 134 | |
135 | 135 | //define('_MI_SF_MODERATORSEDIT','Allow moderators to edit (Enhanced moderators)'); |
136 | 136 | //define('_MI_SF_MODERATORSEDITDSC','This option will allow moderators to edit questions and Q&A within categories for which they are moderators. Otherwise, moderators can only approve or reject questions and Q&A.'); |
137 | 137 | |
138 | 138 | // Names of admin menu items |
139 | -define("_MI_SF_ADMENU1","Q&A Manager"); |
|
140 | -define("_MI_SF_ADMENU2","Categories"); |
|
141 | -define("_MI_SF_ADMENU3","Published Q&A"); |
|
142 | -define("_MI_SF_ADMENU4","Open Questions"); |
|
143 | -define("_MI_SF_ADMENU5","Permissions"); |
|
144 | -define("_MI_SF_ADMENU6","Blocks and Groups"); |
|
145 | -define("_MI_SF_ADMENU7","Go to module"); |
|
146 | -define("_MI_SF_ADMENU8","Import"); |
|
139 | +define("_MI_SF_ADMENU1", "Q&A Manager"); |
|
140 | +define("_MI_SF_ADMENU2", "Categories"); |
|
141 | +define("_MI_SF_ADMENU3", "Published Q&A"); |
|
142 | +define("_MI_SF_ADMENU4", "Open Questions"); |
|
143 | +define("_MI_SF_ADMENU5", "Permissions"); |
|
144 | +define("_MI_SF_ADMENU6", "Blocks and Groups"); |
|
145 | +define("_MI_SF_ADMENU7", "Go to module"); |
|
146 | +define("_MI_SF_ADMENU8", "Import"); |
|
147 | 147 | |
148 | 148 | //Names of Blocks and Block information |
149 | -define("_MI_SF_ARTSNEW","Recent Q&A List"); |
|
150 | -define("_MI_SF_ARTSRANDOM_DIDUNO","Did you know?"); |
|
151 | -define("_MI_SF_ARTSRANDOM_FAQ","Random question!"); |
|
152 | -define("_MI_SF_ARTSRANDOM_HOW","How do I..."); |
|
153 | -define("_MI_SF_ARTSCONTEXT","Contextual Q&A"); |
|
154 | -define("_MI_SF_RECENTFAQS","Recent Q&A (Detail)"); |
|
155 | -define("_MI_SF_RECENT_QUESTIONS","Recent Open Questions"); |
|
156 | -define("_MI_SF_MOST_VIEWED","Most viewed Q&As"); |
|
149 | +define("_MI_SF_ARTSNEW", "Recent Q&A List"); |
|
150 | +define("_MI_SF_ARTSRANDOM_DIDUNO", "Did you know?"); |
|
151 | +define("_MI_SF_ARTSRANDOM_FAQ", "Random question!"); |
|
152 | +define("_MI_SF_ARTSRANDOM_HOW", "How do I..."); |
|
153 | +define("_MI_SF_ARTSCONTEXT", "Contextual Q&A"); |
|
154 | +define("_MI_SF_RECENTFAQS", "Recent Q&A (Detail)"); |
|
155 | +define("_MI_SF_RECENT_QUESTIONS", "Recent Open Questions"); |
|
156 | +define("_MI_SF_MOST_VIEWED", "Most viewed Q&As"); |
|
157 | 157 | |
158 | 158 | // Text for notifications |
159 | 159 | |
160 | -define('_MI_SF_GLOBAL_FAQ_NOTIFY','Global Q&A'); |
|
161 | -define('_MI_SF_GLOBAL_FAQ_NOTIFY_DSC','Notification options that apply to all Q&A.'); |
|
162 | - |
|
163 | -define('_MI_SF_CATEGORY_FAQ_NOTIFY','Category Q&A'); |
|
164 | -define('_MI_SF_CATEGORY_FAQ_NOTIFY_DSC','Notification options that apply to the current category.'); |
|
165 | - |
|
166 | -define('_MI_SF_FAQ_NOTIFY','Q&A'); |
|
167 | -define('_MI_SF_FAQ_NOTIFY_DSC','Notification options that apply to this Q&A.'); |
|
168 | - |
|
169 | -define('_MI_SF_GLOBAL_QUESTION_NOTIFY','Global Opened questions'); |
|
170 | -define('_MI_SF_GLOBAL_QUESTION_NOTIFY_DSC','Notification options that apply to all opened questions'); |
|
171 | - |
|
172 | -define('_MI_SF_CATEGORY_QUESTION_NOTIFY','Category Q&A'); |
|
173 | -define('_MI_SF_CATEGORY_QUESTION_NOTIFY_DSC','Notification options that apply to the current category.'); |
|
174 | - |
|
175 | -define('_MI_SF_QUESTION_NOTIFY','Opened Question'); |
|
176 | -define('_MI_SF_QUESTION_NOTIFY_DSC','Notification options that apply to the current Opened question.'); |
|
177 | - |
|
178 | -define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY','New category'); |
|
179 | -define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_CAP','Notify me when a new category is created.'); |
|
180 | -define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_DSC','Receive notification when a new category is created.'); |
|
181 | -define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New category'); |
|
182 | - |
|
183 | -define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY','Q&A submitted'); |
|
184 | -define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_CAP','Notify me when any Q&A is submitted and is awaiting approval.'); |
|
185 | -define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_DSC','Receive notification when any Q&A is submitted and is waiting approval.'); |
|
186 | -define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A submitted'); |
|
187 | - |
|
188 | -define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY','New Q&A published'); |
|
189 | -define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_CAP','Notify me when any new Q&A is published.'); |
|
190 | -define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_DSC','Receive notification when any new Q&A is published.'); |
|
191 | -define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A published'); |
|
192 | - |
|
193 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY','New answer proposed'); |
|
194 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_CAP','Notify me when a new answer is proposed for any Q&A.'); |
|
195 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_DSC','Receive notification when a new answer is proposed for any Q&A.'); |
|
196 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
197 | - |
|
198 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY','New answer published'); |
|
199 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_CAP','Notify me when a new answer is published for any Q&A.'); |
|
200 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_DSC','Receive notification when a new answer is published for any Q&A.'); |
|
201 | -define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer published'); |
|
202 | - |
|
203 | -define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY','Q&A submitted'); |
|
204 | -define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_CAP','Notify me when a new Q&A is submitted in the current category.'); |
|
205 | -define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_DSC','Receive notification when a new Q&A is submitted in the current category.'); |
|
206 | -define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A submitted in category'); |
|
207 | - |
|
208 | -define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY','New Q&A published'); |
|
209 | -define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_CAP','Notify me when a new Q&A is published in the current category.'); |
|
210 | -define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_DSC','Receive notification when a new Q&A is published in the current category.'); |
|
211 | -define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A published in category'); |
|
212 | - |
|
213 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY','New answer proposed'); |
|
214 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_CAP','Notify me when a new answer is proposed for a Q&A in this category.'); |
|
215 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_DSC','Receive notification when a new answer is proposed for a Q&A in this category.'); |
|
216 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
217 | - |
|
218 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY','New answer published'); |
|
219 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_CAP','Notify me when a new answer is published for a Q&A in this category.'); |
|
220 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_DSC','Receive notification when a new answer is published for a Q&A in this category.'); |
|
221 | -define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer published'); |
|
222 | - |
|
223 | -define('_MI_SF_FAQ_REJECTED_NOTIFY','Q&A rejected'); |
|
224 | -define('_MI_SF_FAQ_REJECTED_NOTIFY_CAP','Notify me if this Q&A is rejected.'); |
|
225 | -define('_MI_SF_FAQ_REJECTED_NOTIFY_DSC','Receive notification if this Q&A is rejected.'); |
|
226 | -define('_MI_SF_FAQ_REJECTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Q&A rejected'); |
|
227 | - |
|
228 | -define('_MI_SF_FAQ_APPROVED_NOTIFY','Q&A approved'); |
|
229 | -define('_MI_SF_FAQ_APPROVED_NOTIFY_CAP','Notify me when this Q&A is approved.'); |
|
230 | -define('_MI_SF_FAQ_APPROVED_NOTIFY_DSC','Receive notification when this Q&A is approved.'); |
|
231 | -define('_MI_SF_FAQ_APPROVED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Q&A approved'); |
|
232 | - |
|
233 | -define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY','Answer approved'); |
|
234 | -define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_CAP','Notify me when this answer is approved.'); |
|
235 | -define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_DSC','Receive notification when this answer is approved.'); |
|
236 | -define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Answer approved'); |
|
237 | - |
|
238 | -define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY','Answer rejected'); |
|
239 | -define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_CAP','Notify me if this answer is rejected.'); |
|
240 | -define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_DSC','Receive notification if this answer is rejected.'); |
|
241 | -define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Answer rejected'); |
|
242 | - |
|
243 | -define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY','Question submitted'); |
|
244 | -define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_CAP','Notify me when any question is submitted and is waiting approval.'); |
|
245 | -define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_DSC','Receive notification when any question is submitted and is waiting approval.'); |
|
246 | -define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New question submitted'); |
|
247 | - |
|
248 | -define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY','Question published'); |
|
249 | -define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_CAP','Notify me when any question is published in the Open Questions section.'); |
|
250 | -define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_DSC','Receive notification when any question is published in the Open Questions section.'); |
|
251 | -define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New question published'); |
|
252 | - |
|
253 | -define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY','Answer proposed'); |
|
254 | -define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_CAP','Notify me when an answer is proposed for any open question.'); |
|
255 | -define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_DSC','Receive notification when an answer is proposed for any open question.'); |
|
256 | -define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
257 | - |
|
258 | -define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY','Question submitted'); |
|
259 | -define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_CAP','Notify me when a question is submitted in the current category.'); |
|
260 | -define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_DSC','Receive notification when a question is submitted in the current category.'); |
|
261 | -define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New question submitted'); |
|
262 | - |
|
263 | -define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY','Question published'); |
|
264 | -define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_CAP','Notify me when a question is published in the current category.'); |
|
265 | -define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_DSC','Receive notification when a question is published in the current category.'); |
|
266 | -define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New question published'); |
|
267 | - |
|
268 | -define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY','Answer proposed'); |
|
269 | -define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_CAP','Notify me when a new answer is proposed for an opened question in this category.'); |
|
270 | -define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_DSC','Receive notification when a new answer is proposed for an opened question in this category.'); |
|
271 | -define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
272 | - |
|
273 | -define('_MI_SF_QUESTION_REJECTED_NOTIFY','Question rejected'); |
|
274 | -define('_MI_SF_QUESTION_REJECTED_NOTIFY_CAP','Notify me if this question is rejected.'); |
|
275 | -define('_MI_SF_QUESTION_REJECTED_NOTIFY_DSC','Receive notification if this question is rejected.'); |
|
276 | -define('_MI_SF_QUESTION_REJECTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Question rejected'); |
|
277 | - |
|
278 | -define('_MI_SF_QUESTION_APPROVED_NOTIFY','Question approved'); |
|
279 | -define('_MI_SF_QUESTION_APPROVED_NOTIFY_CAP','Notify me when this question is approved.'); |
|
280 | -define('_MI_SF_QUESTION_APPROVED_NOTIFY_DSC','Receive notification when this question is approved.'); |
|
281 | -define('_MI_SF_QUESTION_APPROVED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Question approved'); |
|
282 | - |
|
283 | -define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY','Answer approved'); |
|
284 | -define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_CAP','Notify me when this answer is approved.'); |
|
285 | -define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_DSC','Receive notification when this answer is approved.'); |
|
286 | -define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Answer approved'); |
|
287 | - |
|
288 | -define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY','Answer rejected'); |
|
289 | -define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_CAP','Notify me if this answer is rejected.'); |
|
290 | -define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_DSC','Receive notification if this answer is rejected.'); |
|
291 | -define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_SBJ','[{X_SITENAME}] {X_MODULE} auto-notify : Answer rejected'); |
|
160 | +define('_MI_SF_GLOBAL_FAQ_NOTIFY', 'Global Q&A'); |
|
161 | +define('_MI_SF_GLOBAL_FAQ_NOTIFY_DSC', 'Notification options that apply to all Q&A.'); |
|
162 | + |
|
163 | +define('_MI_SF_CATEGORY_FAQ_NOTIFY', 'Category Q&A'); |
|
164 | +define('_MI_SF_CATEGORY_FAQ_NOTIFY_DSC', 'Notification options that apply to the current category.'); |
|
165 | + |
|
166 | +define('_MI_SF_FAQ_NOTIFY', 'Q&A'); |
|
167 | +define('_MI_SF_FAQ_NOTIFY_DSC', 'Notification options that apply to this Q&A.'); |
|
168 | + |
|
169 | +define('_MI_SF_GLOBAL_QUESTION_NOTIFY', 'Global Opened questions'); |
|
170 | +define('_MI_SF_GLOBAL_QUESTION_NOTIFY_DSC', 'Notification options that apply to all opened questions'); |
|
171 | + |
|
172 | +define('_MI_SF_CATEGORY_QUESTION_NOTIFY', 'Category Q&A'); |
|
173 | +define('_MI_SF_CATEGORY_QUESTION_NOTIFY_DSC', 'Notification options that apply to the current category.'); |
|
174 | + |
|
175 | +define('_MI_SF_QUESTION_NOTIFY', 'Opened Question'); |
|
176 | +define('_MI_SF_QUESTION_NOTIFY_DSC', 'Notification options that apply to the current Opened question.'); |
|
177 | + |
|
178 | +define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY', 'New category'); |
|
179 | +define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_CAP', 'Notify me when a new category is created.'); |
|
180 | +define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_DSC', 'Receive notification when a new category is created.'); |
|
181 | +define('_MI_SF_GLOBAL_FAQ_CATEGORY_CREATED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New category'); |
|
182 | + |
|
183 | +define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY', 'Q&A submitted'); |
|
184 | +define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_CAP', 'Notify me when any Q&A is submitted and is awaiting approval.'); |
|
185 | +define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_DSC', 'Receive notification when any Q&A is submitted and is waiting approval.'); |
|
186 | +define('_MI_SF_GLOBAL_FAQ_SUBMITTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A submitted'); |
|
187 | + |
|
188 | +define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY', 'New Q&A published'); |
|
189 | +define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_CAP', 'Notify me when any new Q&A is published.'); |
|
190 | +define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_DSC', 'Receive notification when any new Q&A is published.'); |
|
191 | +define('_MI_SF_GLOBAL_FAQ_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A published'); |
|
192 | + |
|
193 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY', 'New answer proposed'); |
|
194 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_CAP', 'Notify me when a new answer is proposed for any Q&A.'); |
|
195 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_DSC', 'Receive notification when a new answer is proposed for any Q&A.'); |
|
196 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PROPOSED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
197 | + |
|
198 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY', 'New answer published'); |
|
199 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_CAP', 'Notify me when a new answer is published for any Q&A.'); |
|
200 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_DSC', 'Receive notification when a new answer is published for any Q&A.'); |
|
201 | +define('_MI_SF_GLOBAL_FAQ_ANSWER_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer published'); |
|
202 | + |
|
203 | +define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY', 'Q&A submitted'); |
|
204 | +define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_CAP', 'Notify me when a new Q&A is submitted in the current category.'); |
|
205 | +define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_DSC', 'Receive notification when a new Q&A is submitted in the current category.'); |
|
206 | +define('_MI_SF_CATEGORY_FAQ_SUBMITTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A submitted in category'); |
|
207 | + |
|
208 | +define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY', 'New Q&A published'); |
|
209 | +define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_CAP', 'Notify me when a new Q&A is published in the current category.'); |
|
210 | +define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_DSC', 'Receive notification when a new Q&A is published in the current category.'); |
|
211 | +define('_MI_SF_CATEGORY_FAQ_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New Q&A published in category'); |
|
212 | + |
|
213 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY', 'New answer proposed'); |
|
214 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_CAP', 'Notify me when a new answer is proposed for a Q&A in this category.'); |
|
215 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_DSC', 'Receive notification when a new answer is proposed for a Q&A in this category.'); |
|
216 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PROPOSED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
217 | + |
|
218 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY', 'New answer published'); |
|
219 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_CAP', 'Notify me when a new answer is published for a Q&A in this category.'); |
|
220 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_DSC', 'Receive notification when a new answer is published for a Q&A in this category.'); |
|
221 | +define('_MI_SF_CATEGORY_FAQ_ANSWER_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer published'); |
|
222 | + |
|
223 | +define('_MI_SF_FAQ_REJECTED_NOTIFY', 'Q&A rejected'); |
|
224 | +define('_MI_SF_FAQ_REJECTED_NOTIFY_CAP', 'Notify me if this Q&A is rejected.'); |
|
225 | +define('_MI_SF_FAQ_REJECTED_NOTIFY_DSC', 'Receive notification if this Q&A is rejected.'); |
|
226 | +define('_MI_SF_FAQ_REJECTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Q&A rejected'); |
|
227 | + |
|
228 | +define('_MI_SF_FAQ_APPROVED_NOTIFY', 'Q&A approved'); |
|
229 | +define('_MI_SF_FAQ_APPROVED_NOTIFY_CAP', 'Notify me when this Q&A is approved.'); |
|
230 | +define('_MI_SF_FAQ_APPROVED_NOTIFY_DSC', 'Receive notification when this Q&A is approved.'); |
|
231 | +define('_MI_SF_FAQ_APPROVED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Q&A approved'); |
|
232 | + |
|
233 | +define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY', 'Answer approved'); |
|
234 | +define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_CAP', 'Notify me when this answer is approved.'); |
|
235 | +define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_DSC', 'Receive notification when this answer is approved.'); |
|
236 | +define('_MI_SF_FAQ_ANSWER_APPROVED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Answer approved'); |
|
237 | + |
|
238 | +define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY', 'Answer rejected'); |
|
239 | +define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_CAP', 'Notify me if this answer is rejected.'); |
|
240 | +define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_DSC', 'Receive notification if this answer is rejected.'); |
|
241 | +define('_MI_SF_FAQ_ANSWER_REJECTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Answer rejected'); |
|
242 | + |
|
243 | +define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY', 'Question submitted'); |
|
244 | +define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_CAP', 'Notify me when any question is submitted and is waiting approval.'); |
|
245 | +define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_DSC', 'Receive notification when any question is submitted and is waiting approval.'); |
|
246 | +define('_MI_SF_GLOBAL_QUESTION_SUBMITTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New question submitted'); |
|
247 | + |
|
248 | +define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY', 'Question published'); |
|
249 | +define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_CAP', 'Notify me when any question is published in the Open Questions section.'); |
|
250 | +define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_DSC', 'Receive notification when any question is published in the Open Questions section.'); |
|
251 | +define('_MI_SF_GLOBAL_QUESTION_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New question published'); |
|
252 | + |
|
253 | +define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY', 'Answer proposed'); |
|
254 | +define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_CAP', 'Notify me when an answer is proposed for any open question.'); |
|
255 | +define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_DSC', 'Receive notification when an answer is proposed for any open question.'); |
|
256 | +define('_MI_SF_GLOBAL_QUESTION_ANSWER_PROPOSED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
257 | + |
|
258 | +define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY', 'Question submitted'); |
|
259 | +define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_CAP', 'Notify me when a question is submitted in the current category.'); |
|
260 | +define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_DSC', 'Receive notification when a question is submitted in the current category.'); |
|
261 | +define('_MI_SF_CATEGORY_QUESTION_SUBMITTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New question submitted'); |
|
262 | + |
|
263 | +define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY', 'Question published'); |
|
264 | +define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_CAP', 'Notify me when a question is published in the current category.'); |
|
265 | +define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_DSC', 'Receive notification when a question is published in the current category.'); |
|
266 | +define('_MI_SF_CATEGORY_QUESTION_PUBLISHED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New question published'); |
|
267 | + |
|
268 | +define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY', 'Answer proposed'); |
|
269 | +define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_CAP', 'Notify me when a new answer is proposed for an opened question in this category.'); |
|
270 | +define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_DSC', 'Receive notification when a new answer is proposed for an opened question in this category.'); |
|
271 | +define('_MI_SF_CATEGORY_QUESTION_ANSWER_PROPOSED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : New answer proposed'); |
|
272 | + |
|
273 | +define('_MI_SF_QUESTION_REJECTED_NOTIFY', 'Question rejected'); |
|
274 | +define('_MI_SF_QUESTION_REJECTED_NOTIFY_CAP', 'Notify me if this question is rejected.'); |
|
275 | +define('_MI_SF_QUESTION_REJECTED_NOTIFY_DSC', 'Receive notification if this question is rejected.'); |
|
276 | +define('_MI_SF_QUESTION_REJECTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Question rejected'); |
|
277 | + |
|
278 | +define('_MI_SF_QUESTION_APPROVED_NOTIFY', 'Question approved'); |
|
279 | +define('_MI_SF_QUESTION_APPROVED_NOTIFY_CAP', 'Notify me when this question is approved.'); |
|
280 | +define('_MI_SF_QUESTION_APPROVED_NOTIFY_DSC', 'Receive notification when this question is approved.'); |
|
281 | +define('_MI_SF_QUESTION_APPROVED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Question approved'); |
|
282 | + |
|
283 | +define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY', 'Answer approved'); |
|
284 | +define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_CAP', 'Notify me when this answer is approved.'); |
|
285 | +define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_DSC', 'Receive notification when this answer is approved.'); |
|
286 | +define('_MI_SF_QUESTION_ANSWER_APPROVED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Answer approved'); |
|
287 | + |
|
288 | +define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY', 'Answer rejected'); |
|
289 | +define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_CAP', 'Notify me if this answer is rejected.'); |
|
290 | +define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_DSC', 'Receive notification if this answer is rejected.'); |
|
291 | +define('_MI_SF_QUESTION_ANSWER_REJECTED_NOTIFY_SBJ', '[{X_SITENAME}] {X_MODULE} auto-notify : Answer rejected'); |
|
292 | 292 | |
293 | 293 | // About.php constants |
294 | -define('_MI_SF_AUTHOR_INFO',"Developers"); |
|
295 | -define('_MI_SF_DEVELOPER_LEAD',"Lead developer(s)"); |
|
296 | -define('_MI_SF_DEVELOPER_CONTRIBUTOR',"Contributor(s)"); |
|
297 | -define('_MI_SF_DEVELOPER_WEBSITE',"Website"); |
|
298 | -define('_MI_SF_DEVELOPER_EMAIL',"Email"); |
|
299 | -define('_MI_SF_DEVELOPER_CREDITS',"Credits"); |
|
300 | -define('_MI_SF_DEMO_SITE',"SmartFactory Demo Site"); |
|
301 | -define('_MI_SF_MODULE_INFO',"Module Developpment Informations"); |
|
302 | -define('_MI_SF_MODULE_STATUS',"Status"); |
|
303 | -define('_MI_SF_MODULE_RELEASE_DATE',"Release date"); |
|
304 | -define('_MI_SF_MODULE_DEMO',"Demo Site"); |
|
305 | -define('_MI_SF_MODULE_SUPPORT',"Official support site"); |
|
306 | -define('_MI_SF_MODULE_BUG',"Report a bug for this module"); |
|
307 | -define('_MI_SF_MODULE_FEATURE',"Suggest a new feature for this module"); |
|
308 | -define('_MI_SF_MODULE_DISCLAIMER',"Disclaimer"); |
|
309 | -define('_MI_SF_AUTHOR_WORD',"The Author's Word"); |
|
310 | -define('_MI_SF_VERSION_HISTORY',"Version History"); |
|
294 | +define('_MI_SF_AUTHOR_INFO', "Developers"); |
|
295 | +define('_MI_SF_DEVELOPER_LEAD', "Lead developer(s)"); |
|
296 | +define('_MI_SF_DEVELOPER_CONTRIBUTOR', "Contributor(s)"); |
|
297 | +define('_MI_SF_DEVELOPER_WEBSITE', "Website"); |
|
298 | +define('_MI_SF_DEVELOPER_EMAIL', "Email"); |
|
299 | +define('_MI_SF_DEVELOPER_CREDITS', "Credits"); |
|
300 | +define('_MI_SF_DEMO_SITE', "SmartFactory Demo Site"); |
|
301 | +define('_MI_SF_MODULE_INFO', "Module Developpment Informations"); |
|
302 | +define('_MI_SF_MODULE_STATUS', "Status"); |
|
303 | +define('_MI_SF_MODULE_RELEASE_DATE', "Release date"); |
|
304 | +define('_MI_SF_MODULE_DEMO', "Demo Site"); |
|
305 | +define('_MI_SF_MODULE_SUPPORT', "Official support site"); |
|
306 | +define('_MI_SF_MODULE_BUG', "Report a bug for this module"); |
|
307 | +define('_MI_SF_MODULE_FEATURE', "Suggest a new feature for this module"); |
|
308 | +define('_MI_SF_MODULE_DISCLAIMER', "Disclaimer"); |
|
309 | +define('_MI_SF_AUTHOR_WORD', "The Author's Word"); |
|
310 | +define('_MI_SF_VERSION_HISTORY', "Version History"); |
|
311 | 311 | |
312 | 312 | // Beta |
313 | -define('_MI_SF_WARNING_BETA',"This module comes as is, without any guarantees whatsoever. |
|
313 | +define('_MI_SF_WARNING_BETA', "This module comes as is, without any guarantees whatsoever. |
|
314 | 314 | This module is BETA, meaning it is still under active development. This release is meant for |
315 | 315 | <b>testing purposes only</b> and we <b>strongly</b> recommend that you do not use it on a live |
316 | 316 | website or in a production environment."); |
317 | 317 | |
318 | 318 | // RC |
319 | -define('_MI_SF_WARNING_RC',"This module comes as is, without any guarantees whatsoever. This module |
|
319 | +define('_MI_SF_WARNING_RC', "This module comes as is, without any guarantees whatsoever. This module |
|
320 | 320 | is a Release Candidate and should not be used on a production web site. The module is still under |
321 | 321 | active development and its use is under your own responsibility, which means the author is not responsible."); |
322 | 322 | |
323 | 323 | // Final |
324 | -define('_MI_SF_WARNING_FINAL',"This module comes as is, without any guarantees whatsoever. Although this |
|
324 | +define('_MI_SF_WARNING_FINAL', "This module comes as is, without any guarantees whatsoever. Although this |
|
325 | 325 | module is not beta, it is still under active development. This release can be used in a live website |
326 | 326 | or a production environment, but its use is under your own responsibility, which means the author |
327 | 327 | is not responsible."); |
328 | 328 | |
329 | 329 | //1.11 RC1 |
330 | 330 | |
331 | -define('_MI_SF_EDITOR',"Editor to use (admin):"); |
|
332 | -define('_MI_SF_EDITORCHOICE',"Select the editor to use for admin side. If you have a 'simple' install (e.g you use only XOOPS core editor class, provided in the standard xoops core package), then you can just select DHTML and Compact"); |
|
333 | -define('_MI_SF_EDITORUSER',"Editor to use (user):"); |
|
334 | -define('_MI_SF_EDITORCHOICEUSER',"Select the editor to use for user side. If you have a 'simple' install (e.g you use only XOOPS core editor class, provided in the standard xoops core package), then you can just select DHTML and Compact"); |
|
331 | +define('_MI_SF_EDITOR', "Editor to use (admin):"); |
|
332 | +define('_MI_SF_EDITORCHOICE', "Select the editor to use for admin side. If you have a 'simple' install (e.g you use only XOOPS core editor class, provided in the standard xoops core package), then you can just select DHTML and Compact"); |
|
333 | +define('_MI_SF_EDITORUSER', "Editor to use (user):"); |
|
334 | +define('_MI_SF_EDITORCHOICEUSER', "Select the editor to use for user side. If you have a 'simple' install (e.g you use only XOOPS core editor class, provided in the standard xoops core package), then you can just select DHTML and Compact"); |
|
335 | 335 | |
336 | 336 | //1.11 RC2 |
337 | 337 | |
@@ -343,37 +343,37 @@ discard block |
||
343 | 343 | |
344 | 344 | //------------------------------ |
345 | 345 | |
346 | -define("_MI_SF_DIR_ATTACHMENT","Attachments physical path."); |
|
347 | -define("_MI_SF_DIR_ATTACHMENT_DESC","Physical path only needs to be set from your xoops root and not before, for example you may have attachments uploaded to www.yoururl.com/uploads/newbb the path entered would then be '/uploads/newbb' never include a trailing slash '/' the thumbnails path becomes '/uploads/newbb/thumbs'"); |
|
348 | -define("_MI_SF_PATH_MAGICK","Path for ImageMagick"); |
|
349 | -define("_MI_SF_PATH_MAGICK_DESC","Usually it is '/usr/bin/X11'. Leave it BLANK if you do not have ImageMagicK installed or for autodetecting."); |
|
350 | -define("_MI_SF_SUBFORUM_DISPLAY","Display Mode of subforums on index page"); |
|
351 | -define("_MI_SF_SUBFORUM_DISPLAY_DESC","Choose one of the methods to display subforums"); |
|
352 | -define("_MI_SF_SUBFORUM_EXPAND","Expand"); |
|
353 | -define("_MI_SF_SUBFORUM_COLLAPSE","Collapse"); |
|
354 | -define("_MI_SF_SUBFORUM_HIDDEN","Hidden"); |
|
355 | -define("_MI_SF_POST_EXCERPT","Post excerpt on forum page"); |
|
356 | -define("_MI_SF_POST_EXCERPT_DESC","Length of post excerpt by mouse over. 0 for no excerpt."); |
|
357 | -define("_MI_SF_PATH_NETPBM","Path for Netpbm"); |
|
358 | -define("_MI_SF_PATH_NETPBM_DESC","Usually it is '/usr/bin'. Leave it BLANK if you do not have Netpbm installed or for autodetecting."); |
|
359 | -define("_MI_SF_IMAGELIB","Select the Image library to use"); |
|
360 | -define("_MI_SF_IMAGELIB_DESC","Select which Image library to use for creating Thumbnails. Leave AUTO for automatic choice."); |
|
361 | -define("_MI_SF_MAX_IMG_WIDTH","Maximum Image Width"); |
|
362 | -define("_MI_SF_MAX_IMG_WIDTH_DESC","Sets the maximum allowed <strong>Width</strong> size of an uploaded image otherwise thumbnail will be used. <br >Input 0 if you do not want to create thumbnails."); |
|
363 | -define("_MI_SF_MAX_IMG_HEIGHT","Maximum height of an image"); |
|
364 | -define("_MI_SF_MAX_IMG_HEIGHT_DESC","Sets the maximum allowed height of an uploaded image."); |
|
365 | -define("_MI_SF_MAX_IMAGE_WIDTH","Maximum Image Width for creating thumbnail"); |
|
366 | -define("_MI_SF_MAX_IMAGE_WIDTH_DESC","Sets the maximum width of an uploaded image to create thumbnail. <br >Image with width larger than the value will not use thumbnail."); |
|
367 | -define("_MI_SF_MAX_IMAGE_HEIGHT","Maximum Image Height for creating thumbnail"); |
|
368 | -define("_MI_SF_MAX_IMAGE_HEIGHT_DESC","Sets the maximum height of an uploaded image to create thumbnail. <br >Image with height larger than the value will not use thumbnail."); |
|
369 | - |
|
370 | -define("_MI_SF_MAX_IMAGE_SIZE","Size in KB"); |
|
371 | -define("_MI_SF_MAX_IMAGE_SIZE_DESC","Indicate the maximum file size in KB"); |
|
372 | - |
|
373 | -define("_AM_SF_ALLOWED_EXTENSIONS","Allowed Extensions:<span style='font-size: xx-small; font-weight: normal; display: block;'>'*' indicates no limititations.<br /> Extensions delimited by '|'</span>"); |
|
374 | - |
|
375 | -define("_MI_SF_USERATTACH_ENABLE","Display attachments only for registered users"); |
|
376 | -define("_MI_SF_USERATTACH_ENABLE_DESC","shows attachments in the forum only after logging in."); |
|
377 | - |
|
378 | -define("_MI_SF_MEDIA_ENABLE","Enable Media Features"); |
|
379 | -define("_MI_SF_MEDIA_ENABLE_DESC","Display attached Images directly in the post."); |
|
346 | +define("_MI_SF_DIR_ATTACHMENT", "Attachments physical path."); |
|
347 | +define("_MI_SF_DIR_ATTACHMENT_DESC", "Physical path only needs to be set from your xoops root and not before, for example you may have attachments uploaded to www.yoururl.com/uploads/newbb the path entered would then be '/uploads/newbb' never include a trailing slash '/' the thumbnails path becomes '/uploads/newbb/thumbs'"); |
|
348 | +define("_MI_SF_PATH_MAGICK", "Path for ImageMagick"); |
|
349 | +define("_MI_SF_PATH_MAGICK_DESC", "Usually it is '/usr/bin/X11'. Leave it BLANK if you do not have ImageMagicK installed or for autodetecting."); |
|
350 | +define("_MI_SF_SUBFORUM_DISPLAY", "Display Mode of subforums on index page"); |
|
351 | +define("_MI_SF_SUBFORUM_DISPLAY_DESC", "Choose one of the methods to display subforums"); |
|
352 | +define("_MI_SF_SUBFORUM_EXPAND", "Expand"); |
|
353 | +define("_MI_SF_SUBFORUM_COLLAPSE", "Collapse"); |
|
354 | +define("_MI_SF_SUBFORUM_HIDDEN", "Hidden"); |
|
355 | +define("_MI_SF_POST_EXCERPT", "Post excerpt on forum page"); |
|
356 | +define("_MI_SF_POST_EXCERPT_DESC", "Length of post excerpt by mouse over. 0 for no excerpt."); |
|
357 | +define("_MI_SF_PATH_NETPBM", "Path for Netpbm"); |
|
358 | +define("_MI_SF_PATH_NETPBM_DESC", "Usually it is '/usr/bin'. Leave it BLANK if you do not have Netpbm installed or for autodetecting."); |
|
359 | +define("_MI_SF_IMAGELIB", "Select the Image library to use"); |
|
360 | +define("_MI_SF_IMAGELIB_DESC", "Select which Image library to use for creating Thumbnails. Leave AUTO for automatic choice."); |
|
361 | +define("_MI_SF_MAX_IMG_WIDTH", "Maximum Image Width"); |
|
362 | +define("_MI_SF_MAX_IMG_WIDTH_DESC", "Sets the maximum allowed <strong>Width</strong> size of an uploaded image otherwise thumbnail will be used. <br >Input 0 if you do not want to create thumbnails."); |
|
363 | +define("_MI_SF_MAX_IMG_HEIGHT", "Maximum height of an image"); |
|
364 | +define("_MI_SF_MAX_IMG_HEIGHT_DESC", "Sets the maximum allowed height of an uploaded image."); |
|
365 | +define("_MI_SF_MAX_IMAGE_WIDTH", "Maximum Image Width for creating thumbnail"); |
|
366 | +define("_MI_SF_MAX_IMAGE_WIDTH_DESC", "Sets the maximum width of an uploaded image to create thumbnail. <br >Image with width larger than the value will not use thumbnail."); |
|
367 | +define("_MI_SF_MAX_IMAGE_HEIGHT", "Maximum Image Height for creating thumbnail"); |
|
368 | +define("_MI_SF_MAX_IMAGE_HEIGHT_DESC", "Sets the maximum height of an uploaded image to create thumbnail. <br >Image with height larger than the value will not use thumbnail."); |
|
369 | + |
|
370 | +define("_MI_SF_MAX_IMAGE_SIZE", "Size in KB"); |
|
371 | +define("_MI_SF_MAX_IMAGE_SIZE_DESC", "Indicate the maximum file size in KB"); |
|
372 | + |
|
373 | +define("_AM_SF_ALLOWED_EXTENSIONS", "Allowed Extensions:<span style='font-size: xx-small; font-weight: normal; display: block;'>'*' indicates no limititations.<br /> Extensions delimited by '|'</span>"); |
|
374 | + |
|
375 | +define("_MI_SF_USERATTACH_ENABLE", "Display attachments only for registered users"); |
|
376 | +define("_MI_SF_USERATTACH_ENABLE_DESC", "shows attachments in the forum only after logging in."); |
|
377 | + |
|
378 | +define("_MI_SF_MEDIA_ENABLE", "Enable Media Features"); |
|
379 | +define("_MI_SF_MEDIA_ENABLE_DESC", "Display attached Images directly in the post."); |
@@ -7,160 +7,160 @@ |
||
7 | 7 | * Licence: GNU |
8 | 8 | */ |
9 | 9 | |
10 | -define("_MD_SF_ACTION","Action"); |
|
11 | -define("_MD_SF_ALL","All"); |
|
12 | -define("_MD_SF_ADMIN_PAGE",":: Admin Section ::"); |
|
13 | -define("_MD_SF_ALLOWCOMMENTS","Allow comments?"); |
|
14 | -define("_MD_SF_ANSWERED","Answered"); |
|
15 | -define("_MD_SF_ANSWERQUESTION","[Submit an answer!]"); |
|
16 | -define("_MD_SF_ANSWER_FAQ","Answer"); |
|
17 | -define("_MD_SF_ANSWER_FAQ_DSC","Detailed answer to the above question."); |
|
18 | -define("_MD_SF_APPROVE","Approve"); |
|
19 | -define("_MD_SF_ARTBODY","Detail answer"); |
|
20 | -define("_MD_SF_ARTICLES"," Q&A."); |
|
21 | -define("_MD_SF_BACK2CAT","Return to category"); |
|
22 | -define("_MD_SF_CATEGORY_SUMMARY","Category summary"); |
|
23 | -define("_MD_SF_CATEGORY_SUMMARY_INFO","Here is information related to this category."); |
|
24 | -define("_MD_SF_CATEGORY_EDIT","Edit category"); |
|
25 | -define("_MD_SF_CANCEL","Cancel"); |
|
26 | -define("_MD_SF_CLEAR","Clear"); |
|
27 | -define("_MD_SF_COMMENTS","Comment(s)"); |
|
28 | -define("_MD_SF_CONTEXTMODULELINK","Contextually linked to this module"); |
|
29 | -define("_MD_SF_CONTEXTMODULELINK_FAQ","Contextually linked to this module"); |
|
30 | -define("_MD_SF_CONTEXTMODULELINK_FAQ_DSC","Select the module to which this Q&A will be linked. If the Contextual Q&A block is visible on that module, the 'How do I' statement of this Q&A will be displayed."); |
|
31 | -define("_MD_SF_CONTEXTPAGE","Contextually linked to this URL"); |
|
32 | -define("_MD_SF_CONTEXTPAGEDEF","Contextual Page"); |
|
33 | -define("_MD_SF_CONTEXTPAGEDEF_DSC","Page for which this Q&A gives explanation <b>Example :</b> modules/newbb"); |
|
34 | -define("_MD_SF_CREATE","Submit the Q&A"); |
|
35 | -define("_MD_SF_CATEGORY","Category"); |
|
36 | -define("_MD_SF_CATEGORY_FAQ","Category"); |
|
37 | -define("_MD_SF_CATEGORY_FAQ_DSC","Select a category for this Q&A."); |
|
38 | -define("_MD_SF_CATEGORY_QUESTION","Category"); |
|
39 | -define("_MD_SF_CATEGORY_QUESTION_DSC","Select a category for this Question."); |
|
40 | -define("_MD_SF_DATE","Date"); |
|
41 | -define("_MD_SF_DATESUB","Published on"); |
|
42 | -define("_MD_SF_DESCRIPTION","Description"); |
|
43 | -define("_MD_SF_DELETE","Delete Q&A"); |
|
44 | -define("_MD_SF_DIDUNO","Did You Know?"); |
|
45 | -define("_MD_SF_DIDUNO_FAQ","Did You Know?"); |
|
46 | -define("_MD_SF_DIDUNO_FAQ_DSC","This will be used in the Did You Know block."); |
|
47 | -define("_MD_SF_DOHTML","Enable HTML tags "); |
|
48 | -define("_MD_SF_DOSMILEY","Enable smiley icons "); |
|
49 | -define("_MD_SF_DOXCODE","Enable XOOPS codes"); |
|
50 | -define("_MD_SF_EDIT","Edit Q&A"); |
|
51 | -define("_MD_SF_ERROR_ANSWER_NOT_SAVED","An error occured. The answer was not saved in the database."); |
|
52 | -define("_MD_SF_ERROR_FAQ_NOT_SAVED","An error occured. The Q&A was not saved in the database."); |
|
53 | -define("_MD_SF_ERRORSAVINGDB","ERROR: Database has NOT been Updated due to an Error!"); |
|
54 | -define("_MD_SF_EXACTURL","Exact URL?"); |
|
55 | -define("_MD_SF_EXACTURL_DSC","If set to 'Yes', the Q&A will only display in the'Specific URL set above'. If set to 'No', the Q&A will be displayed all pages that match a part of the root of the specific URL.ie modules/newbb/*.php"); |
|
56 | -define("_MD_SF_FAQ_NEW_ANSWER_NEED_APPROBATION","Your answer was submitted successfully and will be reviewed by a moderator."); |
|
57 | -define("_MD_SF_FAQ_NEW_ANSWER_PUBLISHED","Your answer was submitted successfully and will be automatically published in the Q&A section, as a replacement of the original answer."); |
|
58 | -define("_MD_SF_FAQCOMEFROM","This Q&A was found on "); |
|
59 | -define("_MD_SF_FINDFAQHERE","Find this Q&A here : "); |
|
60 | -define("_MD_SF_GOODDAY","Good day, "); |
|
61 | -define("_MD_SF_HITS","Hits"); |
|
62 | -define("_MD_SF_HITSDETAIL","This Q&A has been read"); |
|
63 | -define("_MD_SF_HOME","Home"); |
|
64 | -define("_MD_SF_HOWDOI","How do I..."); |
|
65 | -define("_MD_SF_HOWDOI_FAQ","How do I.."); |
|
66 | -define("_MD_SF_HOWDOI_FAQ_DSC","This will be used in the Contextual Q&A Block. It should be a short version of the question."); |
|
67 | -define("_MD_SF_INDEX_CATEGORIES_SUMMARY","Categories summary"); |
|
68 | -define("_MD_SF_INDEX_CATEGORIES_SUMMARY_INFO","Here is a list of the top categories and their sub-categories. Select a category to see the Q&As within."); |
|
69 | -define("_MD_SF_INDEX_CATEGORIES_QUESTIONS_SUMMARY_INFO","Here is a list of the top categories and their sub-categories. Select a category to see the open questions within."); |
|
70 | -define("_MD_SF_INDEX_FAQS","Last published Q&A"); |
|
71 | -define("_MD_SF_INDEX_FAQS_INFO","Here is a list of the last Q&As that were published."); |
|
72 | -define("_MD_SF_INDEX_QUESTIONS","Last published questions"); |
|
73 | -define("_MD_SF_INDEX_QUESTIONS_INFO","Here is a list of the last open questions that were published."); |
|
74 | -define("_MD_SF_INTARTFOUND","Here is an interesting Question and Answer I have found at %s"); |
|
75 | -define("_MD_SF_INTARTICLE","Have a look at this FAQ at %s"); |
|
76 | -define("_MD_SF_MAIL","Send Q&A"); |
|
77 | -define("_MD_SF_MAINHEAD","Welcome to the"); |
|
78 | -define("_MD_SF_MAININTRO","In this area of the site, you will find the answers to the frequently asked questions. Each Q&A is placed in a category for easier finding. This is the section from where the random Q&As in the right column of the site come from. Should you not find the answer to a particular question, don't hesitate to <a href='".XOOPS_URL."/forms/askus/form.php'>Ask us a Question!</a>"); |
|
79 | -define("_MD_SF_MAINNOSELECTCAT","You did not select a valid category"); |
|
80 | -define("_MD_SF_MAINNOFAQS","There are no Q&As in this category"); |
|
81 | -define("_MD_SF_MODERATION_MAIN_HEAD","Moderation section of "); |
|
82 | -define("_MD_SF_MODERATION_MAIN_INTRO","As a moderator, you are allowed to approve and reject requests, questions and Q&As."); |
|
83 | -define("_MD_SF_MODERATIONPAGE","Moderation"); |
|
84 | -define("_MD_SF_MODERATION_PUBLISHED_NEW_ANSWER","Published Q&A with newly submitted answer"); |
|
85 | -define("_MD_SF_NO","No"); |
|
86 | -define("_AM_SF_NO_CAT_PERMISSIONS","Sorry, you don't have sufficient permissions to access this area."); |
|
87 | -define("_AM_SF_NO_CAT_EXISTS","Sorry, there’s no category defined as yet.<br />Please contact the site administrator and tell them about this."); |
|
88 | -define("_MD_SF_NO_OPEN_QUESTION","There is currently no question in the Open Questions section."); |
|
89 | -define("_AM_SF_NO_TOP_PERMISSIONS","Sorry, there is no Q&A to display."); |
|
90 | -define("_MD_SF_NONE","None"); |
|
91 | -define("_MD_SF_NOQUESTIONSYET","There is no questions to display."); |
|
92 | -define("_MD_SF_NOTIFY","Notify on publish?"); |
|
93 | -define("_MD_SF_NOFAQS_INFO","There is presently no Q&A to display."); |
|
94 | -define("_MD_SF_NOCATEGORYSELECTED","You did not select a valid category!"); |
|
95 | -define("_MD_SF_NOFAQSELECTED","You did not select a valid Q&A!"); |
|
96 | -define("_MD_SF_OF","of"); |
|
97 | -define("_MD_SF_ON","on"); |
|
98 | -define("_MD_SF_OPEN_ANSWER_NEED_APPROBATION","Your answer has been submitted. and will be published in the Q&A section upon approval by a moderator."); |
|
99 | -define("_MD_SF_OPEN_SECTION","Open Questions"); |
|
100 | -define("_MD_SF_OPENED_INFO","Here are the Opened Questions within this category. If you know the answer to any question, please, feel free to answer it by clicking on the question's title."); |
|
101 | -define("_MD_SF_OPENED_QUESTIONS","Open Questions"); |
|
102 | -define("_MD_SF_OPTIONS","Options"); |
|
103 | -define("_MD_SF_ORIGINAL_ANSWER","Original answer"); |
|
104 | -define("_MD_SF_POSTED","Published"); |
|
105 | -define("_MD_SF_POSTEDBY","Published by"); |
|
106 | -define("_MD_SF_PREVIEW","Preview"); |
|
107 | -define("_MD_SF_PRINT","Print Q&A"); |
|
108 | -define("_MD_SF_PRINTERFRIENDLY","Print this Q&A in a printer friendly format"); |
|
109 | -define("_MD_SF_QNA_RECEIVED_NEED_APPROVAL","Your Q&A has been sent and will be published upon approval by a moderator.<br />Thank you for your contribution!"); |
|
110 | -define("_MD_SF_QNA_RECEIVED_AND_PUBLISHED","Your Q&A has been sent and automatically published. Thank you for your contribution!"); |
|
111 | -define("_MD_SF_QUESTION","Question"); |
|
112 | -define("_MD_SF_QUESTIONCOMEFROM","This Question was found on "); |
|
113 | -define("_MD_SF_QUESTIONS","Questions"); |
|
114 | -define("_MD_SF_READS","reads"); |
|
115 | -define("_MD_SF_REQUEST","Request a new Q&A"); |
|
116 | -define("_MD_SF_REQUEST_ERROR","An error occured. Your request was not sent."); |
|
117 | -define("_MD_SF_REQUEST_INTRO","You did not find the answer to the question you were looking for? No problem! Simply fill the following form in order to request the answer for a new question. The site administrator will review your request and publish this new question in the Open Questions section for someone to answer it!"); |
|
118 | -define("_MD_SF_REQUEST_RECEIVED_NEED_APPROVAL","Your request has been sent and will be published in the Open Questions section upon approval by a moderator.<br />Thank you for your contribution!"); |
|
119 | -define("_MD_SF_REQUEST_RECEIVED_AND_PUBLISHED","Your request has been sent and automatically published in the Open Questions section. Thank you for your contribution!"); |
|
120 | -define("_MD_SF_REQUESTED","Requested"); |
|
121 | -define("_MD_SF_REQUESTEDBY","Requested by %s on %s"); |
|
122 | -define("_MD_SF_REQUESTEDANDANSWERED","Requested and Answered by %s on %s"); |
|
123 | -define("_MD_SF_REQUESTEDBYANDANSWEREDBY","Requested by %s and Answered by %s on %s"); |
|
124 | -define("_MD_SF_RETURN","Return"); |
|
125 | -define("_MD_SF_RETURN2INDEX","Return to module index"); |
|
126 | -define("_MD_SF_SMARTFAQS","Q&A"); |
|
127 | -define("_MD_SF_SPECIFIC_URL_SELECT","Specific URL..."); |
|
128 | -define("_MD_SF_SENDSTORY","Send this Q&A to a friend"); |
|
129 | -define("_MD_SF_SPECIFIC_URL","Specific URL"); |
|
130 | -define("_MD_SF_SPECIFIC_URL_DSC","If you have set the 'Contextually link to this module' to <i>" . _MD_SF_SPECIFIC_URL_SELECT . "</i>, please specify the URL.<br />\n<b>Example :</b> modules/newbb"); |
|
131 | -define("_MD_SF_SUB_INTRO","please fill this form to send your Q&A. The site administrator will review it and then publish it as soon as possible. Thank you in advance for your contribution."); |
|
132 | -define("_MD_SF_SUB_SNEWNAME","Submit a Q&A"); |
|
133 | -define("_MD_SF_SUB_SMNAME","Submit a Q&A"); |
|
134 | -define("_MD_SF_SUBMIT_ERROR","An error occured. Your FAQ was not submitted."); |
|
135 | -define("_MD_SF_SUBMITANSWER","Submit answer"); |
|
136 | -define("_MD_SF_SUBMITANSWERTO","Submit an answer to %s"); |
|
137 | -define("_MD_SF_SUBMITANSWER_INTRO","please fill this form to submit an answer for this question. The site adminisrator will review it and then publish it as soon as possible. Thank you in advance for your contribution."); |
|
138 | -define("_MD_SF_SUBMITANSWERBUTTON","Submit the answer"); |
|
139 | -define("_MD_SF_SUBMITAPPROVED","The answer you sent has been received. Since the auto-approve option is on, the answer has been accepted and the Q&A has been published."); |
|
140 | -define("_MD_SF_SUBMIT_FROM_ADMIN","Since you are an admin of the module, the Q&A was automatically published with all permissions."); |
|
141 | -define("_MD_SF_LAST_QUESTION","Last question published"); |
|
142 | -define("_MD_SF_LAST_SMARTFAQ","Last Q&A published"); |
|
143 | -define("_MD_SF_SUBMITRECEIVED","The answer you sent has been received. We’ll look at it as soon as possible."); |
|
144 | -define("_MD_SF_SMARTFAQS_INFO","Here are the published Q&As of that category."); |
|
145 | -define("_MD_SF_SUBMITART","Submit a Q&A"); |
|
146 | -define("_MD_SF_THE","the"); |
|
147 | -define("_MD_SF_TOTAL_SMARTFAQS","Total Q&As"); |
|
148 | -define("_MD_SF_TOTAL_QUESTIONS","Total Questions"); |
|
149 | -define("_MD_SF_TIMES","times"); |
|
150 | -define("_MD_SF_FAQ","Q&A"); |
|
151 | -define("_MD_SF_UNKNOWNERROR","ERROR. Returning you to where you where!"); |
|
152 | -define("_MD_SF_WEIGHT","Weight"); |
|
153 | -define("_MD_SF_OPEN_WELCOME","Welcome to the Open Questions section of %s"); |
|
154 | -define("_MD_SF_YES","Yes"); |
|
10 | +define("_MD_SF_ACTION", "Action"); |
|
11 | +define("_MD_SF_ALL", "All"); |
|
12 | +define("_MD_SF_ADMIN_PAGE", ":: Admin Section ::"); |
|
13 | +define("_MD_SF_ALLOWCOMMENTS", "Allow comments?"); |
|
14 | +define("_MD_SF_ANSWERED", "Answered"); |
|
15 | +define("_MD_SF_ANSWERQUESTION", "[Submit an answer!]"); |
|
16 | +define("_MD_SF_ANSWER_FAQ", "Answer"); |
|
17 | +define("_MD_SF_ANSWER_FAQ_DSC", "Detailed answer to the above question."); |
|
18 | +define("_MD_SF_APPROVE", "Approve"); |
|
19 | +define("_MD_SF_ARTBODY", "Detail answer"); |
|
20 | +define("_MD_SF_ARTICLES", " Q&A."); |
|
21 | +define("_MD_SF_BACK2CAT", "Return to category"); |
|
22 | +define("_MD_SF_CATEGORY_SUMMARY", "Category summary"); |
|
23 | +define("_MD_SF_CATEGORY_SUMMARY_INFO", "Here is information related to this category."); |
|
24 | +define("_MD_SF_CATEGORY_EDIT", "Edit category"); |
|
25 | +define("_MD_SF_CANCEL", "Cancel"); |
|
26 | +define("_MD_SF_CLEAR", "Clear"); |
|
27 | +define("_MD_SF_COMMENTS", "Comment(s)"); |
|
28 | +define("_MD_SF_CONTEXTMODULELINK", "Contextually linked to this module"); |
|
29 | +define("_MD_SF_CONTEXTMODULELINK_FAQ", "Contextually linked to this module"); |
|
30 | +define("_MD_SF_CONTEXTMODULELINK_FAQ_DSC", "Select the module to which this Q&A will be linked. If the Contextual Q&A block is visible on that module, the 'How do I' statement of this Q&A will be displayed."); |
|
31 | +define("_MD_SF_CONTEXTPAGE", "Contextually linked to this URL"); |
|
32 | +define("_MD_SF_CONTEXTPAGEDEF", "Contextual Page"); |
|
33 | +define("_MD_SF_CONTEXTPAGEDEF_DSC", "Page for which this Q&A gives explanation <b>Example :</b> modules/newbb"); |
|
34 | +define("_MD_SF_CREATE", "Submit the Q&A"); |
|
35 | +define("_MD_SF_CATEGORY", "Category"); |
|
36 | +define("_MD_SF_CATEGORY_FAQ", "Category"); |
|
37 | +define("_MD_SF_CATEGORY_FAQ_DSC", "Select a category for this Q&A."); |
|
38 | +define("_MD_SF_CATEGORY_QUESTION", "Category"); |
|
39 | +define("_MD_SF_CATEGORY_QUESTION_DSC", "Select a category for this Question."); |
|
40 | +define("_MD_SF_DATE", "Date"); |
|
41 | +define("_MD_SF_DATESUB", "Published on"); |
|
42 | +define("_MD_SF_DESCRIPTION", "Description"); |
|
43 | +define("_MD_SF_DELETE", "Delete Q&A"); |
|
44 | +define("_MD_SF_DIDUNO", "Did You Know?"); |
|
45 | +define("_MD_SF_DIDUNO_FAQ", "Did You Know?"); |
|
46 | +define("_MD_SF_DIDUNO_FAQ_DSC", "This will be used in the Did You Know block."); |
|
47 | +define("_MD_SF_DOHTML", "Enable HTML tags "); |
|
48 | +define("_MD_SF_DOSMILEY", "Enable smiley icons "); |
|
49 | +define("_MD_SF_DOXCODE", "Enable XOOPS codes"); |
|
50 | +define("_MD_SF_EDIT", "Edit Q&A"); |
|
51 | +define("_MD_SF_ERROR_ANSWER_NOT_SAVED", "An error occured. The answer was not saved in the database."); |
|
52 | +define("_MD_SF_ERROR_FAQ_NOT_SAVED", "An error occured. The Q&A was not saved in the database."); |
|
53 | +define("_MD_SF_ERRORSAVINGDB", "ERROR: Database has NOT been Updated due to an Error!"); |
|
54 | +define("_MD_SF_EXACTURL", "Exact URL?"); |
|
55 | +define("_MD_SF_EXACTURL_DSC", "If set to 'Yes', the Q&A will only display in the'Specific URL set above'. If set to 'No', the Q&A will be displayed all pages that match a part of the root of the specific URL.ie modules/newbb/*.php"); |
|
56 | +define("_MD_SF_FAQ_NEW_ANSWER_NEED_APPROBATION", "Your answer was submitted successfully and will be reviewed by a moderator."); |
|
57 | +define("_MD_SF_FAQ_NEW_ANSWER_PUBLISHED", "Your answer was submitted successfully and will be automatically published in the Q&A section, as a replacement of the original answer."); |
|
58 | +define("_MD_SF_FAQCOMEFROM", "This Q&A was found on "); |
|
59 | +define("_MD_SF_FINDFAQHERE", "Find this Q&A here : "); |
|
60 | +define("_MD_SF_GOODDAY", "Good day, "); |
|
61 | +define("_MD_SF_HITS", "Hits"); |
|
62 | +define("_MD_SF_HITSDETAIL", "This Q&A has been read"); |
|
63 | +define("_MD_SF_HOME", "Home"); |
|
64 | +define("_MD_SF_HOWDOI", "How do I..."); |
|
65 | +define("_MD_SF_HOWDOI_FAQ", "How do I.."); |
|
66 | +define("_MD_SF_HOWDOI_FAQ_DSC", "This will be used in the Contextual Q&A Block. It should be a short version of the question."); |
|
67 | +define("_MD_SF_INDEX_CATEGORIES_SUMMARY", "Categories summary"); |
|
68 | +define("_MD_SF_INDEX_CATEGORIES_SUMMARY_INFO", "Here is a list of the top categories and their sub-categories. Select a category to see the Q&As within."); |
|
69 | +define("_MD_SF_INDEX_CATEGORIES_QUESTIONS_SUMMARY_INFO", "Here is a list of the top categories and their sub-categories. Select a category to see the open questions within."); |
|
70 | +define("_MD_SF_INDEX_FAQS", "Last published Q&A"); |
|
71 | +define("_MD_SF_INDEX_FAQS_INFO", "Here is a list of the last Q&As that were published."); |
|
72 | +define("_MD_SF_INDEX_QUESTIONS", "Last published questions"); |
|
73 | +define("_MD_SF_INDEX_QUESTIONS_INFO", "Here is a list of the last open questions that were published."); |
|
74 | +define("_MD_SF_INTARTFOUND", "Here is an interesting Question and Answer I have found at %s"); |
|
75 | +define("_MD_SF_INTARTICLE", "Have a look at this FAQ at %s"); |
|
76 | +define("_MD_SF_MAIL", "Send Q&A"); |
|
77 | +define("_MD_SF_MAINHEAD", "Welcome to the"); |
|
78 | +define("_MD_SF_MAININTRO", "In this area of the site, you will find the answers to the frequently asked questions. Each Q&A is placed in a category for easier finding. This is the section from where the random Q&As in the right column of the site come from. Should you not find the answer to a particular question, don't hesitate to <a href='".XOOPS_URL."/forms/askus/form.php'>Ask us a Question!</a>"); |
|
79 | +define("_MD_SF_MAINNOSELECTCAT", "You did not select a valid category"); |
|
80 | +define("_MD_SF_MAINNOFAQS", "There are no Q&As in this category"); |
|
81 | +define("_MD_SF_MODERATION_MAIN_HEAD", "Moderation section of "); |
|
82 | +define("_MD_SF_MODERATION_MAIN_INTRO", "As a moderator, you are allowed to approve and reject requests, questions and Q&As."); |
|
83 | +define("_MD_SF_MODERATIONPAGE", "Moderation"); |
|
84 | +define("_MD_SF_MODERATION_PUBLISHED_NEW_ANSWER", "Published Q&A with newly submitted answer"); |
|
85 | +define("_MD_SF_NO", "No"); |
|
86 | +define("_AM_SF_NO_CAT_PERMISSIONS", "Sorry, you don't have sufficient permissions to access this area."); |
|
87 | +define("_AM_SF_NO_CAT_EXISTS", "Sorry, there’s no category defined as yet.<br />Please contact the site administrator and tell them about this."); |
|
88 | +define("_MD_SF_NO_OPEN_QUESTION", "There is currently no question in the Open Questions section."); |
|
89 | +define("_AM_SF_NO_TOP_PERMISSIONS", "Sorry, there is no Q&A to display."); |
|
90 | +define("_MD_SF_NONE", "None"); |
|
91 | +define("_MD_SF_NOQUESTIONSYET", "There is no questions to display."); |
|
92 | +define("_MD_SF_NOTIFY", "Notify on publish?"); |
|
93 | +define("_MD_SF_NOFAQS_INFO", "There is presently no Q&A to display."); |
|
94 | +define("_MD_SF_NOCATEGORYSELECTED", "You did not select a valid category!"); |
|
95 | +define("_MD_SF_NOFAQSELECTED", "You did not select a valid Q&A!"); |
|
96 | +define("_MD_SF_OF", "of"); |
|
97 | +define("_MD_SF_ON", "on"); |
|
98 | +define("_MD_SF_OPEN_ANSWER_NEED_APPROBATION", "Your answer has been submitted. and will be published in the Q&A section upon approval by a moderator."); |
|
99 | +define("_MD_SF_OPEN_SECTION", "Open Questions"); |
|
100 | +define("_MD_SF_OPENED_INFO", "Here are the Opened Questions within this category. If you know the answer to any question, please, feel free to answer it by clicking on the question's title."); |
|
101 | +define("_MD_SF_OPENED_QUESTIONS", "Open Questions"); |
|
102 | +define("_MD_SF_OPTIONS", "Options"); |
|
103 | +define("_MD_SF_ORIGINAL_ANSWER", "Original answer"); |
|
104 | +define("_MD_SF_POSTED", "Published"); |
|
105 | +define("_MD_SF_POSTEDBY", "Published by"); |
|
106 | +define("_MD_SF_PREVIEW", "Preview"); |
|
107 | +define("_MD_SF_PRINT", "Print Q&A"); |
|
108 | +define("_MD_SF_PRINTERFRIENDLY", "Print this Q&A in a printer friendly format"); |
|
109 | +define("_MD_SF_QNA_RECEIVED_NEED_APPROVAL", "Your Q&A has been sent and will be published upon approval by a moderator.<br />Thank you for your contribution!"); |
|
110 | +define("_MD_SF_QNA_RECEIVED_AND_PUBLISHED", "Your Q&A has been sent and automatically published. Thank you for your contribution!"); |
|
111 | +define("_MD_SF_QUESTION", "Question"); |
|
112 | +define("_MD_SF_QUESTIONCOMEFROM", "This Question was found on "); |
|
113 | +define("_MD_SF_QUESTIONS", "Questions"); |
|
114 | +define("_MD_SF_READS", "reads"); |
|
115 | +define("_MD_SF_REQUEST", "Request a new Q&A"); |
|
116 | +define("_MD_SF_REQUEST_ERROR", "An error occured. Your request was not sent."); |
|
117 | +define("_MD_SF_REQUEST_INTRO", "You did not find the answer to the question you were looking for? No problem! Simply fill the following form in order to request the answer for a new question. The site administrator will review your request and publish this new question in the Open Questions section for someone to answer it!"); |
|
118 | +define("_MD_SF_REQUEST_RECEIVED_NEED_APPROVAL", "Your request has been sent and will be published in the Open Questions section upon approval by a moderator.<br />Thank you for your contribution!"); |
|
119 | +define("_MD_SF_REQUEST_RECEIVED_AND_PUBLISHED", "Your request has been sent and automatically published in the Open Questions section. Thank you for your contribution!"); |
|
120 | +define("_MD_SF_REQUESTED", "Requested"); |
|
121 | +define("_MD_SF_REQUESTEDBY", "Requested by %s on %s"); |
|
122 | +define("_MD_SF_REQUESTEDANDANSWERED", "Requested and Answered by %s on %s"); |
|
123 | +define("_MD_SF_REQUESTEDBYANDANSWEREDBY", "Requested by %s and Answered by %s on %s"); |
|
124 | +define("_MD_SF_RETURN", "Return"); |
|
125 | +define("_MD_SF_RETURN2INDEX", "Return to module index"); |
|
126 | +define("_MD_SF_SMARTFAQS", "Q&A"); |
|
127 | +define("_MD_SF_SPECIFIC_URL_SELECT", "Specific URL..."); |
|
128 | +define("_MD_SF_SENDSTORY", "Send this Q&A to a friend"); |
|
129 | +define("_MD_SF_SPECIFIC_URL", "Specific URL"); |
|
130 | +define("_MD_SF_SPECIFIC_URL_DSC", "If you have set the 'Contextually link to this module' to <i>"._MD_SF_SPECIFIC_URL_SELECT."</i>, please specify the URL.<br />\n<b>Example :</b> modules/newbb"); |
|
131 | +define("_MD_SF_SUB_INTRO", "please fill this form to send your Q&A. The site administrator will review it and then publish it as soon as possible. Thank you in advance for your contribution."); |
|
132 | +define("_MD_SF_SUB_SNEWNAME", "Submit a Q&A"); |
|
133 | +define("_MD_SF_SUB_SMNAME", "Submit a Q&A"); |
|
134 | +define("_MD_SF_SUBMIT_ERROR", "An error occured. Your FAQ was not submitted."); |
|
135 | +define("_MD_SF_SUBMITANSWER", "Submit answer"); |
|
136 | +define("_MD_SF_SUBMITANSWERTO", "Submit an answer to %s"); |
|
137 | +define("_MD_SF_SUBMITANSWER_INTRO", "please fill this form to submit an answer for this question. The site adminisrator will review it and then publish it as soon as possible. Thank you in advance for your contribution."); |
|
138 | +define("_MD_SF_SUBMITANSWERBUTTON", "Submit the answer"); |
|
139 | +define("_MD_SF_SUBMITAPPROVED", "The answer you sent has been received. Since the auto-approve option is on, the answer has been accepted and the Q&A has been published."); |
|
140 | +define("_MD_SF_SUBMIT_FROM_ADMIN", "Since you are an admin of the module, the Q&A was automatically published with all permissions."); |
|
141 | +define("_MD_SF_LAST_QUESTION", "Last question published"); |
|
142 | +define("_MD_SF_LAST_SMARTFAQ", "Last Q&A published"); |
|
143 | +define("_MD_SF_SUBMITRECEIVED", "The answer you sent has been received. We’ll look at it as soon as possible."); |
|
144 | +define("_MD_SF_SMARTFAQS_INFO", "Here are the published Q&As of that category."); |
|
145 | +define("_MD_SF_SUBMITART", "Submit a Q&A"); |
|
146 | +define("_MD_SF_THE", "the"); |
|
147 | +define("_MD_SF_TOTAL_SMARTFAQS", "Total Q&As"); |
|
148 | +define("_MD_SF_TOTAL_QUESTIONS", "Total Questions"); |
|
149 | +define("_MD_SF_TIMES", "times"); |
|
150 | +define("_MD_SF_FAQ", "Q&A"); |
|
151 | +define("_MD_SF_UNKNOWNERROR", "ERROR. Returning you to where you where!"); |
|
152 | +define("_MD_SF_WEIGHT", "Weight"); |
|
153 | +define("_MD_SF_OPEN_WELCOME", "Welcome to the Open Questions section of %s"); |
|
154 | +define("_MD_SF_YES", "Yes"); |
|
155 | 155 | |
156 | 156 | //----------------------------- |
157 | 157 | |
158 | -define('_MD_SF_THIS_FILE_WAS_ATTACHED_TO_THIS_POST','Attached file:'); |
|
159 | -define('_MD_SF_ALLOWED_EXTENSIONS','Allowed extensions'); |
|
160 | -define('_MD_SF_MAX_FILESIZE','Maximum file size'); |
|
161 | -define('_MD_SF_ATTACHMENT','Attach file'); |
|
162 | -define('_MD_SF_FILESIZE','Size'); |
|
163 | -define('_MD_SF_MAXPIC','Images at the max. Size %s X %s pixels.'); |
|
164 | -define('_MD_SF_REMOVE','Remove'); |
|
165 | -define('_MD_SF_UPLOAD','Upload'); |
|
166 | -define('_MD_SF_ATTACHED_FILES','Attached files: <br />Check those that you want to delete'); |
|
158 | +define('_MD_SF_THIS_FILE_WAS_ATTACHED_TO_THIS_POST', 'Attached file:'); |
|
159 | +define('_MD_SF_ALLOWED_EXTENSIONS', 'Allowed extensions'); |
|
160 | +define('_MD_SF_MAX_FILESIZE', 'Maximum file size'); |
|
161 | +define('_MD_SF_ATTACHMENT', 'Attach file'); |
|
162 | +define('_MD_SF_FILESIZE', 'Size'); |
|
163 | +define('_MD_SF_MAXPIC', 'Images at the max. Size %s X %s pixels.'); |
|
164 | +define('_MD_SF_REMOVE', 'Remove'); |
|
165 | +define('_MD_SF_UPLOAD', 'Upload'); |
|
166 | +define('_MD_SF_ATTACHED_FILES', 'Attached files: <br />Check those that you want to delete'); |
@@ -7,312 +7,312 @@ |
||
7 | 7 | * Licence: GNU |
8 | 8 | */ |
9 | 9 | |
10 | -define("_AM_SF_ABOUT","About"); |
|
11 | -define("_AM_SF_ACTION","Action"); |
|
12 | -define("_AM_SF_ADMINCOLMNGMT","Categories management"); |
|
13 | -define("_AM_SF_ADMIN_CATS","Select categories that each group can moderate"); |
|
14 | -define("_AM_SF_ALL","All"); |
|
15 | -define("_AM_SF_ALL_EXP","<b>All status</b> : All questions and answers of the module, whatever their status."); |
|
16 | -define("_AM_SF_ALLOWCOMMENTS","Can Q&A be commented?"); |
|
17 | -define("_AM_SF_ANSWER","Submitted answer"); |
|
18 | -define("_AM_SF_ANSWER_APPROVED_NEED_APPROVED","The answer has been approved. The Q&A now needs to be reviewed by a moderator."); |
|
19 | -define("_AM_SF_ANSWER_APPROVED_PUBLISHED","The answer has been approved and the Q&A has been published."); |
|
20 | -define("_AM_SF_ANSWER_OFFICIAL","Official answer"); |
|
21 | -define("_AM_SF_ANSWER_REJECTED","The answer was rejected."); |
|
22 | -define("_AM_SF_ANSWER_REJECTED_OPEN_QUESTION","The answer was rejected and the question is now displayed in the Open Question section for another user to answer it."); |
|
23 | -define("_AM_SF_ANSWER_DELETE_ERROR","An error occured while deleting this answer."); |
|
24 | -define("_AM_SF_ANSWERED_APPROVE_SUCCESS","The answer has been reviewed and the Q&A <br />has been published in the public section of the site."); |
|
25 | -define("_AM_SF_ANSWERED_BY","Question answered by : "); |
|
26 | -define("_AM_SF_ANSWERED_TITLE","Answered Opened Question"); |
|
27 | -define("_AM_SF_ANSWERED_TITLE_INFO","This opened question was provided an answer. You can edit the Q&A here. Upon approval, this Q&A will be published in public section of the site."); |
|
28 | -define("_AM_SF_ANSWERING","Answering"); |
|
29 | -define("_AM_SF_ANSWERED","Answered"); |
|
30 | -define("_AM_SF_ANSWERED_EXP","<b>Answered questions</b> : Questions in the Open Questions section that have been answered by users. Once an answer has been approved for a question, this very question becomes a submitted Q&A and will require approval as well."); |
|
31 | -define("_AM_SF_ANSWERED_MODERATE","Moderate the answer to this question"); |
|
32 | -define("_AM_SF_ANSWERISDELETED","The answer has been deleted."); |
|
33 | -define("_AM_SF_ANSWERNOTFOUND","Error : No official answer was found"); |
|
34 | -define("_AM_SF_APPROVE","Approve"); |
|
35 | -define("_AM_SF_APPROVED","Approved answer"); |
|
36 | -define("_AM_SF_APPROVED_INFO","The answer for this question has been approved. This question has now been promoted to the status of submitted Q&A and needs an approval to be published in the Q&A section."); |
|
37 | -define("_AM_SF_APPROVED_MODERATE","Moderate this Q&A's submission"); |
|
38 | -define("_AM_SF_APPROVED_TITLE","Approved answer"); |
|
39 | -define("_AM_SF_APPROVESUB","Approve submission"); |
|
40 | -define("_AM_SF_APPROVING","Approving"); |
|
41 | -define("_AM_SF_ANSWER_FAQ","Answer<span style='font-size: xx-small; font-weight: normal; display: block;'>Detailed answer to the above question.</span>"); |
|
42 | -define("_AM_SF_ARTCOLNAME","Category"); |
|
43 | -define("_AM_SF_ARTCREATEDOK","The Q&A was successfully created and published in the Q&A section!"); |
|
44 | -define("_AM_SF_ARTID","Id"); |
|
45 | -define("_AM_SF_ARTISDELETED","The Q&A has been deleted."); |
|
46 | -define("_AM_SF_ARTMODIFIED","The Q&A was successfully modified!"); |
|
47 | -define("_AM_SF_ARTNOTCREATED","Sorry. It was not possible to create this Q&A!"); |
|
48 | -define("_AM_SF_ARTNOTUPDATED","Sorry. It was not possible to update the Q&A!"); |
|
49 | -define("_AM_SF_ASC","Ascending"); |
|
50 | -define("_AM_SF_ASKED","Asked"); |
|
51 | -define("_AM_SF_ASKED_APPROVE_SUCCESS","The asked question was answered and the Q&A was published in the public section of the site."); |
|
52 | -define("_AM_SF_ASKED_EXP","<b>Asked questions</b> : questions that have been asked by users. These questions have not yet been approved by a moderator. Once approved, the <i>Asked question</i> will become an <i>Open question<i> and be displayed in the <b>Open Questions</b> section."); |
|
53 | -define("_AM_SF_ASKED_TITLE","Asked Question"); |
|
54 | -define("_AM_SF_ASKED_TITLE_INFO","This is a question asked by a user. You can review the question and write the answer.<br />Uppon approval, the Q&A will be published in the public section of the site."); |
|
55 | -define("_AM_SF_AUTHFAQ","Publish the submitted answer"); |
|
56 | -define("_AM_SF_AUTHORIZE","Authorize"); |
|
57 | -define("_AM_SF_BACK2IDX","Cancelled. Taking you back to the index"); |
|
58 | -define("_AM_SF_BLOCKS","Blocks management"); |
|
59 | -define("_AM_SF_BLOCKSTXT","This module has the following blocks, which you can configure here or in the system module."); |
|
60 | -define("_AM_SF_BLOCKSANDGROUPS","Blocks and groups"); |
|
61 | -define("_AM_SF_BLOCKSGROUPSADMIN","Blocks and Groups Management"); |
|
62 | -define("_AM_SF_BY","by"); |
|
63 | -define("_AM_SF_CANCEL","Cancel"); |
|
64 | -define("_AM_SF_CATCREATED","New category was created and saved!"); |
|
65 | -define("_AM_SF_CATEGORIES_DSC","Here is a list of all created categories of the module."); |
|
66 | -define("_AM_SF_CATEGORIES_TITLE","Created categories"); |
|
67 | -define("_AM_SF_CATEGORY","Category"); |
|
68 | -define("_AM_SF_CATEGORY_CREATE","Create a category"); |
|
69 | -define("_AM_SF_CATEGORY_FAQ","Category<span style='font-size: xx-small; font-weight: normal; display: block;'>Select a category for this Q&A.</span>"); |
|
70 | -define("_AM_SF_CATEGORY_QUESTION","Category<pan style='font-size: xx-small; font-weight: normal; display: block;'>Select a category for this question.</span>"); |
|
71 | -define("_AM_SF_CATEGORY_SAVE_ERROR","An error occured while saving the category. Here is a list of error(s) :"); |
|
72 | -define("_AM_SF_CLEAR","Clear"); |
|
73 | -define("_AM_SF_COLDESCRIPT","Category description"); |
|
74 | -define("_AM_SF_COLISDELETED","Category %s has been deleted"); |
|
75 | -define("_AM_SF_COLMODIFIED","The category was successfully modified."); |
|
76 | -define("_AM_SF_COLPOSIT","Category position"); |
|
77 | -define("_AM_SF_CATEGORIES","Categories"); |
|
78 | -define("_AM_SF_CATHEADER","Categories Management"); |
|
79 | -define("_AM_SF_CONTEXTMODULELINK","Contextually linked to this module"); |
|
80 | -define("_AM_SF_CONTEXTMODULELINK_FAQ","Contextually linked to this module<span style='font-size: xx-small; font-weight: normal; display: block;'>Select the module to which this Q&A will be<br />linked. If the Contextual FAQ block is visible<br />on that module, the 'How do I' statement of<br />this Q&A will be displayed.</span>"); |
|
81 | -define("_AM_SF_CONTEXTOPTIONS","Contextual options"); |
|
82 | -define("_AM_SF_CONTEXTPAGE","Contextually linked to this URL"); |
|
83 | -define("_AM_SF_CONTEXTURLLINK","Link to this URL"); |
|
84 | -define("_AM_SF_CREATE","Create"); |
|
85 | -define("_AM_SF_CREATED","Created"); |
|
86 | -define("_AM_SF_CREATEART","Create a Q&A"); |
|
87 | -define("_AM_SF_CREATESMARTFAQ","Create a new Q&A"); |
|
88 | -define("_AM_SF_CREATEQUESTION","Create an open question"); |
|
89 | -define("_AM_SF_CREATECATEGORY","Create a new category"); |
|
90 | -define("_AM_SF_CREATEIN","Create in category:"); |
|
91 | -define("_AM_SF_CREATINGNEW","Creating new"); |
|
92 | -define("_AM_SF_CREATEFAQ","Create a new Q&A"); |
|
93 | -define("_AM_SF_DELETE","Delete"); |
|
94 | -define("_AM_SF_DELETEART","Delete Q&A"); |
|
95 | -define("_AM_SF_DELETE_CAT_CONFIRM","Please note that by deleting a category, all the sub-categories and the Q&A of this category will be deleted as well, along with any comments that may have been posted related to these Q&A. Are you sure you wish to delete this category?"); |
|
96 | -define("_AM_SF_DELETE_CAT_ERROR","An error occured while deleting this category."); |
|
97 | -define("_AM_SF_DELETECOL","Delete category"); |
|
98 | -define("_AM_SF_DELETESUBM","Delete submission"); |
|
99 | -define("_AM_SF_DELETETHISARTICLE","Delete this Q&A?"); |
|
100 | -define("_AM_SF_DELETETHISANSWER","Delete this answer?"); |
|
101 | -define("_AM_SF_DELETETHISQUESTION","Delete this question?"); |
|
102 | -define("_AM_SF_DELETEQUESTION","Delete question"); |
|
103 | -define("_AM_SF_DESC","Descending"); |
|
104 | -define("_AM_SF_DESCRIP","Category description"); |
|
105 | -define("_AM_SF_DIDUNO","Did You Know?"); |
|
106 | -define("_AM_SF_DIDUNO_FAQ","Did You Know?<span style='font-size: xx-small; font-weight: normal; display: block;'>This will be used in the Did You Know block.</span>"); |
|
107 | -define("_AM_SF_DOCONTEXT","Make this Q&A contextual"); |
|
108 | -define("_AM_SF_DOHTML"," Enable HTML tags"); |
|
109 | -define("_AM_SF_DOSMILEY"," Enable smiley icons"); |
|
110 | -define("_AM_SF_DOXCODE"," Enable XOOPS codes"); |
|
111 | -define("_AM_SF_EDITART","Edit Q&A"); |
|
112 | -define("_AM_SF_EDITCOL","Edit category"); |
|
113 | -define("_AM_SF_EDITING","Editing"); |
|
114 | -define("_AM_SF_EDITING_INFO","You can edit this question. Modifications will immediatly take effect in the Open Questions section."); |
|
115 | -define("_AM_SF_EDITQUES","Edit an opened question"); |
|
116 | -define("_AM_SF_EDITSUBM","Edit submission"); |
|
117 | -define("_AM_SF_ERROR"," An error has occurred."); |
|
118 | -define("_AM_SF_ERROR_ANSWER_NOT_SAVED","An error occured. The answer was not saved in the database."); |
|
119 | -define("_AM_SF_ERROR_FAQ_NOT_SAVED","An error occured. The Q&A was not saved in the database."); |
|
120 | -define("_AM_SF_EXACTURL","Exact URL?<span style='font-size: xx-small; font-weight: normal; display: block;'>If set to 'Yes', the Q&A will only display in the'Specific URL set above'. If set to 'No', the Q&A will be displayed in all pages that match a part of the root of the specific URL. ie; modules/newbb/*.php</span>"); |
|
121 | -define("_AM_SF_FAQ_EDIT","Edit this Q&A"); |
|
122 | -define("_AM_SF_FAQ_NEW_ANSWER_PUBLISHED","The original answer was replaced by this answer."); |
|
123 | -define("_AM_SF_FAQ_REVIEW","Edit this answer before approbation"); |
|
124 | -define("_AM_SF_FAQ_MERGE","Merge the new and original answers"); |
|
125 | -define("_AM_SF_FAQ_APPROVE_NEW_ANSWER","Approve this new answer without reviewing it"); |
|
126 | -define("_AM_SF_GOMOD","Go to module"); |
|
127 | -define("_AM_SF_GROUPS","Groups management"); |
|
128 | -define("_AM_SF_GROUPSINFO","Configure module and blocks permissions for each group"); |
|
129 | -define("_AM_SF_HELP","Help"); |
|
130 | -define("_AM_SF_HOWDOI","How do I..."); |
|
131 | -define("_AM_SF_HOWDOI_FAQ","How do I...<span style='font-size: xx-small; font-weight: normal; display: block;'>This will be used in the Contextual FAQ Block.<br />It should be a short version of the question.</span>"); |
|
132 | -define("_AM_SF_ID","Id"); |
|
133 | -define("_AM_SF_IMPORT","Import"); |
|
134 | -define("_AM_SF_IMPORT_ALL_QUESTIONS","All questions"); |
|
135 | -define("_AM_SF_IMPORT_ALLOWCOMMENTS","Q&As can be commented?"); |
|
136 | -define("_AM_SF_IMPORT_ANSWER_ERROR","An error occurred while importing answer <em>%s</em>."); |
|
137 | -define("_AM_SF_IMPORT_AUTOAPPROVE","Auto-approve"); |
|
138 | -define("_AM_SF_IMPORT_BACK","Back to the import page"); |
|
139 | -define("_AM_SF_IMPORT_CATEGORY_ERROR","An error occurred while importing category <em>%s</em>."); |
|
140 | -define("_AM_SF_IMPORT_CATEGORY_SUCCESS","Category <em>%s</em> imported successfully."); |
|
141 | -define("_AM_SF_IMPORT_CATEGORIES","%s Categories"); |
|
142 | -define("_AM_SF_IMPORT_CATEGORY_FAQ","An error occurred while importing FAQ <em>%s</em>."); |
|
143 | -define("_AM_SF_IMPORT_ERROR","An error occured while importing the Q&A."); |
|
144 | -define("_AM_SF_IMPORT_FILE_NOT_FOUND","Import file not found at <b>%s</b>"); |
|
145 | -define("_AM_SF_IMPORT_FROM","Importing from %s"); |
|
146 | -define("_AM_SF_IMPORT_INFO","You can import sets of Q&A directly in the module. Simply choose the set you would like to import and click on the 'Import' button."); |
|
147 | -define("_AM_SF_IMPORT_MODULE_FOUND","%s module was found. There are %s categories and %s FAQs."); |
|
148 | -define("_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ","%s module was found. There are %s categories but no FAQs to be imported."); |
|
149 | -define("_AM_SF_IMPORT_NO_CATEGORY","There are no categories to import."); |
|
150 | -define("_AM_SF_IMPORT_NO_MODULE","As XoopsFAQ nor WF-FAQ are installed on this site, there is no sets of FAQs to import."); |
|
151 | -define("_AM_SF_IMPORT_ONLY_VISIBLE","Only visible questions "); |
|
152 | -define("_AM_SF_IMPORT_PARENT_CATEGORY","SmartFAQ Parent Category"); |
|
153 | -define("_AM_SF_IMPORT_PERMISSIONS","Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see these imported Q&As.<br />this Q&A.</span>"); |
|
154 | -define("_AM_SF_IMPORT_RESULT","Here is the result of the import."); |
|
155 | -define("_AM_SF_IMPORT_SETTINGS","Import Settings"); |
|
156 | -define("_AM_SF_IMPORT_SUCCESS","The Q&A set was successfully imported in the module."); |
|
157 | -define("_AM_SF_IMPORT_TITLE","Import Q&A"); |
|
158 | -define("_AM_SF_IMPORT_WFFAQ_105","FAQs from WF-FAQ 1.0.5"); |
|
159 | -define("_AM_SF_IMPORT_XOOPSFAQ_110","FAQs from XoopsFAQ 1.1"); |
|
160 | -define("_AM_SF_IMPORTED_CATEGORIES","Categories imported : %s"); |
|
161 | -define("_AM_SF_IMPORTED_QUESTION","Imported question : <em>%s</em>"); |
|
162 | -define("_AM_SF_IMPORTED_QUESTIONS","Questions imported : <em>%s</em>"); |
|
163 | -define("_AM_SF_IMPORTED_USER","Submitted and answered by "); |
|
164 | -define("_AM_SF_IMPORT_SELECTION","Import Selection"); |
|
165 | -define("_AM_SF_IMPORT_SELECT_FILE","Set of Q&A<span style='font-size: xx-small; font-weight: normal; display: block;'>Choose the set of Q&A you would like to import in the module.</span>"); |
|
166 | -define("_AM_SF_INDEX","Index"); |
|
167 | -define("_AM_SF_INVENTORY","Module Summary"); |
|
168 | -define("_AM_SF_MODADMIN","Admin :"); |
|
169 | -define("_AM_SF_MODART","Modify a Q&A"); |
|
170 | -define("_AM_SF_MODCOL","Modify existing category"); |
|
171 | -define("_AM_SF_MODERATORS_DEF","Moderators<span style='font-size: xx-small; font-weight: normal; display: block;'>Users that will act as moderators for this<br />category. They will be able to add, edit,<br />approve and delete questions and Q&A<br />within this category.</span>"); |
|
172 | -define("_AM_SF_MODIFY","Modify"); |
|
173 | -define("_AM_SF_MODIFYCOL","Modify category"); |
|
174 | -define("_AM_SF_MODIFYTHISCOL","Modify this category?"); |
|
175 | -define("_AM_SF_MODULEHEAD","Summary and Q&A in different states"); |
|
176 | -define("_AM_SF_NEED_CATEGORY_FAQ","To create a Q&A, you must first create a category."); |
|
177 | -define("_AM_SF_NEED_CATEGORY_QUESTION","To create a question, you must first create a category."); |
|
178 | -define("_AM_SF_NEWANSWER","New Answer"); |
|
179 | -define("_AM_SF_NEW_ANSWER","New Answer"); |
|
180 | -define("_AM_SF_NEW_ANSWER_EXP","<b>New Answer</b> : Published Q&A with newly submitted answer by user. Once a new answer is approved, this answer become the official answer for that question."); |
|
181 | -define("_AM_SF_NEW_ANSWER_EDITING","Editing a Q&A with a new answer"); |
|
182 | -define("_AM_SF_NEW_ANSWER_EDITING_INFO","A new answer has been submitted for this Q&A. You can edit it here. When you publish this Q&A, the new answer will replace the original one."); |
|
183 | -define("_AM_SF_NEWART","Create new Q&A"); |
|
184 | -define("_AM_SF_NEW_CONTRIBUTION","--- Additional details submitted by %s on %s\n\n%s"); |
|
185 | -define("_AM_SF_NEWQUESTION","Create new question"); |
|
186 | -define("_AM_SF_NO","No"); |
|
187 | -define("_AM_SF_NO_NEWANSWERS","There are presently no published Q&A with newly submitted answers."); |
|
188 | -define("_AM_SF_NOFAQS","There are presently no published Q&As."); |
|
189 | -define("_AM_SF_NOFOUND","No users match the required string."); |
|
190 | -define("_AM_SF_NONE","None"); |
|
191 | -define("_AM_SF_NOPERMSSET","Permission cannot be set : No categories created yet! Please create a category first."); |
|
192 | -define("_AM_SF_NOS","There are presently no Q&As to display"); |
|
193 | -define("_AM_SF_NOCAT","No categories to display"); |
|
194 | -define("_AM_SF_NOCATSELECTED","No category selected."); |
|
195 | -define("_AM_SF_NOCOLTOEDIT","There are no categories to edit!"); |
|
196 | -define("_AM_SF_NOFAQSELECTED","No Q&A selected!"); |
|
197 | -define("_AM_SF_NOANSWERS","No answers were found."); |
|
198 | -define("_AM_SF_NOANSWERYET","There are presently no answers waiting approval."); |
|
199 | -define("_AM_SF_NOQUEUED","There are presently no Open Questions."); |
|
200 | -define("_AM_SF_NOREQUESTYET","There are presently no requests waiting approval."); |
|
201 | -define("_AM_SF_NOSUBMISSYET","There are presently no submissions waiting approval."); |
|
202 | -define("_AM_SF_NOTUPDATED","There was an error updating the database!"); |
|
203 | -define("_AM_SF_OFFLINE","Offline"); |
|
204 | -define("_AM_SF_OFFLINE_EXP","<b>Offline Q&A</b> : Published Q&As that have been put offline, temporarily or not. Offline Q&A are not displayed in the Q&A section."); |
|
205 | -define("_AM_SF_OFFLINE_FIELD","Offline<span style='font-size: xx-small; font-weight: normal; display: block;'>Select 'No' to put this Q&A back<br />on line in the Q&A section.</span>"); |
|
206 | -define("_AM_SF_OFFLINEEDITING","Editing an offline Q&A"); |
|
207 | -define("_AM_SF_OFFLINEEDITING_INFO","You can edit this offline Q&A. Modifications will be saved for this item. However, if you would like to display this Q&A in the Q&A section, you will need to set the <b>Offline</b> field to 'No'."); |
|
208 | -define("_AM_SF_OPEN_QUESTION","Open Question"); |
|
209 | -define("_AM_SF_OPEN_QUESTIONS","Open Questions"); |
|
210 | -define("_AM_SF_OPENED","Opened"); |
|
211 | -define("_AM_SF_OPEN_QUESTION_EDIT","Answer this question"); |
|
212 | -define("_AM_SF_OPENED_TITLE","Published questions in the Open Questions section"); |
|
213 | -define("_AM_SF_OPENED_DSC","Here is a list of all the published questions in the Open Questions section."); |
|
214 | -define("_AM_SF_OPENED_EXP","<b>Opened questions</b> : Questions that have been asked by a user, and approved by a moderator. These questions are displayed in the <i>Open Questions</i> section of this module, waiting for user to answer them."); |
|
215 | -define("_AM_SF_OPTIONS","Options"); |
|
216 | -define("_AM_SF_OPTS","Preferences"); |
|
217 | -define("_AM_SF_OPEN_QUESTION_ANSWERING","Answering an open question"); |
|
218 | -define("_AM_SF_OPEN_QUESTION_ANSWERING_INFO","You are now answering an open question, which will become a Q&A and be published in the Q&A section. "); |
|
219 | -define("_AM_SF_OPENED_ANSWERING_SUCCESS","The open question has been answered and published in the Q&A section!"); |
|
220 | -define("_AM_SF_PARENT_CATEGORY_EXP","Parent category<span style='font-size: xx-small; font-weight: normal; display: block;'>If you want this new category to be a sub-category, select a parent here. If it is to be a top level category, leave this blank.</span>"); |
|
221 | -define("_AM_SF_PERMISSIONS","Permissions"); |
|
222 | -define("_AM_SF_PERMISSIONS_FAQ","Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see<br />this Q&A.</span>"); |
|
223 | -define("_AM_SF_PERMISSIONS_QUESTION","Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see this Question.</span>"); |
|
224 | -define("_AM_SF_PERMISSIONS_CAT_READ","Read permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see<br />this Category, as well as any open questions<br />and Q&A inside that category.</span>"); |
|
225 | -define("_AM_SF_PERMISSIONS_APPLY_ON_FAQS","Apply read permissions on Q&A<span style='font-size: xx-small; font-weight: normal; display: block;'>Apply the above Read Permissions on all<br />Q&A within that category, overriding the<br />current permissions for all these Q&A.</span>"); |
|
226 | -define("_AM_SF_PERMISSIONSADMIN","Permissions Management"); |
|
227 | -define("_AM_SF_PERMISSIONSVIEWMAN","Permissions to view categories"); |
|
228 | -define("_AM_SF_PERMISSIONSADMINMAN","Permissions to moderate categories"); |
|
229 | -define("_AM_SF_POSITION","Position"); |
|
230 | -define("_AM_SF_PUBLISH","Publish"); |
|
231 | -define("_AM_SF_PUBLISHED","Published"); |
|
232 | -define("_AM_SF_PUBLISHED_DSC","Here is a list of all published Q&A available in the Q&A section."); |
|
233 | -define("_AM_SF_PUBLISHED_EXP","<b>Published Q&A</b> : Q&A that have been approved and are displayed in the Q&A section."); |
|
234 | -define("_AM_SF_PUBLISHED_MOD_SUCCESS","The Q&A has been successfully modified."); |
|
235 | -define("_AM_SF_PUBLISHEDANSWER","Published answer"); |
|
236 | -define("_AM_SF_PUBLISHEDNEWANSWER","Published Q&A with newly submitted answer"); |
|
237 | -define("_AM_SF_PUBLISHEDFAQS","Published Q&A"); |
|
238 | -define("_AM_SF_PUBLISHEDFAQS_CAT","Published Q&A withing this category"); |
|
239 | -define("_AM_SF_PUBLISHED_CAT_DSC","Here is a list of published Q&A in this category."); |
|
240 | -define("_AM_SF_PUBLISHEDEDITING","Editing a published Q&A"); |
|
241 | -define("_AM_SF_PUBLISHEDEDITING_INFO","You can edit this Q&A. Modifications will immediatly take effect in the Q&A section."); |
|
242 | -define("_AM_SF_QUESTION","Question"); |
|
243 | -define("_AM_SF_QUESTION_APPROVING","Approving a question"); |
|
244 | -define("_AM_SF_QUESTION_APPROVING_INFO","Review this question in order to publish it in the Open Questions section. Other users will then have the ability to submit answers for that question."); |
|
245 | -define("_AM_SF_QUESTION_EDIT","Edit this question"); |
|
246 | -define("_AM_SF_QUESTION_MODERATE","Moderate this question"); |
|
247 | -define("_AM_SF_QUESTIONCREATEDOK","The question was successfully created and added to the Open Questions section!"); |
|
248 | -define("_AM_SF_QUESTIONISDELETED","The question has been deleted."); |
|
249 | -define("_AM_SF_QUESTIONHEADER","Questions Management"); |
|
250 | -define("_AM_SF_QUESTIONMODIFIED","The question was modified successfully!"); |
|
251 | -define("_AM_SF_QUESTIONNOTCREATED","Sorry. It was not possible to create this question!"); |
|
252 | -define("_AM_SF_QUESTIONNOTUPDATED","Sorry. It was not possible to update the question!"); |
|
253 | -define("_AM_SF_QUESTIONPUBLISHED","The question has been published in the Open Questions section."); |
|
254 | -define("_AM_SF_QUESTIONS","Questions"); |
|
255 | -define("_AM_SF_QUESTION_AFFIRMATION","Question or Affirmation"); |
|
256 | -define("_AM_SF_QUEUE","Publish in Open Questions"); |
|
257 | -define("_AM_SF_REJECTED_EDIT","Edit this rejected Q&A"); |
|
258 | -define("_AM_SF_REQUEST_QUEUE","The question has been successfully added to the Open Questions section."); |
|
259 | -define("_AM_SF_REJECTED_QUESTION","Rejected question"); |
|
260 | -define("_AM_SF_REJECTED_QUESTION_EXP","<b>Rejected question</b> : Questions that have been asked by users but rejected by a moderator. Rejected questions are not displayes in the Open Questions section."); |
|
261 | -define("_AM_SF_REJECTED_SMARTFAQ","Rejected Q&A"); |
|
262 | -define("_AM_SF_REJECTED_SMARTFAQ_EXP","<b>Rejected Q&A</b> : Q&As that have been submitted by user, but rejected by a moderator. Rejected Q&As are not displayed in the Q&A section."); |
|
263 | -define("_AM_SF_REQUESTED_BY","Question asked by : "); |
|
264 | -define("_AM_SF_SELECT_SORT","Sort order :"); |
|
265 | -define("_AM_SF_SELECT_STATUS","Status"); |
|
266 | -define("_AM_SF_SHOWING","Showing"); |
|
267 | -define("_AM_SF_SHOWREQUEST","Requested questions pending publication in the Open Questions section"); |
|
268 | -define("_AM_SF_SHOWSUBMITED_ANSWERS","Submitted answers awaiting approval"); |
|
269 | -define("_AM_SF_SHOWSUBMISSIONS","Submitted Q&A awaiting to be published"); |
|
270 | -define("_AM_SF_SMARTFAQ","Q&A"); |
|
271 | -define("_AM_SF_SMARTFAQS","Q&A"); |
|
272 | -define("_AM_SF_SMARTFAQ_APPROVING","Q&A approving"); |
|
273 | -define("_AM_SF_STATUS_EXP","Status<span style='font-size: xx-small; font-weight: normal; display: block;'>Select the status of the Q&A.</span>"); |
|
274 | -define("_AM_SF_SUBMISSIONSMNGMT","Submitted Q&A"); |
|
275 | -define("_AM_SF_SPECIFIC_URL_SELECT","Specific URL..."); |
|
276 | -define("_AM_SF_SPECIFIC_URL","Specific URL</span><span style='font-size: xx-small; font-weight: normal; display: block;'>If you have set the 'Contextually link to<br />this module' to <i>" . _AM_SF_SPECIFIC_URL_SELECT . "</i>, please<br />specify the URL.<br />\n<b>Example :</b> modules/newbb</span>"); |
|
277 | -define("_AM_SF_SUBMISSION_MODERATE","Moderate this Q&A's submission"); |
|
278 | -define("_AM_SF_SUBMITTED","Submitted"); |
|
279 | -define("_AM_SF_SUBMITTED_EXP","<b>Submitted Q&A</b> : Q&A that have been submitted by users. Once approved, they will be displayed in the Q&A section."); |
|
280 | -define("_AM_SF_SUBMITTED_ANSWER","Submitted Answer"); |
|
281 | -define("_AM_SF_SUBMITTED_ANSWER_ACCEPTED","The submitted answer has been approved."); |
|
282 | -define("_AM_SF_SUBMITTED_ANSWER_INFO","Here is a list of submitted answers for that question. Select one of them to be the official answer for that question."); |
|
283 | -define("_AM_SF_SUBMITTED_INFO","This Q&A has been submitted by a member. You can make some modifications if you like. Upon approval, this Q&A will be displayed in the Q&A section of this site."); |
|
284 | -define("_AM_SF_SUBMITTED_APPROVE_SUCCESS","The submitted Q&A has been published in the Q&A section."); |
|
285 | -define("_AM_SF_SUBMITTED_TITLE","Approving a submitted Q&A"); |
|
286 | -define("_AM_SF_FAQ_DELETE_ERROR","An error occured while deleting this Q&A."); |
|
287 | -define("_AM_SF_TOTALPUBLISHED","Published: %s"); |
|
288 | -define("_AM_SF_TOTALCAT","Categories: %s"); |
|
289 | -define("_AM_SF_TOTALNEWANSWERS","New answer: %s"); |
|
290 | -define("_AM_SF_TOTALSUBMITTED","Submitted: %s"); |
|
291 | -define("_AM_SF_TOTALOPENED","Open: %s"); |
|
292 | -define("_AM_SF_TOTALASKED","Request: %s"); |
|
293 | -define("_AM_SF_VIEW_CATS","Select categories that each group can view"); |
|
294 | -define("_AM_SF_WEIGHT","Weight"); |
|
295 | -define("_AM_SF_XOOPS_QA","XOOPS Q&A"); |
|
296 | -define("_AM_SF_YES","Yes"); |
|
297 | -define("_AM_SF_PARTIALVIEW","Allow anonymus to have a partial view of the Q&A"); |
|
10 | +define("_AM_SF_ABOUT", "About"); |
|
11 | +define("_AM_SF_ACTION", "Action"); |
|
12 | +define("_AM_SF_ADMINCOLMNGMT", "Categories management"); |
|
13 | +define("_AM_SF_ADMIN_CATS", "Select categories that each group can moderate"); |
|
14 | +define("_AM_SF_ALL", "All"); |
|
15 | +define("_AM_SF_ALL_EXP", "<b>All status</b> : All questions and answers of the module, whatever their status."); |
|
16 | +define("_AM_SF_ALLOWCOMMENTS", "Can Q&A be commented?"); |
|
17 | +define("_AM_SF_ANSWER", "Submitted answer"); |
|
18 | +define("_AM_SF_ANSWER_APPROVED_NEED_APPROVED", "The answer has been approved. The Q&A now needs to be reviewed by a moderator."); |
|
19 | +define("_AM_SF_ANSWER_APPROVED_PUBLISHED", "The answer has been approved and the Q&A has been published."); |
|
20 | +define("_AM_SF_ANSWER_OFFICIAL", "Official answer"); |
|
21 | +define("_AM_SF_ANSWER_REJECTED", "The answer was rejected."); |
|
22 | +define("_AM_SF_ANSWER_REJECTED_OPEN_QUESTION", "The answer was rejected and the question is now displayed in the Open Question section for another user to answer it."); |
|
23 | +define("_AM_SF_ANSWER_DELETE_ERROR", "An error occured while deleting this answer."); |
|
24 | +define("_AM_SF_ANSWERED_APPROVE_SUCCESS", "The answer has been reviewed and the Q&A <br />has been published in the public section of the site."); |
|
25 | +define("_AM_SF_ANSWERED_BY", "Question answered by : "); |
|
26 | +define("_AM_SF_ANSWERED_TITLE", "Answered Opened Question"); |
|
27 | +define("_AM_SF_ANSWERED_TITLE_INFO", "This opened question was provided an answer. You can edit the Q&A here. Upon approval, this Q&A will be published in public section of the site."); |
|
28 | +define("_AM_SF_ANSWERING", "Answering"); |
|
29 | +define("_AM_SF_ANSWERED", "Answered"); |
|
30 | +define("_AM_SF_ANSWERED_EXP", "<b>Answered questions</b> : Questions in the Open Questions section that have been answered by users. Once an answer has been approved for a question, this very question becomes a submitted Q&A and will require approval as well."); |
|
31 | +define("_AM_SF_ANSWERED_MODERATE", "Moderate the answer to this question"); |
|
32 | +define("_AM_SF_ANSWERISDELETED", "The answer has been deleted."); |
|
33 | +define("_AM_SF_ANSWERNOTFOUND", "Error : No official answer was found"); |
|
34 | +define("_AM_SF_APPROVE", "Approve"); |
|
35 | +define("_AM_SF_APPROVED", "Approved answer"); |
|
36 | +define("_AM_SF_APPROVED_INFO", "The answer for this question has been approved. This question has now been promoted to the status of submitted Q&A and needs an approval to be published in the Q&A section."); |
|
37 | +define("_AM_SF_APPROVED_MODERATE", "Moderate this Q&A's submission"); |
|
38 | +define("_AM_SF_APPROVED_TITLE", "Approved answer"); |
|
39 | +define("_AM_SF_APPROVESUB", "Approve submission"); |
|
40 | +define("_AM_SF_APPROVING", "Approving"); |
|
41 | +define("_AM_SF_ANSWER_FAQ", "Answer<span style='font-size: xx-small; font-weight: normal; display: block;'>Detailed answer to the above question.</span>"); |
|
42 | +define("_AM_SF_ARTCOLNAME", "Category"); |
|
43 | +define("_AM_SF_ARTCREATEDOK", "The Q&A was successfully created and published in the Q&A section!"); |
|
44 | +define("_AM_SF_ARTID", "Id"); |
|
45 | +define("_AM_SF_ARTISDELETED", "The Q&A has been deleted."); |
|
46 | +define("_AM_SF_ARTMODIFIED", "The Q&A was successfully modified!"); |
|
47 | +define("_AM_SF_ARTNOTCREATED", "Sorry. It was not possible to create this Q&A!"); |
|
48 | +define("_AM_SF_ARTNOTUPDATED", "Sorry. It was not possible to update the Q&A!"); |
|
49 | +define("_AM_SF_ASC", "Ascending"); |
|
50 | +define("_AM_SF_ASKED", "Asked"); |
|
51 | +define("_AM_SF_ASKED_APPROVE_SUCCESS", "The asked question was answered and the Q&A was published in the public section of the site."); |
|
52 | +define("_AM_SF_ASKED_EXP", "<b>Asked questions</b> : questions that have been asked by users. These questions have not yet been approved by a moderator. Once approved, the <i>Asked question</i> will become an <i>Open question<i> and be displayed in the <b>Open Questions</b> section."); |
|
53 | +define("_AM_SF_ASKED_TITLE", "Asked Question"); |
|
54 | +define("_AM_SF_ASKED_TITLE_INFO", "This is a question asked by a user. You can review the question and write the answer.<br />Uppon approval, the Q&A will be published in the public section of the site."); |
|
55 | +define("_AM_SF_AUTHFAQ", "Publish the submitted answer"); |
|
56 | +define("_AM_SF_AUTHORIZE", "Authorize"); |
|
57 | +define("_AM_SF_BACK2IDX", "Cancelled. Taking you back to the index"); |
|
58 | +define("_AM_SF_BLOCKS", "Blocks management"); |
|
59 | +define("_AM_SF_BLOCKSTXT", "This module has the following blocks, which you can configure here or in the system module."); |
|
60 | +define("_AM_SF_BLOCKSANDGROUPS", "Blocks and groups"); |
|
61 | +define("_AM_SF_BLOCKSGROUPSADMIN", "Blocks and Groups Management"); |
|
62 | +define("_AM_SF_BY", "by"); |
|
63 | +define("_AM_SF_CANCEL", "Cancel"); |
|
64 | +define("_AM_SF_CATCREATED", "New category was created and saved!"); |
|
65 | +define("_AM_SF_CATEGORIES_DSC", "Here is a list of all created categories of the module."); |
|
66 | +define("_AM_SF_CATEGORIES_TITLE", "Created categories"); |
|
67 | +define("_AM_SF_CATEGORY", "Category"); |
|
68 | +define("_AM_SF_CATEGORY_CREATE", "Create a category"); |
|
69 | +define("_AM_SF_CATEGORY_FAQ", "Category<span style='font-size: xx-small; font-weight: normal; display: block;'>Select a category for this Q&A.</span>"); |
|
70 | +define("_AM_SF_CATEGORY_QUESTION", "Category<pan style='font-size: xx-small; font-weight: normal; display: block;'>Select a category for this question.</span>"); |
|
71 | +define("_AM_SF_CATEGORY_SAVE_ERROR", "An error occured while saving the category. Here is a list of error(s) :"); |
|
72 | +define("_AM_SF_CLEAR", "Clear"); |
|
73 | +define("_AM_SF_COLDESCRIPT", "Category description"); |
|
74 | +define("_AM_SF_COLISDELETED", "Category %s has been deleted"); |
|
75 | +define("_AM_SF_COLMODIFIED", "The category was successfully modified."); |
|
76 | +define("_AM_SF_COLPOSIT", "Category position"); |
|
77 | +define("_AM_SF_CATEGORIES", "Categories"); |
|
78 | +define("_AM_SF_CATHEADER", "Categories Management"); |
|
79 | +define("_AM_SF_CONTEXTMODULELINK", "Contextually linked to this module"); |
|
80 | +define("_AM_SF_CONTEXTMODULELINK_FAQ", "Contextually linked to this module<span style='font-size: xx-small; font-weight: normal; display: block;'>Select the module to which this Q&A will be<br />linked. If the Contextual FAQ block is visible<br />on that module, the 'How do I' statement of<br />this Q&A will be displayed.</span>"); |
|
81 | +define("_AM_SF_CONTEXTOPTIONS", "Contextual options"); |
|
82 | +define("_AM_SF_CONTEXTPAGE", "Contextually linked to this URL"); |
|
83 | +define("_AM_SF_CONTEXTURLLINK", "Link to this URL"); |
|
84 | +define("_AM_SF_CREATE", "Create"); |
|
85 | +define("_AM_SF_CREATED", "Created"); |
|
86 | +define("_AM_SF_CREATEART", "Create a Q&A"); |
|
87 | +define("_AM_SF_CREATESMARTFAQ", "Create a new Q&A"); |
|
88 | +define("_AM_SF_CREATEQUESTION", "Create an open question"); |
|
89 | +define("_AM_SF_CREATECATEGORY", "Create a new category"); |
|
90 | +define("_AM_SF_CREATEIN", "Create in category:"); |
|
91 | +define("_AM_SF_CREATINGNEW", "Creating new"); |
|
92 | +define("_AM_SF_CREATEFAQ", "Create a new Q&A"); |
|
93 | +define("_AM_SF_DELETE", "Delete"); |
|
94 | +define("_AM_SF_DELETEART", "Delete Q&A"); |
|
95 | +define("_AM_SF_DELETE_CAT_CONFIRM", "Please note that by deleting a category, all the sub-categories and the Q&A of this category will be deleted as well, along with any comments that may have been posted related to these Q&A. Are you sure you wish to delete this category?"); |
|
96 | +define("_AM_SF_DELETE_CAT_ERROR", "An error occured while deleting this category."); |
|
97 | +define("_AM_SF_DELETECOL", "Delete category"); |
|
98 | +define("_AM_SF_DELETESUBM", "Delete submission"); |
|
99 | +define("_AM_SF_DELETETHISARTICLE", "Delete this Q&A?"); |
|
100 | +define("_AM_SF_DELETETHISANSWER", "Delete this answer?"); |
|
101 | +define("_AM_SF_DELETETHISQUESTION", "Delete this question?"); |
|
102 | +define("_AM_SF_DELETEQUESTION", "Delete question"); |
|
103 | +define("_AM_SF_DESC", "Descending"); |
|
104 | +define("_AM_SF_DESCRIP", "Category description"); |
|
105 | +define("_AM_SF_DIDUNO", "Did You Know?"); |
|
106 | +define("_AM_SF_DIDUNO_FAQ", "Did You Know?<span style='font-size: xx-small; font-weight: normal; display: block;'>This will be used in the Did You Know block.</span>"); |
|
107 | +define("_AM_SF_DOCONTEXT", "Make this Q&A contextual"); |
|
108 | +define("_AM_SF_DOHTML", " Enable HTML tags"); |
|
109 | +define("_AM_SF_DOSMILEY", " Enable smiley icons"); |
|
110 | +define("_AM_SF_DOXCODE", " Enable XOOPS codes"); |
|
111 | +define("_AM_SF_EDITART", "Edit Q&A"); |
|
112 | +define("_AM_SF_EDITCOL", "Edit category"); |
|
113 | +define("_AM_SF_EDITING", "Editing"); |
|
114 | +define("_AM_SF_EDITING_INFO", "You can edit this question. Modifications will immediatly take effect in the Open Questions section."); |
|
115 | +define("_AM_SF_EDITQUES", "Edit an opened question"); |
|
116 | +define("_AM_SF_EDITSUBM", "Edit submission"); |
|
117 | +define("_AM_SF_ERROR", " An error has occurred."); |
|
118 | +define("_AM_SF_ERROR_ANSWER_NOT_SAVED", "An error occured. The answer was not saved in the database."); |
|
119 | +define("_AM_SF_ERROR_FAQ_NOT_SAVED", "An error occured. The Q&A was not saved in the database."); |
|
120 | +define("_AM_SF_EXACTURL", "Exact URL?<span style='font-size: xx-small; font-weight: normal; display: block;'>If set to 'Yes', the Q&A will only display in the'Specific URL set above'. If set to 'No', the Q&A will be displayed in all pages that match a part of the root of the specific URL. ie; modules/newbb/*.php</span>"); |
|
121 | +define("_AM_SF_FAQ_EDIT", "Edit this Q&A"); |
|
122 | +define("_AM_SF_FAQ_NEW_ANSWER_PUBLISHED", "The original answer was replaced by this answer."); |
|
123 | +define("_AM_SF_FAQ_REVIEW", "Edit this answer before approbation"); |
|
124 | +define("_AM_SF_FAQ_MERGE", "Merge the new and original answers"); |
|
125 | +define("_AM_SF_FAQ_APPROVE_NEW_ANSWER", "Approve this new answer without reviewing it"); |
|
126 | +define("_AM_SF_GOMOD", "Go to module"); |
|
127 | +define("_AM_SF_GROUPS", "Groups management"); |
|
128 | +define("_AM_SF_GROUPSINFO", "Configure module and blocks permissions for each group"); |
|
129 | +define("_AM_SF_HELP", "Help"); |
|
130 | +define("_AM_SF_HOWDOI", "How do I..."); |
|
131 | +define("_AM_SF_HOWDOI_FAQ", "How do I...<span style='font-size: xx-small; font-weight: normal; display: block;'>This will be used in the Contextual FAQ Block.<br />It should be a short version of the question.</span>"); |
|
132 | +define("_AM_SF_ID", "Id"); |
|
133 | +define("_AM_SF_IMPORT", "Import"); |
|
134 | +define("_AM_SF_IMPORT_ALL_QUESTIONS", "All questions"); |
|
135 | +define("_AM_SF_IMPORT_ALLOWCOMMENTS", "Q&As can be commented?"); |
|
136 | +define("_AM_SF_IMPORT_ANSWER_ERROR", "An error occurred while importing answer <em>%s</em>."); |
|
137 | +define("_AM_SF_IMPORT_AUTOAPPROVE", "Auto-approve"); |
|
138 | +define("_AM_SF_IMPORT_BACK", "Back to the import page"); |
|
139 | +define("_AM_SF_IMPORT_CATEGORY_ERROR", "An error occurred while importing category <em>%s</em>."); |
|
140 | +define("_AM_SF_IMPORT_CATEGORY_SUCCESS", "Category <em>%s</em> imported successfully."); |
|
141 | +define("_AM_SF_IMPORT_CATEGORIES", "%s Categories"); |
|
142 | +define("_AM_SF_IMPORT_CATEGORY_FAQ", "An error occurred while importing FAQ <em>%s</em>."); |
|
143 | +define("_AM_SF_IMPORT_ERROR", "An error occured while importing the Q&A."); |
|
144 | +define("_AM_SF_IMPORT_FILE_NOT_FOUND", "Import file not found at <b>%s</b>"); |
|
145 | +define("_AM_SF_IMPORT_FROM", "Importing from %s"); |
|
146 | +define("_AM_SF_IMPORT_INFO", "You can import sets of Q&A directly in the module. Simply choose the set you would like to import and click on the 'Import' button."); |
|
147 | +define("_AM_SF_IMPORT_MODULE_FOUND", "%s module was found. There are %s categories and %s FAQs."); |
|
148 | +define("_AM_SF_IMPORT_MODULE_FOUND_NO_FAQ", "%s module was found. There are %s categories but no FAQs to be imported."); |
|
149 | +define("_AM_SF_IMPORT_NO_CATEGORY", "There are no categories to import."); |
|
150 | +define("_AM_SF_IMPORT_NO_MODULE", "As XoopsFAQ nor WF-FAQ are installed on this site, there is no sets of FAQs to import."); |
|
151 | +define("_AM_SF_IMPORT_ONLY_VISIBLE", "Only visible questions "); |
|
152 | +define("_AM_SF_IMPORT_PARENT_CATEGORY", "SmartFAQ Parent Category"); |
|
153 | +define("_AM_SF_IMPORT_PERMISSIONS", "Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see these imported Q&As.<br />this Q&A.</span>"); |
|
154 | +define("_AM_SF_IMPORT_RESULT", "Here is the result of the import."); |
|
155 | +define("_AM_SF_IMPORT_SETTINGS", "Import Settings"); |
|
156 | +define("_AM_SF_IMPORT_SUCCESS", "The Q&A set was successfully imported in the module."); |
|
157 | +define("_AM_SF_IMPORT_TITLE", "Import Q&A"); |
|
158 | +define("_AM_SF_IMPORT_WFFAQ_105", "FAQs from WF-FAQ 1.0.5"); |
|
159 | +define("_AM_SF_IMPORT_XOOPSFAQ_110", "FAQs from XoopsFAQ 1.1"); |
|
160 | +define("_AM_SF_IMPORTED_CATEGORIES", "Categories imported : %s"); |
|
161 | +define("_AM_SF_IMPORTED_QUESTION", "Imported question : <em>%s</em>"); |
|
162 | +define("_AM_SF_IMPORTED_QUESTIONS", "Questions imported : <em>%s</em>"); |
|
163 | +define("_AM_SF_IMPORTED_USER", "Submitted and answered by "); |
|
164 | +define("_AM_SF_IMPORT_SELECTION", "Import Selection"); |
|
165 | +define("_AM_SF_IMPORT_SELECT_FILE", "Set of Q&A<span style='font-size: xx-small; font-weight: normal; display: block;'>Choose the set of Q&A you would like to import in the module.</span>"); |
|
166 | +define("_AM_SF_INDEX", "Index"); |
|
167 | +define("_AM_SF_INVENTORY", "Module Summary"); |
|
168 | +define("_AM_SF_MODADMIN", "Admin :"); |
|
169 | +define("_AM_SF_MODART", "Modify a Q&A"); |
|
170 | +define("_AM_SF_MODCOL", "Modify existing category"); |
|
171 | +define("_AM_SF_MODERATORS_DEF", "Moderators<span style='font-size: xx-small; font-weight: normal; display: block;'>Users that will act as moderators for this<br />category. They will be able to add, edit,<br />approve and delete questions and Q&A<br />within this category.</span>"); |
|
172 | +define("_AM_SF_MODIFY", "Modify"); |
|
173 | +define("_AM_SF_MODIFYCOL", "Modify category"); |
|
174 | +define("_AM_SF_MODIFYTHISCOL", "Modify this category?"); |
|
175 | +define("_AM_SF_MODULEHEAD", "Summary and Q&A in different states"); |
|
176 | +define("_AM_SF_NEED_CATEGORY_FAQ", "To create a Q&A, you must first create a category."); |
|
177 | +define("_AM_SF_NEED_CATEGORY_QUESTION", "To create a question, you must first create a category."); |
|
178 | +define("_AM_SF_NEWANSWER", "New Answer"); |
|
179 | +define("_AM_SF_NEW_ANSWER", "New Answer"); |
|
180 | +define("_AM_SF_NEW_ANSWER_EXP", "<b>New Answer</b> : Published Q&A with newly submitted answer by user. Once a new answer is approved, this answer become the official answer for that question."); |
|
181 | +define("_AM_SF_NEW_ANSWER_EDITING", "Editing a Q&A with a new answer"); |
|
182 | +define("_AM_SF_NEW_ANSWER_EDITING_INFO", "A new answer has been submitted for this Q&A. You can edit it here. When you publish this Q&A, the new answer will replace the original one."); |
|
183 | +define("_AM_SF_NEWART", "Create new Q&A"); |
|
184 | +define("_AM_SF_NEW_CONTRIBUTION", "--- Additional details submitted by %s on %s\n\n%s"); |
|
185 | +define("_AM_SF_NEWQUESTION", "Create new question"); |
|
186 | +define("_AM_SF_NO", "No"); |
|
187 | +define("_AM_SF_NO_NEWANSWERS", "There are presently no published Q&A with newly submitted answers."); |
|
188 | +define("_AM_SF_NOFAQS", "There are presently no published Q&As."); |
|
189 | +define("_AM_SF_NOFOUND", "No users match the required string."); |
|
190 | +define("_AM_SF_NONE", "None"); |
|
191 | +define("_AM_SF_NOPERMSSET", "Permission cannot be set : No categories created yet! Please create a category first."); |
|
192 | +define("_AM_SF_NOS", "There are presently no Q&As to display"); |
|
193 | +define("_AM_SF_NOCAT", "No categories to display"); |
|
194 | +define("_AM_SF_NOCATSELECTED", "No category selected."); |
|
195 | +define("_AM_SF_NOCOLTOEDIT", "There are no categories to edit!"); |
|
196 | +define("_AM_SF_NOFAQSELECTED", "No Q&A selected!"); |
|
197 | +define("_AM_SF_NOANSWERS", "No answers were found."); |
|
198 | +define("_AM_SF_NOANSWERYET", "There are presently no answers waiting approval."); |
|
199 | +define("_AM_SF_NOQUEUED", "There are presently no Open Questions."); |
|
200 | +define("_AM_SF_NOREQUESTYET", "There are presently no requests waiting approval."); |
|
201 | +define("_AM_SF_NOSUBMISSYET", "There are presently no submissions waiting approval."); |
|
202 | +define("_AM_SF_NOTUPDATED", "There was an error updating the database!"); |
|
203 | +define("_AM_SF_OFFLINE", "Offline"); |
|
204 | +define("_AM_SF_OFFLINE_EXP", "<b>Offline Q&A</b> : Published Q&As that have been put offline, temporarily or not. Offline Q&A are not displayed in the Q&A section."); |
|
205 | +define("_AM_SF_OFFLINE_FIELD", "Offline<span style='font-size: xx-small; font-weight: normal; display: block;'>Select 'No' to put this Q&A back<br />on line in the Q&A section.</span>"); |
|
206 | +define("_AM_SF_OFFLINEEDITING", "Editing an offline Q&A"); |
|
207 | +define("_AM_SF_OFFLINEEDITING_INFO", "You can edit this offline Q&A. Modifications will be saved for this item. However, if you would like to display this Q&A in the Q&A section, you will need to set the <b>Offline</b> field to 'No'."); |
|
208 | +define("_AM_SF_OPEN_QUESTION", "Open Question"); |
|
209 | +define("_AM_SF_OPEN_QUESTIONS", "Open Questions"); |
|
210 | +define("_AM_SF_OPENED", "Opened"); |
|
211 | +define("_AM_SF_OPEN_QUESTION_EDIT", "Answer this question"); |
|
212 | +define("_AM_SF_OPENED_TITLE", "Published questions in the Open Questions section"); |
|
213 | +define("_AM_SF_OPENED_DSC", "Here is a list of all the published questions in the Open Questions section."); |
|
214 | +define("_AM_SF_OPENED_EXP", "<b>Opened questions</b> : Questions that have been asked by a user, and approved by a moderator. These questions are displayed in the <i>Open Questions</i> section of this module, waiting for user to answer them."); |
|
215 | +define("_AM_SF_OPTIONS", "Options"); |
|
216 | +define("_AM_SF_OPTS", "Preferences"); |
|
217 | +define("_AM_SF_OPEN_QUESTION_ANSWERING", "Answering an open question"); |
|
218 | +define("_AM_SF_OPEN_QUESTION_ANSWERING_INFO", "You are now answering an open question, which will become a Q&A and be published in the Q&A section. "); |
|
219 | +define("_AM_SF_OPENED_ANSWERING_SUCCESS", "The open question has been answered and published in the Q&A section!"); |
|
220 | +define("_AM_SF_PARENT_CATEGORY_EXP", "Parent category<span style='font-size: xx-small; font-weight: normal; display: block;'>If you want this new category to be a sub-category, select a parent here. If it is to be a top level category, leave this blank.</span>"); |
|
221 | +define("_AM_SF_PERMISSIONS", "Permissions"); |
|
222 | +define("_AM_SF_PERMISSIONS_FAQ", "Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see<br />this Q&A.</span>"); |
|
223 | +define("_AM_SF_PERMISSIONS_QUESTION", "Permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see this Question.</span>"); |
|
224 | +define("_AM_SF_PERMISSIONS_CAT_READ", "Read permissions<span style='font-size: xx-small; font-weight: normal; display: block;'>Groups that will have permissions to see<br />this Category, as well as any open questions<br />and Q&A inside that category.</span>"); |
|
225 | +define("_AM_SF_PERMISSIONS_APPLY_ON_FAQS", "Apply read permissions on Q&A<span style='font-size: xx-small; font-weight: normal; display: block;'>Apply the above Read Permissions on all<br />Q&A within that category, overriding the<br />current permissions for all these Q&A.</span>"); |
|
226 | +define("_AM_SF_PERMISSIONSADMIN", "Permissions Management"); |
|
227 | +define("_AM_SF_PERMISSIONSVIEWMAN", "Permissions to view categories"); |
|
228 | +define("_AM_SF_PERMISSIONSADMINMAN", "Permissions to moderate categories"); |
|
229 | +define("_AM_SF_POSITION", "Position"); |
|
230 | +define("_AM_SF_PUBLISH", "Publish"); |
|
231 | +define("_AM_SF_PUBLISHED", "Published"); |
|
232 | +define("_AM_SF_PUBLISHED_DSC", "Here is a list of all published Q&A available in the Q&A section."); |
|
233 | +define("_AM_SF_PUBLISHED_EXP", "<b>Published Q&A</b> : Q&A that have been approved and are displayed in the Q&A section."); |
|
234 | +define("_AM_SF_PUBLISHED_MOD_SUCCESS", "The Q&A has been successfully modified."); |
|
235 | +define("_AM_SF_PUBLISHEDANSWER", "Published answer"); |
|
236 | +define("_AM_SF_PUBLISHEDNEWANSWER", "Published Q&A with newly submitted answer"); |
|
237 | +define("_AM_SF_PUBLISHEDFAQS", "Published Q&A"); |
|
238 | +define("_AM_SF_PUBLISHEDFAQS_CAT", "Published Q&A withing this category"); |
|
239 | +define("_AM_SF_PUBLISHED_CAT_DSC", "Here is a list of published Q&A in this category."); |
|
240 | +define("_AM_SF_PUBLISHEDEDITING", "Editing a published Q&A"); |
|
241 | +define("_AM_SF_PUBLISHEDEDITING_INFO", "You can edit this Q&A. Modifications will immediatly take effect in the Q&A section."); |
|
242 | +define("_AM_SF_QUESTION", "Question"); |
|
243 | +define("_AM_SF_QUESTION_APPROVING", "Approving a question"); |
|
244 | +define("_AM_SF_QUESTION_APPROVING_INFO", "Review this question in order to publish it in the Open Questions section. Other users will then have the ability to submit answers for that question."); |
|
245 | +define("_AM_SF_QUESTION_EDIT", "Edit this question"); |
|
246 | +define("_AM_SF_QUESTION_MODERATE", "Moderate this question"); |
|
247 | +define("_AM_SF_QUESTIONCREATEDOK", "The question was successfully created and added to the Open Questions section!"); |
|
248 | +define("_AM_SF_QUESTIONISDELETED", "The question has been deleted."); |
|
249 | +define("_AM_SF_QUESTIONHEADER", "Questions Management"); |
|
250 | +define("_AM_SF_QUESTIONMODIFIED", "The question was modified successfully!"); |
|
251 | +define("_AM_SF_QUESTIONNOTCREATED", "Sorry. It was not possible to create this question!"); |
|
252 | +define("_AM_SF_QUESTIONNOTUPDATED", "Sorry. It was not possible to update the question!"); |
|
253 | +define("_AM_SF_QUESTIONPUBLISHED", "The question has been published in the Open Questions section."); |
|
254 | +define("_AM_SF_QUESTIONS", "Questions"); |
|
255 | +define("_AM_SF_QUESTION_AFFIRMATION", "Question or Affirmation"); |
|
256 | +define("_AM_SF_QUEUE", "Publish in Open Questions"); |
|
257 | +define("_AM_SF_REJECTED_EDIT", "Edit this rejected Q&A"); |
|
258 | +define("_AM_SF_REQUEST_QUEUE", "The question has been successfully added to the Open Questions section."); |
|
259 | +define("_AM_SF_REJECTED_QUESTION", "Rejected question"); |
|
260 | +define("_AM_SF_REJECTED_QUESTION_EXP", "<b>Rejected question</b> : Questions that have been asked by users but rejected by a moderator. Rejected questions are not displayes in the Open Questions section."); |
|
261 | +define("_AM_SF_REJECTED_SMARTFAQ", "Rejected Q&A"); |
|
262 | +define("_AM_SF_REJECTED_SMARTFAQ_EXP", "<b>Rejected Q&A</b> : Q&As that have been submitted by user, but rejected by a moderator. Rejected Q&As are not displayed in the Q&A section."); |
|
263 | +define("_AM_SF_REQUESTED_BY", "Question asked by : "); |
|
264 | +define("_AM_SF_SELECT_SORT", "Sort order :"); |
|
265 | +define("_AM_SF_SELECT_STATUS", "Status"); |
|
266 | +define("_AM_SF_SHOWING", "Showing"); |
|
267 | +define("_AM_SF_SHOWREQUEST", "Requested questions pending publication in the Open Questions section"); |
|
268 | +define("_AM_SF_SHOWSUBMITED_ANSWERS", "Submitted answers awaiting approval"); |
|
269 | +define("_AM_SF_SHOWSUBMISSIONS", "Submitted Q&A awaiting to be published"); |
|
270 | +define("_AM_SF_SMARTFAQ", "Q&A"); |
|
271 | +define("_AM_SF_SMARTFAQS", "Q&A"); |
|
272 | +define("_AM_SF_SMARTFAQ_APPROVING", "Q&A approving"); |
|
273 | +define("_AM_SF_STATUS_EXP", "Status<span style='font-size: xx-small; font-weight: normal; display: block;'>Select the status of the Q&A.</span>"); |
|
274 | +define("_AM_SF_SUBMISSIONSMNGMT", "Submitted Q&A"); |
|
275 | +define("_AM_SF_SPECIFIC_URL_SELECT", "Specific URL..."); |
|
276 | +define("_AM_SF_SPECIFIC_URL", "Specific URL</span><span style='font-size: xx-small; font-weight: normal; display: block;'>If you have set the 'Contextually link to<br />this module' to <i>"._AM_SF_SPECIFIC_URL_SELECT."</i>, please<br />specify the URL.<br />\n<b>Example :</b> modules/newbb</span>"); |
|
277 | +define("_AM_SF_SUBMISSION_MODERATE", "Moderate this Q&A's submission"); |
|
278 | +define("_AM_SF_SUBMITTED", "Submitted"); |
|
279 | +define("_AM_SF_SUBMITTED_EXP", "<b>Submitted Q&A</b> : Q&A that have been submitted by users. Once approved, they will be displayed in the Q&A section."); |
|
280 | +define("_AM_SF_SUBMITTED_ANSWER", "Submitted Answer"); |
|
281 | +define("_AM_SF_SUBMITTED_ANSWER_ACCEPTED", "The submitted answer has been approved."); |
|
282 | +define("_AM_SF_SUBMITTED_ANSWER_INFO", "Here is a list of submitted answers for that question. Select one of them to be the official answer for that question."); |
|
283 | +define("_AM_SF_SUBMITTED_INFO", "This Q&A has been submitted by a member. You can make some modifications if you like. Upon approval, this Q&A will be displayed in the Q&A section of this site."); |
|
284 | +define("_AM_SF_SUBMITTED_APPROVE_SUCCESS", "The submitted Q&A has been published in the Q&A section."); |
|
285 | +define("_AM_SF_SUBMITTED_TITLE", "Approving a submitted Q&A"); |
|
286 | +define("_AM_SF_FAQ_DELETE_ERROR", "An error occured while deleting this Q&A."); |
|
287 | +define("_AM_SF_TOTALPUBLISHED", "Published: %s"); |
|
288 | +define("_AM_SF_TOTALCAT", "Categories: %s"); |
|
289 | +define("_AM_SF_TOTALNEWANSWERS", "New answer: %s"); |
|
290 | +define("_AM_SF_TOTALSUBMITTED", "Submitted: %s"); |
|
291 | +define("_AM_SF_TOTALOPENED", "Open: %s"); |
|
292 | +define("_AM_SF_TOTALASKED", "Request: %s"); |
|
293 | +define("_AM_SF_VIEW_CATS", "Select categories that each group can view"); |
|
294 | +define("_AM_SF_WEIGHT", "Weight"); |
|
295 | +define("_AM_SF_XOOPS_QA", "XOOPS Q&A"); |
|
296 | +define("_AM_SF_YES", "Yes"); |
|
297 | +define("_AM_SF_PARTIALVIEW", "Allow anonymus to have a partial view of the Q&A"); |
|
298 | 298 | |
299 | 299 | // Search users |
300 | -define("_AM_SF_FINDUSERS","Find users"); |
|
301 | -define("_AM_SF_UNAME","User name"); |
|
302 | -define("_AM_SF_REALNAME","Real name"); |
|
303 | -define("_AM_SF_LIMIT","Users per page"); |
|
304 | -define("_AM_SF_SUBMIT","Submit"); |
|
305 | -define("_AM_SF_RESULTS","Search results"); |
|
306 | -define("_AM_SF_ACTIVEUSERS","Active users: %s"); |
|
307 | -define("_AM_SF_INACTIVEUSERS","Inactive users: %s"); |
|
300 | +define("_AM_SF_FINDUSERS", "Find users"); |
|
301 | +define("_AM_SF_UNAME", "User name"); |
|
302 | +define("_AM_SF_REALNAME", "Real name"); |
|
303 | +define("_AM_SF_LIMIT", "Users per page"); |
|
304 | +define("_AM_SF_SUBMIT", "Submit"); |
|
305 | +define("_AM_SF_RESULTS", "Search results"); |
|
306 | +define("_AM_SF_ACTIVEUSERS", "Active users: %s"); |
|
307 | +define("_AM_SF_INACTIVEUSERS", "Inactive users: %s"); |
|
308 | 308 | |
309 | 309 | // New table |
310 | -define("_AM_SF_FAQID","ID"); |
|
311 | -define("_AM_SF_FAQCAT","Category"); |
|
312 | -define("_AM_SF_STATUS","Status"); |
|
313 | -define("_AM_SF_NOFAQSSEL","Sorry. There are no items in the selected state."); |
|
314 | -define("_AM_SF_ANSWERS","Answers"); |
|
315 | -define("_AM_SF_ALLFAQS","Q&A in the module"); |
|
316 | -define("_AM_SF_ALLFAQSMSG","Select a status to see all available questions and/or answers in the selected status."); |
|
310 | +define("_AM_SF_FAQID", "ID"); |
|
311 | +define("_AM_SF_FAQCAT", "Category"); |
|
312 | +define("_AM_SF_STATUS", "Status"); |
|
313 | +define("_AM_SF_NOFAQSSEL", "Sorry. There are no items in the selected state."); |
|
314 | +define("_AM_SF_ANSWERS", "Answers"); |
|
315 | +define("_AM_SF_ALLFAQS", "Q&A in the module"); |
|
316 | +define("_AM_SF_ALLFAQSMSG", "Select a status to see all available questions and/or answers in the selected status."); |
|
317 | 317 | |
318 | -define("_AM_SF_UPDATE","Update module"); |
|
318 | +define("_AM_SF_UPDATE", "Update module"); |