distroquery.php: show provided files list in package details view
This commit is contained in:
parent
d250402a3c
commit
007e7d35a2
@ -52,7 +52,7 @@ $url_prefix = home_url() . "/rpms/";
|
||||
echo "<h1>" . _r("Available repositories") . ":</h1>";
|
||||
$request = wp_remote_get($api_url . "repositories");
|
||||
if (is_wp_error($request)) {
|
||||
echo "ERROR: " . $request->get_error_message();
|
||||
echo "<p>ERROR: " . $request->get_error_message() . "</p>";
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -77,7 +77,7 @@ $url_prefix = home_url() . "/rpms/";
|
||||
|
||||
$request = wp_remote_get($api_url . "repository/" . $repo . $query_append);
|
||||
if (is_wp_error($request)) {
|
||||
echo "ERROR: " . $request->get_error_message();
|
||||
echo "<p>ERROR: " . $request->get_error_message() . "</p>";
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -163,7 +163,7 @@ $url_prefix = home_url() . "/rpms/";
|
||||
|
||||
$request = wp_remote_get($api_url . "package/" . $repo . "/" . $package);
|
||||
if (is_wp_error($request)) {
|
||||
echo "ERROR: " . $request->get_error_message();
|
||||
echo "<p>ERROR: " . $request->get_error_message() . "</p>";
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -263,9 +263,10 @@ $url_prefix = home_url() . "/rpms/";
|
||||
//
|
||||
echo " > <a href=\"" . $url_prefix . "\">" . _r("Repositories") . "</a>";
|
||||
|
||||
$request = wp_remote_get($api_url . "package/" . $repo . "/" . $package . "/" . $arch);
|
||||
$request = wp_remote_get($api_url . "package/" . $repo . "/" . $package . "/" . $arch,
|
||||
array('timeout' => 15));
|
||||
if (is_wp_error($request)) {
|
||||
echo "ERROR: " . $request->get_error_message();
|
||||
echo "<div class=\"errorbox\">ERROR: " . $request->get_error_message() . "</div>";
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -353,6 +354,19 @@ $url_prefix = home_url() . "/rpms/";
|
||||
}
|
||||
}
|
||||
echo "</td></tr></table>";
|
||||
|
||||
// Package files list
|
||||
echo "<span id=\"fileslist\" class=\"collapseomatic colomat-close colomat-visited\"" .
|
||||
"tabindex=\"0\" title=\"" . _r("Provided files") . "\">" . _r("Provided files") . "</span>";
|
||||
|
||||
echo "<div id=\"target-fileslist\" class=\"collapseomatic_content bggray\" style=\"display:none\">";
|
||||
if (isset($j["files"])) {
|
||||
foreach ($j["files"] as $file) {
|
||||
echo $file["path"] . "<br/>";
|
||||
}
|
||||
}
|
||||
echo "</div>";
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
Binary file not shown.
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Responsive Theme\n"
|
||||
"Report-Msgid-Bugs-To: bugs@openmamba.org\n"
|
||||
"POT-Creation-Date: 2024-07-07 14:59+0200\n"
|
||||
"POT-Creation-Date: 2024-08-11 17:54+0200\n"
|
||||
"PO-Revision-Date: 2014-12-08 16:25+0100\n"
|
||||
"Last-Translator: Silvan Calarco <silvan.calarco@mambasoft.it>\n"
|
||||
"Language-Team: Italian, Italy\n"
|
||||
@ -26,174 +26,178 @@ msgstr "Leggi di più ›"
|
||||
msgid "Pages:"
|
||||
msgstr "Pagine:"
|
||||
|
||||
#: ../distroquery.php:47 ../distroquery.php:149 ../distroquery.php:244
|
||||
#: ../distroquery.php:50 ../distroquery.php:162 ../distroquery.php:264
|
||||
msgid "Repositories"
|
||||
msgstr "Repository"
|
||||
|
||||
#: ../distroquery.php:49
|
||||
#: ../distroquery.php:52
|
||||
msgid "Available repositories"
|
||||
msgstr "Repository disponibili"
|
||||
|
||||
#: ../distroquery.php:78
|
||||
#: ../distroquery.php:91
|
||||
msgid "List of packages"
|
||||
msgstr "Elenco dei pacchetti"
|
||||
|
||||
#: ../distroquery.php:81
|
||||
#: ../distroquery.php:94
|
||||
msgid "Search packages"
|
||||
msgstr "Cerca pacchetti"
|
||||
|
||||
#: ../distroquery.php:82
|
||||
#: ../distroquery.php:95
|
||||
msgid "Search here"
|
||||
msgstr "Cerca qui"
|
||||
|
||||
#: ../distroquery.php:83
|
||||
#: ../distroquery.php:96
|
||||
msgid "Results for:"
|
||||
msgstr "Risultati per:"
|
||||
|
||||
#: ../distroquery.php:99 ../distroquery.php:121
|
||||
#: ../distroquery.php:112 ../distroquery.php:134
|
||||
msgid "result(s) found"
|
||||
msgstr "risultati trovati"
|
||||
|
||||
#: ../distroquery.php:100
|
||||
#: ../distroquery.php:113
|
||||
msgid "Showing page"
|
||||
msgstr "Mostro la pagina"
|
||||
|
||||
#: ../distroquery.php:100
|
||||
#: ../distroquery.php:113
|
||||
msgid "of"
|
||||
msgstr "di"
|
||||
|
||||
#: ../distroquery.php:125
|
||||
#: ../distroquery.php:138
|
||||
msgid "Arch"
|
||||
msgstr "Architettura"
|
||||
|
||||
#: ../distroquery.php:126 ../distroquery.php:176 ../distroquery.php:270
|
||||
#: ../distroquery.php:139 ../distroquery.php:194 ../distroquery.php:296
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: ../distroquery.php:127
|
||||
#: ../distroquery.php:140
|
||||
msgid "Version"
|
||||
msgstr "Versione"
|
||||
|
||||
#: ../distroquery.php:128
|
||||
#: ../distroquery.php:141
|
||||
msgid "Summary"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: ../distroquery.php:129
|
||||
#: ../distroquery.php:142
|
||||
msgid "Last update"
|
||||
msgstr "Ultimo aggiornamento"
|
||||
|
||||
#: ../distroquery.php:155 ../distroquery.php:249
|
||||
#: ../distroquery.php:173 ../distroquery.php:275
|
||||
msgid "ERROR"
|
||||
msgstr "ERRORE"
|
||||
|
||||
#: ../distroquery.php:162 ../distroquery.php:256
|
||||
#: ../distroquery.php:180 ../distroquery.php:282
|
||||
msgid "Resources"
|
||||
msgstr "Risorse"
|
||||
|
||||
#: ../distroquery.php:163 ../distroquery.php:257
|
||||
#: ../distroquery.php:181 ../distroquery.php:283
|
||||
msgid "Source files"
|
||||
msgstr "File sorgenti"
|
||||
|
||||
#: ../distroquery.php:164 ../distroquery.php:258
|
||||
#: ../distroquery.php:182 ../distroquery.php:284
|
||||
msgid "Changes"
|
||||
msgstr "Modifiche"
|
||||
|
||||
#: ../distroquery.php:165 ../distroquery.php:259
|
||||
#: ../distroquery.php:183 ../distroquery.php:285
|
||||
msgid "Issues"
|
||||
msgstr "Problemi"
|
||||
|
||||
#: ../distroquery.php:166 ../distroquery.php:260
|
||||
#: ../distroquery.php:184 ../distroquery.php:286
|
||||
msgid "Add a new issue"
|
||||
msgstr "Segnala un problema"
|
||||
|
||||
#: ../distroquery.php:167 ../distroquery.php:261
|
||||
#: ../distroquery.php:185 ../distroquery.php:287
|
||||
msgid "Download"
|
||||
msgstr "Scarica"
|
||||
|
||||
#: ../distroquery.php:177 ../distroquery.php:227 ../distroquery.php:271
|
||||
#: ../distroquery.php:195 ../distroquery.php:247 ../distroquery.php:297
|
||||
msgid "Release"
|
||||
msgstr "Versione"
|
||||
|
||||
#: ../distroquery.php:180 ../distroquery.php:275
|
||||
#: ../distroquery.php:198 ../distroquery.php:301
|
||||
msgid "Group"
|
||||
msgstr "Gruppo"
|
||||
|
||||
#: ../distroquery.php:181
|
||||
#: ../distroquery.php:199
|
||||
msgid "Maintainer"
|
||||
msgstr "Manutentore"
|
||||
|
||||
#: ../distroquery.php:182
|
||||
#: ../distroquery.php:200
|
||||
msgid "License"
|
||||
msgstr "Licenza"
|
||||
|
||||
#: ../distroquery.php:183 ../distroquery.php:276
|
||||
#: ../distroquery.php:201 ../distroquery.php:302
|
||||
msgid "Size"
|
||||
msgstr "Dimensione"
|
||||
|
||||
#: ../distroquery.php:184 ../distroquery.php:277
|
||||
#: ../distroquery.php:202 ../distroquery.php:303
|
||||
msgid "Upstream URL"
|
||||
msgstr "URL di origine"
|
||||
|
||||
#: ../distroquery.php:185
|
||||
#: ../distroquery.php:203
|
||||
msgid "Build time"
|
||||
msgstr "Data di compilazione"
|
||||
|
||||
#: ../distroquery.php:190
|
||||
#: ../distroquery.php:208
|
||||
msgid "Binary packages and requirements"
|
||||
msgstr "Pacchetti binari e dipendenze"
|
||||
|
||||
#: ../distroquery.php:196
|
||||
#: ../distroquery.php:214
|
||||
msgid "Built RPMS"
|
||||
msgstr "RPM creati"
|
||||
|
||||
#: ../distroquery.php:205
|
||||
#: ../distroquery.php:223
|
||||
msgid "Build requirements"
|
||||
msgstr "Dipendenze di compilazione"
|
||||
|
||||
#: ../distroquery.php:217 ../distroquery.php:317
|
||||
#: ../distroquery.php:237 ../distroquery.php:352
|
||||
msgid "unresolved"
|
||||
msgstr "non risolto"
|
||||
|
||||
#: ../distroquery.php:225
|
||||
#: ../distroquery.php:245
|
||||
msgid "History of changes"
|
||||
msgstr "Cronologia delle modifiche"
|
||||
|
||||
#: ../distroquery.php:226 ../functions.php:129
|
||||
#: ../distroquery.php:246 ../functions.php:129
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: ../distroquery.php:227
|
||||
#: ../distroquery.php:247
|
||||
msgid "Packager"
|
||||
msgstr "Packager"
|
||||
|
||||
#: ../distroquery.php:228
|
||||
#: ../distroquery.php:248
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: ../distroquery.php:274
|
||||
#: ../distroquery.php:300
|
||||
msgid "Architecture"
|
||||
msgstr "Architettura"
|
||||
|
||||
#: ../distroquery.php:278
|
||||
#: ../distroquery.php:304
|
||||
msgid "Source RPM"
|
||||
msgstr "RPM sorgente"
|
||||
|
||||
#: ../distroquery.php:287
|
||||
#: ../distroquery.php:313
|
||||
msgid "Brothers"
|
||||
msgstr "Collegati"
|
||||
|
||||
#: ../distroquery.php:287
|
||||
#: ../distroquery.php:313
|
||||
msgid "Provides"
|
||||
msgstr "Fornisce"
|
||||
|
||||
#: ../distroquery.php:288
|
||||
#: ../distroquery.php:314
|
||||
msgid "Obsoletes"
|
||||
msgstr "Rende obsoleti"
|
||||
|
||||
#: ../distroquery.php:288
|
||||
#: ../distroquery.php:314
|
||||
msgid "Requires"
|
||||
msgstr "Richiede"
|
||||
|
||||
#: ../distroquery.php:360
|
||||
msgid "Provided files"
|
||||
msgstr "File forniti"
|
||||
|
||||
#: ../footer.php:68
|
||||
msgid "↑"
|
||||
msgstr "↑"
|
||||
@ -214,43 +218,43 @@ msgstr ""
|
||||
"Il download non è temporaneamente disponibile. Se il problema persiste ti "
|
||||
"ringraziamo se ci puoi segnalare il problema."
|
||||
|
||||
#: ../functions.php:220
|
||||
#: ../functions.php:221
|
||||
msgid "More languages..."
|
||||
msgstr "Altre lingue..."
|
||||
|
||||
#: ../functions.php:223
|
||||
#: ../functions.php:224
|
||||
msgid "Features"
|
||||
msgstr "Caratteristiche"
|
||||
|
||||
#: ../functions.php:227
|
||||
#: ../functions.php:228
|
||||
msgid "Requirements"
|
||||
msgstr "Requisiti"
|
||||
|
||||
#: ../functions.php:231
|
||||
#: ../functions.php:232
|
||||
msgid "Preparation"
|
||||
msgstr "Preparazione"
|
||||
|
||||
#: ../functions.php:271 ../functions.php:316
|
||||
#: ../functions.php:272 ../functions.php:317
|
||||
msgid "Loading, please wait..."
|
||||
msgstr "Caricamento in corso, attendi..."
|
||||
|
||||
#: ../functions.php:295 ../functions.php:319 ../functions.php:337
|
||||
#: ../functions.php:296 ../functions.php:320 ../functions.php:338
|
||||
msgid "Invalid request."
|
||||
msgstr "Richiesta non valida."
|
||||
|
||||
#: ../functions.php:351
|
||||
#: ../functions.php:352
|
||||
msgid "Starting download of"
|
||||
msgstr "Avvio dello scaricamento di"
|
||||
|
||||
#: ../functions.php:351
|
||||
#: ../functions.php:352
|
||||
msgid "please wait..."
|
||||
msgstr "attendere prego..."
|
||||
|
||||
#: ../functions.php:384
|
||||
#: ../functions.php:385
|
||||
msgid "I Understand"
|
||||
msgstr "Ho capito"
|
||||
|
||||
#: ../functions.php:385
|
||||
#: ../functions.php:386
|
||||
msgid "Cookie policy"
|
||||
msgstr "Informativa sui cookie"
|
||||
|
||||
@ -283,22 +287,22 @@ msgstr "Salve, %1$s"
|
||||
msgid "Logout"
|
||||
msgstr "Esci"
|
||||
|
||||
msgid "©"
|
||||
msgstr "©"
|
||||
#~ msgid "©"
|
||||
#~ msgstr "©"
|
||||
|
||||
msgid "scroll to top"
|
||||
msgstr "scorri all'inizio"
|
||||
#~ msgid "scroll to top"
|
||||
#~ msgstr "scorri all'inizio"
|
||||
|
||||
msgid "Website provided by"
|
||||
msgstr "Sito web fornito da"
|
||||
#~ msgid "Website provided by"
|
||||
#~ msgstr "Sito web fornito da"
|
||||
|
||||
msgid "WordPress"
|
||||
msgstr "WordPress"
|
||||
#~ msgid "WordPress"
|
||||
#~ msgstr "WordPress"
|
||||
|
||||
msgid "This website uses cookies to improve user experience."
|
||||
msgstr ""
|
||||
"Questo sito utilizza i cookie per migliorare l'esperienza di navigazione "
|
||||
"dell'utente."
|
||||
#~ msgid "This website uses cookies to improve user experience."
|
||||
#~ msgstr ""
|
||||
#~ "Questo sito utilizza i cookie per migliorare l'esperienza di navigazione "
|
||||
#~ "dell'utente."
|
||||
|
||||
msgid "Archive for %s"
|
||||
msgstr "Archivio per %s"
|
||||
#~ msgid "Archive for %s"
|
||||
#~ msgstr "Archivio per %s"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: openmamba 1.0\n"
|
||||
"Report-Msgid-Bugs-To: bugs@openmamba.org\n"
|
||||
"POT-Creation-Date: 2024-07-07 14:59+0200\n"
|
||||
"POT-Creation-Date: 2024-08-11 17:54+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -27,174 +27,178 @@ msgstr ""
|
||||
msgid "Pages:"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:47 ../distroquery.php:149 ../distroquery.php:244
|
||||
#: ../distroquery.php:50 ../distroquery.php:162 ../distroquery.php:264
|
||||
msgid "Repositories"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:49
|
||||
#: ../distroquery.php:52
|
||||
msgid "Available repositories"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:78
|
||||
#: ../distroquery.php:91
|
||||
msgid "List of packages"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:81
|
||||
#: ../distroquery.php:94
|
||||
msgid "Search packages"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:82
|
||||
#: ../distroquery.php:95
|
||||
msgid "Search here"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:83
|
||||
#: ../distroquery.php:96
|
||||
msgid "Results for:"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:99 ../distroquery.php:121
|
||||
#: ../distroquery.php:112 ../distroquery.php:134
|
||||
msgid "result(s) found"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:100
|
||||
#: ../distroquery.php:113
|
||||
msgid "Showing page"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:100
|
||||
#: ../distroquery.php:113
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:125
|
||||
#: ../distroquery.php:138
|
||||
msgid "Arch"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:126 ../distroquery.php:176 ../distroquery.php:270
|
||||
#: ../distroquery.php:139 ../distroquery.php:194 ../distroquery.php:296
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:127
|
||||
#: ../distroquery.php:140
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:128
|
||||
#: ../distroquery.php:141
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:129
|
||||
#: ../distroquery.php:142
|
||||
msgid "Last update"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:155 ../distroquery.php:249
|
||||
#: ../distroquery.php:173 ../distroquery.php:275
|
||||
msgid "ERROR"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:162 ../distroquery.php:256
|
||||
#: ../distroquery.php:180 ../distroquery.php:282
|
||||
msgid "Resources"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:163 ../distroquery.php:257
|
||||
#: ../distroquery.php:181 ../distroquery.php:283
|
||||
msgid "Source files"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:164 ../distroquery.php:258
|
||||
#: ../distroquery.php:182 ../distroquery.php:284
|
||||
msgid "Changes"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:165 ../distroquery.php:259
|
||||
#: ../distroquery.php:183 ../distroquery.php:285
|
||||
msgid "Issues"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:166 ../distroquery.php:260
|
||||
#: ../distroquery.php:184 ../distroquery.php:286
|
||||
msgid "Add a new issue"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:167 ../distroquery.php:261
|
||||
#: ../distroquery.php:185 ../distroquery.php:287
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:177 ../distroquery.php:227 ../distroquery.php:271
|
||||
#: ../distroquery.php:195 ../distroquery.php:247 ../distroquery.php:297
|
||||
msgid "Release"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:180 ../distroquery.php:275
|
||||
#: ../distroquery.php:198 ../distroquery.php:301
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:181
|
||||
#: ../distroquery.php:199
|
||||
msgid "Maintainer"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:182
|
||||
#: ../distroquery.php:200
|
||||
msgid "License"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:183 ../distroquery.php:276
|
||||
#: ../distroquery.php:201 ../distroquery.php:302
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:184 ../distroquery.php:277
|
||||
#: ../distroquery.php:202 ../distroquery.php:303
|
||||
msgid "Upstream URL"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:185
|
||||
#: ../distroquery.php:203
|
||||
msgid "Build time"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:190
|
||||
#: ../distroquery.php:208
|
||||
msgid "Binary packages and requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:196
|
||||
#: ../distroquery.php:214
|
||||
msgid "Built RPMS"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:205
|
||||
#: ../distroquery.php:223
|
||||
msgid "Build requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:217 ../distroquery.php:317
|
||||
#: ../distroquery.php:237 ../distroquery.php:352
|
||||
msgid "unresolved"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:225
|
||||
#: ../distroquery.php:245
|
||||
msgid "History of changes"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:226 ../functions.php:129
|
||||
#: ../distroquery.php:246 ../functions.php:129
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:227
|
||||
#: ../distroquery.php:247
|
||||
msgid "Packager"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:228
|
||||
#: ../distroquery.php:248
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:274
|
||||
#: ../distroquery.php:300
|
||||
msgid "Architecture"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:278
|
||||
#: ../distroquery.php:304
|
||||
msgid "Source RPM"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:287
|
||||
#: ../distroquery.php:313
|
||||
msgid "Brothers"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:287
|
||||
#: ../distroquery.php:313
|
||||
msgid "Provides"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:288
|
||||
#: ../distroquery.php:314
|
||||
msgid "Obsoletes"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:288
|
||||
#: ../distroquery.php:314
|
||||
msgid "Requires"
|
||||
msgstr ""
|
||||
|
||||
#: ../distroquery.php:360
|
||||
msgid "Provided files"
|
||||
msgstr ""
|
||||
|
||||
#: ../footer.php:68
|
||||
msgid "↑"
|
||||
msgstr ""
|
||||
@ -213,43 +217,43 @@ msgid ""
|
||||
"report the problem."
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:220
|
||||
#: ../functions.php:221
|
||||
msgid "More languages..."
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:223
|
||||
#: ../functions.php:224
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:227
|
||||
#: ../functions.php:228
|
||||
msgid "Requirements"
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:231
|
||||
#: ../functions.php:232
|
||||
msgid "Preparation"
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:271 ../functions.php:316
|
||||
#: ../functions.php:272 ../functions.php:317
|
||||
msgid "Loading, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:295 ../functions.php:319 ../functions.php:337
|
||||
#: ../functions.php:296 ../functions.php:320 ../functions.php:338
|
||||
msgid "Invalid request."
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:351
|
||||
#: ../functions.php:352
|
||||
msgid "Starting download of"
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:351
|
||||
#: ../functions.php:352
|
||||
msgid "please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:384
|
||||
#: ../functions.php:385
|
||||
msgid "I Understand"
|
||||
msgstr ""
|
||||
|
||||
#: ../functions.php:385
|
||||
#: ../functions.php:386
|
||||
msgid "Cookie policy"
|
||||
msgstr ""
|
||||
|
||||
|
13
style.css
13
style.css
@ -294,6 +294,17 @@ span#distromatic table td hr {
|
||||
margin:5px;
|
||||
}
|
||||
|
||||
div.errorbox {
|
||||
display:block;
|
||||
background-color:#f0f0f0;
|
||||
color:red;
|
||||
border:1px;
|
||||
border-radius:5px;
|
||||
margin-top:10px;
|
||||
margin-bottom:5px;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
.querytag {
|
||||
display:inline;
|
||||
color:white;
|
||||
@ -337,3 +348,5 @@ table.pkgpage tr:nth-child(even) td { padding:2px; background-color: #F2F2F2; }
|
||||
table.pkgpage th { padding:4px; font-weight: 800; border: 0; text-align: left; vertical-align: top; }
|
||||
table.pkgpage td { padding:4px; vertical-align: top; }
|
||||
|
||||
div.bggray { background-color: #F2F2F2; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user