added switch git_info where available

This commit is contained in:
Matthew Vale
2015-12-10 11:58:09 +00:00
parent 45d9c2039d
commit cd8f1e6660
2 changed files with 20 additions and 10 deletions

View File

@@ -100,15 +100,15 @@ $text['label-git_info']['sv-se'] = "";
$text['label-git_info']['uk'] = "";
$text['label-git_info']['de-at'] = "";
$text['label-switch_version']['en-us'] = "Switch Version";
$text['label-switch_version']['es-cl'] = "";
$text['label-switch_version']['pt-pt'] = "";
$text['label-switch_version']['fr-fr'] = "";
$text['label-switch_version']['pt-br'] = "";
$text['label-switch_version']['pl'] = "";
$text['label-switch_version']['sv-se'] = "";
$text['label-switch_version']['uk'] = "";
$text['label-switch_version']['de-at'] = "";
$text['label-switch']['en-us'] = "Switch";
$text['label-switch']['es-cl'] = "";
$text['label-switch']['pt-pt'] = "";
$text['label-switch']['fr-fr'] = "";
$text['label-switch']['pt-br'] = "";
$text['label-switch']['pl'] = "";
$text['label-switch']['sv-se'] = "";
$text['label-switch']['uk'] = "";
$text['label-switch']['de-at'] = "";
$text['label-git_branch']['en-us'] = "Branch:";
$text['label-git_branch']['es-cl'] = "";

View File

@@ -113,10 +113,20 @@ $document['title'] = $text['title-sys-status'];
$switch_bits = $matches[2];
echo "<tr>\n";
echo " <td width='20%' class=\"vncell\" style='text-align: left;'>\n";
echo " ".$text['label-switch_version']."\n";
echo " ".$text['label-switch']." ".$text['label-version']."\n";
echo " </td>\n";
echo " <td class=\"row_style1\">$switch_version ($switch_bits)</td>\n";
echo "</tr>\n";
preg_match("/\(git\s*(.*?)\s*\d+\w+\s*\)/", $switch_version, $matches);
$switch_git_info = $matches[1];
if(strlen($switch_git_info) > 0){
echo "<tr>\n";
echo " <td width='20%' class=\"vncell\" style='text-align: left;'>\n";
echo " ".$text['label-switch']." ".$text['label-git_info']."\n";
echo " </td>\n";
echo " <td class=\"row_style1\">$switch_git_info</td>\n";
echo "</tr>\n";
}
}
echo "<!--\n";