Commit 4bb9b67c by Félicie

keys words

parent 4dddf560
...@@ -183,6 +183,11 @@ function qa_qs_sub_navigation($sort, $categoryslugs) ...@@ -183,6 +183,11 @@ function qa_qs_sub_navigation($sort, $categoryslugs)
'url' => qa_path_html($request, array('sort' => 'votes')), 'url' => qa_path_html($request, array('sort' => 'votes')),
), ),
'unanswered' => array(
'label' => qa_lang('main/nav_unanswered'),
'url' => qa_path_html('unanswered'),
),
'answers' => array( 'answers' => array(
'label' => qa_lang('main/nav_most_popular'), 'label' => qa_lang('main/nav_most_popular'),
'url' => qa_path_html($request, array('sort' => 'answers')), 'url' => qa_path_html($request, array('sort' => 'answers')),
...@@ -228,17 +233,7 @@ function qa_unanswered_sub_navigation($by, $categoryslugs) ...@@ -228,17 +233,7 @@ function qa_unanswered_sub_navigation($by, $categoryslugs)
'by-answers' => array( 'by-answers' => array(
'label' => qa_lang('main/nav_no_answer'), 'label' => qa_lang('main/nav_no_answer'),
'url' => qa_path_html($request), 'url' => qa_path_html($request),
), )
'by-selected' => array(
'label' => qa_lang('main/nav_no_selected_answer'),
'url' => qa_path_html($request, array('by' => 'selected')),
),
'by-upvotes' => array(
'label' => qa_lang('main/nav_no_upvoted_answer'),
'url' => qa_path_html($request, array('by' => 'upvotes')),
),
); );
if (isset($navigation['by-' . $by])) { if (isset($navigation['by-' . $by])) {
......
...@@ -39,9 +39,9 @@ $userid = qa_get_logged_in_userid(); ...@@ -39,9 +39,9 @@ $userid = qa_get_logged_in_userid();
// Get list of questions, plus category information // Get list of questions, plus category information
switch ($sort) { switch ($sort) {
case 'hot': // case 'hot':
$selectsort = 'hotness'; // $selectsort = 'hotness';
break; // break;
case 'votes': case 'votes':
$selectsort = 'netvotes'; $selectsort = 'netvotes';
...@@ -84,10 +84,10 @@ $feedpathprefix = null; ...@@ -84,10 +84,10 @@ $feedpathprefix = null;
$linkparams = array('sort' => $sort); $linkparams = array('sort' => $sort);
switch ($sort) { switch ($sort) {
case 'hot': // case 'hot':
$sometitle = $countslugs ? qa_lang_html_sub('main/hot_qs_in_x', $categorytitlehtml) : qa_lang_html('main/hot_qs_title'); // $sometitle = $countslugs ? qa_lang_html_sub('main/hot_qs_in_x', $categorytitlehtml) : qa_lang_html('main/hot_qs_title');
$feedpathprefix = qa_opt('feed_for_hot') ? 'hot' : null; // $feedpathprefix = qa_opt('feed_for_hot') ? 'hot' : null;
break; // break;
case 'votes': case 'votes':
$sometitle = $countslugs ? qa_lang_html_sub('main/voted_qs_in_x', $categorytitlehtml) : qa_lang_html('main/voted_qs_title'); $sometitle = $countslugs ? qa_lang_html_sub('main/voted_qs_in_x', $categorytitlehtml) : qa_lang_html('main/voted_qs_title');
......
...@@ -369,7 +369,8 @@ function qa_register_core_modules() ...@@ -369,7 +369,8 @@ function qa_register_core_modules()
qa_register_module('event', 'plugins/qa-event-updates.php', 'qa_event_updates', 'Q2A Event Updates'); qa_register_module('event', 'plugins/qa-event-updates.php', 'qa_event_updates', 'Q2A Event Updates');
qa_register_module('search', 'plugins/qa-search-basic.php', 'qa_search_basic', ''); qa_register_module('search', 'plugins/qa-search-basic.php', 'qa_search_basic', '');
qa_register_module('widget', 'plugins/qa-widget-activity-count.php', 'qa_activity_count', 'Activity Count'); qa_register_module('widget', 'plugins/qa-widget-activity-count.php', 'qa_activity_count', 'Activity Count');
qa_register_module('widget', 'plugins/qa-widget-ask-box.php', 'qa_ask_box', 'Ask Box');
qa_register_module('widget', 'plugins/qa-widget-related-qs.php', 'qa_related_qs', 'Related Questions'); qa_register_module('widget', 'plugins/qa-widget-related-qs.php', 'qa_related_qs', 'Related Questions');
qa_register_module('widget', 'plugins/qa-widget-category-list.php', 'qa_category_list', 'Categories'); qa_register_module('widget', 'plugins/qa-widget-category-list.php', 'qa_category_list', 'Categories');
} }
......
...@@ -128,11 +128,11 @@ switch ($feedtype) { ...@@ -128,11 +128,11 @@ switch ($feedtype) {
$feedoption = 'feed_for_questions'; $feedoption = 'feed_for_questions';
break; break;
case 'hot': // case 'hot':
$feedoption = 'feed_for_hot'; // $feedoption = 'feed_for_hot';
if (!QA_ALLOW_UNINDEXED_QUERIES) // if (!QA_ALLOW_UNINDEXED_QUERIES)
$categoryslugs = null; // $categoryslugs = null;
break; // break;
case 'unanswered': case 'unanswered':
$feedoption = 'feed_for_unanswered'; $feedoption = 'feed_for_unanswered';
......
...@@ -1453,7 +1453,7 @@ class qa_html_theme_base ...@@ -1453,7 +1453,7 @@ class qa_html_theme_base
} else { } else {
// new block layout // new block layout
foreach ($ranking['items'] as $item) { foreach ($ranking['items'] as $item) {
$this->output('<span class="qa-ranking-item ' . $class . '-item">');
$this->ranking_item($item, $class); $this->ranking_item($item, $class);
$this->output('</span>'); $this->output('</span>');
} }
...@@ -1470,9 +1470,6 @@ class qa_html_theme_base ...@@ -1470,9 +1470,6 @@ class qa_html_theme_base
return; return;
} }
if (isset($item['count']))
$this->ranking_count($item, $class);
if (isset($item['avatar'])) if (isset($item['avatar']))
$this->avatar($item, $class); $this->avatar($item, $class);
......
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
'nav_tags' => 'Mots clés', 'nav_tags' => 'Mots clés',
'nav_unanswered' => 'Sans réponse', 'nav_unanswered' => 'Sans réponse',
'nav_updates' => 'Mes notifications', 'nav_updates' => 'Mes notifications',
'nav_users' => 'Coopérateurices', 'nav_users' => 'Liste des coopérateurices',
'newest_users' => 'Coopérateurices récents.es', 'newest_users' => 'Coopérateurices récents.es',
'no_active_users' => 'Pas de coopérateurices actifs.ves trouvés.ées', 'no_active_users' => 'Pas de coopérateurices actifs.ves trouvés.ées',
'no_answers_found' => 'Aucune réponse trouvée', 'no_answers_found' => 'Aucune réponse trouvée',
......
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
'edit_must_login' => '^1Se connecter^2 ou ^3S\'inscrire^4 pour modifier cela.', 'edit_must_login' => '^1Se connecter^2 ou ^3S\'inscrire^4 pour modifier cela.',
'edit_q_popup' => 'Modifier cette question', 'edit_q_popup' => 'Modifier cette question',
'edit_q_title' => 'Modifier question', 'edit_q_title' => 'Modifier question',
'example_tags' => 'Exemple de mots clés ', 'example_tags' => 'Exemple de mots-clés ',
'flag_a_popup' => 'Signaler cette réponse comme spam ou inapproprié', 'flag_a_popup' => 'Signaler cette réponse comme spam ou inapproprié',
'flag_button' => 'signaler', 'flag_button' => 'signaler',
'flag_c_popup' => 'Signaler ce commentaire comme spam ou inapproprié', 'flag_c_popup' => 'Signaler ce commentaire comme spam ou inapproprié',
...@@ -127,20 +127,20 @@ ...@@ -127,20 +127,20 @@
'hide_button' => 'cacher', 'hide_button' => 'cacher',
'hide_c_popup' => 'Cacher ce commentaire', 'hide_c_popup' => 'Cacher ce commentaire',
'hide_q_popup' => 'Cacher cette question', 'hide_q_popup' => 'Cacher cette question',
'matching_tags' => 'Mots clés trouvés ', 'matching_tags' => 'Mots-clés trouvés ',
'max_tags_x' => 'Un maximum de ^ mots clés sont autorisés', 'max_tags_x' => 'Un maximum de ^ mots-clés sont autorisés',
'min_tags_x' => 'Merci de fournir au moins ^ mots clés', 'min_tags_x' => 'Merci de fournir au moins ^ mots-clés',
'notify_email_note' => 'Vie privée : votre adresse de messagerie ne sera utilisée que pour l\'envoi de ces notifications .', 'notify_email_note' => 'Vie privée : votre adresse de messagerie ne sera utilisée que pour l\'envoi de ces notifications .',
'q_category_label' => 'Catégorie', 'q_category_label' => 'Catégorie',
'q_content_label' => 'Votre question plus en détail', 'q_content_label' => 'Ajouter des informations complémentaires',
'q_hidden_author' => 'Cette question a été masquée par son auteur ', 'q_hidden_author' => 'Cette question a été masquée par son auteur ',
'q_hidden_flagged' => 'Cette question a été signalée et cachée', 'q_hidden_flagged' => 'Cette question a été signalée et cachée',
'q_hidden_other' => 'Cette question a été cachée', 'q_hidden_other' => 'Cette question a été cachée',
'q_notify_email' => 'Envoyez-moi un e-mail à cette adresse si une réponse a été apportée à ma question.', 'q_notify_email' => 'Envoyez-moi un e-mail à cette adresse si une réponse a été apportée à ma question.',
'q_notify_label' => 'Envoyez-moi un e-mail si une réponse a été apportée à ma question.', 'q_notify_label' => 'Envoyez-moi un e-mail si une réponse a été apportée à ma question.',
'q_notify_x_label' => 'Envoyez-moi un e-mail (^) si une réponse a été apportée à ma question.', 'q_notify_x_label' => 'Envoyez-moi un e-mail (^) si une réponse a été apportée à ma question.',
'q_tags_comma_label' => 'Mot clés, séparés par des virgules (,)', 'q_tags_comma_label' => 'Mots-clés, séparés par des virgules (,)',
'q_tags_label' => 'Mot clés, combinés par des tirets (-)', 'q_tags_label' => 'Mots-clés (un mot clé entre chaque espace)',
'q_title_label' => 'Sujet de la question', 'q_title_label' => 'Sujet de la question',
'q_waiting_approval' => 'Cette question est en attente d\'approbation', 'q_waiting_approval' => 'Cette question est en attente d\'approbation',
'q_waiting_your_approval' => 'Cette question est en attente de votre approbation', 'q_waiting_your_approval' => 'Cette question est en attente de votre approbation',
...@@ -162,9 +162,9 @@ ...@@ -162,9 +162,9 @@
'reshow_c_popup' => 'Revoir ce commentaire', 'reshow_c_popup' => 'Revoir ce commentaire',
'reshow_q_popup' => 'Revoir cette question', 'reshow_q_popup' => 'Revoir cette question',
'retag_button' => 'rechoisir mot clé', 'retag_button' => 'rechoisir mot clé',
'retag_cat_popup' => 'Changer la categorie ou les mots clés de cette question', 'retag_cat_popup' => 'Changer la categorie ou les mots-clés de cette question',
'retag_popup' => 'Changer les mots clés de cette question', 'retag_popup' => 'Changer les mots-clés de cette question',
'retag_q_title' => 'Changer mots clés de la question', 'retag_q_title' => 'Changer mots-clés de la question',
'save_silent_label' => 'Enregistrer en silence pour cacher que c\'était édité', 'save_silent_label' => 'Enregistrer en silence pour cacher que c\'était édité',
'select_popup' => 'Sélectionner comme meilleure réponse', 'select_popup' => 'Sélectionner comme meilleure réponse',
'select_text' => 'Meilleure réponse', 'select_text' => 'Meilleure réponse',
......
...@@ -75,7 +75,7 @@ class Pages extends BaseController ...@@ -75,7 +75,7 @@ class Pages extends BaseController
$hascustomhome ? 'nav_qa_not_home' : 'nav_qa_is_home' => $hascustomhome ? 'main/nav_qa' : 'admin/nav_qa_is_home', $hascustomhome ? 'nav_qa_not_home' : 'nav_qa_is_home' => $hascustomhome ? 'main/nav_qa' : 'admin/nav_qa_is_home',
'nav_questions' => 'main/nav_qs', 'nav_questions' => 'main/nav_qs',
// 'nav_hot' => 'main/nav_hot', // 'nav_hot' => 'main/nav_hot',
'nav_unanswered' => 'main/nav_unanswered', // 'nav_unanswered' => 'main/nav_unanswered',
'nav_tags' => 'main/nav_tags', 'nav_tags' => 'main/nav_tags',
'nav_categories' => 'main/nav_categories', 'nav_categories' => 'main/nav_categories',
'nav_users' => 'main/nav_users', 'nav_users' => 'main/nav_users',
...@@ -89,7 +89,7 @@ class Pages extends BaseController ...@@ -89,7 +89,7 @@ class Pages extends BaseController
'nav_qa_is_home' => '', 'nav_qa_is_home' => '',
'nav_questions' => 'questions', 'nav_questions' => 'questions',
// 'nav_hot' => 'hot', // 'nav_hot' => 'hot',
'nav_unanswered' => 'unanswered', // 'nav_unanswered' => 'unanswered',
'nav_tags' => 'tags', 'nav_tags' => 'tags',
'nav_categories' => 'categories', 'nav_categories' => 'categories',
'nav_users' => 'users', 'nav_users' => 'users',
......
...@@ -452,8 +452,22 @@ h2 {font-size:16px; padding-top:12px; clear:both;} ...@@ -452,8 +452,22 @@ h2 {font-size:16px; padding-top:12px; clear:both;}
.qa-user-link {color:#079075; font-weight:bold;} .qa-user-link {color:#079075; font-weight:bold;}
.qa-category-link {color:#473A9F; font-weight:bold;} .qa-category-link {color:#473A9F; font-weight:bold;}
.qa-tag-link {font-size:11px; color:#FFF !important; font-weight:bold; padding:3px 5px; margin-bottom:3px; background-color:#658296; display:-moz-inline-stack; display:inline-block; vertical-align:middle; text-decoration:none !important;} /* inline-block for IE, -moz-inline-stack for early FF */ .qa-tag-link {
.qa-tag-link:hover {text-decoration:none; background-color:#235272;} color:#fff !important;
font-weight:bold;
padding:3px 5px;
margin-bottom:3px;
background-color:#00a473;
display:-moz-inline-stack;
display:inline-block;
vertical-align:middle;
text-decoration:none !important;
border-radius: 10px;
} /* inline-block for IE, -moz-inline-stack for early FF */
.qa-tag-link:hover {
text-decoration:none;
color:#333 !important;
background-color:#E6e9ed;}
.qa-avatar-image {border:0; vertical-align:middle;} .qa-avatar-image {border:0; vertical-align:middle;}
.qa-avatar-link,.qa-avatar-link:hover {text-decoration:none;} .qa-avatar-link,.qa-avatar-link:hover {text-decoration:none;}
.qa-favorite-image {background: url(favorite-plus.gif) no-repeat 0 -26px; border:0; margin:2px; height:26px; width:26px; vertical-align:middle; display:inline-block;} .qa-favorite-image {background: url(favorite-plus.gif) no-repeat 0 -26px; border:0; margin:2px; height:26px; width:26px; vertical-align:middle; display:inline-block;}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment