Skip to content

Commit

Permalink
refactor: moved filters to accordion top (#3049)
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jul 19, 2024
1 parent f14c8d0 commit 67d45cb
Show file tree
Hide file tree
Showing 50 changed files with 113 additions and 116 deletions.
2 changes: 1 addition & 1 deletion phpmyfaq/admin/export.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
$templateVars = [
'adminHeaderExport' => Translation::get('ad_menu_export'),
'hasNoFaqs' => Database::checkOnEmptyTable('faqdata'),
'errorMessageNoFaqs' => Translation::get('err_noArticles'),
'errorMessageNoFaqs' => Translation::get('msgErrorNoRecords'),
'hasCategories' => !Database::checkOnEmptyTable('faqcategories'),
'headerCategories' => Translation::get('ad_export_which_cat'),
'msgCategory' => Translation::get('ad_entry_category'),
Expand Down
5 changes: 0 additions & 5 deletions phpmyfaq/admin/faqs.overview.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,12 @@
$template = $twig->loadTemplate('./admin/content/faq.overview.twig');

$templateVars = [
'msgHeaderFAQOverview' => Translation::get('ad_entry_aor'),
'msgOnlyInactiveFAQs' => Translation::get('msgOnlyInactiveFAQs'),
'msgOnlyNewFAQs' => Translation::get('msgOnlyNewFAQs'),
'msgSearch' => Translation::get('ad_menu_searchfaqs'),
'csrfTokenSearch' => Token::getInstance()->getTokenInput('edit-faq'),
'errorNoRecords' => Translation::get('err_noArticles'),
'csrfTokenOverview' => Token::getInstance()->getTokenString('faq-overview'),
'categories' => $category->getCategoryTree(),
'numberOfRecords' => $categoryRelation->getNumberOfFaqsPerCategory(),
'numberOfComments' => $comments->getNumberOfCommentsByCategory(),
'msgRecords' => Translation::get('msgEntries'),
'msgComments' => Translation::get('ad_start_comments'),
'msgQuestion' => Translation::get('ad_entry_theme'),
'msgDate' => Translation::get('ad_entry_date'),
Expand Down
2 changes: 1 addition & 1 deletion phpmyfaq/admin/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
$secLevelEntries['content'] .= $adminHelper->addMenuEntry(
'edit_faq+delete_faq',
'faqs-overview',
'ad_entry_aor',
'msgHeaderFAQOverview',
$action
);
$secLevelEntries['content'] .= $adminHelper->addMenuEntry(
Expand Down
40 changes: 21 additions & 19 deletions phpmyfaq/assets/templates/admin/content/faq.overview.twig
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">
<i aria-hidden="true" class="bi bi-list-alt"></i>
{{ msgHeaderFAQOverview }}
{{ 'msgHeaderFAQOverview' | translate }}
</h1>
<div class="col-2">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="pmf-checkbox-filter-inactive">
<label class="form-check-label" for="pmf-checkbox-filter-inactive">
{{ msgOnlyInactiveFAQs }}
</label>
</div>
</div>
<div class="col-2">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="pmf-checkbox-filter-new">
<label class="form-check-label" for="pmf-checkbox-filter-new">
{{ msgOnlyNewFAQs }}
</label>
</div>
</div>
<div class="pmf-faq-overview-search col-4">
<form name="pmf-faq-search-autocomplete" id="pmf-faq-search-autocomplete" action="?action=faq-overview"
method="post" role="form">
Expand All @@ -36,19 +20,37 @@

{% if categories is empty %}
<div class="alert alert-danger" role="alert">
{{ errorNoRecords }}
{{ 'msgErrorNoRecords' | translate }}
</div>
{% endif %}

<div class="accordion shadow" id="pm-admin-faq-overview">
<div class="accordion-item d-flex justify-content-start flex-wrap flex-md-nowrap align-items-center p-3 bg-secondary-subtle">
<div class="col-2">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="pmf-checkbox-filter-inactive">
<label class="form-check-label" for="pmf-checkbox-filter-inactive">
{{ 'msgOnlyInactiveFAQs' | translate }}
</label>
</div>
</div>
<div class="col-2">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="pmf-checkbox-filter-new">
<label class="form-check-label" for="pmf-checkbox-filter-new">
{{ 'msgOnlyNewFAQs' | translate }}
</label>
</div>
</div>
</div>
{% for category in categories %}
<div class="accordion-item">
<div class="accordion-header category-header-indent-{{ category.indent }}">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#category-id-{{ category.id }}">

<span class="lead">{{ category.name }}</span>
<span class="badge bg-secondary mx-1">{{ numberOfRecords[category.id] ?? 0 }} {{ msgRecords }}</span>
<span class="badge bg-secondary mx-1">{{ numberOfRecords[category.id] ?? 0 }} {{ 'msgEntries' | translate }}</span>
<span class="badge bg-info mx-1">{{ numberOfComments[category.id] ?? 0 }} {{ msgComments }}</span>

</button>
Expand Down
2 changes: 1 addition & 1 deletion phpmyfaq/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
'checkedAllLanguages' => $allLanguages ? ' checked' : '',
'selectCategories' => Translation::get('msgSelectCategories'),
'allCategories' => Translation::get('msgAllCategories'),
'noSearchResults' => Translation::get('err_noArticles'),
'noSearchResults' => Translation::get('msgErrorNoRecords'),
'pagination' => $faqPagination->render(),
'msgMostPopularSearches' => Translation::get('msgMostPopularSearches'),
'mostPopularSearches' => $mostPopularSearchData,
Expand Down
2 changes: 1 addition & 1 deletion phpmyfaq/show.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
->setCategory($subCategory);

if (empty($records)) {
$records = sprintf('<div class="mb-5 alert alert-info">%s</div>', Translation::get('err_noArticles'));
$records = sprintf('<div class="mb-5 alert alert-info">%s</div>', Translation::get('msgErrorNoRecords'));
}

if ((is_countable($category->getChildNodes((int) $selectedCategoryId)) ? count($category->getChildNodes((int) $selectedCategoryId)) : 0) !== 0) {
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/startpage.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@
'errorMsgTopTen' => Translation::get('err_noTopTen'),
'writeNewestHeader' => Translation::get('msgLatestArticles'),
'latestRecordsList' => $faqStatistics->getLatest(),
'errorMsgLatest' => Translation::get('err_noArticles'),
'errorMsgLatest' => Translation::get('msgErrorNoRecords'),
'msgTrendingFAQs' => Translation::get('msgTrendingFAQs'),
'trendingRecordsList' => $faqStatistics->getTrending(),
'errorMsgTrendingFaqs' => Translation::get('err_noArticles'),
'errorMsgTrendingFaqs' => Translation::get('msgErrorNoRecords'),
'writeNewsHeader' => $writeNewsHeader,
'writeNews' => $news->getAll(),
'writeNumberOfArticles' => $plr->getMsg('plmsgHomeArticlesOnline', $faqStatistics->totalFaqs($faqLangCode)),
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_ar.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
$PMF_LANG['msgMailContact'] = 'تم إرسال رسالتك إلى المشرف العام .';
$PMF_LANG['err_noDatabase'] = 'لا يوجد إتصال بقاعدة البيانات بعد .';
$PMF_LANG['err_noHeaders'] = 'لا يوجد تصنيفات بعد .';
$PMF_LANG['err_noArticles'] = 'لا يوجد أسئلة بعد .';
$PMF_LANG['msgErrorNoRecords'] = 'لا يوجد أسئلة بعد .';
$PMF_LANG['err_badID'] = 'رقم تعري ? خاطيء';
$PMF_LANG['err_noTopTen'] = 'لا يوجد أفضل 10 أسئلة حتى الآن .';
$PMF_LANG['err_nothingFound'] = 'لا يوجد أسئلة حتى الآن .';
Expand Down Expand Up @@ -164,7 +164,7 @@
$PMF_LANG['ad_user_del_2'] = 'سوف يتم الحذف؟';
$PMF_LANG['ad_user_del_3'] = 'هل أنت متأكد ؟';
$PMF_LANG['ad_user_deleted'] = 'تم حذف ذلك العضو بنجاح .';
$PMF_LANG['ad_entry_aor'] = 'إدارة الأسئلة';
$PMF_LANG['msgHeaderFAQOverview'] = 'إدارة الأسئلة';
$PMF_LANG['ad_entry_id'] = 'كود';
$PMF_LANG['ad_entry_topic'] = 'العنوان';
$PMF_LANG['ad_entry_action'] = 'عمليات';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_bn.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
// Fehlermeldungen
$PMF_LANG["err_noDatabase"] = "ডাটাবেজ সংযোগ নেই।";
$PMF_LANG["err_noHeaders"] = "কোনো বিভাগ পাওয়া যায় নি";
$PMF_LANG["err_noArticles"] = "কোনো লেখা পাওয়া যায়নি।";
$PMF_LANG["msgErrorNoRecords"] = "কোনো লেখা পাওয়া যায়নি।";
$PMF_LANG["err_badID"] = "ভুল পরিচয়।";
$PMF_LANG["err_noTopTen"] = "সেরা ১০ টি প্রশ্ন পাওয়া যায়নি।";
$PMF_LANG["err_nothingFound"] = "কোনো প্রশ্ন পাওয়া যায়নি।";
Expand Down Expand Up @@ -199,7 +199,7 @@
$PMF_LANG["ad_user_checkall"] = "Select all";

// Beitragsverwaltung
$PMF_LANG["ad_entry_aor"] = "Administration of Records";
$PMF_LANG["msgHeaderFAQOverview"] = "Administration of Records";
$PMF_LANG["ad_entry_id"] = "ID";
$PMF_LANG["ad_entry_topic"] = "Topic";
$PMF_LANG["ad_entry_action"] = "Action";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_bs.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
// Fehlermeldungen
$PMF_LANG["err_noDatabase"] = "Nije uspeo pristup bazi.";
$PMF_LANG["err_noHeaders"] = "Nema kategorija.";
$PMF_LANG["err_noArticles"] = "Nema unosa.";
$PMF_LANG["msgErrorNoRecords"] = "Nema unosa.";
$PMF_LANG["err_badID"] = "Pogre&#353;an ID.";
$PMF_LANG["err_noTopTen"] = "TOP10 jo&#353; ne postoji.";
$PMF_LANG["err_nothingFound"] = "Unos nije prona&#273;en.";
Expand Down Expand Up @@ -204,7 +204,7 @@
$PMF_LANG["ad_user_deleted"] = "Korisnik je uspe&#353;no obrisan.";

// Beitragsverwaltung
$PMF_LANG["ad_entry_aor"] = "Administracija Unosa";
$PMF_LANG["msgHeaderFAQOverview"] = "Administracija Unosa";
$PMF_LANG["ad_entry_id"] = "ID";
$PMF_LANG["ad_entry_topic"] = "Tema";
$PMF_LANG["ad_entry_action"] = "Akcija";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_cs.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
$PMF_LANG['msgMailContact'] = 'Vaše zpráva byla odeslána administrátorovi.';
$PMF_LANG['err_noDatabase'] = 'Není dostupné spojení s databází.';
$PMF_LANG['err_noHeaders'] = 'Žádná kategorie nenalezena.';
$PMF_LANG['err_noArticles'] = 'Žádné záznamy nenalezeny.';
$PMF_LANG['msgErrorNoRecords'] = 'Žádné záznamy nenalezeny.';
$PMF_LANG['err_badID'] = 'Chybné ID.';
$PMF_LANG['err_noTopTen'] = 'Žádné z TOP 10 není k dispozici.';
$PMF_LANG['err_nothingFound'] = 'Žádné záznamy nenalezeny.';
Expand Down Expand Up @@ -167,7 +167,7 @@
$PMF_LANG['ad_user_del_3'] = 'Jste si jisti?';
$PMF_LANG['ad_user_deleted'] = 'Uživatel byl úspěšně vymazán.';
$PMF_LANG['ad_user_checkall'] = 'Vybrat vše';
$PMF_LANG['ad_entry_aor'] = 'Administrace záznamů';
$PMF_LANG['msgHeaderFAQOverview'] = 'Administrace záznamů';
$PMF_LANG['ad_entry_id'] = 'ID';
$PMF_LANG['ad_entry_topic'] = 'Téma';
$PMF_LANG['ad_entry_action'] = 'Akce';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_cy.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
// Fehlermeldungen
$PMF_LANG["err_noDatabase"] = "Does dim cysylltiad cronfa ddata ar gael.";
$PMF_LANG["err_noHeaders"] = "Ni chafwyd categori.";
$PMF_LANG["err_noArticles"] = "Dim cofnodion ar gael.";
$PMF_LANG["msgErrorNoRecords"] = "Dim cofnodion ar gael.";
$PMF_LANG["err_badID"] = "Gwybodaeth adnabod anghywir.";
$PMF_LANG["err_noTopTen"] = "Does dim Deg Uchaf ar gael eto.";
$PMF_LANG["err_nothingFound"] = "Ni chafwyd cofnod.";
Expand Down Expand Up @@ -206,7 +206,7 @@
$PMF_LANG["ad_user_checkall"] = "Dewis oll";

// Beitragsverwaltung
$PMF_LANG["ad_entry_aor"] = "Gweinyddu Cofnodion";
$PMF_LANG["msgHeaderFAQOverview"] = "Gweinyddu Cofnodion";
$PMF_LANG["ad_entry_id"] = "Gwybodaeth Adnabod";
$PMF_LANG["ad_entry_topic"] = "Pwnc";
$PMF_LANG["ad_entry_action"] = "Gweithred";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_da.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
$PMF_LANG['msgMailContact'] = 'Din besked er sendt til administratoren.';
$PMF_LANG['err_noDatabase'] = 'Ingen forbindelse til databasen.';
$PMF_LANG['err_noHeaders'] = 'Ingen kategori fundet.';
$PMF_LANG['err_noArticles'] = 'Ingen indlæg fundet.';
$PMF_LANG['msgErrorNoRecords'] = 'Ingen indlæg fundet.';
$PMF_LANG['err_badID'] = 'Forkert ID.';
$PMF_LANG['err_noTopTen'] = 'Ikke indlæg nok til en Top 10.';
$PMF_LANG['err_nothingFound'] = 'ingen indlæg fundet.';
Expand Down Expand Up @@ -166,7 +166,7 @@
$PMF_LANG['ad_user_del_2'] = 'skal slettes?';
$PMF_LANG['ad_user_del_3'] = 'Er du sikker?';
$PMF_LANG['ad_user_deleted'] = 'Brugeren er slettet.';
$PMF_LANG['ad_entry_aor'] = 'Administration af spørgsmål';
$PMF_LANG['msgHeaderFAQOverview'] = 'Administration af spørgsmål';
$PMF_LANG['ad_entry_id'] = 'ID';
$PMF_LANG['ad_entry_topic'] = 'Emne';
$PMF_LANG['ad_entry_action'] = 'Aktion';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_de.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
// Fehlermeldungen
$PMF_LANG['err_noDatabase'] = "Keine Datenbankverbindung möglich!";
$PMF_LANG['err_noHeaders'] = "Keine Kategorie gefunden";
$PMF_LANG['err_noArticles'] = "Es gibt noch keine Einträge.";
$PMF_LANG['msgErrorNoRecords'] = "Es gibt noch keine Einträge.";
$PMF_LANG['err_badID'] = "Fehlerhafte ID!";
$PMF_LANG['err_noTopTen'] = "Derzeit sind keine beliebten FAQs verfügbar.";
$PMF_LANG['err_nothingFound'] = "Es wurde kein Eintrag gefunden.";
Expand Down Expand Up @@ -211,7 +211,7 @@
$PMF_LANG['ad_user_checkall'] = "Alle auswählen";

// Beitragsverwaltung
$PMF_LANG['ad_entry_aor'] = "FAQ-Verwaltung";
$PMF_LANG['msgHeaderFAQOverview'] = "FAQ-Verwaltung";
$PMF_LANG['ad_entry_id'] = "ID";
$PMF_LANG['ad_entry_topic'] = "Frage";
$PMF_LANG['ad_entry_action'] = "Aktion";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_el.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
$PMF_LANG['msgMailContact'] = 'Το μήνυμά σας έχει σταλλεί στο διαχειριστή';
$PMF_LANG['err_noDatabase'] = 'Δεν λειτουργεί η σύνδεση με την βάση δεδομένων.';
$PMF_LANG['err_noHeaders'] = 'Δεν υπάρχει τέτοια κατηγορία.';
$PMF_LANG['err_noArticles'] = 'Δεν υπάρχουν καταχωρήσεις.';
$PMF_LANG['msgErrorNoRecords'] = 'Δεν υπάρχουν καταχωρήσεις.';
$PMF_LANG['err_badID'] = 'Λάθος αναγνωριστικό.';
$PMF_LANG['err_noTopTen'] = 'Δεν υπάρχει top-10 ακόμη.';
$PMF_LANG['err_nothingFound'] = 'Δε βρέθηκε καμία καταχώρηση.';
Expand Down Expand Up @@ -167,7 +167,7 @@
$PMF_LANG['ad_user_del_3'] = 'Είστε σίγουροι;';
$PMF_LANG['ad_user_deleted'] = 'Ο χρήστης διαγράφτηκε με επιτυχία.';
$PMF_LANG['ad_user_checkall'] = 'Επιλογή όλων';
$PMF_LANG['ad_entry_aor'] = 'Διαχείριση καταχωρήσεων';
$PMF_LANG['msgHeaderFAQOverview'] = 'Διαχείριση καταχωρήσεων';
$PMF_LANG['ad_entry_id'] = 'Αναγνωριστικό';
$PMF_LANG['ad_entry_topic'] = 'Θέμα';
$PMF_LANG['ad_entry_action'] = 'Ενέργεια';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_en.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
// Error messages
$PMF_LANG["err_noDatabase"] = "No database connection available.";
$PMF_LANG["err_noHeaders"] = "No category found.";
$PMF_LANG["err_noArticles"] = "No FAQs available.";
$PMF_LANG["msgErrorNoRecords"] = "No FAQs available.";
$PMF_LANG["err_badID"] = "Wrong ID.";
$PMF_LANG["err_noTopTen"] = "No popular FAQs available yet.";
$PMF_LANG["err_nothingFound"] = "No entry found.";
Expand Down Expand Up @@ -213,7 +213,7 @@
$PMF_LANG["ad_user_checkall"] = "Select all";

// Contribution management
$PMF_LANG["ad_entry_aor"] = "FAQ Administration";
$PMF_LANG["msgHeaderFAQOverview"] = "FAQ Administration";
$PMF_LANG["ad_entry_id"] = "ID";
$PMF_LANG["ad_entry_topic"] = "Topic";
$PMF_LANG["ad_entry_action"] = "Action";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_es.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
// Mensajes de error
$PMF_LANG['err_noDatabase'] = "!No hay conexión con la base de datos!";
$PMF_LANG['err_noHeaders'] = "¡No se encontró ninguna categoría!";
$PMF_LANG['err_noArticles'] = "Aún no hay FAQs.";
$PMF_LANG['msgErrorNoRecords'] = "Aún no hay FAQs.";
$PMF_LANG['err_badID'] = "¡ID incorrecto!";
$PMF_LANG['err_noTopTen'] = "Aún no hay FAQs populares disponibles.";
$PMF_LANG['err_nothingFound'] = "No se encontró ninguna entrada.";
Expand Down Expand Up @@ -212,7 +212,7 @@
$PMF_LANG['ad_user_checkall'] = 'Seleccionar todos';

// Gestión de las contribuciones
$PMF_LANG['ad_entry_aor'] = 'Resumen de FAQs ';
$PMF_LANG['msgHeaderFAQOverview'] = 'Resumen de FAQs ';
$PMF_LANG['ad_entry_id'] = 'ID';
$PMF_LANG['ad_entry_topic'] = 'Pregunta';
$PMF_LANG['ad_entry_action'] = 'Acción';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_eu.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
// Fehlermeldungen
$PMF_LANG["err_noDatabase"] = "Ez dago datu-basearekin konexiorik!";
$PMF_LANG["err_noHeaders"] = "Ez da atalik aurkitu!";
$PMF_LANG["err_noArticles"] = "Ez dago sarrerarik.";
$PMF_LANG["msgErrorNoRecords"] = "Ez dago sarrerarik.";
$PMF_LANG["err_badID"] = "ID okerra!";
$PMF_LANG["err_noTopTen"] = "Oraindik ez dago TOP Ten-ik.";
$PMF_LANG["err_nothingFound"] = "Ez da sarrerarik aurkitu.";
Expand Down Expand Up @@ -209,7 +209,7 @@
$PMF_LANG["ad_user_checkall"] = "Hautatu dena";

// Beitragsverwaltung
$PMF_LANG["ad_entry_aor"] = "Erregistroen administrazioa";
$PMF_LANG["msgHeaderFAQOverview"] = "Erregistroen administrazioa";
$PMF_LANG["ad_entry_id"] = "ID";
$PMF_LANG["ad_entry_topic"] = "Gaia";
$PMF_LANG["ad_entry_action"] = "Ekintza";
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_fa.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
$PMF_LANG['msgMailContact'] = 'پیام شما به مدیر سایت ارسال شد.';
$PMF_LANG['err_noDatabase'] = 'ارتباط با پایگاه داده وجود ندارد.';
$PMF_LANG['err_noHeaders'] = 'موضوعی یافت نشد.';
$PMF_LANG['err_noArticles'] = 'مطلبی در دسترس نیست.';
$PMF_LANG['msgErrorNoRecords'] = 'مطلبی در دسترس نیست.';
$PMF_LANG['err_badID'] = 'شناسه اشتباه.';
$PMF_LANG['err_noTopTen'] = 'هنوز مطالب برتر ایجاد نشده.';
$PMF_LANG['err_nothingFound'] = 'مطلبی پیدا نشد.';
Expand Down Expand Up @@ -168,7 +168,7 @@
$PMF_LANG['ad_user_del_3'] = 'مطمئن هستید?';
$PMF_LANG['ad_user_deleted'] = 'کاربر پاک شد.';
$PMF_LANG['ad_user_checkall'] = 'انتخاب همه';
$PMF_LANG['ad_entry_aor'] = 'مدیریت مطالب';
$PMF_LANG['msgHeaderFAQOverview'] = 'مدیریت مطالب';
$PMF_LANG['ad_entry_id'] = 'شناسه';
$PMF_LANG['ad_entry_topic'] = 'موضوع';
$PMF_LANG['ad_entry_action'] = 'عمل';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_fi.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
$PMF_LANG['msgMailContact'] = 'Viestisi on lähetetty ylläpitäjälle.';
$PMF_LANG['err_noDatabase'] = 'Tietokantayhteyttä ei ole saatavilla.';
$PMF_LANG['err_noHeaders'] = 'Kategoriaa ei löydy.';
$PMF_LANG['err_noArticles'] = 'Tietueita ei ole saatavilla.';
$PMF_LANG['msgErrorNoRecords'] = 'Tietueita ei ole saatavilla.';
$PMF_LANG['err_badID'] = 'Väärä ID.';
$PMF_LANG['err_noTopTen'] = 'Suosittuja kysymyksiä ei ole vielä saatavilla.';
$PMF_LANG['err_nothingFound'] = 'Tietuetta ei löydy.';
Expand Down Expand Up @@ -169,7 +169,7 @@
$PMF_LANG['ad_user_del_3'] = 'Oletko varma?';
$PMF_LANG['ad_user_deleted'] = 'Käyttäjä poistettiin onnistuneesti.';
$PMF_LANG['ad_user_checkall'] = 'Valitse kaikki';
$PMF_LANG['ad_entry_aor'] = 'Tietueiden hallinta';
$PMF_LANG['msgHeaderFAQOverview'] = 'Tietueiden hallinta';
$PMF_LANG['ad_entry_id'] = 'ID';
$PMF_LANG['ad_entry_topic'] = 'Aihe';
$PMF_LANG['ad_entry_action'] = 'Toiminto';
Expand Down
4 changes: 2 additions & 2 deletions phpmyfaq/translations/language_fr-ca.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
$PMF_LANG['msgMailContact'] = 'Votre message a été envoyé à l\'administrateur !';
$PMF_LANG['err_noDatabase'] = 'Pas de connection à la base de données !';
$PMF_LANG['err_noHeaders'] = 'Aucune catégorie trouvée !';
$PMF_LANG['err_noArticles'] = 'Aucun résultat.';
$PMF_LANG['msgErrorNoRecords'] = 'Aucun résultat.';
$PMF_LANG['err_badID'] = 'Mauvais identifiant!';
$PMF_LANG['err_noTopTen'] = 'Pas d\'article Les plus visités actuellement.';
$PMF_LANG['err_nothingFound'] = 'Pas d\'entrée trouvée.';
Expand Down Expand Up @@ -166,7 +166,7 @@
$PMF_LANG['ad_user_del_3'] = 'Êtes vous sûr ?';
$PMF_LANG['ad_user_deleted'] = 'L\'utilisateur a été supprimé correctement.';
$PMF_LANG['ad_user_checkall'] = 'Tout sélectionner';
$PMF_LANG['ad_entry_aor'] = 'Administration des articles';
$PMF_LANG['msgHeaderFAQOverview'] = 'Administration des articles';
$PMF_LANG['ad_entry_id'] = 'Identifiant';
$PMF_LANG['ad_entry_topic'] = 'Titre';
$PMF_LANG['ad_entry_action'] = 'Action';
Expand Down
Loading

0 comments on commit 67d45cb

Please sign in to comment.