distroquery.php: improve pagination

This commit is contained in:
Silvan Calarco 2024-11-03 19:00:49 +01:00
parent 9a2ee1f552
commit 47228e6a74
4 changed files with 168 additions and 127 deletions

View File

@ -96,6 +96,7 @@ $url_prefix = home_url() . "/rpms/";
if ($q != "") echo _r("Results for:") . " <strong>" . $q . "</strong> - "; if ($q != "") echo _r("Results for:") . " <strong>" . $q . "</strong> - ";
// Pagination // Pagination
$pagination = "";
if ($j["query"]["pages"]) { if ($j["query"]["pages"]) {
$query_append = ""; $query_append = "";
if ($q != "") $query_append .= "&q=" . urlencode($q); if ($q != "") $query_append .= "&q=" . urlencode($q);
@ -109,30 +110,42 @@ $url_prefix = home_url() . "/rpms/";
$from_page = $to_page - 20; $from_page = $to_page - 20;
if ($from_page < 1) $from_page = 1; if ($from_page < 1) $from_page = 1;
} }
echo "" . $j["query"]["total"] . " " . _r("result(s) found") . " - " . $pagination .= "" . $j["query"]["total"] . " " . _r("result(s) found") . " - " .
_r("Showing page") . " " . $page . " " . _r("of") . " " . $pages . " [ "; _r("Showing page") . " " . $page . " " . _r("of") . " " . $pages . " [ ";
if ($from_page > 1) { if ($from_page > 1) {
$back_page = $from_page - 10; $back_page = $from_page - 10;
if ($back_page < 1) $back_page = 1; if ($back_page < 1) $back_page = 1;
echo "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $back_page . $query_append . "\">&lt;</a>&nbsp;"; $pagination .= "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $back_page . $query_append . "\">&lt;</a>&nbsp;";
} }
$prev_page = "";
$next_page = "";
for ($i = $from_page; $i <= $to_page; $i++) { for ($i = $from_page; $i <= $to_page; $i++) {
if ($i != $j["query"]["page"]) { if ($i != $j["query"]["page"]) {
echo "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $i . $query_append . "\">" . $i . "</a>&nbsp;"; $pagination .= "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $i . $query_append . "\">" . $i . "</a>&nbsp;";
if ($i == $j["query"]["page"]+1) $next_page = $i;
} else { } else {
echo "<strong>" . $i . "</strong>&nbsp"; if ($i >= 2 && $prev_page == "") $prev_page = $i - 1;
$pagination .= "<strong>" . $i . "</strong>&nbsp";
} }
} }
if ($to_page < $pages) { if ($to_page < $pages) {
$next_page = $to_page + 10; $curr_next_page = $to_page + 10;
if ($next_page > $pages) $next_page = $pages; if ($curr_next_page > $pages) $curr_next_page = $pages;
if ($next_page < 1) $next_page = 1; if ($curr_next_page < 1) $curr_next_page = 1;
echo "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $next_page . $query_append . "\">&gt;</a>&nbsp;"; $pagination .= "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $curr_next_page . $query_append . "\">&gt;</a>&nbsp;";
} }
echo "]</br>"; $pagination .= "]<div style=\"float:right\">";
if ($prev_page != "") {
$pagination .= "<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $prev_page . $query_append . "\">&lt; " . _r("Prev") . "</a>&nbsp;";
}
if ($next_page != "") {
$pagination .= "&nbsp;&nbsp;<a href=\"" . $url_prefix . "/" . $repo . "?page=" . $next_page . $query_append . "\">" . _r("Next") . " &gt;</a>&nbsp;";
}
$pagination .= "</div>";
} else { } else {
echo "0 " . _r("result(s) found"); $pagination .= "0 " . _r("result(s) found");
} }
echo $pagination;
echo "<table class=\"pkgpage\"><tr><th>" . echo "<table class=\"pkgpage\"><tr><th>" .
_r("Arch") . "</th><th>" . _r("Arch") . "</th><th>" .
@ -151,6 +164,8 @@ $url_prefix = home_url() . "/rpms/";
} }
echo "</table>"; echo "</table>";
echo $pagination;
echo "</form>"; echo "</form>";
} }

Binary file not shown.

View File

@ -1,13 +1,13 @@
# openmamba child theme translations. # openmamba child theme translations.
# Copyright (C) 2014 Silvan Calarco # Copyright (C) 2024 Silvan Calarco
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# Silvan Calarco <silvan.calarco@mambasoft.it>, 2014. # Silvan Calarco <silvan.calarco@mambasoft.it>, 2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Responsive Theme\n" "Project-Id-Version: Responsive Theme\n"
"Report-Msgid-Bugs-To: bugs@openmamba.org\n" "Report-Msgid-Bugs-To: bugs@openmamba.org\n"
"POT-Creation-Date: 2024-11-03 12:23+0100\n" "POT-Creation-Date: 2024-11-03 18:56+0100\n"
"PO-Revision-Date: 2014-12-08 16:25+0100\n" "PO-Revision-Date: 2014-12-08 16:25+0100\n"
"Last-Translator: Silvan Calarco <silvan.calarco@mambasoft.it>\n" "Last-Translator: Silvan Calarco <silvan.calarco@mambasoft.it>\n"
"Language-Team: Italian, Italy\n" "Language-Team: Italian, Italy\n"
@ -26,7 +26,8 @@ msgstr "Leggi di più &#8250;"
msgid "Pages:" msgid "Pages:"
msgstr "Pagine:" msgstr "Pagine:"
#: ../distroquery.php:50 ../distroquery.php:162 ../distroquery.php:264 #: ../distroquery.php:50 ../distroquery.php:177 ../distroquery.php:279
#: ../functions.php:81
msgid "Repositories" msgid "Repositories"
msgstr "Repository" msgstr "Repository"
@ -50,155 +51,163 @@ msgstr "Cerca qui"
msgid "Results for:" msgid "Results for:"
msgstr "Risultati per:" msgstr "Risultati per:"
#: ../distroquery.php:112 ../distroquery.php:134 #: ../distroquery.php:113 ../distroquery.php:146
msgid "result(s) found" msgid "result(s) found"
msgstr "risultati trovati" msgstr "risultati trovati"
#: ../distroquery.php:113 #: ../distroquery.php:114
msgid "Showing page" msgid "Showing page"
msgstr "Mostro la pagina" msgstr "Mostro la pagina"
#: ../distroquery.php:113 #: ../distroquery.php:114
msgid "of" msgid "of"
msgstr "di" msgstr "di"
#: ../distroquery.php:138 #: ../distroquery.php:139
msgid "Prev"
msgstr "Prec"
#: ../distroquery.php:142
msgid "Next"
msgstr "Succ"
#: ../distroquery.php:151
msgid "Arch" msgid "Arch"
msgstr "Architettura" msgstr "Architettura"
#: ../distroquery.php:139 ../distroquery.php:194 ../distroquery.php:296 #: ../distroquery.php:152 ../distroquery.php:209 ../distroquery.php:311
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: ../distroquery.php:140 #: ../distroquery.php:153
msgid "Version" msgid "Version"
msgstr "Versione" msgstr "Versione"
#: ../distroquery.php:141 #: ../distroquery.php:154
msgid "Summary" msgid "Summary"
msgstr "Descrizione" msgstr "Descrizione"
#: ../distroquery.php:142 #: ../distroquery.php:155
msgid "Last update" msgid "Last update"
msgstr "Ultimo aggiornamento" msgstr "Ultimo aggiornamento"
#: ../distroquery.php:173 ../distroquery.php:275 #: ../distroquery.php:188 ../distroquery.php:290
msgid "ERROR" msgid "ERROR"
msgstr "ERRORE" msgstr "ERRORE"
#: ../distroquery.php:180 ../distroquery.php:282 #: ../distroquery.php:195 ../distroquery.php:297
msgid "Resources" msgid "Resources"
msgstr "Risorse" msgstr "Risorse"
#: ../distroquery.php:181 ../distroquery.php:283 #: ../distroquery.php:196 ../distroquery.php:298
msgid "Source files" msgid "Source files"
msgstr "File sorgenti" msgstr "File sorgenti"
#: ../distroquery.php:182 ../distroquery.php:284 #: ../distroquery.php:197 ../distroquery.php:299
msgid "Changes" msgid "Changes"
msgstr "Modifiche" msgstr "Modifiche"
#: ../distroquery.php:183 ../distroquery.php:285 #: ../distroquery.php:198 ../distroquery.php:300
msgid "Issues" msgid "Issues"
msgstr "Problemi" msgstr "Problemi"
#: ../distroquery.php:184 ../distroquery.php:286 #: ../distroquery.php:199 ../distroquery.php:301
msgid "Add a new issue" msgid "Add a new issue"
msgstr "Segnala un problema" msgstr "Segnala un problema"
#: ../distroquery.php:185 ../distroquery.php:287 #: ../distroquery.php:200 ../distroquery.php:302
msgid "Download" msgid "Download"
msgstr "Scarica" msgstr "Scarica"
#: ../distroquery.php:195 ../distroquery.php:247 ../distroquery.php:297 #: ../distroquery.php:210 ../distroquery.php:262 ../distroquery.php:312
msgid "Release" msgid "Release"
msgstr "Versione" msgstr "Versione"
#: ../distroquery.php:198 ../distroquery.php:301 #: ../distroquery.php:213 ../distroquery.php:316
msgid "Group" msgid "Group"
msgstr "Gruppo" msgstr "Gruppo"
#: ../distroquery.php:199 #: ../distroquery.php:214
msgid "Maintainer" msgid "Maintainer"
msgstr "Manutentore" msgstr "Manutentore"
#: ../distroquery.php:200 #: ../distroquery.php:215
msgid "License" msgid "License"
msgstr "Licenza" msgstr "Licenza"
#: ../distroquery.php:201 ../distroquery.php:302 #: ../distroquery.php:216 ../distroquery.php:317
msgid "Size" msgid "Size"
msgstr "Dimensione" msgstr "Dimensione"
#: ../distroquery.php:202 ../distroquery.php:303 #: ../distroquery.php:217 ../distroquery.php:318
msgid "Upstream URL" msgid "Upstream URL"
msgstr "URL di origine" msgstr "URL di origine"
#: ../distroquery.php:203 #: ../distroquery.php:218
msgid "Build time" msgid "Build time"
msgstr "Data di compilazione" msgstr "Data di compilazione"
#: ../distroquery.php:208 #: ../distroquery.php:223
msgid "Binary packages and requirements" msgid "Binary packages and requirements"
msgstr "Pacchetti binari e dipendenze" msgstr "Pacchetti binari e dipendenze"
#: ../distroquery.php:214 #: ../distroquery.php:229
msgid "Built RPMS" msgid "Built RPMS"
msgstr "RPM creati" msgstr "RPM creati"
#: ../distroquery.php:223 #: ../distroquery.php:238
msgid "Build requirements" msgid "Build requirements"
msgstr "Dipendenze di compilazione" msgstr "Dipendenze di compilazione"
#: ../distroquery.php:237 ../distroquery.php:353 ../distroquery.php:371 #: ../distroquery.php:252 ../distroquery.php:368 ../distroquery.php:386
msgid "unresolved" msgid "unresolved"
msgstr "non risolto" msgstr "non risolto"
#: ../distroquery.php:245 #: ../distroquery.php:260
msgid "History of changes" msgid "History of changes"
msgstr "Cronologia delle modifiche" msgstr "Cronologia delle modifiche"
#: ../distroquery.php:246 ../functions.php:129 #: ../distroquery.php:261 ../functions.php:144
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: ../distroquery.php:247 #: ../distroquery.php:262
msgid "Packager" msgid "Packager"
msgstr "Packager" msgstr "Packager"
#: ../distroquery.php:248 #: ../distroquery.php:263
msgid "Description" msgid "Description"
msgstr "Descrizione" msgstr "Descrizione"
#: ../distroquery.php:300 #: ../distroquery.php:315
msgid "Architecture" msgid "Architecture"
msgstr "Architettura" msgstr "Architettura"
#: ../distroquery.php:304 #: ../distroquery.php:319 ../functions.php:75
msgid "Source RPM" msgid "Source RPM"
msgstr "RPM sorgente" msgstr "RPM sorgente"
#: ../distroquery.php:313 #: ../distroquery.php:328
msgid "Brothers" msgid "Brothers"
msgstr "Collegati" msgstr "Collegati"
#: ../distroquery.php:313 #: ../distroquery.php:328
msgid "Provides" msgid "Provides"
msgstr "Fornisce" msgstr "Fornisce"
#: ../distroquery.php:314 #: ../distroquery.php:329
msgid "Obsoletes" msgid "Obsoletes"
msgstr "Rende obsoleti" msgstr "Rende obsoleti"
#: ../distroquery.php:314 #: ../distroquery.php:329
msgid "Requires" msgid "Requires"
msgstr "Richiede" msgstr "Richiede"
#: ../distroquery.php:315 #: ../distroquery.php:330
msgid "Recommends" msgid "Recommends"
msgstr "Raccomanda" msgstr "Raccomanda"
#: ../distroquery.php:379 #: ../distroquery.php:394
msgid "Provided files" msgid "Provided files"
msgstr "File forniti" msgstr "File forniti"
@ -206,15 +215,19 @@ msgstr "File forniti"
msgid "&uarr;" msgid "&uarr;"
msgstr "&uarr;" msgstr "&uarr;"
#: ../functions.php:126 ../functions.php:137 #: ../functions.php:79
msgid "Repository"
msgstr "Repository"
#: ../functions.php:141 ../functions.php:152
msgid "for" msgid "for"
msgstr "per" msgstr "per"
#: ../functions.php:128 #: ../functions.php:143
msgid "File size:" msgid "File size:"
msgstr "Dimensione file:" msgstr "Dimensione file:"
#: ../functions.php:139 #: ../functions.php:154
msgid "" msgid ""
"Sorry, download is temporary unavailable. If the problem persists please " "Sorry, download is temporary unavailable. If the problem persists please "
"report the problem." "report the problem."
@ -222,43 +235,43 @@ msgstr ""
"Il download non è temporaneamente disponibile. Se il problema persiste ti " "Il download non è temporaneamente disponibile. Se il problema persiste ti "
"ringraziamo se ci puoi segnalare il problema." "ringraziamo se ci puoi segnalare il problema."
#: ../functions.php:221 #: ../functions.php:236
msgid "More languages..." msgid "More languages..."
msgstr "Altre lingue..." msgstr "Altre lingue..."
#: ../functions.php:224 #: ../functions.php:239
msgid "Features" msgid "Features"
msgstr "Caratteristiche" msgstr "Caratteristiche"
#: ../functions.php:228 #: ../functions.php:243
msgid "Requirements" msgid "Requirements"
msgstr "Requisiti" msgstr "Requisiti"
#: ../functions.php:232 #: ../functions.php:247
msgid "Preparation" msgid "Preparation"
msgstr "Preparazione" msgstr "Preparazione"
#: ../functions.php:272 ../functions.php:317 #: ../functions.php:287 ../functions.php:332
msgid "Loading, please wait..." msgid "Loading, please wait..."
msgstr "Caricamento in corso, attendi..." msgstr "Caricamento in corso, attendi..."
#: ../functions.php:296 ../functions.php:320 ../functions.php:338 #: ../functions.php:311 ../functions.php:335 ../functions.php:353
msgid "Invalid request." msgid "Invalid request."
msgstr "Richiesta non valida." msgstr "Richiesta non valida."
#: ../functions.php:352 #: ../functions.php:367
msgid "Starting download of" msgid "Starting download of"
msgstr "Avvio dello scaricamento di" msgstr "Avvio dello scaricamento di"
#: ../functions.php:352 #: ../functions.php:367
msgid "please wait..." msgid "please wait..."
msgstr "attendere prego..." msgstr "attendere prego..."
#: ../functions.php:385 #: ../functions.php:400
msgid "I Understand" msgid "I Understand"
msgstr "Ho capito" msgstr "Ho capito"
#: ../functions.php:386 #: ../functions.php:401
msgid "Cookie policy" msgid "Cookie policy"
msgstr "Informativa sui cookie" msgstr "Informativa sui cookie"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: openmamba 1.0\n" "Project-Id-Version: openmamba 1.0\n"
"Report-Msgid-Bugs-To: bugs@openmamba.org\n" "Report-Msgid-Bugs-To: bugs@openmamba.org\n"
"POT-Creation-Date: 2024-11-03 12:23+0100\n" "POT-Creation-Date: 2024-11-03 18:56+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -27,7 +27,8 @@ msgstr ""
msgid "Pages:" msgid "Pages:"
msgstr "" msgstr ""
#: ../distroquery.php:50 ../distroquery.php:162 ../distroquery.php:264 #: ../distroquery.php:50 ../distroquery.php:177 ../distroquery.php:279
#: ../functions.php:81
msgid "Repositories" msgid "Repositories"
msgstr "" msgstr ""
@ -51,155 +52,163 @@ msgstr ""
msgid "Results for:" msgid "Results for:"
msgstr "" msgstr ""
#: ../distroquery.php:112 ../distroquery.php:134 #: ../distroquery.php:113 ../distroquery.php:146
msgid "result(s) found" msgid "result(s) found"
msgstr "" msgstr ""
#: ../distroquery.php:113 #: ../distroquery.php:114
msgid "Showing page" msgid "Showing page"
msgstr "" msgstr ""
#: ../distroquery.php:113 #: ../distroquery.php:114
msgid "of" msgid "of"
msgstr "" msgstr ""
#: ../distroquery.php:138 #: ../distroquery.php:139
msgid "Arch" msgid "Prev"
msgstr ""
#: ../distroquery.php:139 ../distroquery.php:194 ../distroquery.php:296
msgid "Name"
msgstr ""
#: ../distroquery.php:140
msgid "Version"
msgstr ""
#: ../distroquery.php:141
msgid "Summary"
msgstr "" msgstr ""
#: ../distroquery.php:142 #: ../distroquery.php:142
msgid "Next"
msgstr ""
#: ../distroquery.php:151
msgid "Arch"
msgstr ""
#: ../distroquery.php:152 ../distroquery.php:209 ../distroquery.php:311
msgid "Name"
msgstr ""
#: ../distroquery.php:153
msgid "Version"
msgstr ""
#: ../distroquery.php:154
msgid "Summary"
msgstr ""
#: ../distroquery.php:155
msgid "Last update" msgid "Last update"
msgstr "" msgstr ""
#: ../distroquery.php:173 ../distroquery.php:275 #: ../distroquery.php:188 ../distroquery.php:290
msgid "ERROR" msgid "ERROR"
msgstr "" msgstr ""
#: ../distroquery.php:180 ../distroquery.php:282 #: ../distroquery.php:195 ../distroquery.php:297
msgid "Resources" msgid "Resources"
msgstr "" msgstr ""
#: ../distroquery.php:181 ../distroquery.php:283 #: ../distroquery.php:196 ../distroquery.php:298
msgid "Source files" msgid "Source files"
msgstr "" msgstr ""
#: ../distroquery.php:182 ../distroquery.php:284 #: ../distroquery.php:197 ../distroquery.php:299
msgid "Changes" msgid "Changes"
msgstr "" msgstr ""
#: ../distroquery.php:183 ../distroquery.php:285 #: ../distroquery.php:198 ../distroquery.php:300
msgid "Issues" msgid "Issues"
msgstr "" msgstr ""
#: ../distroquery.php:184 ../distroquery.php:286 #: ../distroquery.php:199 ../distroquery.php:301
msgid "Add a new issue" msgid "Add a new issue"
msgstr "" msgstr ""
#: ../distroquery.php:185 ../distroquery.php:287 #: ../distroquery.php:200 ../distroquery.php:302
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: ../distroquery.php:195 ../distroquery.php:247 ../distroquery.php:297 #: ../distroquery.php:210 ../distroquery.php:262 ../distroquery.php:312
msgid "Release" msgid "Release"
msgstr "" msgstr ""
#: ../distroquery.php:198 ../distroquery.php:301 #: ../distroquery.php:213 ../distroquery.php:316
msgid "Group" msgid "Group"
msgstr "" msgstr ""
#: ../distroquery.php:199 #: ../distroquery.php:214
msgid "Maintainer" msgid "Maintainer"
msgstr "" msgstr ""
#: ../distroquery.php:200 #: ../distroquery.php:215
msgid "License" msgid "License"
msgstr "" msgstr ""
#: ../distroquery.php:201 ../distroquery.php:302 #: ../distroquery.php:216 ../distroquery.php:317
msgid "Size" msgid "Size"
msgstr "" msgstr ""
#: ../distroquery.php:202 ../distroquery.php:303 #: ../distroquery.php:217 ../distroquery.php:318
msgid "Upstream URL" msgid "Upstream URL"
msgstr "" msgstr ""
#: ../distroquery.php:203 #: ../distroquery.php:218
msgid "Build time" msgid "Build time"
msgstr "" msgstr ""
#: ../distroquery.php:208 #: ../distroquery.php:223
msgid "Binary packages and requirements" msgid "Binary packages and requirements"
msgstr "" msgstr ""
#: ../distroquery.php:214 #: ../distroquery.php:229
msgid "Built RPMS" msgid "Built RPMS"
msgstr "" msgstr ""
#: ../distroquery.php:223 #: ../distroquery.php:238
msgid "Build requirements" msgid "Build requirements"
msgstr "" msgstr ""
#: ../distroquery.php:237 ../distroquery.php:353 ../distroquery.php:371 #: ../distroquery.php:252 ../distroquery.php:368 ../distroquery.php:386
msgid "unresolved" msgid "unresolved"
msgstr "" msgstr ""
#: ../distroquery.php:245 #: ../distroquery.php:260
msgid "History of changes" msgid "History of changes"
msgstr "" msgstr ""
#: ../distroquery.php:246 ../functions.php:129 #: ../distroquery.php:261 ../functions.php:144
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: ../distroquery.php:247 #: ../distroquery.php:262
msgid "Packager" msgid "Packager"
msgstr "" msgstr ""
#: ../distroquery.php:248 #: ../distroquery.php:263
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: ../distroquery.php:300 #: ../distroquery.php:315
msgid "Architecture" msgid "Architecture"
msgstr "" msgstr ""
#: ../distroquery.php:304 #: ../distroquery.php:319 ../functions.php:75
msgid "Source RPM" msgid "Source RPM"
msgstr "" msgstr ""
#: ../distroquery.php:313 #: ../distroquery.php:328
msgid "Brothers" msgid "Brothers"
msgstr "" msgstr ""
#: ../distroquery.php:313 #: ../distroquery.php:328
msgid "Provides" msgid "Provides"
msgstr "" msgstr ""
#: ../distroquery.php:314 #: ../distroquery.php:329
msgid "Obsoletes" msgid "Obsoletes"
msgstr "" msgstr ""
#: ../distroquery.php:314 #: ../distroquery.php:329
msgid "Requires" msgid "Requires"
msgstr "" msgstr ""
#: ../distroquery.php:315 #: ../distroquery.php:330
msgid "Recommends" msgid "Recommends"
msgstr "" msgstr ""
#: ../distroquery.php:379 #: ../distroquery.php:394
msgid "Provided files" msgid "Provided files"
msgstr "" msgstr ""
@ -207,57 +216,61 @@ msgstr ""
msgid "&uarr;" msgid "&uarr;"
msgstr "" msgstr ""
#: ../functions.php:126 ../functions.php:137 #: ../functions.php:79
msgid "Repository"
msgstr ""
#: ../functions.php:141 ../functions.php:152
msgid "for" msgid "for"
msgstr "" msgstr ""
#: ../functions.php:128 #: ../functions.php:143
msgid "File size:" msgid "File size:"
msgstr "" msgstr ""
#: ../functions.php:139 #: ../functions.php:154
msgid "" msgid ""
"Sorry, download is temporary unavailable. If the problem persists please " "Sorry, download is temporary unavailable. If the problem persists please "
"report the problem." "report the problem."
msgstr "" msgstr ""
#: ../functions.php:221 #: ../functions.php:236
msgid "More languages..." msgid "More languages..."
msgstr "" msgstr ""
#: ../functions.php:224 #: ../functions.php:239
msgid "Features" msgid "Features"
msgstr "" msgstr ""
#: ../functions.php:228 #: ../functions.php:243
msgid "Requirements" msgid "Requirements"
msgstr "" msgstr ""
#: ../functions.php:232 #: ../functions.php:247
msgid "Preparation" msgid "Preparation"
msgstr "" msgstr ""
#: ../functions.php:272 ../functions.php:317 #: ../functions.php:287 ../functions.php:332
msgid "Loading, please wait..." msgid "Loading, please wait..."
msgstr "" msgstr ""
#: ../functions.php:296 ../functions.php:320 ../functions.php:338 #: ../functions.php:311 ../functions.php:335 ../functions.php:353
msgid "Invalid request." msgid "Invalid request."
msgstr "" msgstr ""
#: ../functions.php:352 #: ../functions.php:367
msgid "Starting download of" msgid "Starting download of"
msgstr "" msgstr ""
#: ../functions.php:352 #: ../functions.php:367
msgid "please wait..." msgid "please wait..."
msgstr "" msgstr ""
#: ../functions.php:385 #: ../functions.php:400
msgid "I Understand" msgid "I Understand"
msgstr "" msgstr ""
#: ../functions.php:386 #: ../functions.php:401
msgid "Cookie policy" msgid "Cookie policy"
msgstr "" msgstr ""