diff --git a/index.php b/index.php index 2ac02967..16deeb83 100644 --- a/index.php +++ b/index.php @@ -176,7 +176,7 @@ if (isset($_GET["download"])) { echo '' . (isset($row["Rows"]) ? '' . htmlspecialchars($row["Name"]) . "$row[Engine]" . (strlen(trim($row["Comment"])) ? htmlspecialchars($row["Comment"]) : " ") . "$row[Collation]" : ' ' . htmlspecialchars($row["Name"]) . '' . lang('View') . ''); foreach ((isset($row["Rows"]) ? array("Data_length" => "create", "Index_length" => "indexes", "Data_free" => "edit", "Auto_increment" => "create", "Rows" => "select") : array()) as $key => $link) { $val = number_format($row[$key], 0, '.', lang(',')); - echo '' . (strlen($row[$key]) ? '' . ($key == "Rows" && $row["Engine"] == "InnoDB" && $val ? lang('around %s', $val) : $val) . '' : ' '); + echo '' . (strlen($row[$key]) ? '' . ($key == "Rows" && $row["Engine"] == "InnoDB" && $val ? lang('~ %s', $val) : $val) . '' : ' '); } echo "\n"; } diff --git a/lang/cs.inc.php b/lang/cs.inc.php index 9b5b3d7b..81615166 100644 --- a/lang/cs.inc.php +++ b/lang/cs.inc.php @@ -136,7 +136,7 @@ $translations = array( 'Event' => 'Událost', 'MySQL version: %s through PHP extension %s' => 'Verze MySQL: %s přes PHP extenzi %s', '%d row(s)' => array('%d řádek', '%d řádky', '%d řádků'), - 'around %s' => 'přibližně %s', + '~ %s' => '~ %s', 'ON UPDATE CURRENT_TIMESTAMP' => 'Při změně aktuální čas', 'Remove' => 'Odebrat', 'Are you sure?' => 'Opravdu?',