From a5a2984d01d1a3596ff904b212f20999d5d6dbc4 Mon Sep 17 00:00:00 2001 From: Thomas Mudrunka Date: Fri, 31 May 2013 09:06:19 +0200 Subject: [PATCH] =?utf8?q?Hez=C4=8D=C3=AD=20z=C3=A1mky?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- assistants/lock.inc.php | 2 +- index.php | 5 +++-- locale/cs/messages.inc.php | 4 ++++ 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/assistants/lock.inc.php b/assistants/lock.inc.php index ccb9302..7f101a2 100644 --- a/assistants/lock.inc.php +++ b/assistants/lock.inc.php @@ -9,7 +9,7 @@ switch($SUBPATH[0]) { array('lock','lock','submit') )); } else { - echo $this->html->render_item_table($result); + echo $this->html->render_item_table($result, 'lock'); echo $this->html->form("$URL/2", 'POST', array( array('unlock','unlock','submit') )); diff --git a/index.php b/index.php index d6469e5..36c59f1 100755 --- a/index.php +++ b/index.php @@ -471,6 +471,7 @@ EOF; 'model' => array('barcode_name'), 'barcode' => array('model_price_in','model_price_out','model_reserve','producer_name','producer_note','model_eshop_hide','category_name','model_countable','model_descript'), 'item' => array('model_descript','model_price_in','model_price_out','barcode_name','model_barcode','model_countable','model_reserve','model_eshop_hide','room_descript','room_author','producer_name','producer_note','vendor_note','location_author','location_gps','location_description'), + 'lock' => array('lock_author'), 'transaction' => array('transaction_author') ); //print_r($table); die(); @@ -1053,7 +1054,7 @@ class Sklad_UI { function check_locks() { $result = $this->db->safe_query_fetch("SELECT * FROM `lock`;"); if(!empty($result)) { - echo T('There are locks:').' '.$this->html->render_item_table($result); + echo T('There are locks:').' '.$this->html->render_item_table($result, 'lock'); $this->post_redirect_get('', 'There are locks!', true); } } @@ -1141,7 +1142,7 @@ class Sklad_UI { if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]=''; if($_SERVER['REQUEST_METHOD'] != 'POST' && $PATH_CHUNKS[1]!='barcodeimg' && $PATH_CHUNKS[1]!='api') { //TODO: tyhle podminky naznacujou, ze je v navrhu nejaka drobna nedomyslenost... $result = $this->db->safe_query_fetch("SELECT * FROM `lock`;"); - $headerhtml = !empty($result) ? T('There are locks:').' '.$this->html->render_item_table($result) : ''; + $headerhtml = !empty($result) ? T('There are locks:').' '.$this->html->render_item_table($result, 'lock') : ''; echo $this->html->header($PATH_INFO,$this->db->auth->get_user(),$headerhtml); } switch($PATH_CHUNKS[1]) { //TODO: Move some branches to plugins if possible diff --git a/locale/cs/messages.inc.php b/locale/cs/messages.inc.php index 8fa292e..de1d4b2 100644 --- a/locale/cs/messages.inc.php +++ b/locale/cs/messages.inc.php @@ -10,6 +10,7 @@ $LOCALE_MESSAGES = array( 'SAFE INCLUDE: Fuckfound.' => '[Inkluze] Kryptohovno nenalezeno!', 'Record not found!' => 'Položka nenalezena!', 'holy primordial emptiness is all you can find here...' => 'věz, že zde nenajdeš více než nekonečnou laskavost prapůvodní prázdnoty...', + 'There are locks' => 'Sklad je zamčen', 'item_id' => '#', 'item_serial' => 'Sériové č.', @@ -57,6 +58,9 @@ $LOCALE_MESSAGES = array( 'status_name' => 'Stav', 'category_name' => 'Kategorie', + 'lock_name' => 'Zámek', + 'lock_author_backend' => 'Odpovědný', + 'transaction_id' => 'Transakce', 'transaction_time' => 'Čas', 'transaction_from' => 'Zdrojový účet', -- 2.30.2