mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Change to dev-style orphan marking
Prevents out-of-date flag from being hidden
This commit is contained in:
parent
adcf3cecd0
commit
9178ccacd1
7 changed files with 19 additions and 10 deletions
|
@ -79,6 +79,8 @@ $_t["ca"]["Comments"] = "Comentaris";
|
|||
|
||||
$_t["ca"]["O%hrphan"] = "O%hrfe";
|
||||
|
||||
$_t["ca"]["orphan"] = "orfe";
|
||||
|
||||
$_t["ca"]["Un-Vote"] = "Lleva vot";
|
||||
|
||||
$_t["ca"]["change category"] = "Canvia la categoria";
|
||||
|
|
|
@ -59,6 +59,8 @@ $_t["en"]["No packages matched your search criteria."] = "No packages matched yo
|
|||
|
||||
$_t["en"]["O%hrphan"] = "O%hrphan";
|
||||
|
||||
$_t["en"]["orphan"] = "orphan";
|
||||
|
||||
$_t["en"]["Un-Vote"] = "Un-Vote";
|
||||
|
||||
$_t["en"]["change category"] = "change category";
|
||||
|
|
|
@ -81,6 +81,8 @@ $_t["es"]["Comments"] = "Comentarios";
|
|||
|
||||
$_t["es"]["O%hrphan"] = "H%huérfano";
|
||||
|
||||
$_t["es"]["orphan"] = "huérfano";
|
||||
|
||||
$_t["es"]["Un-Vote"] = "Quitar Voto";
|
||||
|
||||
$_t["es"]["change category"] = "cambiar categoría";
|
||||
|
|
|
@ -53,6 +53,8 @@ $_t["it"]["No packages matched your search criteria."] = "Nessun pacchetto corri
|
|||
|
||||
$_t["it"]["O%hrphan"] = "O%hrfano";
|
||||
|
||||
$_t["it"]["orphan"] = "orfano";
|
||||
|
||||
$_t["it"]["Un-Vote"] = "Rimuovere il voto";
|
||||
|
||||
$_t["it"]["change category"] = "Cambiare categoria";
|
||||
|
|
|
@ -57,6 +57,7 @@ $_t["pl"]["Orphans"] = "Bez opiekuna";
|
|||
$_t["pl"]["Tarball"] = "Archiwum";
|
||||
$_t["pl"]["Files"] = "Pliki";
|
||||
$_t["pl"]["O%hrphan"] = "B%hez opiekuna";
|
||||
$_t["pl"]["orphan"] = "bez opiekuna";
|
||||
$_t["pl"]["O%hut-of-Date"] = "N%hieaktualne";
|
||||
$_t["pl"]["Package Listing"] = "Lista pakietów";
|
||||
|
||||
|
|
|
@ -59,6 +59,8 @@ $_t["pt"]["No packages matched your search criteria."] = "Seu critério de pesqu
|
|||
|
||||
$_t["pt"]["O%hrphan"] = "O%hrfão";
|
||||
|
||||
$_t["pt"]["orphan"] = "orfão";
|
||||
|
||||
$_t["pt"]["Un-Vote"] = "Retirar Voto";
|
||||
|
||||
$_t["pt"]["change category"] = "mudar categoria";
|
||||
|
|
|
@ -999,9 +999,6 @@ function pkg_search_page($SID="") {
|
|||
if ($row["OutOfDate"]) {
|
||||
print "<span style='background-color: red'>";
|
||||
}
|
||||
if ($row["MaintainerUID"]==0 && $row["AURMaintainerUID"]==0) {
|
||||
print "<span style='background-color: cyan'>";
|
||||
}
|
||||
print "<input type='checkbox' name='IDs[".$row["ID"]."]' value='1'>";
|
||||
# if ($i == 0) {
|
||||
# $all_ids = $row["ID"];
|
||||
|
@ -1068,7 +1065,9 @@ function pkg_search_page($SID="") {
|
|||
if (isset($users[$row["MaintainerUID"]])) {
|
||||
print $users[$row["MaintainerUID"]]["Username"];
|
||||
} else {
|
||||
print __("None");
|
||||
print "<span style='color: blue; font-style: italic;'>";
|
||||
print __("orphan");
|
||||
print "</span>";
|
||||
$managed = 0;
|
||||
}
|
||||
print "</span></span></td>\n";
|
||||
|
@ -1111,7 +1110,6 @@ function pkg_search_page($SID="") {
|
|||
print " <td colspan='2' align='center'>";
|
||||
print " <span class='f5'>\n";
|
||||
if ($SID) {
|
||||
print " <font style='background-color: cyan'>".__("O%hrphan", array('</font>'))." \n";
|
||||
print " <font style='background-color: red'>".__("O%hut-of-Date", array('</font>'))." ";
|
||||
}
|
||||
print ' <span class="green">'.__("Safe")."</span>\n";
|
||||
|
|
Loading…
Add table
Reference in a new issue