From bd3726b4451118c135088d97059d711d874b1274 Mon Sep 17 00:00:00 2001 From: Thomas Mudrunka Date: Fri, 31 May 2013 07:45:53 +0200 Subject: [PATCH] Vyraznejsi hlasky --- assistants/bank.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assistants/bank.inc.php b/assistants/bank.inc.php index 373e0a3..755a470 100644 --- a/assistants/bank.inc.php +++ b/assistants/bank.inc.php @@ -82,15 +82,15 @@ if(isset($bank_json_only) && $bank_json_only) { if(isset($_POST['create_account'])) { $new_account=$_POST['account_name']; bank_add_account($this, $new_account); - $this->post_redirect_get("$URL_INTERNAL/admin","Účet '$new_account' byl vytvořen!"); + $this->post_redirect_get("$URL_INTERNAL/admin","Účet $new_account byl vytvořen!"); } if(isset($_POST['rename_account'])) { $new_account=$_POST['account_new']; $old_account=$_POST['account_old']; if(bank_rename_account($this, $_POST['account_old'], $_POST['account_new'])) { - $this->post_redirect_get("$URL_INTERNAL/admin","Účet '$old_account' byl přejmenován na '$new_account'!"); + $this->post_redirect_get("$URL_INTERNAL/admin","Účet $old_account byl přejmenován na $new_account!"); } else { - $this->post_redirect_get("$URL_INTERNAL/admin","Účet '$new_account' již existuje!", false); + $this->post_redirect_get("$URL_INTERNAL/admin","Účet $new_account již existuje!", false); } } if(isset($_POST['transaction'])) { @@ -101,7 +101,7 @@ if(isset($_POST['transaction'])) { if(!is_numeric($amount) || $amount < 0) $this->post_redirect_get("$URL_INTERNAL?account=".$account_from,"Lze převádět jen kladné částky", true); if(strlen($comment)<4) $this->post_redirect_get("$URL_INTERNAL?account=".$account_from,"Komentář musí mít alespoň 4 znaky!",true); bank_transaction($this, $account_from, $account_to, $comment, $amount); - $this->post_redirect_get("$URL_INTERNAL?account=".$account_from,"Transakce byla provedena:
Převod $amount $bank_currency z účtu $account_from na účet $account_to.
($comment)"); + $this->post_redirect_get("$URL_INTERNAL?account=".$account_from,"Transakce byla provedena:
Převod $amount $bank_currency z účtu $account_from na účet $account_to.
($comment)"); } //bank_add_account($this, 'material'); -- 2.30.2